/* ========================================
   Wellness Body Studio - Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    --color-primary: #FF6B9D;
    --color-primary-dark: #E63946;
    --color-primary-light: #FFB88C;
    --color-accent: #FFC875;
    --color-secondary: #FFD700;
    --color-text: #2C1810;
    --color-text-light: #5C4033;
    --color-background: #FFFFFF;
    --color-background-alt: #FFF5F0;
    --color-border: #FFE4D6;
    --color-success: #FF6B9D;
    
    --font-heading: 'Lora', serif;
    --font-body: 'Open Sans', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 180px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-background);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100vw;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    border-color: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

/* Header Button - White with Pink Text */
.header .btn-primary {
    background: #FFFFFF;
    color: var(--color-primary);
    border-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary-dark);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-text {
    padding: 0;
    background: none;
    border: none;
    color: var(--color-primary);
    font-weight: 600;
}

.btn-text:hover {
    color: var(--color-primary-dark);
    transform: translateX(4px);
}

/* Header */
.header {
    background: linear-gradient(135deg, 
        #E63946 0%,
        #FF6B9D 50%,
        #FFB88C 100%
    );
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 9999;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
    overflow: visible;
}

.header.sticky {
    background: linear-gradient(135deg, 
        #E63946 0%,
        #FF6B9D 50%,
        #FFB88C 100%
    );
    box-shadow: 0 2px 20px rgba(255, 107, 157, 0.3);
    padding: 1rem 0;
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

/* Header Contact Bar */
.header-contact-bar {
    background: transparent;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.header-contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.header-address,
.header-phone {
    font-size: 0.95rem;
    color: #FFFFFF;
    font-weight: 500;
    margin: 0;
    display: inline-flex;
    align-items: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header-phone a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header-phone a:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Right side: nav + social + button grouped together */
.header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.nav {
    display: flex;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10002;
}

.logo-img {
    height: 120px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8))
            drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
    transition: var(--transition);
}

.logo:hover {
    opacity: 1;
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 1))
            drop-shadow(0 0 20px rgba(255, 255, 255, 0.7))
            drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    transform: scale(1.03);
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: #FFFFFF;
    font-weight: 400;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFFFFF;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.dropdown-arrow {
    font-size: 0.8rem;
    margin-left: 0.25rem;
    transition: var(--transition);
    color: #FFFFFF;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}

/* Header Social Icons */
.header-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: var(--transition);
    border-radius: 50%;
    background: transparent;
}

.social-icon:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    z-index: 10001;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    transition: var(--transition);
    border-radius: 2px;
    display: block;
}

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

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

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

/* Hero Section */
.hero {
    margin-top: 130px;
    padding: var(--spacing-xl) 0;
    background-image: url('images/wellnessbodyhero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 154, 158, 0.5) 0%, rgba(255, 184, 140, 0.45) 50%, rgba(255, 200, 117, 0.4) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}
    max-width: 800px;
    margin: 0 auto;
}

.hero h1,
.hero h1.hero-title,
section.hero h1,
.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text);
    font-weight: 600;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Google Review Badge */
.review-badge {
    background: linear-gradient(135deg, var(--color-background-alt) 0%, var(--color-background) 100%);
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.review-badge-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
}

.review-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-text strong {
    font-size: 1.25rem;
    color: var(--color-text);
}

.review-text span {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.btn-review {
    padding: 0.75rem 2rem;
}

/* Section Styles */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-intro {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Endosphères Explainer */
.endospheres-explainer {
    background: var(--color-background);
}

.explainer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-top: var(--spacing-md);
}

.explainer-text h3 {
    margin-top: 1.5rem;
    color: var(--color-primary);
}

.explainer-image {
    background: var(--color-background-alt);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.15);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (9/16 = 0.5625) */
    height: 0;
    overflow: hidden;
    width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.explainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Benefits Section */
.benefits {
    background: var(--color-background-alt);
}

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

.benefit-card {
    background: var(--color-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--color-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.2);
    border-color: var(--color-primary-light);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary-light) 100%);
    border-radius: 50%;
    color: var(--color-primary-dark);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.25);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Featured Services */
.featured-services {
    background: var(--color-background);
}

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

.service-card {
    background: var(--color-background);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid var(--color-border);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.25);
    transform: translateY(-8px);
    border-color: var(--color-primary-light);
}

