/* ==========================================
   ONE CALL STEAM CLEAN — Main Stylesheet
   ========================================== */

/* ========== VARIABLES ========== */
:root {
    --mint: #E8F5F0;
    --teal: #1A7A6D;
    --teal-dark: #145F55;
    --teal-light: #2A9D8F;
    --cream: #FDFBF7;
    --charcoal: #1E1E1E;
    --warm-gray: #5A5A5A;
    --sand: #F5F0E8;
    --accent-gold: #D4A853;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(26, 122, 109, 0.08);
    --shadow-md: 0 8px 30px rgba(26, 122, 109, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 122, 109, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ========== NAVIGATION ========== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    background: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--charcoal);
}

.logo-img {
    height: 80px;
    width: auto;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.3px;
}

.logo-text span {
    color: var(--teal);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--warm-gray);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--teal) !important;
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: all 0.3s !important;
    letter-spacing: 0.2px;
}

.nav-cta:hover {
    background: var(--teal-dark) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

/* ----- Services dropdown ----- */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-caret {
    font-size: 10px;
    line-height: 1;
    transition: transform 0.25s;
    color: var(--teal);
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret,
.nav-dropdown.open .nav-caret {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 260px;
    background: white;
    list-style: none;
    padding: 10px;
    margin: 0;
    border-radius: 14px;
    border: 1px solid rgba(26, 122, 109, 0.12);
    box-shadow: 0 18px 40px -12px rgba(20, 95, 85, 0.22), 0 2px 6px rgba(20, 95, 85, 0.06);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
    z-index: 1000;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s;
}

.nav-dropdown-menu li {
    list-style: none;
}

.nav-dropdown-menu a {
    display: block;
    padding: 11px 16px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--charcoal);
    border-radius: 9px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
    background: var(--mint);
    color: var(--teal-dark);
}

.nav-dropdown-menu li:first-child a {
    font-weight: 700;
    color: var(--teal-dark);
    border-bottom: 1px solid rgba(26, 122, 109, 0.1);
    border-radius: 9px 9px 0 0;
    margin-bottom: 4px;
}

/* Mobile: expand dropdown inline inside collapsed nav */
.nav-collapsed .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 8px 0 4px 14px;
    min-width: 0;
    transition: none;
}

.nav-collapsed .nav-dropdown-menu::before {
    display: none;
}

.nav-collapsed .nav-dropdown-menu a {
    padding: 8px 12px;
    font-size: 14px;
}

.nav-collapsed .nav-caret {
    display: none;
}

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

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

/* Auto-collapse nav when items would wrap */
.nav-collapsed .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px 32px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    white-space: normal;
}
.nav-collapsed .nav-links.open { display: flex; }
.nav-collapsed .mobile-toggle { display: flex; }

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--cream) 0%, var(--mint) 50%, #D4EDE7 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(26, 122, 109, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

/* Decorative steam shapes */
.steam-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(26, 122, 109, 0.04);
    animation: float 8s ease-in-out infinite;
}

.steam-shape:nth-child(1) { width: 120px; height: 120px; top: 15%; right: 10%; animation-delay: 0s; }
.steam-shape:nth-child(2) { width: 80px; height: 80px; top: 30%; right: 25%; animation-delay: 2s; }
.steam-shape:nth-child(3) { width: 60px; height: 60px; top: 60%; right: 5%; animation-delay: 4s; }
.steam-shape:nth-child(4) { width: 100px; height: 100px; bottom: 20%; left: 5%; animation-delay: 1s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-25px) scale(1.05); opacity: 0.8; }
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 32px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--teal-dark);
    padding: 9px 18px 9px 12px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 26px;
    box-shadow: 0 1px 2px rgba(20, 95, 85, 0.06), 0 8px 24px rgba(20, 95, 85, 0.08);
    border: 1px solid rgba(26, 122, 109, 0.12);
    animation: slideUp 0.8s ease-out;
}

