/* ===================================
   The Family Dietitians - Main Stylesheet
   =================================== */

/* Font Face Declarations */
@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis/Metropolis-Bold.woff') format('woff'),
         url('../fonts/metropolis/Metropolis-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis/Metropolis-SemiBold.woff') format('woff'),
         url('../fonts/metropolis/Metropolis-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis/Metropolis-Medium.woff') format('woff'),
         url('../fonts/metropolis/Metropolis-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis/Metropolis-Regular.woff') format('woff'),
         url('../fonts/metropolis/Metropolis-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis/Metropolis-Light.woff') format('woff'),
         url('../fonts/metropolis/Metropolis-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Intro Bold Alt';
    src: url('../fonts/intro/fontfabric_-_introboldalt-webfont.woff2') format('woff2'),
         url('../fonts/intro/fontfabric_-_introboldalt-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

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

:root {
    /* Brand Colors from original site */
    --primary-teal: #78cdd1;
    --primary-orange: #ffae87;
    --light-green: #e2f2a5;
    --light-teal: #aee1e3;
    --light-blue: #dff3f3;
    --text-dark: #313233;
    --text-gray: #848991;
    --border-light: #efefef;
    --white: #ffffff;
}

body {
    font-family: 'Metropolis', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: 'Metropolis', sans-serif;
}

h1 {
    font-size: 2.5rem;
    font-weight: 400;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    font-family: 'Intro Bold Alt', 'Metropolis', sans-serif;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Header */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    height: 60px;
}

.logo img {
    height: 100%;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
}

nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
}

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

/* Dropdown menu */
nav li {
    position: relative;
}

nav .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 220px;
    padding: 10px 0;
    margin-top: 10px;
}

nav li:hover .dropdown {
    display: block;
}

nav .dropdown li {
    display: block;
}

nav .dropdown a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
}

nav .dropdown a:hover {
    background: #f9f9f9;
    color: var(--primary-teal);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: #69b8bc;
    color: var(--white);
}

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

.btn-secondary:hover {
    background: #f78d2a;
    color: var(--white);
}

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

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

/* Menu CTA Button */
.menu-cta {
    margin-left: 10px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 130px 0 170px;
    position: relative;
}

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

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 60px;
    color: var(--text-gray);
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-light {
    background: var(--white);
}

.section-teal {
    background: var(--light-teal);
    background: rgba(174, 225, 227, 0.4);
}

.section-blue {
    background: var(--light-blue);
}

.section-green {
    background: var(--light-green);
    background: rgba(226, 242, 165, 0.4);
}

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

.section-header h2,
.section-header h3 {
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Philosophy Section */
.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.philosophy-image img {
    width: 100%;
    border-radius: 50%;
}

.philosophy-list {
    list-style: none;
    margin-bottom: 60px;
}

.philosophy-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.philosophy-list .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.philosophy-list strong {
    display: block;
    margin-bottom: 5px;
}

/* Locations List */
.locations-list {
    list-style: none;
    padding: 0 0 0 0.5rem;
    margin: 0 0 20px 0;
}

.locations-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 1rem;
}

.locations-list li .icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    margin: 0;
    border: none;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    text-align: center;
    padding: 0 30px;
}

.service-card .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-orange);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
}

.service-card h5 {
    margin-bottom: 15px;
}

.service-card h5,
.service-card h5 a {
    color: var(--primary-orange);
}

.service-card h5 a:hover {
    color: #f78d2a;
}

/* News/Blog Cards */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.news-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.news-card-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--light-teal);
}

.news-card-content {
    padding: 30px;
}

.news-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.news-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.news-card a {
    color: var(--text-dark);
}

.news-card a:hover {
    color: var(--primary-teal);
}

/* Testimonial */
.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-icon {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 1.375rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 30px;
}

/* CTA Section */
.cta {
    text-align: center;
}

.cta h2 {
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: var(--white);
    border-top: 1px solid var(--border-light);
    padding: 50px 0 30px;
}

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

.footer-col h5 {
    margin-bottom: 20px;
}

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

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

.footer-col a {
    color: var(--text-gray);
}

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

