/* ============================================================
   PERFECT TOUCH MOBILE DETAILING — STYLESHEET
   Design: Apple-inspired premium minimalism
   Colors: #0056b3 (Primary Blue), #F5F5F7 (Background), 
           #1D1D1F (Text), #0066CC (Accent)
   Fonts: Montserrat 800 (Headlines), Inter 300-400 (Body)
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES (Easy to update colors/fonts)
   ============================================================ */
:root {
    /* Brand Colors */
    --color-primary: #0056b3;
    --color-accent: #0066CC;
    --color-bg: #F5F5F7;
    --color-text: #1D1D1F;
    --color-text-secondary: #6e6e73;
    --color-white: #ffffff;
    --color-dark: #000000;
    --color-border: #d2d2d7;
    --color-card-bg: #ffffff;
    --color-gold: #C8963E;

    /* Typography */
    --font-headline: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;
    --container-padding: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.65;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-text);
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 19px;
    font-weight: 300;
    color: var(--color-text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

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

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: var(--section-padding) 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 980px; /* Apple pill shape */
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: #004494;
    color: var(--color-white);
    transform: scale(1.02);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
}

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

.btn-ghost {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: var(--color-white);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* nav-dark disabled — header is always solid white */
/* .nav.nav-dark removed to keep header solid white */

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
}

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

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

/* nav-dark logo color override removed — always dark text on white */

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 13px;
    font-weight: 400;
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition-fast);
    letter-spacing: 0.01em;
}

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

/* nav-dark link color overrides removed — always dark text on white */

.nav-cta {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-white);
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 980px;
    text-decoration: none;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.nav-cta:hover {
    background: #004494;
    color: var(--color-white);
}

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--color-text);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

/* nav-dark toggle span color removed — always dark toggle on white */

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

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

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

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.35) 40%,
        rgba(0, 0, 0, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 var(--container-padding);
    max-width: 860px;
}

