/* ========================================
   CSS Variables & Reset
======================================== */

:root {
    --navy: #7a0c0c;          /* main premium red */
    --navy-light: #a31717;    /* lighter red */

    --cyan: #ff3b3b;          /* highlight red */
    --magenta: #d90429;       /* deep red */
    --yellow: #ffb703;        /* gold accent */

    --grey-bg: #f9f9f9;
    --white: #ffffff;

    --text-dark: #2b0d0d;
    --text-grey: #6c757d;
    --text-light: #adb5bd;

    --border-color: #eee;

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
     font-family: "Google Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========================================
   Container & Utilities
======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

.section {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.text-large {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-grey);
    margin-bottom: 1.5rem;
}

.mt-large {
    margin-top: 3rem;
}

/* ========================================
   Typography
======================================== */

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 4rem;
    }
    h2 {
        font-size: 3rem;
    }
}

/* ========================================
   Buttons
======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-primary {
    background-color: var(--navy);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-white {
    background-color: var(--white);
    color: var(--navy);
}

.btn-white:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-navy {
    border: 2px solid var(--navy);
    color: var(--navy);
}

.btn-outline-navy:hover {
    background-color: var(--navy);
    color: var(--white);
}

.btn-navy {
    background-color: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background-color: var(--navy-light);
}

/* ========================================
   Navigation
======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--navy);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
}

.nav-menu {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: var(--text-grey);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--navy);
}

.nav-contact {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .nav-contact {
        display: flex;
    }
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-grey);
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    color: var(--text-grey);
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* ========================================
   Hero Section
======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, 
        rgba(26, 35, 50, 0.95), 
        rgba(26, 35, 50, 0.85), 
        rgba(26, 35, 50, 0.7));
}

.hero-decorations {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.decoration-cyan {
    top: 5rem;
    right: 2.5rem;
    width: 16rem;
    height: 16rem;
    background-color: rgba(0, 188, 212, 0.1);
}

.decoration-magenta {
    bottom: 5rem;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
    background-color: rgba(233, 30, 99, 0.1);
}

.decoration-yellow {
    top: 50%;
    right: 25%;
    width: 18rem;
    height: 18rem;
    background-color: rgba(255, 193, 7, 0.1);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 5rem 0;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    right: 0;
    height: 0.75rem;
    background: linear-gradient(to right, var(--cyan), var(--magenta), var(--yellow));
    opacity: 0.5;
    filter: blur(4px);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #d1d5db;
    font-size: 0.875rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.5rem;
    background-color: var(--white);
    border-radius: 0.25rem;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(0.5rem);
    }
}

/* ========================================
   Section Header
======================================== */

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-cyan {
    background-color: rgba(0, 188, 212, 0.1);
    color: var(--cyan);
}

.badge-magenta {
    background-color: rgba(233, 30, 99, 0.1);
    color: var(--magenta);
}

.badge-yellow {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--yellow);
}

.badge-navy {
    background-color: rgba(26, 35, 50, 0.1);
    color: var(--navy);
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-grey);
    line-height: 1.8;
}

/* ========================================
   About Section
======================================== */

.about-section {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.mission-vision {
    margin-top: 2rem;
}

.mv-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mv-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.25rem;
    position: relative;
}

.mv-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.mv-icon-cyan {
    background-color: rgba(0, 188, 212, 0.2);
}

.mv-icon-cyan::after {
    background-color: var(--cyan);
}

.mv-icon-magenta {
    background-color: rgba(233, 30, 99, 0.2);
}

.mv-icon-magenta::after {
    background-color: var(--magenta);
}

.mv-item p {
    color: var(--text-grey);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-xl);
}

.stat-card-cyan {
    background-color: rgba(0, 188, 212, 0.05);
}

.stat-card-magenta {
    background-color: rgba(233, 30, 99, 0.05);
}

.stat-card-yellow {
    background-color: rgba(255, 193, 7, 0.05);
}

.stat-card-navy {
    background-color: rgba(26, 35, 50, 0.05);
}

.stat-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.stat-card-cyan .stat-card-icon {
    background-color: rgba(0, 188, 212, 0.15);
    color: var(--cyan);
}

.stat-card-magenta .stat-card-icon {
    background-color: rgba(233, 30, 99, 0.15);
    color: var(--magenta);
}

.stat-card-yellow .stat-card-icon {
    background-color: rgba(255, 193, 7, 0.15);
    color: var(--yellow);
}

.stat-card-navy .stat-card-icon {
    background-color: rgba(26, 35, 50, 0.15);
    color: var(--navy);
}

.stat-card-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.stat-card-label {
    color: var(--text-grey);
    font-weight: 500;
}

/* ========================================
   Services Section
======================================== */

.services-section {
    background-color: var(--grey-bg);
}

.services-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.icon-cyan {
    background-color: rgba(0, 188, 212, 0.1);
    color: var(--cyan);
}

.icon-magenta {
    background-color: rgba(233, 30, 99, 0.1);
    color: var(--magenta);
}

.icon-yellow {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--yellow);
}

.icon-navy {
    background-color: rgba(26, 35, 50, 0.1);
    color: var(--navy);
}

.icon-white {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-grey);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(0.25rem);
}

.link-cyan {
    color: var(--cyan);
}

.link-magenta {
    color: var(--magenta);
}

.link-yellow {
    color: var(--yellow);
}

.link-navy {
    color: var(--navy);
}

.service-card-cta {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
}

.service-card-cta h3,
.service-card-cta p {
    color: var(--white);
}

/* ========================================
   Portfolio Section
======================================== */

