:root {
    --teal: #2EC4A5;
    --teal-light: #45D4B5;
    --teal-dark: #1FA88C;
    --navy: #1B1F5C;
    --navy-dark: #12154A;
    --navy-light: #2A2F7A;
    --gradient: linear-gradient(135deg, var(--teal) 0%, #1E7A9A 50%, var(--navy) 100%);
    --gradient-reverse: linear-gradient(315deg, var(--teal) 0%, #1E7A9A 50%, var(--navy) 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(46, 196, 165, 0.08) 0%, rgba(27, 31, 92, 0.08) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(46, 196, 165, 0.2) 0%, rgba(30, 122, 154, 0.15) 50%, rgba(27, 31, 92, 0.2) 100%);
    --white: #FFFFFF;
    --off-white: #F7F9FC;
    --gray-50: #F0F2F7;
    --gray-100: #E2E6EF;
    --gray-200: #C5CBD9;
    --gray-400: #8891A7;
    --gray-600: #4A5168;
    --gray-800: #252A3A;
    --font-display: 'DM Serif Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --shadow-sm: 0 2px 8px rgba(27, 31, 92, 0.06);
    --shadow-md: 0 8px 32px rgba(27, 31, 92, 0.10);
    --shadow-lg: 0 16px 64px rgba(27, 31, 92, 0.14);
    --shadow-xl: 0 24px 80px rgba(27, 31, 92, 0.18);
    --shadow-glow: 0 0 40px rgba(46, 196, 165, 0.15);
    --shadow-card-hover: 0 20px 60px rgba(27, 31, 92, 0.16), 0 0 40px rgba(46, 196, 165, 0.08);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============ CUSTOM SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--navy-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--teal);
}

/* ============ SCROLL PROGRESS BAR ============ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--gradient);
    z-index: 10000;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(46, 196, 165, 0.5);
}

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 8px 24px rgba(46, 196, 165, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 12px 32px rgba(46, 196, 165, 0.4);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ============ UTILITY ============ */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 560px;
}

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

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 10px 0;
    box-shadow: 0 1px 24px rgba(27, 31, 92, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 48px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s var(--ease-spring);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    transition: color 0.4s;
}

.navbar.scrolled .nav-logo-text {
    color: var(--navy);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.3s var(--ease-out-expo);
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-links a {
    color: var(--gray-600);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--navy);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--teal);
    color: var(--white) !important;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.3s var(--ease-spring);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.nav-cta:hover::before {
    transform: translateX(100%);
}

.nav-cta:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46, 196, 165, 0.35);
}

.nav-cta::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

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

