/* ============================================
   VISA CENTRE NZ — Design System
   Palette: Warm Cream / Pastel / Terracotta
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- Custom Properties --- */
:root {
    /* Base */
    --cream:        #FDF8F3;
    --cream-dark:   #F5EDE4;
    --white:        #FFFFFF;

    /* Primary — warm terracotta/coral */
    --primary:      #E07A5F;
    --primary-light:#F4A68C;
    --primary-dark: #C45A3F;

    /* Secondary — sage green */
    --secondary:    #81B29A;
    --secondary-light: #A8D5BA;
    --secondary-dark:  #5E9178;

    /* Accent — soft gold */
    --accent:       #F2CC8F;
    --accent-light: #F7DFB8;

    /* Neutrals */
    --charcoal:     #3D405B;
    --charcoal-light: #5C5F7A;
    --text-muted:   #8A8DA3;
    --border:       #E8E0D8;

    /* Pastel tints for cards */
    --pastel-peach:   #FFF0E8;
    --pastel-mint:    #E8F5EE;
    --pastel-lavender:#F0ECF8;
    --pastel-sky:     #E8F0F8;
    --pastel-gold:    #FFF8E8;
    --pastel-rose:    #FDE8EC;

    /* Shadows */
    --shadow-sm:    0 2px 8px rgba(61, 64, 91, 0.06);
    --shadow-md:    0 4px 20px rgba(61, 64, 91, 0.08);
    --shadow-lg:    0 8px 40px rgba(61, 64, 91, 0.12);
    --shadow-glow:  0 4px 30px rgba(224, 122, 95, 0.2);

    /* Typography */
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-pad: 100px;
    --container-max: 1200px;

    /* Transitions */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Section Base --- */
.section {
    padding: var(--section-pad) 0;
}

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

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

.section--cream-dark {
    background-color: var(--cream-dark);
}

.section-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--charcoal-light);
    max-width: 600px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    background: rgba(253, 248, 243, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.4s var(--ease);
}

.navbar.scrolled .navbar__logo {
    color: var(--charcoal);
}

.navbar__logo-img {
    height: 40px;
    width: auto;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled .navbar__logo-img {
    height: 36px;
}

.navbar__logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.navbar__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s var(--ease);
}

.navbar.scrolled .navbar__links a {
    color: var(--charcoal-light);
}

.navbar__links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s var(--ease);
}

.navbar__links a:hover,
.navbar__links a.active {
    color: var(--primary);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
    width: 100%;
}

.navbar__cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: all 0.3s var(--ease) !important;
    box-shadow: 0 2px 12px rgba(224, 122, 95, 0.3);
}

.navbar__cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow) !important;
}

.navbar__cta::after {
    display: none !important;
}

/* Mobile menu toggle */
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.navbar__toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.navbar.scrolled .navbar__toggle span {
    background: var(--charcoal);
}

.navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.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(
        135deg,
        rgba(61, 64, 91, 0.65) 0%,
        rgba(61, 64, 91, 0.35) 40%,
        rgba(224, 122, 95, 0.2) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 28px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
}

.hero__badge svg {
    width: 16px;
    height: 16px;
    fill: var(--accent);
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero__title span {
    color: var(--accent);
}

.hero__subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--ease);
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(224, 122, 95, 0.35);
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(224, 122, 95, 0.45);
    color: var(--white);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--secondary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(129, 178, 154, 0.3);
}

.btn--secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    color: var(--white);
}

/* Scroll cue */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   ABOUT
   ============================================ */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about__image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
}

.about__image-badge-icon {
    width: 40px;
    height: 40px;
    background: var(--pastel-mint);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__image-badge-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--secondary-dark);
}

.about__image-badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--charcoal);
}

.about__image-badge-text span {
    display: block;
    font-weight: 400;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.about__text p {
    margin-bottom: 20px;
    color: var(--charcoal-light);
}

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about__highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.about__highlight:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.about__highlight-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.about__highlight:nth-child(1) .about__highlight-icon { background: var(--pastel-peach); }
.about__highlight:nth-child(2) .about__highlight-icon { background: var(--pastel-mint); }
.about__highlight:nth-child(3) .about__highlight-icon { background: var(--pastel-lavender); }
.about__highlight:nth-child(4) .about__highlight-icon { background: var(--pastel-sky); }
.about__highlight:nth-child(5) .about__highlight-icon { background: var(--pastel-rose); }

.about__highlight--languages {
    grid-column: 1 / -1;
}

.about__highlight-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
}