.hero-badge::before {
    content: '★';
    color: var(--accent-gold);
    font-size: 14px;
    background: linear-gradient(135deg, var(--mint), #D4EDE7);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5.2vw, 62px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-bottom: 26px;
    animation: slideUp 0.8s ease-out 0.1s both;
}

.hero h1 em {
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.7;
    color: var(--warm-gray);
    max-width: 480px;
    margin-bottom: 36px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.3s both;
}

/* ========== BUTTONS ========== */
.btn-icon {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    margin-right: 2px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: white;
    padding: 17px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15.5px;
    letter-spacing: 0.2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 12px 26px -8px rgba(20, 95, 85, 0.45);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.16) inset, 0 18px 36px -10px rgba(20, 95, 85, 0.6);
}

.btn-primary:hover::after { left: 120%; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--charcoal);
    padding: 17px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15.5px;
    letter-spacing: 0.2px;
    transition: all 0.3s;
    border: 1.5px solid rgba(26, 122, 109, 0.18);
    box-shadow: 0 4px 14px -4px rgba(20, 95, 85, 0.08);
}

.btn-secondary:hover {
    border-color: var(--teal);
    color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -6px rgba(20, 95, 85, 0.18);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--teal-dark);
    padding: 17px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15.5px;
    letter-spacing: 0.2px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px -8px rgba(0,0,0,0.3);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px -10px rgba(0,0,0,0.4);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    color: white;
    padding: 17px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15.5px;
    letter-spacing: 0.2px;
    transition: all 0.3s;
    border: 1.5px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

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

/* ========== HERO VISUAL ========== */
.hero-visual {
    position: relative;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.hero-card {
    background: white;
    border-radius: 28px;
    padding: 44px;
    box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 30px 80px -20px rgba(20, 95, 85, 0.25), 0 8px 24px -8px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.7);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light), var(--accent-gold));
}

.hero-card::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--mint) 0%, #D4EDE7 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: inset 0 0 0 1px rgba(26, 122, 109, 0.1), 0 8px 20px -8px rgba(26, 122, 109, 0.25);
    color: var(--teal-dark);
}

.hero-card-icon svg {
    width: 32px;
    height: 32px;
}

.hero-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.hero-card p {
    color: var(--warm-gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.trust-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 4px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--teal-dark);
    background: var(--mint);
    padding: 7px 14px 7px 10px;
    border-radius: 50px;
    border: 1px solid rgba(26, 122, 109, 0.12);
    letter-spacing: 0.1px;
}

.trust-badge .check {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 9px;
    font-weight: 800;
    box-shadow: 0 2px 6px -1px rgba(20, 95, 85, 0.35);
}

.floating-review {
    position: absolute;
    bottom: -40px;
    right: -30px;
    background: white;
    border-radius: 18px;
    padding: 16px 22px;
    box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 18px 50px -10px rgba(20, 95, 85, 0.3), 0 4px 12px -4px rgba(0,0,0,0.08);
    border: 1px solid rgba(212, 168, 83, 0.2);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: bobble 4s ease-in-out infinite;
    z-index: 3;
    max-width: 280px;
}

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

.floating-review .stars {
    color: var(--accent-gold);
    font-size: 14px;
    letter-spacing: 2px;
}

.floating-review .review-text {
    font-size: 13px;
    font-weight: 600;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== SECTION COMMON ========== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--teal);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal));
}

.section-label::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
    margin-left: -4px;
    box-shadow: 0 0 0 4px rgba(212, 168, 83, 0.15);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 4.2vw, 48px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.015em;
    margin-bottom: 18px;
}

.section-title em {
    font-style: italic;
    color: var(--teal);
}

.section-desc {
    color: var(--warm-gray);
    font-size: 17px;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 60px;
}

/* ========== SERVICES ========== */
.services {
    padding: 120px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    border-radius: 20px;
    padding: 32px 26px 28px;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(26, 122, 109, 0.08);
    box-shadow: 0 1px 2px rgba(20, 95, 85, 0.03);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(26, 122, 109, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px -15px rgba(20, 95, 85, 0.25), 0 8px 20px -8px rgba(0,0,0,0.06);
    border-color: rgba(26, 122, 109, 0.22);
}

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

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 50%, var(--accent-gold) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--mint) 0%, #D4EDE7 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), inset 0 0 0 1px rgba(26, 122, 109, 0.08);
    position: relative;
    z-index: 1;
    color: var(--teal-dark);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    transition: color 0.4s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    transform: scale(1.06) rotate(-4deg);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 10px 24px -8px rgba(26, 122, 109, 0.5);
    color: white;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    color: var(--charcoal);
    position: relative;
    z-index: 1;
}