.navbar.scrolled .hamburger span {
    background: var(--navy);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(46, 196, 165, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(46, 196, 165, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(27, 31, 92, 0.5) 0%, transparent 80%),
        linear-gradient(180deg, var(--navy-dark) 0%, #0D1035 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 196, 165, 0.14) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

/* Decorative floating shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    border: 2px solid var(--teal);
    bottom: 10%;
    left: -5%;
    animation: float 10s ease-in-out infinite;
}

.hero-shape-2 {
    width: 150px;
    height: 150px;
    background: var(--teal);
    top: 15%;
    right: 5%;
    animation: float 12s ease-in-out infinite reverse;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.hero-shape-3 {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    top: 40%;
    left: 15%;
    animation: floatRotate 15s linear infinite;
    border-radius: 0;
    transform: rotate(45deg);
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, 20px);
    }
}

@keyframes floatRotate {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }

    25% {
        transform: rotate(90deg) translate(10px, -10px);
    }

    50% {
        transform: rotate(180deg) translate(0, 0);
    }

    75% {
        transform: rotate(270deg) translate(-10px, 10px);
    }

    100% {
        transform: rotate(360deg) translate(0, 0);
    }
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-content {
    animation: slideUp 1s var(--ease-out-expo) forwards;
    opacity: 0;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(46, 196, 165, 0.12);
    border: 1px solid rgba(46, 196, 165, 0.25);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px rgba(46, 196, 165, 0.6);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 8px rgba(46, 196, 165, 0.6);
    }

    50% {
        opacity: 0.4;
        box-shadow: 0 0 16px rgba(46, 196, 165, 0.3);
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============ BUTTONS ============ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-spring);
    box-shadow: 0 8px 32px rgba(46, 196, 165, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(46, 196, 165, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-spring);
}

.btn-secondary:hover {
    border-color: rgba(46, 196, 165, 0.5);
    background: rgba(46, 196, 165, 0.08);
    transform: translateY(-2px);
}

/* ============ HERO VISUAL ============ */
.hero-visual {
    position: relative;
    animation: slideUp 1s 0.2s var(--ease-out-expo) forwards;
    opacity: 0;
}

.hero-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 48px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.hero-card:hover {
    border-color: rgba(46, 196, 165, 0.2);
    box-shadow: var(--shadow-glow);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 196, 165, 0.4), transparent);
}

/* Animated shimmer border */
.hero-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, transparent 30%, rgba(46, 196, 165, 0.15) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: shimmerBorder 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes shimmerBorder {
    0% {
        background-position: 200% 200%;
    }

    100% {
        background-position: -200% -200%;
    }
}

.hero-card-logo {
    width: 120px;
    height: auto;
    margin-bottom: 32px;
    filter: drop-shadow(0 8px 24px rgba(46, 196, 165, 0.2));
    transition: transform 0.4s var(--ease-spring);
}

.hero-card:hover .hero-card-logo {
    transform: scale(1.05);
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 16px;
}

.hero-stat {
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s var(--ease-out-expo);
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(46, 196, 165, 0.15);
    transform: translateY(-2px);
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bobbing 2s ease-in-out infinite;
}

@keyframes bobbing {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(46, 196, 165, 0.5), transparent);
}

/* ============ TRUST BAR ============ */
.trust-bar {
    padding: 48px 0;
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-100);
    position: relative;
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal), transparent);
    opacity: 0.3;
}

.trust-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-400);
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.3s;
}

.trust-item:hover {
    color: var(--gray-600);
}

.trust-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-spring);
}

.trust-item:hover .trust-icon {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), 0 0 20px rgba(46, 196, 165, 0.1);
}

.trust-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--teal);
}

/* ============ ABOUT ============ */
.about {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 196, 165, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-card {
    background: var(--gradient);
    border-radius: var(--radius-xl);
    padding: 3px;
    position: relative;
    transition: transform 0.5s var(--ease-out-expo);
}

.about-image-card:hover {
    transform: translateY(-4px);
}

.about-image-inner {
    background: var(--off-white);
    border-radius: calc(var(--radius-xl) - 2px);
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    min-height: 420px;
    justify-content: center;
}

.about-image-inner img {
    width: 160px;
    height: auto;
    transition: transform 0.4s var(--ease-spring);
}

.about-image-card:hover .about-image-inner img {
    transform: scale(1.05);
}

.about-year-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--ease-spring);
}

.about-year-badge:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.about-year-badge-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--navy);
}

.about-year-badge-text {
    font-size: 0.82rem;
    color: var(--gray-400);
    font-weight: 500;
    line-height: 1.5;
}

.about-floating {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 20px 28px;
    background: var(--navy);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s var(--ease-spring);
}

.about-floating:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.about-floating svg {
    width: 24px;
    height: 24px;
    stroke: var(--teal);
}

.about-floating-text {
    font-size: 0.82rem;
    font-weight: 600;
}

.about-content .section-subtitle {
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

.about-feature:hover {
    background: var(--gradient-subtle);
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border-radius: 12px;
    transition: all 0.3s var(--ease-spring);
}

.about-feature:hover .about-feature-icon {
    background: var(--gradient);
    transform: scale(1.1);
}

.about-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--teal);
    transition: stroke 0.3s;
}

.about-feature:hover .about-feature-icon svg {
    stroke: var(--white);
}