.service-image {
    background: var(--color-background-alt);
    aspect-ratio: 16/10;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

/* Why Choose Section */
.why-choose {
    background: var(--color-background-alt);
}

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

.reason {
    position: relative;
    padding-left: 4rem;
}

.reason-number {
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-accent);
    line-height: 1;
}

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

.reason p {
    color: var(--color-text-light);
}

/* Location Teaser */
.location-teaser {
    background: var(--color-background);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--color-text-light);
    margin: 0;
}

.location-map {
    background: var(--color-background-alt);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 ratio */
    height: 0;
}

.location-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Location Banner */
.location-banner {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/Water_St_Broad_St_td_2018-08-09_06_-_Fraunces_Tavern_Block_Historic_District.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
}

.location-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.85) 0%, rgba(255, 184, 140, 0.80) 50%, rgba(255, 200, 117, 0.75) 100%);
    z-index: 1;
}

.location-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 3rem 2rem;
}

.location-banner h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.location-banner p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.location-banner .btn-primary:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}

/* Footer */
.footer {
    background: var(--color-text);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.4);
    z-index: 10003;
    pointer-events: auto;
}

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

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.5);
}

.scroll-to-top svg {
    width: 28px;
    height: 28px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-social {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.6);
}


/* ========================================
   SERVICES PAGE
   ======================================== */

.page-hero {
    margin-top: 160px;
    padding: var(--spacing-lg) 0;
    background: var(--color-background-alt);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.service-category {
    padding: var(--spacing-lg) 0;
}

.service-category:nth-child(even) {
    background: var(--color-background-alt);
}

.service-category h2 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary);
}

.service-intro {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

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

.pricing-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    gap: 1rem;
    flex-wrap: wrap;
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-details {
    flex: 1;
    min-width: 0;
}

.pricing-details h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.pricing-details p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin: 0;
}

.pricing-cost {
    text-align: right;
    flex-shrink: 0;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

.package-group {
    margin-top: 1.5rem;
}

.package-group h4 {
    color: var(--color-text);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.cta-section {
    padding: var(--spacing-lg) 0;
    background: var(--color-primary);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.cta-section .btn-primary:hover {
    background: var(--color-background-alt);
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-section {
    padding: var(--spacing-lg) 0;
}

.about-section:nth-child(even) {
    background: var(--color-background-alt);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h3 {
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.about-content ul li {
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) 0;
}

.contact-info-section h3 {
    margin-bottom: 1.5rem;
}

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

.info-box {
    background: var(--color-background-alt);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-primary);
}

.info-box h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.info-box p {
    color: var(--color-text-light);
    margin: 0;
}

.info-box a {
    color: var(--color-text);
    font-weight: 600;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
}

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

/* Contact Form */
.booking-form h3 {
    margin-bottom: 1.5rem;
}

.booking-cta-section {
    display: flex;
    align-items: center;
}

.booking-cta-card {
    background: var(--color-background);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--color-primary);
}

.booking-cta-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.booking-cta-card > p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.booking-cta-content {
    margin-top: 2rem;
}

.phone-display {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--color-accent);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.phone-display svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.phone-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.phone-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    display: block;
}

.phone-number:hover {
    color: var(--color-primary-dark);
}

.booking-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--color-background-alt);
    border-radius: var(--border-radius);
}

.booking-info h4 {
    margin-bottom: 1rem;
    color: var(--color-text);
}

.booking-info ul {
    list-style: none;
    padding: 0;
}

.booking-info ul li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
    color: var(--color-text-light);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(107, 144, 128, 0.1);
}

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

.map-container {
    margin-top: var(--spacing-lg);
    background: var(--color-accent);
    border-radius: var(--border-radius);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: 1.125rem;
}