.hero-eyebrow {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.hero-headline {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-subtext {
    font-size: clamp(17px, 2.2vw, 21px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

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

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ============================================================
   SOCIAL PROOF BAR
   ============================================================ */
.social-proof {
    background: var(--color-white);
    padding: 40px 0;
    border-bottom: 1px solid var(--color-border);
}

.social-proof-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.social-proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-proof-icon {
    color: var(--color-text);
    opacity: 0.7;
    flex-shrink: 0;
}

.social-proof-text {
    display: flex;
    flex-direction: column;
}

.social-proof-number {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 24px;
    color: var(--color-text);
    line-height: 1.1;
}

.social-proof-label {
    font-size: 12px;
    font-weight: 400;
    color: var(--color-text-secondary);
    letter-spacing: 0.02em;
}

.social-proof-handle .social-proof-at {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: -0.01em;
}

/* ============================================================
   SERVICES / PRICING CARDS
   ============================================================ */
.services {
    background: var(--color-bg);
}

.services-image-row {
    margin-bottom: 64px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.services-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.pricing-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card-featured {
    border-color: var(--color-primary);
    box-shadow: 0 4px 24px rgba(0, 86, 179, 0.12);
}

.pricing-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 980px;
    letter-spacing: 0.04em;
}

.pricing-card-header h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}

.pricing-card-price {
    margin-bottom: 8px;
}

.price-amount {
    font-family: var(--font-headline);
    font-size: 48px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.03em;
}

.pricing-card-interior {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 4px 0 8px;
}

.pricing-card-interior strong {
    color: var(--color-text);
    font-weight: 600;
}

.pricing-card-time {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pricing-card .btn {
    width: 100%;
}

/* Accordion / Included Section */
.included-section {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.accordion-toggle:hover {
    border-color: var(--color-primary);
}

.accordion-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-medium);
    flex-shrink: 0;
}

.accordion-toggle[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.accordion-content.open {
    max-height: 600px;
    padding-top: 24px;
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 28px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.included-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-primary);
}

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

.included-col li {
    font-size: 15px;
    color: var(--color-text-secondary);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.included-col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.5;
}

/* ============================================================
   PROCESS SECTION
   Two-column step-by-step layout
   ============================================================ */
.process {
    background: var(--color-white);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.process-column-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 28px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.process-steps {
    list-style: none;
    counter-reset: none;
}

.process-steps li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}

.process-steps li:last-child {
    border-bottom: none;
}

.step-number {
    font-family: var(--font-headline);
    font-size: 13px;
    font-weight: 800;
    color: var(--color-primary);
    background: rgba(0, 86, 179, 0.08);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
}

/* ============================================================
   EXTRAS — ADD-ONS, UPCHARGES, POLICIES
   ============================================================ */
.extras {
    background: var(--color-bg);
}

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

.extras-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
    text-align: center;
}

.extras-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.extras-card-icon {
    color: var(--color-primary);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.extras-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.extras-card-desc {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.extras-list {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.extras-list li {
    font-size: 15px;
    color: var(--color-text);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.extras-list li:last-child {
    border-bottom: none;
}

.extras-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.5;
}

.extras-card-deny .extras-list li::before {
    background: #86868b;
}

.extras-note {
    font-size: 13px;
    color: var(--color-text-secondary);
    font-style: italic;
}

.extras-card-deny {
    border-color: rgba(0, 0, 0, 0.08);
    background: var(--color-bg);
}

/* ============================================================
   MAINTENANCE PROGRAM — DISCOUNT EMPHASIS FLIPPED
   Discount % is now the hero element, price is secondary
   ============================================================ */
.maintenance {
    background: var(--color-white);
}

.maintenance-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.maintenance-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
    position: relative;
}

.maintenance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.maintenance-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 980px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.badge-gold {
    background: linear-gradient(135deg, #C8963E, #E8C068);
    color: var(--color-white);
}

.maintenance-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    margin-top: 8px;
}

/* NEW: Big discount — the hero element of each card */
.maintenance-discount-big {
    font-family: var(--font-headline);
    font-size: 52px;
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 12px;
}

/* NEW: Smaller price — secondary to the discount */
.price-amount-small {
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.maintenance-price {
    margin-bottom: 4px;
}

.maintenance-price .price-amount {
    font-size: 42px;
}

.price-period {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text-secondary);
}

.maintenance-time {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.maintenance-desc {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-bottom: 28px;
    line-height: 1.5;
}

.maintenance-card .btn {
    width: 100%;
}

.maintenance-note {
    text-align: center;
    font-size: 14px;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    background: var(--color-bg);
}

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

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-content .section-eyebrow {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    font-size: clamp(28px, 4vw, 44px);
}

.about-content p {
    font-size: 17px;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    line-height: 1.65;
}

.about-content .btn {
    margin-top: 12px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
    background: var(--color-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.review-card {
    background: var(--color-bg);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
}

.review-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

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

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.review-meta {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.review-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text);
}

.review-date {
    font-size: 12px;
    color: var(--color-text-secondary);
}

.review-google {
    flex-shrink: 0;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

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

/* ============================================================
   SERVICE AREA
   ============================================================ */
.service-area {
    background: var(--color-bg);
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.area-card {
    background: var(--color-white);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
    text-align: center;
}

.area-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(0, 86, 179, 0.08);
}

.area-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
}

.area-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.area-card-cta {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.area-card-cta h3 {
    color: var(--color-white);
}

.area-card-cta p {
    color: rgba(255, 255, 255, 0.8);
}

.area-phone {
    display: inline-block;
    margin-top: 8px;
    color: var(--color-white);
    font-weight: 600;
    font-size: 15px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.area-phone:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
    background: var(--color-text);
    padding: 100px 0;
}

.final-cta-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.final-cta .section-title {
    color: var(--color-white);
}

.final-cta p {
    font-size: 19px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 22px;
    color: var(--color-white);
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.5;
}

.footer h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.footer-contact a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin-bottom: 8px;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--color-white);
}

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

.footer-social-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

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

.footer-areas p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
}

/* ============================================================
   SCROLL ANIMATIONS (Fade-in on scroll)
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   DESKTOP NAV OVERRIDES — Ensure mobile overlay never leaks
   ============================================================ */
@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: center !important;
        gap: 28px !important;
    }

    .nav-toggle {
        display: none !important;
    }

    .nav-link {
        font-size: 13px !important;
        font-weight: 400 !important;
    }

    .nav-cta {
        font-size: 13px !important;
        padding: 8px 20px !important;
        margin-top: 0 !important;
    }
}

/* ============================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .maintenance-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .about-grid {
        gap: 40px;
    }

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

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

    .process-grid {
        gap: 32px;
    }

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

    .maintenance-discount-big {
        font-size: 44px;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
        --container-padding: 20px;
    }

    body {
        font-size: 16px;
    }

    /* Mobile Nav */
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        display: none;
        z-index: 1000;
    }

    /* nav-dark mobile overlay removed — always white overlay */

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

    .nav-link {
        font-size: 22px;
        font-weight: 600;
        text-align: center;
    }

    .nav-cta {
        font-size: 18px;
        padding: 14px 36px;
        margin-top: 8px;
    }

    /* Hero Mobile */
    .hero-headline {
        font-size: clamp(36px, 10vw, 52px);
    }

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

    .hero-ctas .btn {
        width: 100%;
        max-width: 320px;
    }

    /* Social Proof Mobile */
    .social-proof-grid {
        gap: 24px;
    }

    .social-proof-handle {
        width: 100%;
        justify-content: center;
    }

    /* Pricing Cards Mobile */
    .pricing-cards,
    .maintenance-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card,
    .maintenance-card {
        padding: 32px 24px;
    }

    /* Included Grid Mobile */
    .included-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px 16px;
    }

    .included-col li {
        font-size: 14px;
    }

    .accordion-content.open {
        max-height: 800px;
    }

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

    /* Extras Mobile */
    .extras-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    /* About Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 320px;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content .section-eyebrow {
        text-align: center;
    }

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

    /* Reviews Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    /* Service Area Mobile */
    .area-grid {
        grid-template-columns: 1fr;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-social-links {
        justify-content: center;
    }

    /* Services Image */
    .services-hero-img {
        height: 240px;
    }

    /* Maintenance discount big on mobile */
    .maintenance-discount-big {
        font-size: 48px;
    }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
    .hero-headline {
        font-size: 34px;
    }

    .hero-subtext {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .price-amount {
        font-size: 40px;
    }

    .maintenance-discount-big {
        font-size: 42px;
    }

    .social-proof-grid {
        flex-direction: column;
        gap: 20px;
    }

    .btn-lg {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Skip to content link */
a[href="#hero"]:focus {
    outline: 2px solid var(--color-primary);
}

/* ============================================================
   WHY PERFECT TOUCH SECTION
   ============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.why-number {
    font-family: var(--font-headline);
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.why-card h3 {
    font-family: var(--font-headline);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.why-card p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .why-card {
        padding: 28px 16px;
    }
    .why-number {
        font-size: 28px;
    }
}

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

/* ============================================================
   B2B / COMMERCIAL SECTION
   ============================================================ */
.commercial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.commercial-card {
    padding: 32px;
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.commercial-card h3 {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.commercial-card p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.commercial-cta {
    text-align: center;
    padding: 48px 32px;
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-primary);
}

.commercial-cta-text {
    font-family: var(--font-headline);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-text);
}

.commercial-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
}

.commercial-social-proof {
    font-size: 14px;
    color: var(--color-text-secondary);
    font-style: italic;
}

@media (max-width: 768px) {
    .commercial-grid {
        grid-template-columns: 1fr;
    }
    .commercial-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
    color: var(--color-text);
    text-align: left;
    gap: 16px;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-answer.open {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 0 20px;
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============================================================
   STICKY MOBILE CTA BAR
   ============================================================ */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--color-card-bg);
    border-top: 1px solid var(--color-border);
    padding: 12px 16px;
    gap: 12px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
}

.mobile-cta-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
}

.mobile-cta-book {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    background: var(--color-primary);
    color: white;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: flex;
    }
    /* Add padding to body bottom so content isn't hidden behind bar */
    body {
        padding-bottom: 72px;
    }
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform var(--transition-fast);
    cursor: pointer;
}

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

.gallery-ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-ba-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-ba-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-ba-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .gallery-img {
        height: 180px;
    }
    .gallery-ba-item img {
        height: 200px;
    }
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.ba-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.ba-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.ba-label {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.ba-before {
    background: rgba(0,0,0,0.7);
    color: #fff;
}

.ba-after {
    background: var(--color-primary);
    color: #fff;
}

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

.gallery-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.gallery-img:hover {
    transform: scale(1.02);
    opacity: 0.92;
}

.gallery-img-wide {
    grid-column: span 2;
    height: 280px;
}

@media (max-width: 768px) {
    .gallery-before-after {
        grid-template-columns: 1fr;
    }
    .ba-card img {
        height: 220px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-img {
        height: 180px;
    }
    .gallery-img-wide {
        grid-column: span 2;
        height: 200px;
    }
}