.about-feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ============ SERVICES ============ */
.services {
    padding: 120px 0;
    background: var(--off-white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-header .section-subtitle {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.5s var(--ease-out-expo);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Gradient top bar */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s;
}

/* Shimmer sweep effect */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 196, 165, 0.04), transparent);
    transition: left 0.8s var(--ease-out-expo);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(46, 196, 165, 0.12);
}

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

.service-card:hover::after {
    left: 100%;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border-radius: 16px;
    margin-bottom: 24px;
    transition: all 0.4s var(--ease-spring);
}

.service-card:hover .service-icon {
    background: var(--gradient);
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 8px 24px rgba(46, 196, 165, 0.25);
}

.service-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--teal);
    transition: stroke 0.4s;
}

.service-card:hover .service-icon svg {
    stroke: var(--white);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.service-tag {
    padding: 5px 14px;
    background: var(--gray-50);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: all 0.3s;
}

.service-card:hover .service-tag {
    background: rgba(46, 196, 165, 0.08);
    color: var(--teal-dark);
}

/* ============ PROCESS ============ */
.process {
    padding: 120px 0;
    background: var(--navy-dark);
    position: relative;
    overflow: hidden;
}

.process-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(46, 196, 165, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(46, 196, 165, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--navy-dark) 0%, #0D1035 100%);
}

.process .container {
    position: relative;
    z-index: 2;
}

.process-header {
    text-align: center;
    margin-bottom: 72px;
}

.process-header .section-title {
    color: var(--white);
}

.process-header .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

/* Timeline connector between steps */
.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, rgba(46, 196, 165, 0.1), rgba(46, 196, 165, 0.3), rgba(46, 196, 165, 0.3), rgba(46, 196, 165, 0.1));
    z-index: 0;
}

.process-step {
    position: relative;
    padding: 36px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
    z-index: 1;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(46, 196, 165, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2), 0 0 30px rgba(46, 196, 165, 0.08);
}

.process-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 4px 16px rgba(46, 196, 165, 0.3);
    transition: all 0.3s var(--ease-spring);
}

.process-step:hover .process-step-num {
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(46, 196, 165, 0.4);
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}

/* ============ SERVICE AREAS ============ */
.areas {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.areas .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.areas-map {
    position: relative;
    background: var(--gradient-subtle);
    border-radius: var(--radius-xl);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.areas-map iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: none;
    border-radius: calc(var(--radius-xl) - 8px);
}

.areas-map-pin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.areas-map-pin svg {
    width: 48px;
    height: 48px;
    fill: var(--teal);
    animation: bouncePin 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(46, 196, 165, 0.3));
}

@keyframes bouncePin {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.areas-map-label {
    padding: 8px 20px;
    background: var(--navy);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--white);
}

.areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: all 0.3s var(--ease-out-expo);
    border: 1px solid transparent;
}

.area-item:hover {
    background: var(--white);
    border-color: rgba(46, 196, 165, 0.15);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.area-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--teal);
    min-width: 16px;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
    padding: 120px 0;
    background: var(--off-white);
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-header .section-subtitle {
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s var(--ease-out-expo);
    border: 1px solid transparent;
    overflow: hidden;
}

/* Decorative quote mark */
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--teal);
    opacity: 0.07;
    pointer-events: none;
    transition: opacity 0.3s;
}

/* Left accent border */
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gradient);
    transition: height 0.5s var(--ease-out-expo);
    border-radius: 0 2px 2px 0;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(46, 196, 165, 0.08);
}

.testimonial-card:hover::before {
    opacity: 0.12;
}

.testimonial-card:hover::after {
    height: 100%;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: #FFC107;
    filter: drop-shadow(0 1px 2px rgba(255, 193, 7, 0.3));
}

.testimonial-card blockquote {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    transition: transform 0.3s var(--ease-spring);
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
}

.testimonial-author-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--navy);
}

.testimonial-author-loc {
    font-size: 0.78rem;
    color: var(--gray-400);
}

/* ============ OUR WORK GALLERY ============ */
.gallery {
    padding: 120px 0;
    background: var(--white);
}

.gallery-header {
    text-align: center;
    margin-bottom: 64px;
}