.service-card p,
.service-card ul {
    color: var(--warm-gray);
    line-height: 1.55;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card ul li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 8px;
}

.service-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: inset 0 0 0 1px rgba(26, 122, 109, 0.2);
}

.service-card ul li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 10px;
    width: 6px;
    height: 3px;
    border-left: 1.5px solid var(--teal);
    border-bottom: 1.5px solid var(--teal);
    transform: rotate(-45deg);
}

/* ========== WHY US ========== */
.why-us {
    background: var(--charcoal);
    color: white;
    padding: 120px 32px;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(26, 122, 109, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at bottom left, rgba(212, 168, 83, 0.08) 0%, transparent 60%);
}

.why-us-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-us .section-label { color: var(--teal-light); }
.why-us .section-label::before { background: var(--teal-light); }

.why-us .section-desc {
    color: rgba(255,255,255,0.65);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.feature-item {
    padding: 32px 28px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-light), var(--accent-gold));
    border-radius: 0 0 2px 2px;
}

.feature-item:hover {
    background: linear-gradient(180deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.04) 100%);
    border-color: rgba(42, 157, 143, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 22px 50px -16px rgba(0,0,0,0.4);
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--accent-gold) 130%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.feature-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    color: white;
}

.feature-item p {
    color: rgba(255,255,255,0.62);
    font-size: 14px;
    line-height: 1.62;
}

/* ========== AREAS ========== */
.areas {
    padding: 120px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.area-tag {
    background: white;
    color: var(--teal-dark);
    padding: 9px 16px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: default;
    border: 1px solid rgba(26, 122, 109, 0.12);
    box-shadow: 0 1px 2px rgba(20, 95, 85, 0.04);
}

.area-tag:hover {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    color: white;
    transform: translateY(-2px);
    border-color: transparent;
    box-shadow: 0 8px 18px -6px rgba(20, 95, 85, 0.4);
}

.areas-visual {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-light) 100%);
    border-radius: 28px;
    padding: 48px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 30px 60px -20px rgba(20, 95, 85, 0.45);
}

.areas-visual::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255,255,255,0.16) 0%, transparent 70%);
    border-radius: 50%;
}

.areas-visual::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.18) 0%, transparent 70%);
    border-radius: 50%;
}

.areas-visual h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 16px;
    position: relative;
}

.areas-visual p {
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 28px;
    position: relative;
}

.areas-visual .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--teal);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.areas-visual .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ========== PROCESS ========== */
.process {
    background: var(--sand);
    padding: 120px 32px;
}

.process-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 68px;
    left: 16.6%;
    right: 16.6%;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--teal) 0 8px, transparent 8px 16px);
    opacity: 0.35;
    z-index: 0;
}

