/* ============================================
   RESET AND BASE STYLES
   ============================================ */

/* Universal reset: removes default margins, padding, and sets box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base body styling: typography, colors, and layout */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #4a4a4a;
    overflow-x: hidden;          /* Prevents horizontal scrolling */
    background-color: #fefcf8;     /* Warm off-white background */
    font-weight: 400;
    letter-spacing: -0.01em;       /* Slightly tighter letter spacing */
}

/* Container: centers content with max-width and responsive padding */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION
   ============================================ */

/* Fixed navigation bar at top of page */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);  /* Subtle shadow for depth */
    position: fixed;                          /* Stays at top when scrolling */
    top: 0;
    width: 100%;
    z-index: 1000;                           /* Ensures navbar stays above other content */
    transition: all 0.3s ease;               /* Smooth transitions for background changes */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-logo h2 {
    color: #8b7355;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #8b7355;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #8b7355;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger menu icon (hidden on desktop, shown on mobile) */
.hamburger {
    display: none;              /* Hidden by default, shown via media query */
    flex-direction: column;
    cursor: pointer;
}

/* Individual bars of hamburger icon */
.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;          /* Smooth animation when toggling */
}

/* ============================================
   HERO SECTION
   ============================================ */

/* Main hero section with gradient overlay and background image */
.hero {
    /* Gradient overlay (warm earth tones) + background image */
    background: linear-gradient(135deg, rgba(168,181,160,0.9) 0%, rgba(196,184,150,0.9) 50%, rgba(212,196,168,0.9) 100%), 
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    color: white;
    padding: 120px 0 80px;      /* Extra top padding to account for fixed navbar */
    min-height: 100vh;          /* Full viewport height */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;           /* Hides decorative pattern overflow */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="hero-nature" x="0" y="0" width="120" height="120" patternUnits="userSpaceOnUse"><circle cx="60" cy="60" r="8" fill="rgba(255,255,255,0.03)"/><path d="M45,70 Q60,80 75,70" stroke="rgba(255,255,255,0.04)" stroke-width="1" fill="none"/></pattern></defs><rect width="200" height="200" fill="url(%23hero-nature)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-slogan {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-style: italic;
    opacity: 0.9;
    color: #f5f3f0;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: #fff;
    color: #8b7355;
    border-color: #fff;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #8b7355;
}