.gallery-header .section-subtitle {
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: default;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-sm);
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 28px 24px;
    background: linear-gradient(to top, rgba(18, 21, 74, 0.85) 0%, transparent 100%);
    color: var(--white);
}

.gallery-caption h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.gallery-caption p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ CTA SECTION ============ */
.cta {
    padding: 120px 0;
    background: var(--white);
}

.cta-box {
    background: var(--navy-dark);
    border-radius: var(--radius-xl);
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 100%, rgba(46, 196, 165, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 0%, rgba(46, 196, 165, 0.08) 0%, transparent 50%);
}

/* Animated dot grid */
.cta-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(46, 196, 165, 0.12) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.5;
    animation: dotSlide 20s linear infinite;
}

@keyframes dotSlide {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 32px 32px;
    }
}

.cta-box>* {
    position: relative;
    z-index: 2;
}

.cta-box .section-title {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-box .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 auto 40px;
    text-align: center;
}

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

.cta-phone {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--teal);
    text-decoration: none;
    display: block;
    margin-bottom: 32px;
    transition: all 0.3s;
    text-shadow: 0 0 30px rgba(46, 196, 165, 0.2);
}

.cta-phone:hover {
    opacity: 0.8;
    text-shadow: 0 0 40px rgba(46, 196, 165, 0.4);
    transform: scale(1.02);
}

/* ============ CONTACT / HOURS ============ */
.contact {
    padding: 100px 0;
    background: var(--off-white);
}

.contact .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.contact-item:hover {
    background: rgba(46, 196, 165, 0.04);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-spring);
}

.contact-item:hover .contact-item-icon {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-md);
}

.contact-item-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--teal);
}

.contact-item h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
    font-size: 0.88rem;
    color: var(--gray-400);
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--teal);
}

.contact-hours {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.contact-hours:hover {
    box-shadow: var(--shadow-md);
}

.contact-hours h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 24px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.2s;
}

.hours-row:hover {
    padding-left: 8px;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-600);
}

.hours-time {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
}

.hours-closed {
    color: var(--gray-400);
    font-weight: 400;
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    transition: all 0.3s var(--ease-spring);
}

.social-link:hover {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(27, 31, 92, 0.2);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--gray-400);
    transition: fill 0.3s;
}

.social-link:hover svg {
    fill: var(--white);
}

/* ============ CONTACT FORM ============ */
.contact-form-wrap {
    margin-top: 32px;
}

.contact-form label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    margin-top: 16px;
    transition: color 0.2s;
}

.contact-form label:first-of-type {
    margin-top: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-sm);
    background: var(--white);
    transition: all 0.3s var(--ease-out-expo);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(46, 196, 165, 0.12);
    background: var(--white);
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: var(--gray-200);
}

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

.contact-form button[type="submit"] {
    margin-top: 20px;
    width: 100%;
}

.contact-form.is-submitted .contact-form-fields {
    display: none !important;
}

.form-thank-you {
    display: none;
    padding: 32px;
    background: var(--gradient-subtle);
    border-radius: var(--radius-md);
    color: var(--navy);
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(46, 196, 165, 0.15);
}

.contact-form.is-submitted .form-thank-you {
    display: block !important;
}

/* ============ FOOTER ============ */
.footer {
    padding: 48px 0;
    background: var(--navy-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

/* Gradient accent stripe */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    opacity: 0.5;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-left img {
    height: 36px;
    border-radius: 6px;
}

.footer-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--teal);
    transition: width 0.3s;
}

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

.footer-links a:hover::after {
    width: 100%;
}

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

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

/* Staggered reveal for grid children */
.services-grid .service-card.reveal:nth-child(1) {
    transition-delay: 0.0s;
}

.services-grid .service-card.reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.services-grid .service-card.reveal:nth-child(3) {
    transition-delay: 0.16s;
}

.services-grid .service-card.reveal:nth-child(4) {
    transition-delay: 0.24s;
}

.services-grid .service-card.reveal:nth-child(5) {
    transition-delay: 0.32s;
}

