/* General Variables & Zen Branding */
:root {
    /* Brand Colors derived from Logo */
    --brand-teal: #1b8596;
    --brand-blue: #4bbecc;
    --brand-green: #7fc242;

    /* Zen Palette */
    --background-light: #fafbfb;
    --surface-color: #ffffff;
    --surface-alt: #f4f7f6;
    --text-dark: #2a3b3d;
    --text-light: #ffffff;
    --text-muted: #647d7e;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Borders */
    --radius-soft: 16px;
    --radius-pill: 50px;
    --shadow-soft: 0 10px 40px rgba(27, 133, 150, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--background-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--brand-teal);
    font-weight: 500;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeInOut {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInOut 1s ease-out forwards;
}

/* --- Navbar --- */
.navbar {
    background-color: rgba(250, 251, 251, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(27, 133, 150, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    height: 55px;
    width: auto;
    display: block;
}


.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--brand-teal);
    line-height: 1.1;
}

.logo-subtext {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: var(--brand-green);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--brand-green);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--brand-teal);
}

.nav-links a:hover::after {
    width: 100%;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, rgba(250, 251, 251, 1) 0%, rgba(228, 244, 246, 0.6) 100%);
    padding: 8rem 0 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(127, 194, 66, 0.05) 0%, rgba(250, 251, 251, 0) 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    z-index: 0;
}

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

.hero-image {
    max-width: 280px;
    height: auto;
    margin: 0 auto 2.5rem auto;
    display: block;
}

.hero p.subtitle {
    font-family: var(--font-body);
    color: var(--brand-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--brand-teal);
}

.hero p.description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin: 0 auto 2.5rem auto;
    max-width: 600px;
}

.hero-contact-info {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.hero-contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.hero-contact-info i {
    color: var(--brand-green);
    width: 18px;
    height: 18px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-teal);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 133, 150, 0.2);
}

.btn-primary:hover {
    background-color: var(--brand-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 194, 66, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--brand-teal);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-pill);
    border: 1px solid var(--brand-teal);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(27, 133, 150, 0.05);
}

/* --- About Section --- */
.about-section {
    padding: 8rem 0;
    background-color: var(--surface-color);
}

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

.about-image-wrapper {
    position: relative;
}

.dr-photo {
    width: 100%;
    height: auto;
    border-radius: var(--radius-soft);
    object-fit: cover;
    box-shadow: var(--shadow-soft);
    display: block;
}


.about-text p.subtitle {
    font-family: var(--font-body);
    color: var(--brand-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.about-text p:first-of-type {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* --- Services Section --- */
.services {
    padding: 8rem 0;
    background-color: var(--background-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.card {
    background: var(--surface-color);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(27, 133, 150, 0.12);
    border-color: rgba(75, 190, 204, 0.2);
}

.card-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(127, 194, 66, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--brand-green);
}

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

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

/* --- Info Section (Consultations & Hours) --- */
.info-section {
    padding: 6rem 0 8rem 0;
    background-color: var(--surface-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.info-card {
    background: var(--surface-alt);
    padding: 3rem;
    border-radius: var(--radius-soft);
}

.info-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.info-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.highlight-text {
    font-weight: 500;
    color: var(--brand-teal) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.highlight-text i {
    width: 18px;
    height: 18px;
}

.consultation-details {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.consultation-details li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.minor-text {
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.8;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(27, 133, 150, 0.1);
    color: var(--text-dark);
}

.hours-list li:last-child {
    border-bottom: none;
    color: var(--text-muted);
}

.hours-list li span:first-child {
    font-weight: 500;
}

/* --- Newsletter Section --- */
.newsletter-section {
    background: linear-gradient(135deg, var(--brand-teal) 0%, rgba(27, 133, 150, 0.8) 100%);
    padding: 7rem 0;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.newsletter-section h2 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-section p {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

#newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-row {
    display: flex;
    gap: 1rem;
    width: 100%;
    flex-wrap: wrap;
}

.form-row input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    outline: none;
    min-width: 180px;
    font-family: var(--font-body);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-row input:focus {
    box-shadow: 0 0 0 3px rgba(127, 194, 66, 0.5);
}

#newsletter-form button {
    background-color: var(--brand-green);
    color: var(--surface-color);
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

#newsletter-form button:hover {
    background-color: #6fb236;
}

.newsletter-questions {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-questions p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: var(--text-light);
    padding: 0.8rem 2rem;
    border: 1px solid var(--text-light);
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--brand-teal);
}

/* --- Footer --- */
.footer {
    background-color: var(--background-light);
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(27, 133, 150, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-col p,
.footer-col a {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    display: block;
    line-height: 1.6;
}

.footer-col a:hover {
    color: var(--brand-green);
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--surface-alt);
    color: var(--brand-teal) !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--brand-green);
    color: var(--text-light) !important;
    transform: translateY(-2px);
}

.social-icon i {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(27, 133, 150, 0.1);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 5rem 0 4rem 0;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-contact-info {
        align-items: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .section-header h2,
    .about-text h2,
    .info-card h3,
    .newsletter-section h2 {
        font-size: 2rem;
    }

    .service-cards,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }
}

/* --- Cookie Banner --- */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface-color);
    border-top: 2px solid rgba(127, 194, 66, 0.3);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(27, 133, 150, 0.1);
    flex-wrap: wrap;
}

#cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex: 1;
}

#cookie-banner a {
    color: var(--brand-teal);
    text-decoration: underline;
}

#cookie-accept {
    background-color: var(--brand-green);
    color: white;
    border: none;
    border-radius: var(--radius-pill);
    padding: 0.6rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
}

#cookie-accept:hover {
    background-color: #6fb236;
}