/* Ordinacija Dr Jevdić - Modern CSS Stylesheet */

:root {
    --primary: #2d5a4a;
    --primary-light: #4a8b6f;
    --primary-dark: #1a3d30;
    --secondary: #c4a77d;
    --secondary-light: #d9c9a8;
    --accent: #8b9dc3;
    --white: #ffffff;
    --off-white: #faf9f7;
    --cream: #f5f3ef;
    --light-gray: #e8e6e1;
    --gray: #9a9590;
    --dark-gray: #4a4744;
    --black: #2d2a26;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --border-color: var(--light-gray);
    /* Cookie banner z-index */
    --z-cookie-banner: 10000;
    --z-cookie-modal: 10001;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); font-weight: 400; line-height: 1.7; color: var(--dark-gray); background-color: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--primary-light); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    color: var(--black);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background-color: var(--cream); }

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.section-title { font-size: 2.75rem; margin-bottom: 1rem; }
.section-title.centered { text-align: center; }
.section-subtitle { text-align: center; color: var(--gray); max-width: 600px; margin: 0 auto 3rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

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

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

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

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

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

.btn-light {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
}

.btn-light:hover {
    background-color: var(--off-white);
    color: var(--primary-dark);
}

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

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

.btn-nav {
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-full { width: 100%; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 3rem;
}

.nav-left {
    flex-shrink: 0;
    padding-left: 0.5rem;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-shrink: 0;
    padding-right: 0.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
}

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

.logo-icon {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a8d5ba 0%, #8fd1a4 50%, #7bc98f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(139, 209, 164, 0.4), inset 0 -2px 8px rgba(0,0,0,0.08);
    z-index: 2;
    animation: logo-float 4s ease-in-out infinite;
}

/* Logo icon particles (on the icon itself) */
.logo-particle {
    position: absolute;
    width: 32px;
    height: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: logo-float-symbol 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
}

.logo-particle-1 {
    background-image: url('../images/leaf.png');
    top: -12px;
    right: -10px;
    animation-delay: 0s;
}

.logo-particle-2 {
    background-image: url('../images/sakura.png');
    bottom: -12px;
    left: -10px;
    animation-delay: 3s;
}

.logo-particle-3 {
    background-image: url('../images/greenlotus.png');
    top: -12px;
    left: -10px;
    animation-delay: 1.5s;
}

/* Floating decorative rings */
.logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
}

.logo-ring-1 {
    width: 72px;
    height: 72px;
    border: 2px solid rgba(45, 90, 74, 0.3);
    animation: logo-ring-rotate 12s linear infinite;
}

.logo-ring-2 {
    width: 88px;
    height: 88px;
    border: 1px solid rgba(45, 90, 74, 0.2);
    animation: logo-ring-rotate 18s linear infinite reverse;
}

/* Ring particles - all float and fade in/out - simple dots without PNG */
.ring-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    animation: ring-particle-float 4s ease-in-out infinite;
    pointer-events: none;
    opacity: 0;
}

@keyframes logo-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-4px) rotate(1deg); }
}

@keyframes logo-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(139, 209, 164, 0.4), inset 0 -2px 8px rgba(0,0,0,0.08);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 24px rgba(139, 209, 164, 0.6), inset 0 -2px 8px rgba(0,0,0,0.08);
    }
}

@keyframes logo-float-symbol {
    0%, 100% { transform: translateY(0) scale(1) rotate(0deg); opacity: 0.8; }
    25% { transform: translateY(-6px) scale(1.1) rotate(-5deg); opacity: 1; }
    50% { transform: translateY(0) scale(1) rotate(0deg); opacity: 0.8; }
    75% { transform: translateY(4px) scale(0.95) rotate(5deg); opacity: 0.6; }
}

@keyframes logo-ring-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
    white-space: nowrap;
}

.nav-menu a {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-menu a.active {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--black);
    transition: all 0.3s ease;
}