.services-grid .service-card.reveal:nth-child(6) {
    transition-delay: 0.40s;
}

.testimonials-grid .testimonial-card.reveal:nth-child(1) {
    transition-delay: 0.0s;
}

.testimonials-grid .testimonial-card.reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.testimonials-grid .testimonial-card.reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.process-steps .process-step.reveal:nth-child(1) {
    transition-delay: 0.0s;
}

.process-steps .process-step.reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.process-steps .process-step.reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.process-steps .process-step.reveal:nth-child(4) {
    transition-delay: 0.3s;
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(12, 15, 50, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.mobile-menu a:hover {
    color: var(--teal);
    transform: translateX(8px);
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.mobile-close:hover {
    transform: rotate(90deg);
}

/* ============ RESPONSIVE — TABLET ============ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .about .container,
    .areas .container,
    .contact .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

    .process-steps::before {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .hero-shape {
        display: none;
    }
}

/* ============ RESPONSIVE — MOBILE ============ */
@media (max-width: 768px) {

    /* --- Navigation --- */
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .nav-logo img {
        height: 36px;
    }

    .nav-logo-text {
        font-size: 1.05rem;
    }

    .navbar {
        padding: 12px 0;
    }

    .navbar.scrolled {
        padding: 8px 0;
    }

    /* --- Hero --- */
    .hero {
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero .container {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 14px 28px;
    }

    .hero-card {
        padding: 28px 20px;
    }

    .hero-card-logo {
        width: 80px;
        margin-bottom: 20px;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .hero-stat {
        padding: 14px 12px;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.72rem;
    }

    .hero-scroll {
        display: none;
    }

    /* --- Trust Bar --- */
    .trust-bar {
        padding: 28px 0;
    }

    .trust-bar .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .trust-item {
        gap: 10px;
        font-size: 0.78rem;
        justify-content: flex-start;
    }

    .trust-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .trust-icon svg {
        width: 16px;
        height: 16px;
    }

    /* --- Section spacing --- */
    .about,
    .services,
    .testimonials,
    .cta {
        padding: 72px 0;
    }

    .areas,
    .contact {
        padding: 64px 0;
    }

    .process {
        padding: 72px 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 14px;
    }

    .section-subtitle {
        font-size: 0.92rem;
    }

    .section-label {
        font-size: 0.7rem;
        margin-bottom: 12px;
    }

    /* --- About --- */
    .about-image-inner {
        padding: 32px 24px;
        min-height: 300px;
    }

    .about-image-inner img {
        width: 120px;
    }

    .about-year-badge {
        padding: 14px 20px;
    }

    .about-year-badge-num {
        font-size: 1.6rem;
    }

    .about-floating {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 16px;
        justify-content: center;
    }

    .about-feature {
        padding: 12px;
    }

    /* --- Services --- */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 28px 24px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.84rem;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 18px;
    }

    .service-tags {
        gap: 6px;
    }

    .service-tag {
        padding: 4px 12px;
        font-size: 0.7rem;
    }

    /* --- Process --- */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-step {
        padding: 28px 20px;
    }

    .process-step-num {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .process-step h3 {
        font-size: 1.05rem;
    }

    .process-step p {
        font-size: 0.8rem;
    }

    .process-header {
        margin-bottom: 48px;
    }

    /* --- Areas --- */
    .areas-map {
        min-height: 280px;
        padding: 12px;
    }

    .areas-map iframe {
        min-height: 260px;
    }

    .areas-list {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .area-item {
        padding: 10px 12px;
        font-size: 0.82rem;
    }

    /* --- Testimonials --- */
    .testimonial-card {
        padding: 28px 24px;
    }

    .testimonial-card blockquote {
        font-size: 0.88rem;
        line-height: 1.75;
        font-style: normal;
        font-weight: 400;
    }

    .testimonial-card::before {
        font-size: 3.5rem;
        top: 12px;
        right: 16px;
    }

    /* --- CTA --- */
    .cta {
        padding: 60px 0;
    }

    .cta-box {
        padding: 40px 20px;
        border-radius: var(--radius-lg);
    }

    .cta-phone {
        font-size: 1.4rem;
        margin-bottom: 24px;
    }

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

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 14px 24px;
    }

    .cta-box .section-title {
        font-size: 1.6rem;
    }

    /* --- Contact --- */
    .contact .container {
        gap: 40px;
    }

    .contact-item {
        gap: 12px;
        padding: 6px;
    }

    .contact-item-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .contact-form button[type="submit"] {
        width: 100%;
        padding: 14px 24px;
    }

    /* --- Socials: bigger tap targets --- */
    .socials {
        gap: 14px;
        margin-top: 20px;
    }

    .social-link {
        width: 48px;
        height: 48px;
    }

    /* --- Business Hours --- */
    .contact-hours {
        padding: 28px 24px;
    }

    .contact-hours h3 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .hours-row {
        padding: 10px 0;
    }

    /* --- Footer --- */
    .footer {
        padding: 32px 0;
    }

    .footer .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-left img {
        height: 28px;
    }

    .footer-text {
        font-size: 0.75rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-links a {
        font-size: 0.78rem;
        padding: 4px 0;
    }

    /* --- Back to top: avoid footer overlap --- */
    .back-to-top {
        bottom: 20px;
        right: 16px;
        width: 42px;
        height: 42px;
    }

    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* ============ RESPONSIVE — SMALL PHONES ============ */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.85rem;
    }

    .hero-description {
        font-size: 0.88rem;
    }

    .hero-badge {
        font-size: 0.68rem;
        padding: 6px 12px;
        gap: 6px;
    }

    .hero-badge-dot {
        width: 5px;
        height: 5px;
    }

    .hero-card {
        padding: 20px 16px;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .hero-stat {
        padding: 12px 10px;
    }

    .hero-stat-number {
        font-size: 1.3rem;
    }

    .hero-stat-label {
        font-size: 0.68rem;
    }

    .trust-bar .container {
        gap: 12px;
    }

    .trust-item {
        font-size: 0.72rem;
    }

    .trust-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        border-radius: 8px;
    }

    .trust-icon svg {
        width: 14px;
        height: 14px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .about-image-inner {
        padding: 24px 16px;
        min-height: 250px;
    }

    .about-image-inner img {
        width: 100px;
    }

    .about-year-badge-num {
        font-size: 1.4rem;
    }

    .service-card {
        padding: 24px 18px;
    }

    .service-icon {
        width: 44px;
        height: 44px;
    }

    .process-step {
        padding: 24px 16px;
    }

    .areas-map {
        min-height: 220px;
    }

    .areas-list {
        gap: 6px;
    }

    .area-item {
        padding: 8px 10px;
        font-size: 0.78rem;
    }

    .testimonial-card {
        padding: 24px 18px;
    }

    .testimonial-card blockquote {
        font-size: 0.84rem;
    }

    .cta-box {
        padding: 32px 16px;
    }

    .cta-phone {
        font-size: 1.2rem;
    }

    .cta-box .section-title {
        font-size: 1.35rem;
    }

    .contact-hours {
        padding: 24px 18px;
    }

    .footer-links {
        gap: 16px;
    }

    .nav-logo img {
        height: 32px;
    }

    .nav-logo-text {
        font-size: 0.95rem;
    }
}

/* ============ RESPONSIVE — TINY PHONES ============ */
@media (max-width: 360px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        max-width: 100%;
        font-size: 0.88rem;
        padding: 12px 20px;
    }

    .hero-card {
        padding: 16px 12px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .trust-bar .container {
        grid-template-columns: 1fr;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        max-width: 100%;
        font-size: 0.88rem;
    }
}

/* ============ AUTOMYTE CREDIT ============ */
.automyte-credit {
    background: #0C0F31;
    text-align: center;
    padding: 12px 24px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.2);
    font-family: var(--font-body);
    letter-spacing: 0.03em;
}

.automyte-credit a {
    color: rgba(46,196,165,0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.automyte-credit a:hover {
    color: var(--teal);
}