.footer-col-logo {
    text-align: center;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--text-gray);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info .icon {
    color: var(--primary-teal);
    font-size: 20px;
    margin-top: 2px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-teal);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px 30px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    nav ul.active {
        display: flex;
    }

    .menu-cta {
        margin-left: 0;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px solid var(--border-light);
    }

    .menu-cta .btn {
        display: block;
        text-align: center;
    }

    .hero-content,
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero {
        padding: 80px 0 100px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    .btn {
        display: block;
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-underline {
    text-decoration: underline;
}

.mb-small {
    margin-bottom: 15px;
}

.mb-medium {
    margin-bottom: 30px;
}

.mb-large {
    margin-bottom: 60px;
}

/* ===================================
   Shape Dividers (Tatsu-style)
   =================================== */
.shape-divider {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.shape-divider-top {
    top: 0;
}

.shape-divider-bottom {
    bottom: 0;
    transform: scaleY(-1);
}

.shape-divider svg .shape-fill {
    fill: #FFFFFF;
}

.shape-divider-teal svg .shape-fill {
    fill: rgba(174, 225, 227, 0.4);
}

.shape-divider-blue svg .shape-fill {
    fill: #dff3f3;
}

/* Section with shape divider needs relative positioning and extra padding */
.section-with-divider {
    position: relative;
    overflow: visible;
}

.section-with-divider-top {
    padding-top: 100px;
}

.section-with-divider-bottom {
    padding-bottom: 100px;
}

/* ===================================
   Floating Decorative Elements
   =================================== */
.floating-decoration {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.floating-decoration img {
    max-width: 100%;
    height: auto;
}

.decoration-orange {
    width: 80px;
}

.decoration-pear {
    width: 70px;
}

.decoration-strawberry {
    width: 60px;
}

.decoration-beet {
    width: 70px;
}

.hero-decorations .floating-decoration:nth-child(1) {
    top: 15%;
    left: 5%;
}

.hero-decorations .floating-decoration:nth-child(2) {
    top: 60%;
    left: 2%;
}

.hero-decorations .floating-decoration:nth-child(3) {
    top: 20%;
    right: 3%;
}

.hero-decorations .floating-decoration:nth-child(4) {
    bottom: 15%;
    right: 5%;
}

/* ===================================
   Enhanced Section Backgrounds
   =================================== */
.section-teal {
    background: linear-gradient(180deg, rgba(174, 225, 227, 0.4) 0%, rgba(174, 225, 227, 0.3) 100%);
    position: relative;
}

.section-blue {
    background: linear-gradient(180deg, #dff3f3 0%, #e8f6f6 100%);
    position: relative;
}

.section-green {
    background: linear-gradient(180deg, rgba(226, 242, 165, 0.4) 0%, rgba(226, 242, 165, 0.3) 100%);
    position: relative;
}

.section-green-accent {
    background: linear-gradient(180deg, rgba(226, 242, 165, 0.3) 0%, rgba(226, 242, 165, 0.15) 100%);
}

/* ===================================
   Enhanced Typography (Exponent-style)
   =================================== */
h1, h2, h3 {
    font-weight: 400;
    letter-spacing: -0.02em;
}

h6 {
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--text-gray);
}

.section-subtitle {
    font-family: 'Intro Bold Alt', 'Metropolis', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

/* ===================================
   Enhanced Buttons (Exponent-style)
   =================================== */
.btn {
    font-family: 'Intro Bold Alt', 'Metropolis', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #6bc0c4 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ffa070 100%);
}

.btn-large {
    padding: 20px 45px;
    font-size: 14px;
}

/* ===================================
   Enhanced Header (Exponent-style)
   =================================== */
header {
    border-bottom: none;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    padding: 15px 30px;
}

.logo {
    height: 50px;
}

nav a {
    font-family: 'Intro Bold Alt', 'Metropolis', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 15px;
}

nav > ul > li > a {
    position: relative;
}

nav > ul > li:not(.menu-cta) > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-teal);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav > ul > li:not(.menu-cta):hover > a::after {
    width: 100%;
}

/* ===================================
   Enhanced Hero Section
   =================================== */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f9fffe 50%, rgba(174, 225, 227, 0.15) 100%);
    overflow: visible;
}

.hero-text h1 {
    font-family: 'Intro Bold Alt', 'Metropolis', sans-serif;
    font-size: 3.5rem;
    font-weight: normal;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 1.375rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 40px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* ===================================
   Enhanced Philosophy Section
   =================================== */
.philosophy-image {
    position: relative;
}

.philosophy-image img {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.philosophy-list .icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.philosophy-list li {
    margin-bottom: 25px;
}

.philosophy-list strong {
    font-size: 1.1rem;
    font-weight: 500;
}

/* ===================================
   Enhanced Services Section
   =================================== */
.services-grid {
    gap: 50px 60px;
}

.service-card .icon {
    width: 90px;
    height: 90px;
    border-width: 2px;
    transition: all 0.3s ease;
}

.service-card:hover .icon {
    background: var(--primary-orange);
    color: var(--white);
    transform: scale(1.05);
}

.service-card h5 {
    font-size: 1.35rem;
    font-weight: 500;
}

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

/* ===================================
   Enhanced News Cards
   =================================== */
.news-card {
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-orange);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.news-card-image {
    background: linear-gradient(135deg, var(--light-teal) 0%, var(--light-blue) 100%);
}

.news-card-content {
    padding: 25px 30px 30px;
}

.news-card-meta span:first-child {
    font-family: 'Intro Bold Alt', 'Metropolis', sans-serif;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--primary-teal);
    color: white;
    padding: 4px 10px;
    border-radius: 3px;
}

/* ===================================
   Enhanced Testimonial Section
   =================================== */
.testimonial-text {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-dark);
}

.testimonial-text p {
    margin-bottom: 0;
}

.testimonial-icon {
    color: rgba(120, 205, 209, 0.3);
    font-size: 4rem;
}

/* ===================================
   Enhanced CTA Section
   =================================== */
.cta {
    padding: 100px 0;
}

.cta h2 {
    font-family: 'Intro Bold Alt', 'Metropolis', sans-serif;
    font-size: 2.5rem;
    font-weight: normal;
}

.cta p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-with-image {
    text-align: left;
}

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

.cta-with-image .cta-text {
    max-width: 500px;
}

.cta-with-image .cta-text p {
    margin: 0 0 40px;
    color: var(--text-dark);
}

.cta-with-image .cta-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 50%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    margin-left: auto;
    display: block;
}

@media (max-width: 768px) {
    .cta-with-image .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-with-image .cta-text {
        max-width: 100%;
    }

    .cta-with-image .cta-image img {
        margin: 0 auto;
        max-width: 300px;
    }
}

/* ===================================
   Enhanced Footer
   =================================== */
footer {
    border-top: none;
    background: var(--white);
    padding: 70px 0 40px;
}

.footer-col h5 {
    font-family: 'Intro Bold Alt', 'Metropolis', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
}

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

.footer-col a {
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-teal);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
}

