﻿/* ===== Theme Colors ===== */
:root {
    --primary-dark: #0B2316;
    --secondary-dark: #152D20;
    --accent-gold: #9B764A;
    --accent-light: #CCAB84;
    --text-light: #f5f5f5;
}

/* ===== Global ===== */
body {
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-family: 'Segoe UI', sans-serif;
}

section {
    padding: 80px 0;
}

a {
    text-decoration: none;
}

/* ===== Buttons ===== */
.btn-gold {
    background-color: var(--accent-gold);
    color: white;
    border: none;
}

    .btn-gold:hover {
        background-color: var(--accent-light);
    }

.btn-outline-light-custom {
    border: 1px solid var(--accent-gold);
    color: #fff;
}

    .btn-outline-light-custom:hover {
        background-color: var(--accent-gold);
        color: white !important;
    }

/* ===== Cards ===== */
.card-custom {
    background-color: var(--secondary-dark);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
}




/* ===== Hero Section ===== */
.hero-section {
    height: 90vh;
    background: linear-gradient( rgba(11, 35, 22, 0.55), rgba(11, 35, 22, 0.65) ), url(/assets/images/hero-bg.jpeg) center / cover no-repeat;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #dcdcdc;
}

/* Trust Chips */
.chip {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-light);
    font-size: 14px;
}





/* ===== OFFER PERFECT ===== */
.offer-section {
    padding: 60px 0 20px;
}
    .offer-section .container {
        padding: 0 169px;
    }