/* Nav Phones */
.nav-phones {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-phone {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    background-color: rgba(45, 90, 74, 0.08);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-phone:hover {
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(26, 61, 48, 0.95) 0%, rgba(45, 90, 74, 0.7) 50%, rgba(45, 90, 74, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    max-width: 600px;
    padding: 2rem;
    margin-right: auto;
    margin-left: 5%;
}

.hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--secondary-light);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-style: italic;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--secondary), transparent);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 0; transform: translateY(-10px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(10px); }
}

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

/* Page Header */
.page-header {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, #e8f0ed 0%, #f5f3ef 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header[style*="background-image"] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 61, 48, 0.92) 0%, rgba(45, 90, 74, 0.8) 100%);
}

.page-header[style*="background-image"] .page-header-content h1 {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.page-header[style*="background-image"] .page-header-content p {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.page-header-content h1 {
    font-size: 3.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.page-header-content p {
    font-size: 1.25rem;
    color: var(--gray);
}

/* About Preview */
.about-preview { padding: 6rem 0; }

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

.about-image {
    position: relative;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
    border-radius: 12px;
    padding: 4rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-placeholder.large {
    min-height: 500px;
}

.image-placeholder.tall {
    min-height: 450px;
}

.placeholder-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
}

.image-placeholder p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--dark-gray);
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.about-photo, .about-photo-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.about-photo-large {
    min-height: 480px;
}

.method-image {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.method-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.doctor-photo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 -5px 20px rgba(0,0,0,0.1);
    animation: float 6s ease-in-out infinite;
}

.about-content h2 { margin-bottom: 1.5rem; }

.about-text {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.credentials-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.credentials-list li {
    position: relative;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
}

.credentials-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.service-link {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

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

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Conditions Section */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.condition-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.condition-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.condition-icon {
    font-size: 1.5rem;
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark-gray);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.author-info strong {
    display: block;
    color: var(--black);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
}

.feature-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--secondary-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.feature-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--light-gray);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.8fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    background: linear-gradient(135deg, #a8d5ba 0%, #8fd1a4 50%, #7bc98f 100%);
    color: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(139, 209, 164, 0.4), inset 0 -2px 8px rgba(0,0,0,0.08);
    animation: logo-float 4s ease-in-out infinite;
}

/* Footer logo particles - simpler, slower animation */
.footer-brand .logo-particle {
    animation-duration: 8s;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
}

.footer h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

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

.footer ul li a {
    color: var(--gray);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.contact-list li {
    display: flex;
    gap: 1rem;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-icon {
    font-size: 1.25rem;
}

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

.footer-bottom p {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

/* ===== NEW SECTIONS: Kako tretiramo & Šta lečimo ===== */

/* Methods Grid */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.method-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary);
}

.method-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.method-card p {
    font-size: 0.95rem;
    color: var(--gray);
}

.methods-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Conditions Categories (Šta lečimo) */
.conditions-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.condition-category {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.condition-category h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light-gray);
}

.condition-list {
    padding-left: 0;
}

.condition-list li {
    position: relative;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: var(--dark-gray);
    font-size: 0.95rem;
    list-style: none;
}

.condition-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.25rem;
}

.conditions-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Conditions Detailed (FAQ / Šta lečimo page) */
.condition-category-section {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--secondary);
}

.condition-group {
    margin-bottom: 2rem;
}

.condition-group h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.condition-detail-list {
    padding-left: 0;
}

.condition-detail-list li {
    position: relative;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    color: var(--dark-gray);
    font-size: 0.95rem;
    list-style: none;
}

.condition-detail-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.treatment-note {
    background-color: var(--cream);
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 3rem;
}

.treatment-note h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.treatment-note p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .methods-grid { grid-template-columns: repeat(2, 1fr); }
    .conditions-categories { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .methods-grid { grid-template-columns: 1fr; }
    .conditions-categories { grid-template-columns: 1fr; }
    .conditions-grid-small { grid-template-columns: 1fr; }
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper h2 {
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

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

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card, .hours-card {
    background-color: var(--cream);
    border-radius: 12px;
    padding: 1.5rem;
}

.info-card h3, .hours-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.info-card > p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.info-icon {
    font-size: 1.5rem;
}

.info-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.info-content p {
    color: var(--gray);
    font-size: 0.95rem;
}

.info-link {
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.25rem;
}

.hours-table {
    width: 100%;
}

.hours-table td {
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--dark-gray);
}

.hours-table td:last-child {
    color: var(--gray);
    text-align: right;
}

.hours-note {
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
    margin-top: 1rem;
}

.emergency-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    color: var(--white);
}

.emergency-card h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.emergency-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Map Section */
.map-section { padding: 0; }

.map-container {
    background: linear-gradient(135deg, #e8f0ed 0%, #d8e3dd 100%);
    padding: 3rem 2rem;
    text-align: center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-container h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.map-address {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.map-container iframe {
    width: 100%;
    max-width: 800px;
    height: 400px;
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
    display: block;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
}

.parking-info li {
    position: relative;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

.parking-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* What to Expect */
.expect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.expect-item {
    text-align: center;
    padding: 2rem 1rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.expect-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.expect-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.expect-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Insurance Verification */
.insurance-verify {
    background-color: var(--primary-dark);
    color: var(--white);
}

.verify-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.verify-content > p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.verify-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
}

.verify-form p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.verify-form ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.verify-form li {
    margin-bottom: 0.5rem;
    list-style: disc;
    opacity: 0.9;
}

.verify-form a {
    color: var(--secondary-light);
    font-weight: 600;
}

/* Large Testimonial */
.testimonial-large {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 2rem;
}

.testimonial-quote {
    font-size: 5rem;
    font-family: var(--font-heading);
    color: var(--secondary-light);
    line-height: 1;
    margin-bottom: -2rem;
}

.testimonial-large p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.testimonial-author-large div {
    text-align: left;
}

.testimonial-author-large strong {
    display: block;
    color: var(--black);
}

.testimonial-author-large span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-category {
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.category-icon {
    font-size: 2rem;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    transition: all 0.3s ease;
}

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

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

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

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

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer ul li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    list-style: none;
}

.faq-answer ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.conditions-grid-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1rem 0;
}

.conditions-grid-small ul li {
    list-style: disc;
}

.faq-cta {
    padding: 4rem 0;
}

.cta-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-card h2 {
    margin-bottom: 1rem;
}

.cta-card p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* Services Detail Page */
.services-intro {
    padding: 4rem 0;
    text-align: center;
}

.intro-content h2 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.intro-content p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.1rem;
}

.service-detail {
    padding: 4rem 0;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-grid.reverse {
    direction: rtl;
}

.service-grid.reverse > * {
    direction: ltr;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.service-content h2 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.service-price {
    display: inline-block;
    background-color: var(--cream);
    color: var(--primary);
    padding: 0.375rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-content h3 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
    color: var(--primary-dark);
}

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

.service-content h4 {
    font-size: 1rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--dark-gray);
}

.conditions-list {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.conditions-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    list-style: none;
}

.conditions-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.service-duration {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: var(--cream);
    border-radius: 8px;
    color: var(--primary-dark);
    font-weight: 500;
}

.duration-icon {
    font-size: 1.25rem;
}

.service-image .image-placeholder {
    min-height: 400px;
}

/* Additional Services */
.additional-services {
    padding: 4rem 0;
}

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

.service-card-small {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.service-card-small:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card-small .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card-small h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.service-card-small p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.service-price-small {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.375rem 0.875rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Pricing */
.pricing {
    padding: 4rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.pricing-card > p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    list-style: none;
}

.pricing-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.pricing-note {
    text-align: center;
    color: var(--gray);
    margin-top: 2rem;
    font-size: 0.95rem;
}

/* Insurance */
.insurance {
    padding: 4rem 0;
}

.insurance-content {
    max-width: 800px;
    margin: 0 auto;
}

.insurance-content h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.insurance-content > p {
    text-align: center;
    color: var(--gray);
    margin-bottom: 2rem;
}

.insurance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.insurance-item h4 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.insurance-item ul {
    padding-left: 1.5rem;
}

.insurance-item ul li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    list-style: disc;
}

.insurance-note {
    text-align: center;
    color: var(--gray);
    font-style: italic;
}

/* About Page */
.about-main { padding: 4rem 0; }

.about-grid-full {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.image-caption {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: var(--cream);
    border-radius: 8px;
    font-style: italic;
    color: var(--dark-gray);
    text-align: center;
}

.about-content-full h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.about-content-full p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* Credentials */
.credentials { padding: 4rem 0; }

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.credential-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.credential-icon {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.credential-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.credential-card ul li {
    margin-bottom: 0.75rem;
    color: var(--gray);
    font-size: 0.95rem;
}

.credential-card ul li strong {
    color: var(--dark-gray);
}

/* Philosophy */
.philosophy { padding: 4rem 0; }

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

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.philosophy-item p {
    color: var(--dark-gray);
}

/* Specializations */
.specializations { padding: 4rem 0; }

.specializations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.specialization-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.spec-icon {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.specialization-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.specialization-card p {
    color: var(--dark-gray);
    line-height: 1.8;
}

/* Education */
.education { padding: 4rem 0; }

.education-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.education-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.education-content p {
    margin-bottom: 1rem;
}

.education-list {
    padding-left: 1.5rem;
    margin-top: 1.5rem;
}

.education-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    list-style: none;
    color: var(--dark-gray);
}

.education-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.25rem;
}

.education-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background-color: var(--cream);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Personal Note */
.personal-note { padding: 4rem 0; }

.note-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--cream);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
}

.note-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.note-card blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.signature {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    .hero-title { font-size: 3.5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .conditions-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-slider { grid-template-columns: 1fr 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .service-grid.reverse { direction: ltr; }
    .about-grid-full { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .credentials-grid { grid-template-columns: 1fr 1fr; }
    .philosophy-grid { grid-template-columns: 1fr; }
    .specializations-grid { grid-template-columns: 1fr; }
    .education-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-5px); }
    .insurance-grid { grid-template-columns: 1fr; }
    .expect-grid { grid-template-columns: 1fr 1fr; }
    .services-grid-small { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 3.5rem 0; }
    .page-header { padding: 8rem 0 3rem; }
    .page-header-content h1 { font-size: 2.5rem; }
    .hero-title { font-size: 2.75rem; }
    .hero-tagline { font-size: 1.25rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-content { margin-left: 0; text-align: center; max-width: 100%; }
    .hero-overlay { background: linear-gradient(90deg, rgba(26, 61, 48, 0.95) 0%, rgba(45, 90, 74, 0.8) 100%); }
    .btn { width: 100%; max-width: 280px; }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-center {
        flex-direction: column;
        align-items: flex-end;
        gap: 1rem;
        width: 100%;
    }
    .nav-right {
        flex-direction: column;
        align-items: flex-end;
        gap: 1rem;
        width: 100%;
        padding-top: 1rem;
        border-top: 1px solid var(--light-gray);
    }
    .nav-toggle { display: flex; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .nav-phones {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.5rem;
        width: 100%;
    }

    .btn-nav {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }
    .features-grid { grid-template-columns: 1fr; }
    .testimonials-slider { grid-template-columns: 1fr; }
    .expect-grid { grid-template-columns: 1fr; }
    .services-grid-small { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .contact-list li { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .cta-content h2 { font-size: 2rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .conditions-grid-small { grid-template-columns: 1fr; }
    .education-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    h1 { font-size: 2.25rem; }
    h2 { font-size: 2rem; }
    .hero-title { font-size: 2.25rem; }
    .section-title { font-size: 2rem; }
    .education-stats { grid-template-columns: 1fr; }
    .stat-number { font-size: 2.5rem; }
    .btn { padding: 0.75rem 1.5rem; }
    .nav-container { padding: 0 1rem; }
}

/* ===== COOKIE CONSENT BANNER & MODAL ===== */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-cookie-banner);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    background: linear-gradient(180deg, transparent, rgba(45, 90, 74, 0.02) 20%, var(--white));
    box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
    padding: 1.5rem 0 1rem;
}

#cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-banner-text h3 {
    font-size: 1.125rem;
    margin-bottom: 0.375rem;
    color: var(--primary-dark);
}

.cookie-banner-text p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    max-width: 600px;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

#cookie-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-cookie-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1.5rem;
}

#cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(45, 90, 74, 0.6);
    backdrop-filter: blur(4px);
}

.cookie-modal {
    position: relative;
    background-color: var(--white);
    border-radius: 16px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

#cookie-modal.show .cookie-modal {
    transform: scale(1);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.cookie-modal-header h2 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary-dark);
}

.cookie-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gray);
    transition: all 0.2s ease;
}

.cookie-modal-close:hover {
    background-color: var(--cream);
    color: var(--primary-dark);
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.cookie-category-header strong {
    font-size: 1rem;
    color: var(--black);
}

.cookie-category-desc {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.badge-necessary { background-color: var(--cream); color: var(--primary-dark); }
.badge-functional { background-color: #e8f5e9; color: #2d5a4a; }
.badge-analytics { background-color: #e3f2fd; color: #1565c0; }
.badge-marketing { background-color: #fce4ec; color: #c2185b; }

.cookie-toggle {
    flex-shrink: 0;
}

.cookie-toggle input {
    display: none;
}

.toggle-slider {
    position: relative;
    width: 52px;
    height: 28px;
    background-color: var(--light-gray);
    border-radius: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.cookie-toggle input:checked + .toggle-slider {
    background-color: var(--primary);
}

.cookie-toggle input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

.cookie-toggle.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-toggle.disabled .toggle-slider {
    background-color: var(--light-gray);
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--light-gray);
    text-align: right;
}

/* Responsive for cookie banner/modal */
@media (max-width: 600px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
    .cookie-banner-actions .btn {
        flex: 1;
        min-width: 0;
    }
    .cookie-category {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .cookie-toggle {
        align-self: flex-end;
    }
}

/* Legal content pages */
.legal-content {
    padding: 3rem 0 5rem;
}

.legal-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light-gray);
    color: var(--primary-dark);
}

.legal-content h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: var(--primary-dark);
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-content ul li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    list-style: none;
}

.legal-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.legal-content table.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.legal-content table.data-table th,
.legal-content table.data-table td {
    padding: 0.875rem 1rem;
    border: 1px solid var(--light-gray);
    text-align: left;
    vertical-align: top;
}

.legal-content table.data-table th {
    background-color: var(--cream);
    color: var(--primary-dark);
    font-weight: 600;
}

.legal-content table.data-table tr:nth-child(even) td {
    background-color: var(--off-white);
}

.legal-content code {
    background-color: var(--cream);
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    font-size: 0.875em;
    font-family: 'SF Mono', Monaco, monospace;
}

.legal-content .notice {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.legal-content .notice-info {
    background-color: #e3f2fd;
    border-left: 4px solid #1565c0;
    color: #0d47a1;
}

.legal-content .notice-warning {
    background-color: #fff8e1;
    border-left: 4px solid #f9a825;
    color: #f57f17;
}

.legal-content .notice-critical {
    background-color: #fdecea;
    border-left: 4px solid #c62828;
    color: #b71c1c;
}

.legal-content .contact-card {
    background-color: var(--cream);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.legal-content .contact-methods {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.legal-content .contact-methods li {
    margin-bottom: 0.5rem;
}

.legal-content .contact-methods li::before {
    content: '▸';
    color: var(--primary);
}

.legal-content address {
    font-style: normal;
    background-color: var(--cream);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.legal-content .definitions {
    margin: 1.5rem 0;
}

.legal-content .definitions dt {
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 1rem;
}

.legal-content .definitions dd {
    margin: 0.5rem 0 1rem 1.5rem;
    color: var(--dark-gray);
}

.legal-content .authority-contact {
    background-color: var(--cream);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.legal-content .related-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.legal-content .related-links a {
    font-weight: 600;
}

.page-subtitle {
    color: var(--gray);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 0.875rem;
    color: var(--gray);
    font-style: italic;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

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

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

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--light-gray);
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-legal a {
    color: var(--gray);
    font-size: 0.875rem;
}

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

/* Hero Avatar Animation */
.hero-image-container {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 400px;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.doctor-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-avatar {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c4a77d 0%, #d9c9a8 50%, #e8dcc8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 -5px 20px rgba(0,0,0,0.1);
    animation: float 6s ease-in-out infinite;
}

.avatar-initials {
    font-size: 5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-dark);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.avatar-ring {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 2px solid rgba(196, 167, 125, 0.3);
    animation: pulse-ring 3s ease-out infinite;
}

.avatar-ring.delay-1 {
    animation-delay: 1s;
}

.avatar-ring.delay-2 {
    animation-delay: 2s;
}

/* Floating particles around hero avatar - Using PNG files */
.doctor-avatar::before,
.doctor-avatar::after,
.avatar-ring::before,
.avatar-ring::after,
.avatar-ring.delay-1::before,
.avatar-ring.delay-1::after,
.avatar-ring.delay-2::before,
.avatar-ring.delay-2::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: avatar-particle-float 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
}

/* Doctor avatar particles (4 corners) */
.doctor-avatar::before {
    background-image: url('../images/leaf.png'); /* medicinal herb leaf */
    top: -14px;
    left: -14px;
    animation-delay: 0s;
}
.doctor-avatar::after {
    background-image: url('../images/sakura.png'); /* cherry blossom */
    top: -14px;
    right: -14px;
    animation-delay: 1.25s;
}

/* Ring 1 particles */
.avatar-ring::before {
    background-image: url('../images/needle.png'); /* four leaf clover */
    bottom: -14px;
    left: -14px;
    animation-delay: 2.5s;
}
.avatar-ring::after {
    background-image: url('../images/leaf.png'); /* maple leaf */
    bottom: -14px;
    right: -14px;
    animation-delay: 3.75s;
}

/* Ring 2 particles */
.avatar-ring.delay-1::before {
    background-image: url('../images/sakura.png'); /* flowing leaf */
    top: 20%;
    left: -22px;
    animation-delay: 5s;
}
.avatar-ring.delay-1::after {
    background-image: url('../images/leaf.png'); /* herb */
    top: 20%;
    right: -22px;
    animation-delay: 6.25s;
}

/* Ring 3 particles */
.avatar-ring.delay-2::before {
    background-image: url('../images/sakura.png'); /* cherry blossom */
    bottom: 20%;
    left: -22px;
    animation-delay: 7.5s;
}
.avatar-ring.delay-2::after {
    background-image: url('../images/needle.png'); /* maple leaf */
    bottom: 20%;
    right: -22px;
    animation-delay: 8.75s;
}

/* New floating particles around the big avatar circle - positioned via HTML inline styles */
.avatar-particle {
    position: absolute;
    width: 36px;
    height: 36px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: ring-particle-float 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 4;
    opacity: 0;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

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

@keyframes avatar-particle-float {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.7; }
    25% { transform: translate(-8px, -8px) scale(1.15) rotate(-10deg); opacity: 1; }
    50% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.7; }
    75% { transform: translate(8px, 8px) scale(0.9) rotate(10deg); opacity: 0.5; }
}

@keyframes ring-particle-float {
    0%, 100% { transform: translate(var(--tx, 0), var(--ty, 0)) scale(1) rotate(0deg); opacity: 0; }
    15% { transform: translate(calc(var(--tx, 0) - 8px), calc(var(--ty, 0) - 8px)) scale(1.3) rotate(-15deg); opacity: 1; }
    30% { transform: translate(var(--tx, 0), var(--ty, 0)) scale(1) rotate(0deg); opacity: 0.8; }
    45% { transform: translate(calc(var(--tx, 0) + 8px), calc(var(--ty, 0) + 8px)) scale(0.7) rotate(15deg); opacity: 0.3; }
    60% { transform: translate(var(--tx, 0), var(--ty, 0)) scale(1) rotate(0deg); opacity: 0; }
}


/* Mobile responsive for hero avatar */
@media (max-width: 1024px) {
    .hero-image-container {
        width: 35%;
        right: 2%;
    }
    .doctor-avatar {
        width: 280px;
        height: 280px;
    }
    .avatar-circle {
        width: 220px;
        height: 220px;
    }
    .avatar-ring {
        width: 280px;
        height: 280px;
    }
    .avatar-initials {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hero-image-container {
        display: none;
    }
}