.about__highlight-text span {
    display: block;
    font-weight: 400;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ============================================
   SERVICES
   ============================================ */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:nth-child(1)::before { background: var(--primary); }
.service-card:nth-child(2)::before { background: var(--secondary); }
.service-card:nth-child(3)::before { background: #B07CC6; }
.service-card:nth-child(4)::before { background: var(--accent); }
.service-card:nth-child(5)::before { background: #6BA3D6; }
.service-card:nth-child(6)::before { background: var(--primary-light); }

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.service-card:nth-child(1) .service-card__icon { background: var(--pastel-peach); }
.service-card:nth-child(2) .service-card__icon { background: var(--pastel-mint); }
.service-card:nth-child(3) .service-card__icon { background: var(--pastel-lavender); }
.service-card:nth-child(4) .service-card__icon { background: var(--pastel-gold); }
.service-card:nth-child(5) .service-card__icon { background: var(--pastel-sky); }
.service-card:nth-child(6) .service-card__icon { background: var(--pastel-rose); }

.service-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s var(--ease);
}

.service-card__link:hover {
    gap: 10px;
}

/* ============================================
   PROCESS
   ============================================ */
.process__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.process__steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: calc(16.67% + 40px);
    right: calc(16.67% + 40px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--secondary-light), var(--accent));
    border-radius: 2px;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step__number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.process-step:nth-child(1) .process-step__number {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.process-step:nth-child(2) .process-step__number {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}

.process-step:nth-child(3) .process-step__number {
    background: linear-gradient(135deg, var(--accent), #E8BD7A);
}

.process-step__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-step__desc {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* ============================================
   STATS
   ============================================ */
.stats {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    padding: 60px 0;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat {
    text-align: center;
    padding: 20px;
}

.stat__number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 6px;
}

.stat__label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-card__stars svg {
    width: 16px;
    height: 16px;
    fill: var(--accent);
}

.testimonial-card__text {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}

.testimonial-card:nth-child(1) .testimonial-card__avatar { background: var(--primary); }
.testimonial-card:nth-child(2) .testimonial-card__avatar { background: var(--secondary); }
.testimonial-card:nth-child(3) .testimonial-card__avatar { background: #B07CC6; }

.testimonial-card__name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
}

.testimonial-card__role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================
   CONTACT
   ============================================ */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.contact__info-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contact__info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact__info-item:nth-child(1) .contact__info-icon { background: var(--pastel-peach); }
.contact__info-item:nth-child(2) .contact__info-icon { background: var(--pastel-mint); }
.contact__info-item:nth-child(3) .contact__info-icon { background: var(--pastel-lavender); }

.contact__info-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact__info-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal);
}

.contact__info-value a {
    color: var(--charcoal);
}

.contact__info-value a:hover {
    color: var(--primary);
}

.contact__line-qr-grid {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.contact__line-qr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.contact__line-qr {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    border: 1px solid var(--border);
    object-fit: contain;
}

.contact__line-qr-lang {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--charcoal-light);
    text-align: center;
}

.contact__form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--charcoal);
    background: var(--cream);
    transition: all 0.3s var(--ease);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(224, 122, 95, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--charcoal);
    padding: 60px 0 30px;
    color: rgba(255, 255, 255, 0.7);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer__brand {
    margin-bottom: 16px;
}

.footer__logo-img {
    height: 44px;
    width: auto;
}

.footer__desc {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 360px;
}

.footer__licence {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s var(--ease);
}

.footer__links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer__bottom a:hover {
    color: var(--accent);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children */
.stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }

.stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .testimonials__grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 60px;
    }

    /* Mobile nav */
    .navbar__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: var(--white);
        padding: 80px 32px 32px;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s var(--ease);
    }

    .navbar__links.open {
        right: 0;
    }

    .navbar__links a {
        color: var(--charcoal) !important;
        font-size: 1rem;
    }

    .navbar__toggle {
        display: flex;
    }

    /* Hero */
    .hero__title {
        font-size: 2.2rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    /* About */
    .about__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about__image {
        order: -1;
    }

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

    /* Services */
    .services__grid {
        grid-template-columns: 1fr;
    }

    /* Process */
    .process__steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process__steps::before {
        display: none;
    }

    /* Stats */
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonials */
    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .testimonials__grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    /* Contact */
    .contact__grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.8rem;
    }

    .stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .contact__form-wrapper {
        padding: 24px;
    }
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }

/* Mobile overlay behind nav */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}