.step {
    text-align: center;
    padding: 32px 24px 28px;
    position: relative;
    background: white;
    border-radius: 18px;
    border: 1px solid rgba(26, 122, 109, 0.08);
    box-shadow: 0 1px 2px rgba(20, 95, 85, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px -14px rgba(20, 95, 85, 0.2);
    border-color: rgba(26, 122, 109, 0.2);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 18px;
    box-shadow: 0 8px 20px -6px rgba(26, 122, 109, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(26, 122, 109, 0.15);
}

.step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.step p {
    color: var(--warm-gray);
    font-size: 14.5px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .process-steps { grid-template-columns: 1fr; }
    .process-steps::before { display: none; }
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    background: var(--charcoal);
    color: white;
    padding: 120px 32px;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom right, rgba(26, 122, 109, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse at top left, rgba(212, 168, 83, 0.06) 0%, transparent 60%);
}

.testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonials .section-label { color: var(--teal-light); }
.testimonials .section-label::before { background: var(--teal-light); }

.testimonials .section-desc {
    color: rgba(255,255,255,0.65);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.testimonial-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 100%);
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid rgba(255,255,255,0.09);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 14px;
    right: 22px;
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    line-height: 1;
    color: var(--teal-light);
    opacity: 0.18;
    font-style: italic;
}

.testimonial-card:hover {
    background: linear-gradient(180deg, rgba(255,255,255,0.11) 0%, rgba(255,255,255,0.05) 100%);
    border-color: rgba(42, 157, 143, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -16px rgba(0,0,0,0.4);
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testimonial-card blockquote {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 42px;
    height: 42px;
    background: rgba(42, 157, 143, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--teal-light);
    font-size: 16px;
}

.testimonial-name {
    font-weight: 600;
    font-size: 15px;
    color: white;
}

.testimonial-location {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

/* ========== REVIEWS MARQUEE ========== */
.reviews-marquee {
    margin-top: 56px;
    --marquee-mask: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
    -webkit-mask-image: var(--marquee-mask);
    mask-image: var(--marquee-mask);
}

.reviews-row {
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
    animation: reviews-scroll 120s linear infinite;
}

.reviews-marquee:hover .reviews-track,
.reviews-track:focus-within {
    animation-play-state: paused;
}

@keyframes reviews-scroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .reviews-track { animation: none; }
    .reviews-marquee {
        -webkit-mask-image: none;
        mask-image: none;
    }
    .reviews-row { overflow-x: auto; scroll-snap-type: x mandatory; }
    .review-card { scroll-snap-align: start; }
}

.review-card {
    flex: 0 0 360px;
    background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 100%);
    border-radius: 18px;
    padding: 24px 26px 22px;
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    transition: transform 0.3s, border-color 0.3s, background 0.3s;
}

.review-card:hover {
    border-color: rgba(42, 157, 143, 0.45);
    transform: translateY(-3px);
    background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.05) 100%);
}

.review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px -3px rgba(20, 95, 85, 0.4);
}

.review-head > div:not(.review-avatar):not(.review-source) {
    flex: 1;
    min-width: 0;
}

.review-name {
    font-weight: 700;
    font-size: 14.5px;
    color: white;
    line-height: 1.2;
    margin-bottom: 3px;
}

.review-meta {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.review-stars {
    color: var(--accent-gold);
    letter-spacing: 1px;
    font-size: 11px;
}

.review-source {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    color: #4285F4;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px -1px rgba(0,0,0,0.25);
}

.review-card blockquote {
    color: rgba(255,255,255,0.82);
    font-size: 14.5px;
    line-height: 1.6;
    font-style: normal;
    quotes: none;
    margin: 0;
}

@media (max-width: 600px) {
    .review-card { flex: 0 0 86vw; }
}

/* ========== FAQ (Accordion) ========== */
.faq-section {
    background: var(--sand);
    padding: 120px 32px;
}

.faq-section-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 48px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 14px;
    border: 1px solid rgba(26, 122, 109, 0.08);
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 1px 2px rgba(20, 95, 85, 0.03);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    border-color: rgba(26, 122, 109, 0.18);
}

.faq-item[open] {
    box-shadow: 0 10px 30px -10px rgba(20, 95, 85, 0.18);
    border-color: rgba(26, 122, 109, 0.22);
}

.faq-item summary {
    padding: 22px 28px;
    font-family: 'Playfair Display', serif;
    font-size: 17.5px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--mint);
    color: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s;
}

.faq-item[open] summary::after {
    content: '−';
    background: var(--teal);
    color: white;
    transform: rotate(180deg);
}

.faq-item summary:hover {
    color: var(--teal);
}

.faq-item p {
    padding: 0 32px 24px;
    color: var(--warm-gray);
    line-height: 1.7;
    font-size: 15px;
}

.faq-item a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
}

/* ========== BEFORE & AFTER CAROUSEL ========== */
.before-after {
    padding: 60px 32px 120px;
    background: var(--cream);
    overflow: hidden;
}

.before-after-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ba-carousel-wrapper {
    margin-top: 60px;
    position: relative;
}

.ba-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;

    /* Hide scrollbar but keep functionality */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ba-carousel::-webkit-scrollbar {
    display: none;
}