.portfolio-section {
    background-color: var(--white);
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    background-color: var(--grey-bg);
    color: var(--text-grey);
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--navy);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.portfolio-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: var(--grey-bg);
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 35, 50, 0.9), rgba(26, 35, 50, 0.5), transparent);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    transform: translateY(1rem);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-content {
    transform: translateY(0);
}

.portfolio-category {
    display: inline-block;
    color: var(--cyan);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.portfolio-content h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

.portfolio-link:hover {
    color: var(--cyan);
}

.portfolio-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--navy);
}

/* ========================================
   Process Section
======================================== */

.process-section {
    background-color: var(--grey-bg);
    position: relative;
    overflow: hidden;
}

.process-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.process-decoration {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(80px);
}

.process-decoration:nth-child(1) {
    top: 0;
    right: 0;
    background-color: rgba(0, 188, 212, 0.05);
}

.process-decoration:nth-child(2) {
    bottom: 0;
    left: 0;
    background-color: rgba(233, 30, 99, 0.05);
}

.process-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    position: relative;
}

.process-card {
    position: relative;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.process-card:hover {
    box-shadow: var(--shadow-xl);
}

.process-number {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: var(--shadow-lg);
}

.number-cyan {
    background-color: var(--cyan);
}

.number-magenta {
    background-color: var(--magenta);
}

.number-yellow {
    background-color: var(--yellow);
}

.number-navy {
    background-color: var(--navy);
}

.process-card .process-icon {
    margin-bottom: 1.5rem;
}

.process-card h3 {
    margin-bottom: 1rem;
}

.process-card p {
    color: var(--text-grey);
    line-height: 1.7;
}

.process-cta {
    margin-top: 4rem;
    text-align: center;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.process-cta p {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* ========================================
   Why Choose Us Section
======================================== */

.why-section {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.feature-card {
    position: relative;
    background-color: var(--grey-bg);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid transparent;
    transition: var(--transition);
}

.feature-card:hover {
    background-color: var(--white);
    border-color: var(--border-color);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    margin-bottom: 1.5rem;
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-grey);
    line-height: 1.7;
}

.feature-accent {
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 0.25rem;
    border-radius: 0.25rem;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-accent {
    opacity: 1;
}

.accent-cyan {
    background-color: var(--cyan);
}

.accent-magenta {
    background-color: var(--magenta);
}

.accent-yellow {
    background-color: var(--yellow);
}

.accent-navy {
    background-color: var(--navy);
}

.cta-banner {
    margin-top: 4rem;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    color: var(--white);
}

.cta-banner h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ========================================
   Testimonials Section
======================================== */

.testimonials-section {
    background-color: var(--grey-bg);
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial-card {
    position: relative;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
}

.quote-icon {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    opacity: 0.2;
    transition: var(--transition);
}

.testimonial-card:hover .quote-icon {
    opacity: 1;
}

.testimonial-card:nth-child(1) .quote-icon {
    background-color: var(--cyan);
}

.testimonial-card:nth-child(2) .quote-icon {
    background-color: var(--magenta);
}

.testimonial-card:nth-child(3) .quote-icon {
    background-color: var(--yellow);
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: var(--yellow);
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid;
}

.testimonial-card:nth-child(1) .testimonial-author img {
    border-color: var(--cyan);
}

.testimonial-card:nth-child(2) .testimonial-author img {
    border-color: var(--magenta);
}

.testimonial-card:nth-child(3) .testimonial-author img {
    border-color: var(--yellow);
}

.author-name {
    font-weight: 700;
    color: var(--navy);
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-grey);
}

.testimonial-accent {
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 0.25rem;
    border-radius: 0.25rem 0.25rem 0 0;
    opacity: 0;
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-accent {
    opacity: 1;
}

.stats-bar {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.stats-bar .stat-item {
    text-align: center;
}

.stats-bar .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.stats-bar .stat-label {
    color: var(--text-grey);
}

/* ========================================
   Clients Section
======================================== */

.clients-section {
    background-color: var(--white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.client-card {
    aspect-ratio: 3/2;
    background-color: var(--grey-bg);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.client-card:hover {
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
}

.client-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    transition: var(--transition);
}

.client-card:hover .client-name {
    transform: scale(1.1);
}

.client-card:nth-child(odd) .client-name {
    color: var(--navy);
}

.client-card:nth-child(even) .client-name {
    color: var(--navy-light);
}

.client-card:nth-child(3n) .client-name {
    color: var(--cyan);
}

.trust-indicators {
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.trust-title {
    font-weight: 700;
    color: var(--navy);
}

.trust-subtitle {
    font-size: 0.875rem;
    color: var(--text-grey);
}

/* ========================================
   Contact Section
======================================== */

.contact-section {
    background-color: var(--grey-bg);
}

.contact-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-grey);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--cyan);
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card-hours {
    background: linear-gradient(135deg, var(--cyan), #00a0b8);
    color: var(--white);
}

.contact-card-hours h3,
.contact-card-hours p {
    color: var(--white);
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-grey);
    margin-top: 1rem;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 1rem;
    height: 16rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.map-placeholder p {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-placeholder span {
    font-size: 0.875rem;
    color: #d1d5db;
}

/* ========================================
   Footer
======================================== */

.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    background-color: var(--white);
    color: var(--navy);
}

.footer-col p {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--cyan);
    transform: translateY(-2px);
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #9ca3af;
}

.footer-col ul li a:hover {
    color: var(--cyan);
}

.contact-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.contact-list i {
    color: var(--cyan);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-links a {
    color: #9ca3af;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-accent {
    height: 0.25rem;
    background: linear-gradient(to right, var(--cyan), var(--magenta), var(--yellow));
}

/* ========================================
   Responsive Adjustments
======================================== */

@media (max-width: 767px) {
    .hero-ctas {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