/* ========================================
   TABLET / IPAD (769px - 1024px)
   ======================================== */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 95%;
        padding: 0 2rem;
    }
    
    .header-content {
        padding: 0 2rem;
    }
    
    /* Ensure scroll button visible on tablet */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    /* Adjust hero for tablet */
    .hero h1 {
        font-size: 2.75rem;
    }
    
    /* Grid adjustments */
    .benefits-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   MOBILE (≤768px)
   ======================================== */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 130px;
    }
    
    /* Prevent ALL horizontal overflow on mobile */
    *,
    *::before,
    *::after {
        max-width: 100%;
        box-sizing: border-box;
    }

    section,
    .container,
    .hero,
    .hero-content,
    .location-banner,
    footer {
        overflow-x: hidden;
        max-width: 100vw;
    }
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.375rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
        margin-top: 2rem;
    }
    
    .hero {
        margin-top: 110px;
    }
    
    .page-hero {
        margin-top: 120px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    /* Header Contact Bar - Mobile (Stacked) */
    .header-contact-bar {
        padding: 0.5rem 0;
    }
    
    .header-contact-content {
        flex-direction: column;
        gap: 0.3rem;
        align-items: flex-start;
        padding: 0 1rem;
    }
    
    .header-address,
    .header-phone {
        font-size: 0.75rem;
        text-align: left;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .header-address svg,
    .header-phone svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }
    
    /* Container */
    .container {
        padding: 0 1.5rem;
    }
    
    /* Pricing button fix on mobile */
    .pricing-cost .btn {
        white-space: nowrap;
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    /* Map fix on mobile */
    .location-map {
        padding-bottom: 80%;
        min-height: 280px;
    }

    /* Spacing */
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    /* Header & Navigation - MOBILE */
    .mobile-menu-toggle {
        display: flex !important;
        order: 2;
    }

    .header-right {
        display: none;
        position: fixed;
        top: 110px;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100vw;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem 2rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        z-index: 9998;
        gap: 1rem;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .header-right.open {
        display: flex;
    }

    .header-right .nav {
        display: block;
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0;
        width: 100%;
    }

    .header-right .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .header-right .nav-list > li {
        border-bottom: 1px solid #f0f0f0;
    }

    .header-right .nav-link {
        display: block;
        padding: 0.85rem 0;
        font-size: 1.05rem;
    }

    .header-right .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        padding: 0 0 0.75rem 1rem;
        margin-top: 0;
        background: transparent;
        border-radius: 0;
        min-width: unset;
    }

    .header-right .dropdown-menu li {
        border: none;
    }

    .header-right .dropdown-menu a {
        padding: 0.4rem 0;
        color: var(--color-text-light);
        font-size: 0.95rem;
    }

    .header-right .dropdown-menu a:hover {
        background: transparent;
        color: var(--color-primary);
    }

    .header-right .header-social {
        display: flex;
        justify-content: center;
        padding: 0.5rem 0;
    }

    .header-right .header-btn {
        text-align: center;
        width: 100%;
        padding: 0.85rem;
    }

    .dropdown-arrow {
        display: none;
    }

    .header .btn-primary:not(.header-btn) {
        display: none;
    }

    .header-social {
        display: none;
    }

    
    .logo-img {
        height: 100px;
    }
    
    /* Grid Layouts */
    .explainer-content,
    .location-content,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .contact-info-grid,
    .info-box {
        width: 100%;
        box-sizing: border-box;
    }
    
    .info-box .btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        white-space: normal;
        padding: 0.75rem 1rem;
    }
    
    .booking-cta-section .btn {
        width: 100% !important;
        box-sizing: border-box;
    }
    
    .phone-number {
        font-size: 1.5rem !important;
    }

    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    /* Hero */
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    /* Reason Numbers */
    .reason {
        padding-left: 3rem;
    }
    
    .reason-number {
        font-size: 2.5rem;
    }
    
    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Location banner responsive */
    .location-banner {
        background-attachment: scroll;
        min-height: 300px;
    }
    
    .location-banner h2 {
        font-size: 2rem;
    }
    
    .location-banner p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   FAQ SECTION - AI SEO Optimized
   ============================================ */
.faq-section {
    padding: var(--spacing-lg) 0;
    background: var(--color-background-alt);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.25rem 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    font-family: var(--font-body);
}

.faq-question:hover {
    color: var(--color-primary);
    background: rgba(255, 107, 157, 0.03);
}

.faq-question[aria-expanded="true"] {
    color: var(--color-primary);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    flex-shrink: 0;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    line-height: 1;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1rem;
}

.faq-answer.open {
    max-height: 500px;
    padding: 0 1rem 1.25rem;
}

.faq-answer p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin: 0;
}

.faq-answer a {
    color: var(--color-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 0.75rem;
    }

    .faq-answer {
        padding: 0 0.75rem;
    }

    .faq-answer.open {
        padding: 0 0.75rem 1rem;
    }
}

/* CRITICAL: Hero H1 must be white - override everything */
section.hero h1,
.hero h1,
.hero-content h1 {
    color: #FFFFFF !important;
}