.ba-card {
    flex: 0 0 min(420px, 85vw);
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    scroll-snap-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}

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

.ba-label {
    padding: 16px 24px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.ba-images-single {
    grid-template-columns: 1fr;
}

.ba-images-single img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.ba-side {
    position: relative;
    overflow: hidden;
}

.ba-side img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.ba-card:hover .ba-side img {
    transform: scale(1.03);
}

.ba-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.ba-tag-before {
    background: var(--charcoal);
    color: white;
}

.ba-tag-after {
    background: var(--teal);
    color: white;
}

/* Carousel navigation dots */
.ba-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.ba-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(26, 122, 109, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.ba-dot.active {
    background: var(--teal);
    width: 28px;
    border-radius: 5px;
}

/* ========== CTA ========== */
.cta {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    padding: 100px 32px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, transparent 70%);
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta p {
    opacity: 0.85;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 36px;
}

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

.cta-phone {
    margin-top: 28px;
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.cta-phone a {
    color: white;
    text-decoration: none;
}

/* ========== FOOTER ========== */
footer {
    background: var(--charcoal);
    color: white;
    padding: 80px 32px 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
    font-size: 24px;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    font-size: 15px;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.4);
}

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    color: rgba(255,255,255,0.35);
    font-size: 14px;
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--teal-dark);
    transform: translateY(-3px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 120px;
    }

    .hero-visual { order: -1; }

    /* 8 service cards stay even as 2 columns; 6 features as 2 columns */
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }

    .areas-content {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 24px 32px;
        gap: 20px;
        box-shadow: var(--shadow-md);
    }

    .nav-links.open { display: flex; }

    .mobile-toggle { display: flex; }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 34px; }

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

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

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

    .hero-card { padding: 32px; }

    .floating-review {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 16px;
    }

    .ba-card {
        flex: 0 0 90vw;
    }

    .faq-item summary {
        padding: 20px 20px;
        font-size: 16px;
    }

    .faq-item p {
        padding: 0 20px 20px;
    }
}

/* ========== SUBPAGE: BREADCRUMBS & HERO ========== */
.breadcrumbs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 32px 0;
    font-size: 13px;
    color: var(--warm-gray);
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs li + li::before {
    content: '›';
    color: var(--teal);
    font-weight: 700;
}

.breadcrumbs a {
    color: var(--warm-gray);
    text-decoration: none;
    transition: color 0.2s;
}

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

.breadcrumbs [aria-current="page"] {
    color: var(--teal-dark);
    font-weight: 600;
}

.subpage-hero {
    background: linear-gradient(160deg, var(--cream) 0%, var(--mint) 60%, #D4EDE7 100%);
    padding: 40px 32px 80px;
    position: relative;
    overflow: hidden;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 122, 109, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.subpage-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.subpage-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin: 18px 0 18px;
    max-width: 820px;
}

.subpage-hero h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subpage-hero-lede {
    font-size: 18px;
    line-height: 1.65;
    color: var(--warm-gray);
    max-width: 720px;
    margin-bottom: 30px;
}

.subpage-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.subpage-trust-row {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(26, 122, 109, 0.12);
}

.subpage-trust-stat {
    display: flex;
    flex-direction: column;
}

.subpage-trust-stat strong {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--teal-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.subpage-trust-stat span {
    font-size: 12.5px;
    color: var(--warm-gray);
    letter-spacing: 0.3px;
}

/* ========== SUBPAGE: BODY SECTIONS ========== */
.subpage-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 70px 32px;
}

.subpage-section.wide {
    max-width: 1200px;
}

.subpage-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.4vw, 38px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 18px;
    color: var(--charcoal);
}

.subpage-section h2 em {
    font-style: italic;
    color: var(--teal);
}

.subpage-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin: 28px 0 10px;
    color: var(--charcoal);
}

.subpage-section p,
.subpage-section ul,
.subpage-section ol {
    color: var(--warm-gray);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.subpage-section ul,
.subpage-section ol {
    padding-left: 0;
    list-style: none;
}

.subpage-section ul li,
.subpage-section ol li {
    padding-left: 26px;
    position: relative;
    margin-bottom: 10px;
}

.subpage-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: inset 0 0 0 1px rgba(26, 122, 109, 0.25);
}