.hero-image {
    display: none;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

/* Standardized section header styling for consistency */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Section title styling */
.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #8b7355;            /* Brand color */
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

/* Section subtitle/description */
.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;          /* Constrains width for readability */
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

/* About section with gradient overlay and background image */
.about {
    padding: 100px 0;
    /* Light gradient overlay + background image (plants/foliage theme) */
    background: linear-gradient(135deg, rgba(248,246,242,0.95) 0%, rgba(240,242,232,0.95) 100%), 
                url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 180 180"><defs><pattern id="about-nature" x="0" y="0" width="90" height="90" patternUnits="userSpaceOnUse"><circle cx="45" cy="45" r="6" fill="rgba(139,115,85,0.04)"/><path d="M35,50 Q45,60 55,50" stroke="rgba(139,115,85,0.05)" stroke-width="1" fill="none"/></pattern></defs><rect width="180" height="180" fill="url(%23about-nature)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.about-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-text h3 {
    font-size: 2rem;
    color: #8b7355;
    margin-bottom: 1.5rem;
    text-align: center;  /* Center the heading to align with image and section header */
}

/* Practitioner photo styling */
.practitioner-photo {
    text-align: center;
    margin: 2rem 0;
}

.headshot-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.credential-item i {
    color: #8b7355;
    font-size: 1.5rem;
}

.credential-item span {
    font-weight: 600;
    color: #333;
}

.about-image {
    display: none;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

/* Services section with gradient overlay and background image */
.services {
    padding: 100px 0;
    /* Light gradient overlay + background image */
    background: linear-gradient(135deg, rgba(254,252,248,0.95) 0%, rgba(248,246,242,0.95) 100%), 
                url('https://images.unsplash.com/photo-1544027993-37dbfe43562a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 160 160"><defs><pattern id="services-nature" x="0" y="0" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="5" fill="rgba(139,115,85,0.03)"/><path d="M30,45 Q40,55 50,45" stroke="rgba(139,115,85,0.04)" stroke-width="1" fill="none"/></pattern></defs><rect width="160" height="160" fill="url(%23services-nature)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* Service card styling with glassmorphism effect */
.service-card {
    background: rgba(255,255,255,0.95);      /* Semi-transparent white */
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;               /* Smooth hover animations */
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);             /* Glassmorphism blur effect */
}

/* Hover effect: lifts card and increases shadow */
.service-card:hover {
    transform: translateY(-15px);           /* Lift on hover */
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.98);     /* Slightly more opaque on hover */
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a8b5a0, #c4b896);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 30px;
    height: 30px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.4)"/><path d="M35,45 Q50,35 65,45 Q50,55 35,45" fill="rgba(255,255,255,0.5)"/><path d="M40,50 Q50,45 60,50" stroke="rgba(255,255,255,0.6)" stroke-width="2" fill="none"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.9;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #8b7355;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #8b7355;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.service-btn:hover {
    background: #6b5a47;
    transform: translateY(-2px);
}

.services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 0;
}

/* Services CTA section - single consultation button */
.services-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.services-cta-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ============================================
   INSURANCE SECTION
   ============================================ */

/* Insurance section displaying accepted providers */
.insurance {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(248,246,242,0.95) 0%, rgba(240,242,232,0.95) 100%), 
                url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow-x: hidden;  /* Prevent horizontal scrolling on mobile */
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.insurance-item {
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    color: #8b7355;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.insurance-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: rgba(255,255,255,0.98);
}

/* Mindful Reads Section */
.mindful-reads {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(240,242,232,0.95) 0%, rgba(248,246,242,0.95) 100%), 
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.mindful-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mindful-text h2 {
    color: #8b7355;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 1.5rem;
}

.mindful-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

.mindful-image {
    display: none;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

/* Contact section with contact info and patient portal */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(240,242,232,0.95) 0%, rgba(248,246,242,0.95) 100%), 
                url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="contact-nature" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="4" fill="rgba(139,115,85,0.04)"/><path d="M40,55 Q50,65 60,55" stroke="rgba(139,115,85,0.05)" stroke-width="1" fill="none"/></pattern></defs><rect width="200" height="200" fill="url(%23contact-nature)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.contact-item i {
    color: #8b7355;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: #8b7355;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    line-height: 1.5;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: rgba(255,255,255,0.98);
}