/* ===================================
   Page Headers (inner pages)
   =================================== */
.page-header {
    background: rgba(174, 225, 227, 0.4);
    padding: 60px 0 100px;
    position: relative;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Intro Bold Alt', 'Metropolis', sans-serif;
}

.page-header .breadcrumb {
    font-family: 'Intro Bold Alt', 'Metropolis', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-gray);
}

.page-header .breadcrumb a {
    color: var(--text-gray);
}

.page-header .breadcrumb a:hover {
    color: var(--primary-teal);
}

/* ===================================
   Responsive Adjustments for Enhanced Styles
   =================================== */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.75rem;
    }

    .shape-divider svg {
        height: 60px;
    }

    .floating-decoration {
        display: none;
    }
}

@media (max-width: 768px) {
    .shape-divider svg {
        height: 40px;
    }

    .section-with-divider-top {
        padding-top: 100px;
    }

    .section-with-divider-bottom {
        padding-bottom: 100px;
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .hero-text p {
        font-size: 1.125rem;
    }

    .page-header {
        padding: 80px 0 100px;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }
}

/* Appointment Form Grid */
.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

 /* FAQ Accordion Styles */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Intro Bold Alt', 'Metropolis', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(174, 225, 227, 0.1);
}

.faq-question.active {
    background-color: rgba(174, 225, 227, 0.2);
}

.faq-question .icon {
    font-size: 1rem;
    color: var(--primary-teal);
    transition: transform 0.3s ease;
}

.faq-question.active .icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fff;
}

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

.faq-answer-content {
    padding: 20px 25px 20px 25px;
    color: var(--text-body);
    line-height: 1.7;
}

.faq-answer-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer-content li {
    margin-bottom: 8px;
}

.faq-answer-content a {
    color: var(--primary-teal);
}

/* Healthcare Professionals Section */
.healthcare-section {
    background: rgba(174, 225, 227, 0.2);
}

.healthcare-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.healthcare-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.healthcare-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