.subpage-section ul li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 12px;
    width: 6px;
    height: 3px;
    border-left: 1.5px solid var(--teal);
    border-bottom: 1.5px solid var(--teal);
    transform: rotate(-45deg);
}

.subpage-section ol {
    counter-reset: step;
}

.subpage-section ol li {
    padding-left: 44px;
    position: relative;
    min-height: 28px;
    margin-bottom: 14px;
}

.subpage-section ol li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(20, 95, 85, 0.25);
}

.subpage-section a {
    color: var(--teal);
    text-decoration: none;
    border-bottom: 1px solid rgba(26, 122, 109, 0.3);
    transition: all 0.2s;
}

.subpage-section a:hover {
    color: var(--teal-dark);
    border-bottom-color: var(--teal-dark);
}

.subpage-section.alt {
    background: var(--sand);
    max-width: none;
    padding: 70px 32px;
}

.subpage-section.alt > * {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.subpage-section.dark {
    background: var(--charcoal);
    color: white;
    max-width: none;
    padding: 80px 32px;
}

.subpage-section.dark > * {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.subpage-section.dark h2 { color: white; }
.subpage-section.dark p { color: rgba(255,255,255,0.72); }
.subpage-section.dark .faq-item summary { color: var(--charcoal); }
.subpage-section.dark .faq-item p { color: var(--warm-gray); }

/* Inline service grid for subpages (related services / cross-links) */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.related-card {
    background: white;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(26, 122, 109, 0.1);
    transition: all 0.3s;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(26, 122, 109, 0.1) !important;
    display: block;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px -12px rgba(20, 95, 85, 0.2);
    border-color: rgba(26, 122, 109, 0.25) !important;
    color: inherit !important;
}

.related-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
    line-height: 1.25;
}

.related-card p {
    font-size: 13.5px;
    color: var(--warm-gray);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 800px) {
    .related-grid { grid-template-columns: 1fr; }
    .subpage-trust-row { gap: 18px; }
}

/* Suburb chip grid for locations hub */
.suburb-chips {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.suburb-chip {
    background: white;
    border: 1px solid rgba(26, 122, 109, 0.12);
    padding: 14px 18px;
    border-radius: 12px;
    color: var(--teal-dark);
    font-weight: 600;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(26, 122, 109, 0.12) !important;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 14.5px;
}

.suburb-chip:hover {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: white !important;
    border-color: transparent !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px -8px rgba(20, 95, 85, 0.3);
}

.suburb-chip::after {
    content: '→';
    transition: transform 0.2s;
}

.suburb-chip:hover::after { transform: translateX(3px); }

/* ==========================================
   SUBPAGE POLISH & MOBILE FIXES
   ========================================== */

/* Tighten desktop section spacing — 70/80 felt airy */
.subpage-section { padding: 56px 32px; }
.subpage-section.alt { padding: 56px 32px; }
.subpage-section.dark { padding: 64px 32px; }
.subpage-hero { padding: 36px 32px 64px; }

/* Tablet & phone */
@media (max-width: 900px) {
    .breadcrumbs { padding: 104px 24px 0; font-size: 12.5px; }
    .subpage-hero { padding: 24px 24px 48px; }
    .subpage-hero h1 { font-size: clamp(28px, 7vw, 40px); margin: 14px 0 14px; }
    .subpage-hero-lede { font-size: 16px; line-height: 1.6; }
    .subpage-hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
    .subpage-hero-actions .btn-primary,
    .subpage-hero-actions .btn-secondary {
        justify-content: center;
        padding: 16px 24px;
        font-size: 15px;
        width: 100%;
    }
    .subpage-trust-row {
        gap: 14px 24px;
        margin-top: 24px;
        padding-top: 20px;
    }
    .subpage-trust-stat strong { font-size: 18px; }
    .subpage-trust-stat span { font-size: 11.5px; }
    .subpage-section,
    .subpage-section.alt { padding: 44px 24px; }
    .subpage-section.dark { padding: 52px 24px; }
    .subpage-section h2 { font-size: clamp(24px, 6vw, 32px); }
    .subpage-section h3 { font-size: 18px; margin: 22px 0 8px; }
    .subpage-section p,
    .subpage-section ul,
    .subpage-section ol { font-size: 15.5px; line-height: 1.7; }
    .related-grid { gap: 12px; }
    .related-card { padding: 20px; }
    .related-card h4 { font-size: 16px; }
    .suburb-chips { gap: 8px; grid-template-columns: 1fr 1fr; }
    .suburb-chip { padding: 13px 14px; font-size: 13.5px; min-height: 46px; }
}

/* Tap-target normalisation — minimum 44px touch targets on phone */
@media (max-width: 900px) {
    .nav-collapsed .nav-links {
        padding: 16px 24px 24px;
        gap: 4px;
    }
    .nav-collapsed .nav-links a {
        padding: 14px 0;
        display: block;
        font-size: 16px;
        min-height: 48px;
    }
    .nav-collapsed .nav-links .nav-cta {
        margin-top: 8px;
        padding: 14px 24px;
        text-align: center;
        font-size: 15px;
        justify-content: center;
    }
    .nav-collapsed .nav-links a::after { display: none; }

    .faq-item summary {
        padding: 18px 22px;
        font-size: 15.5px;
        min-height: 56px;
    }
    .faq-item summary::after {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
    .faq-item p {
        padding: 0 22px 20px;
        font-size: 15px;
    }

    .breadcrumbs li {
        padding: 4px 0;
    }
    .breadcrumbs a {
        padding: 4px 0;
    }
}

/* ==========================================
   MOBILE STICKY CTA BAR (injected by main.js)
   Visible only on phone, all pages, all routes
   ========================================== */
.mobile-cta-bar { display: none; }

@media (max-width: 900px) {
    .mobile-cta-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 998;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
        background: rgba(253, 251, 247, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(26, 122, 109, 0.14);
        box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.06);
    }

    .mobile-cta-bar a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 10px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.1px;
        line-height: 1;
        min-height: 48px;
        white-space: nowrap;
    }

    .mobile-cta-call {
        background: linear-gradient(135deg, var(--teal), var(--teal-dark));
        color: white;
        box-shadow: 0 8px 20px -6px rgba(20, 95, 85, 0.55);
    }

    .mobile-cta-call:hover { transform: translateY(-1px); }

    .mobile-cta-quote {
        background: white;
        color: var(--teal-dark);
        border: 1.5px solid rgba(26, 122, 109, 0.22);
    }

    .mobile-cta-bar svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    /* Push page bottom so the bar never overlaps real content */
    body { padding-bottom: 76px; }

    /* Lift floating widgets above the bar */
    .back-to-top { bottom: 88px; }
    .chatbot-fab { bottom: 86px !important; }
}

/* ==========================================
   SUBPAGE NAV OVERLAP & BADGE OVERFLOW FIXES
   ========================================== */

/* Keep nav transparent at scrollY=0 (preserves homepage aesthetic).
   When scrolled, ramp to nearly opaque so content beneath fully hides. */
nav.scrolled {
    background: rgba(253, 251, 247, 0.97);
}

/* Subpages always need a backdrop behind the breadcrumb so that even at
   scrollY=0 with a transparent nav, the breadcrumb area reads cleanly
   and the hero badge below it never bleeds into the nav. */
.breadcrumbs {
    background: var(--cream);
    position: relative;
    z-index: 1;
}

/* Mobile: ensure breadcrumb sits clearly below the unscrolled nav (116px tall) */
@media (max-width: 900px) {
    .breadcrumbs { padding-top: 128px; padding-bottom: 8px; }
    .subpage-hero { padding-top: 16px; }
}

/* Mobile: hero badge text was too long to fit a phone viewport.
   Shrink, tighten, and allow wrap so it never overflows. */
@media (max-width: 600px) {
    .hero-badge {
        font-size: 11.5px;
        padding: 7px 14px 7px 8px;
        letter-spacing: 0.1px;
        max-width: 100%;
        flex-wrap: wrap;
    }
    .hero-badge::before {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
}