.contact-form {
    background: rgba(255,255,255,0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-form h3 {
    color: #8b7355;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b7355;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ============================================
   FOOTER
   ============================================ */

/* Footer with gradient background and site links */
.footer {
    background: linear-gradient(135deg, #8b7355, #a8b5a0);  /* Brand color gradient */
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="footer-nature" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="5" fill="rgba(255,255,255,0.06)"/><path d="M40,55 Q50,65 60,55" stroke="rgba(255,255,255,0.08)" stroke-width="1" fill="none"/></pattern></defs><rect width="200" height="200" fill="url(%23footer-nature)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    color: #b8c5d1;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #b8c5d1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #a8b5a0;
    padding-top: 1rem;
    text-align: center;
    color: #b8c5d1;
    position: relative;
    z-index: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet and mobile breakpoint (768px and below) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .insurance-grid {
        grid-template-columns: 1fr;  /* Single column on mobile to prevent overflow */
    }
    
    .logo-img {
        height: 35px;
    }
}

/* Small mobile breakpoint (480px and below) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
}

/* ============================================
   UTILITY STYLES
   ============================================ */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Fade-in and slide-up animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);    /* Start 30px below */
    }
    to {
        opacity: 1;
        transform: translateY(0);        /* End at normal position */
    }
}

.service-card,
.contact-item {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   SPECIALTIES SECTION
   ============================================ */

/* Specialties section listing conditions and populations served */
.specialties {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.specialties-content {
    margin-top: 3rem;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.specialty-category {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialty-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.specialty-category h3 {
    color: #8b7355;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.specialty-category ul {
    list-style: none;
}

.specialty-category li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.specialty-category li:hover {
    color: #8b7355;
}

.specialty-category li:last-child {
    border-bottom: none;
}

.client-focus {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.client-focus h3 {
    color: #8b7355;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.focus-item h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.focus-item p {
    color: #666;
    line-height: 1.6;
}

/* ============================================
   TREATMENT APPROACHES SECTION
   ============================================ */

/* Treatment approaches section displaying therapeutic methodologies */
.treatment-approaches {
    padding: 80px 0;
    background: #fff;
}

.approaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.approach-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.approach-card:hover {
    transform: translateY(-5px);
    border-color: #8b7355;
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.15);
}

.approach-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b7355, #a68b5b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
    font-size: 1.5rem;
}

.approach-card h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.approach-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive design for specialties and treatment approaches sections */
@media (max-width: 768px) {
    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .specialty-category {
        padding: 1.5rem;
    }
    
    .client-focus {
        padding: 2rem;
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .approaches-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .approach-card {
        padding: 1.5rem;
    }
}

/* ============================================
   LEGAL PAGES STYLING
   ============================================ */

/* Styling for privacy policy and terms of service pages */
.legal-content {
    padding: 120px 0 80px;      /* Extra top padding for fixed navbar */
    background: #fff;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #8b7355;
}

.legal-header h1 {
    color: #8b7355;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.last-updated {
    color: #666;
    font-style: italic;
    font-size: 1rem;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-body h2 {
    color: #8b7355;
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    font-weight: 600;
    border-left: 4px solid #8b7355;
    padding-left: 1rem;
}

.legal-body h3 {
    color: #333;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
    font-weight: 600;
}

.legal-body p {
    margin-bottom: 1rem;
    color: #555;
}

.legal-body ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-body li {
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #8b7355;
}

.contact-info p {
    margin: 0;
    color: #333;
    font-weight: 500;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-body h2 {
        font-size: 1.3rem;
    }
    
    .legal-body {
        padding: 0 1rem;
    }
}

/* ============================================
   COMING SOON STYLING
   ============================================ */

/* Badge styling for "Coming Soon" sections */
.coming-soon {
    display: inline-block;
    background: linear-gradient(135deg, #8b7355, #a68b5b);  /* Brand gradient */
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;       /* Pill-shaped */
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
    transition: all 0.3s ease;
}

.coming-soon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.4);
}

/* ============================================
   PATIENT PORTAL STYLING
   ============================================ */

/* Patient portal section in contact area */
.patient-portal {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.patient-portal h3 {
    color: #8b7355;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.patient-portal p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.portal-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.portal-buttons .btn {
    flex: 1;
    min-width: 200px;
    text-align: center;
    text-decoration: none;
}

.portal-buttons .btn-primary {
    background: #8b7355;
    color: #fff;
    border: 2px solid #8b7355;
}

.portal-buttons .btn-primary:hover {
    background: #a68b5b;
    border-color: #a68b5b;
    color: #fff;
}

.portal-buttons .btn-secondary {
    background: #d4c4a8;
    color: #8b7355;
    border: 2px solid #d4c4a8;
}

.portal-buttons .btn-secondary:hover {
    background: #c7b299;
    border-color: #c7b299;
    color: #8b7355;
}

.portal-info {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.portal-info p {
    margin: 0;
    color: #856404;
    font-size: 0.9rem;
    line-height: 1.5;
}

.portal-info strong {
    color: #856404;
}

/* Responsive Design for Patient Portal */
@media (max-width: 768px) {
    .portal-buttons {
        flex-direction: column;
    }
    
    .portal-buttons .btn {
        min-width: auto;
    }
    
    .patient-portal {
        padding: 2rem;
    }
}