/* Google Fonts Import Already in HTML */
:root {
    --primary-color: #6d1b2b;
    /* Logo Burgundy/Red Wine */
    --primary-light: #943c4d;
    --accent-color: #c5a059;
    /* Muted Gold */
    --text-dark: #2c2c2c;
    --text-light: #555555;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Helpers */
.text-center {
    text-align: center;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 15px auto 25px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #c49f27;
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-mini span {
    margin-right: 20px;
}

.contact-mini i {
    color: var(--accent-color);
    margin-right: 5px;
}

.social-mini a {
    color: var(--white);
    margin-left: 15px;
}

.social-mini a:hover {
    color: var(--accent-color);
}

/* Header */
header {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: padding 0.3s;
}

header.scrolled {
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    transition: height 0.3s;
}

header.scrolled .logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links li a:hover {
    color: var(--accent-color);
}

.btn-highlight {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.btn-highlight:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

/* Hero Section - Flex Layout */
.hero {
    min-height: 85vh;
    padding-top: 50px;
    padding-bottom: 50px;
    background: linear-gradient(135deg, #fdfbf7 0%, #fff 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    animation: fadeIn 1s ease-out;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-img-full {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 20px 0 20px 0;
    box-shadow: 20px 20px 0 var(--accent-color);
    object-fit: contain;
    /* Ensures image isn't cropped */
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Dark Outline for Light BG */
.btn-outline-dark {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 28px;
    /* Matching padding */
    border-radius: 2px;
    font-weight: 700;
}

.btn-outline-dark:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Services */
.services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(15, 44, 89, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    transition: all 0.3s;
}

.service-card:hover .icon-box {
    background-color: var(--primary-color);
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* About */
.about {
    padding: 100px 0;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
}

.about-image {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.image-frame {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-frame img {
    width: 100%;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

.about-text {
    flex: 1;
}

.subtitle {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-style: italic;
}

.bio-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.signature p {
    font-family: 'Great Vibes', cursive;
    /* Optional script font substitute */
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 30px;
}

/* Clinic Values */
.clinic {
    padding: 100px 0;
    background-color: var(--white);
}

.values-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 30px;
}

.value-item {
    flex: 1;
    padding: 40px;
    background-color: var(--bg-light);
    border: 1px solid #eee;
    text-align: center;
    transition: 0.3s;
}

.value-item:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.value-item:hover h3,
.value-item:hover p {
    color: var(--white);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Quote Section */
.quote-section {
    background-color: var(--primary-color);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.quote-section blockquote {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
}

/* Contact */
.contact {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contact-layout {
    display: flex;
    gap: 40px;
    background: var(--white);
    padding: 10px;
    box-shadow: var(--shadow);
    border-radius: 5px;
    overflow: hidden;
}

.contact-info-panel {
    flex: 1;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px;
}

.contact-info-panel h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.contact-info-panel p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.info-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-block i {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.info-block h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-block p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-form-panel {
    flex: 1.5;
    padding: 60px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-form-panel input,
.contact-form-panel textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: inherit;
    transition: 0.3s;
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.full-width {
    width: 100%;
}

/* Footer */
footer {
    background-color: #0b1e3b;
    color: #aab6ca;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: inherit;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
.burger {
    display: none;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
}

@media (max-width: 900px) {
    .hero-container-flex {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 80px;
    }

    .hero-image-container {
        width: 100%;
        margin-bottom: 30px;
    }

    .hero-img-full {
        max-height: 400px;
        box-shadow: 10px 10px 0 var(--accent-color);
    }

    .hero-btns {
        justify-content: center;
    }

    .about-wrapper {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

    .about-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        position: absolute;
        right: 0px;
        height: 100vh;
        top: 0;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .burger {
        display: block;
        cursor: pointer;
        z-index: 2000;
    }

    .burger div {
        width: 25px;
        height: 3px;
        background-color: var(--primary-color);
        margin: 5px;
        transition: 0.3s;
    }

    .values-wrapper {
        flex-direction: column;
    }

    .btn-highlight {
        margin: 20px 0;
    }
}