/* BAR */
.offer-bar {
    position: relative;
    background: linear-gradient( 90deg, #8f6a3c 0%, #b9935a 40%, #caa56a 50%, #b9935a 60%, #8f6a3c 100% );
    padding: 12px 60px 12px 25%;
    border-radius: 4px;
    border-top: 1px solid rgba(255,255,255,0.35);
    border-bottom: 1px solid rgba(0,0,0,0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

@media (max-width: 991px) {
    .offer-section .container {
        padding: 0;
    }
    .offer-bar {
        padding: 12px 0px 12px 15% !important;
    }
}

@media (max-width: 768px) {
    .offer-section .container {
        padding: 0 0;
    }
    .offer-bar {
        padding: 12px 5px !important;
    }
}

/* TEXT */
.offer-text {
    font-size: 15px;
    /*letter-spacing: 1.2px;*/
    font-weight: 500;
}

/* BUTTON */
.offer-btn {
    padding: 7px 5px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    background: rgba(255,255,255,0.08);
    transition: all 0.25s ease;
}

    .offer-btn:hover {
        background: rgba(255,255,255,0.18);
    }

/* NOTCH */
.offer-notch {
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 12px;
    height: 12px;
    background: linear-gradient( 135deg, #8f6a3c, #caa56a );
    transform: translateX(-50%) rotate(45deg);
    border-bottom: 1px solid rgba(0,0,0,0.3);
}






/* ===== Section Why Choose Title ===== */
/* ===== SECTION ===== */
.why-section {
    padding: 90px 215px;
}

@media (max-width: 768px) {
    .why-section {
        padding: 50px 0;
    }
    section {
        padding: 50px 0;
    }

    nav {
        padding: 10px !important;
    }
}

/* ===== DIVIDER ===== */
.why-divider {
    text-align: center;
    position: relative;
    margin-bottom: 55px;
}

    .why-divider span {
        font-size: 26px;
        font-weight: 600;
        padding: 0 18px;
    }

    .why-divider::before,
    .why-divider::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 34%;
        height: 1px;
        background: #9B764A;
    }

    .why-divider::before {
        left: 0;
    }

    .why-divider::after {
        right: 0;
    }

/* ===== CARD ===== */
.why-card {
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 28px 20px;
    height: 100%;
    transition: all 0.35s ease;
}

    .why-card:hover {
        border-color: #9B764A;
        box-shadow: 0 12px 35px rgba(0,0,0,0.5);
        transform: translateY(-6px);
    }

/* ===== ICON ===== */
.why-icon svg {
    width: 40px;
    height: 40px;
    stroke: #CCAB84;
    fill: none;
    stroke-width: 1.5;
    margin-bottom: 15px;
}

/* ===== TEXT ===== */
.why-card h5 {
    font-size: 16px;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 13px;
    color: #cfcfcf;
    margin-bottom: 10px;
}

/* ===== LEARN LINK ===== */
.learn {
    font-size: 12px;
    color: #CCAB84;
}

/* ===== CTA BUTTON ===== */
.why-btn {
    border: 1px solid #9B764A;
    padding: 10px 22px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
}

    .why-btn:hover {
        background: #9B764A;
        color: #fff;
    }




/* ===== Services Section ===== */
.services-section {
    background-color: var(--primary-dark);
}




/* ===== Doctor Section ===== */
.doctor-section {
    background-color: var(--secondary-dark);
}

.doctor-img {
    border-radius: 16px;
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* List styling */
.doctor-list {
    list-style: none;
    padding: 0;
}

    .doctor-list li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 20px;
    }

        .doctor-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: var(--accent-gold);
        }






/* ===== Testimonials Improved ===== */
.testimonial-wrapper {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.testimonial-group {
    min-width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Premium Card */
.testimonial-card {
    background: linear-gradient(145deg, #152D20, #0B2316);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 14px;
    padding: 25px;
    width: 300px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-6px);
        border-color: var(--accent-gold);
    }

/* Stars */
.stars {
    color: gold;
    margin-bottom: 10px;
}

/* Text */
.testimonial-card p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-card h6 {
    color: var(--accent-light);
    font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
    .testimonial-group {
        flex-direction: column;
        align-items: center;
    }


    .why-divider::before,
    .why-divider::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 15%;
        height: 1px;
        background: #9B764A;
    }
}




/* ===== Process Section ===== */
.process-section {
    background-color: var(--secondary-dark);
}

/* Cards */
.process-card {
    background: linear-gradient(145deg, #152D20, #0B2316);
    padding: 30px;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

    .process-card:hover {
        transform: translateY(-8px);
        border-color: var(--accent-gold);
    }

/* Step Number Circle */
.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent-gold);
    color: white;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}





/* ===== Insurance Section ===== */
.insurance-section {
    background-color: var(--primary-dark);
}

/* Logo Boxes */
.logo-box {
    background: linear-gradient(145deg, #152D20, #0B2316);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px 30px;
    border-radius: 10px;
    min-width: 140px;
    text-align: center;
    transition: all 0.3s ease;
}

    .logo-box:hover {
        border-color: var(--accent-gold);
        transform: translateY(-5px);
    }





/* ===== FAQ Section ===== */
.faq-section {
    background-color: var(--secondary-dark);
}

/* Accordion Custom */
.accordion-item {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: #152D20;
    color: white;
    font-weight: 500;
}

    .accordion-button:not(.collapsed) {
        background-color: var(--accent-gold);
        color: white;
    }

.accordion-body {
    background-color: #0B2316;
    color: #ddd;
    text-align: left;
}


.accordion-button::after {
    background-color: #fff !important;
}



/* ===== Contact Section ===== */
/* ===== Contact Premium Card ===== */
.contact-card {
    background: linear-gradient(145deg, #152D20, #0B2316);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* Map full height */
.map-box iframe {
    min-height: 100%;
}

/* Content spacing */
.contact-content {
    color: #ddd;
}

/* Info items */
.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

    .info-item .icon {
        font-size: 20px;
        color: var(--accent-gold);
        min-width: 25px;
    }

    .info-item strong {
        display: block;
        color: #fff;
    }

    .info-item p {
        margin: 0;
    }

/* Links */
.contact-content a {
    color: #fff;
}

    .contact-content a:hover {
        color: var(--accent-gold);
    }

/* Mobile fix */
@media (max-width: 992px) {
    .map-box iframe {
        height: 250px;
    }
}


/* ===== Scroll Animations ===== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

    .fade-up.show {
        opacity: 1;
        transform: translateY(0);
    }
.details {
    padding: 0;
    background-image: url('/images/leaf1.png'); /* adjust if needed */
    background-repeat: no-repeat;
    background-size: 325px; /* 🔥 controls size */
    background-position: right center; /* 🔥 correct placement */

    opacity: .8;
    margin-right: -60px !important;
}




.btn {
    transition: all 0.3s ease;
}

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }




header.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}









/* ===== FOOTER FINAL CLEAN ===== */
.footer {
    padding: 30px 0 20px;
    background: radial-gradient(circle at top, #1F382A, #0B2316 70%);
    font-size: 13px;
}

/* ===== DOUBLE LINE ===== */
.footer-top-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
}

    .footer-top-lines span {
        height: 1px;
        background: linear-gradient(to right, transparent, #9B764A, transparent);
    }

/* ===== MAIN ROW (IMPORTANT) ===== */
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

/* LEFT TEXT */
.footer-left {
    color: #ddd;
}

    .footer-left span {
        color: #9B764A;
        margin: 0 8px;
    }

/* RIGHT ICONS */
.footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .footer-right a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 6px;
        transition: all 0.25s ease;
    }

    .footer-right svg {
        width: 16px;
        height: 16px;
        stroke: #CCAB84;
        fill: none;
        stroke-width: 1.5;
    }

    .footer-right a:hover {
        background: rgba(155,118,74,0.15);
        transform: translateY(-2px);
    }

/* ===== NAV ===== */
.footer-nav {
    text-align: center;
    margin-bottom: 10px;
}

    .footer-nav a {
        color: #ddd;
        text-decoration: none;
        margin: 0 6px;
    }

    .footer-nav span {
        color: #9B764A;
    }

    .footer-nav a:hover {
        color: #CCAB84;
    }

/* ===== LEGAL ===== */
.footer-legal {
    text-align: center;
    font-size: 12px;
    color: #bbb;
}

    .footer-legal a {
        color: #bbb;
        text-decoration: none;
    }

    .footer-legal span {
        margin: 0 6px;
        color: #9B764A;
    }

    .footer-legal a:hover {
        color: #CCAB84;
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }


    .details {
        padding: 0;
        background-image: none;
    }
}


/* ===== ICON DIVIDER ===== */
.icon-divider {
    width: 1px;
    height: 18px;
    background: rgba(155,118,74,0.6);
    margin: 0 6px;
}






/* ===== Appointment MODAL OVERLAY ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* ===== MODAL BOX ===== */
.modal-box {
    background: #0B2316;
    padding: 30px;
    width: 400px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    text-align: center;
    animation: fadeIn 0.3s ease;
}

/* CLOSE */
.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* TITLE */
.modal-box h3 {
    margin-bottom: 5px;
}

.modal-subtitle {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 20px;
}

/* FORM */
.modal-box input,
.modal-box select {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    background: #102e1e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #fff;
}

/* BUTTON */
.modal-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #9B764A, #CCAB84);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-weight: 500;
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}






.form-group {
    margin-bottom: 12px;
    text-align: left;
}

.error {
    color: #ff6b6b;
    font-size: 11px;
    display: block;
    margin-top: 3px;
}

input.error-border,
select.error-border {
    border: 1px solid #ff6b6b !important;
}





/* LOGO IMAGE */
.logo-img {
    height: 42px;
    width: auto;
}

/* LOGO TEXT */
.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

/* MOBILE */
@media (max-width: 768px) {
    .logo-text {
        display: none; /* only icon on mobile */
    }

    .logo-img {
        height: 36px;
    }
}



/* FOOTER LOGO */
.footer-logo {
    height: 28px;
    width: auto;
}

/* BRAND TEXT */
.footer-brand {
    font-weight: 600;
    color: #fff;
}




.sticky-top {
    padding-top: 10px;
}


.navbar-nav .nav-item a {
    font-weight: 700 !important;
    color: var(--accent-gold);
}


.navtxt {
    color: #9B764A;
    font-family: none;
    display: none;
}



/* RESPONSIVE FIX */
@media (max-width: 768px) {
    .footer-left {
        justify-content: center;
        text-align: center;
        gap: 6px;
    }

    .footer-logo {
        height: 24px;
    }
    .navtxt {
        display: block;
    }
}