﻿:root {
    --rose: #c97b84;
    --rose-dark: #a35a65;
    --rose-pale: #f5e8ea;
    --cream: #fdf8f5;
    --charcoal: #2c2c2c;
    --muted: #7a7a7a;
    --border: #e8d8da;
    --white: #ffffff;
    --shadow: 0 8px 40px rgba(180,100,110,0.12);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    min-height: 100vh;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253,248,245,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--rose-dark);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

    .nav-links a {
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--muted);
        letter-spacing: 0.04em;
        text-transform: uppercase;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--rose);
        }

.nav-cta {
    background: var(--rose);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 0.83rem;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.15s;
}

    .nav-cta:hover {
        background: var(--rose-dark);
        transform: translateY(-1px);
    }

/* ── HERO ── */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--cream) 60%, var(--rose-pale) 100%);
}

    .hero::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(201,123,132,0.12) 0%, transparent 70%);
        top: -100px;
        right: -100px;
        pointer-events: none;
    }

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 80px;
    animation: fadeUp 0.8s ease both;
    width: 100%;
    text-align: center;
}

.hero-content {
    max-width: 720px;
}

    .hero-content .hero-desc {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

.hero-stats {
    justify-content: center;
}

.hero-actions {
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rose-pale);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--rose-dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

    .hero-badge::before {
        content: '';
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--rose);
    }

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 8px;
}

    h1 em {
        font-style: italic;
        color: var(--rose);
    }

.hero-title-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 24px;
    font-style: italic;
}

.hero-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--rose-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--rose);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(201,123,132,0.35);
}

    .btn-primary:hover {
        background: var(--rose-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(201,123,132,0.45);
    }

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: border-color 0.2s, color 0.2s;
}

    .btn-outline:hover {
        border-color: var(--rose);
        color: var(--rose);
    }

@keyframes float {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── SECTION WRAPPER ── */
section {
    padding: 80px 80px;
}

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--rose);
    font-weight: 500;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 48px;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 0 80px;
}

/* ── ABOUT / BIO ── */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-grid-3col {
    grid-template-columns: 300px 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Doctor Photo */
.doctor-photo-wrap {
    display: flex;
    justify-content: center;
}

.doctor-photo-frame {
    position: relative;
    width: 280px;
}

.doctor-real-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center top;
    border-radius: 160px 160px 20px 20px;
    border: 4px solid var(--rose-pale);
    box-shadow: 0 16px 48px rgba(180,100,110,0.2);
    display: block;
}

.photo-badge {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rose);
    color: var(--white);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(201,123,132,0.4);
}

.about-text p {
    font-size: 0.96rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.qual-list {
    list-style: none;
    margin-top: 8px;
}

    .qual-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.9rem;
        color: var(--charcoal);
        padding: 10px 0;
        border-bottom: 1px solid var(--border);
    }

        .qual-list li:last-child {
            border: none;
        }

.qual-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--rose-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── SPECIALTIES ── */
#specialties {
    background: var(--rose-pale);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
    gap: 20px;
}

.spec-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .spec-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }

.spec-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}

.spec-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.spec-desc {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── EXPERIENCE TIMELINE ── */
.timeline {
    position: relative;
    padding-left: 32px;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--border);
    }

.tl-item {
    position: relative;
    margin-bottom: 36px;
}

.tl-dot {
    position: absolute;
    left: -40px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--rose);
    border: 3px solid var(--rose-pale);
    box-shadow: 0 0 0 2px var(--rose);
}

.tl-year {
    font-size: 0.75rem;
    color: var(--rose);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.tl-role {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.tl-place {
    font-size: 0.85rem;
    color: var(--muted);
}

/* ── BOOKING FORM ── */
#book {
    background: linear-gradient(135deg, var(--charcoal) 0%, #3d2a2d 100%);
    color: var(--white);
}

    #book .section-label {
        color: var(--rose);
    }

    #book .section-title {
        color: var(--white);
    }

.book-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: start;
}

.book-info p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(201,123,132,0.2);
    border: 1px solid rgba(201,123,132,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
}

.contact-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Form */
.booking-form {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(8px);
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

    .form-group.full {
        grid-column: 1/-1;
    }

label {
    display: block;
    font-size: 0.77rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

input, select, textarea {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

    input::placeholder, textarea::placeholder {
        color: rgba(255,255,255,0.3);
    }

    input:focus, select:focus, textarea:focus {
        border-color: var(--rose);
        background: rgba(201,123,132,0.08);
    }

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

    select option {
        background: #3d2a2d;
        color: var(--white);
    }

textarea {
    resize: vertical;
    min-height: 90px;
}

/* Radio slot pickers */
.slot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 2px;
}

.slot-input {
    display: none;
}

.slot-label {
    display: block;
    text-align: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 9px 4px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.15s;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

.slot-input:checked + .slot-label {
    background: var(--rose);
    border-color: var(--rose);
    color: var(--white);
    font-weight: 500;
}

.slot-label:hover {
    border-color: var(--rose);
    color: var(--rose);
}

/* Checkbox */
.check-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

    .check-group input[type="checkbox"] {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        accent-color: var(--rose);
        margin-top: 2px;
        border-radius: 4px;
        cursor: pointer;
    }

    .check-group label {
        font-size: 0.82rem;
        text-transform: none;
        letter-spacing: 0;
        color: rgba(255,255,255,0.5);
        font-weight: 400;
    }

        .check-group label a {
            color: var(--rose);
        }

.submit-btn {
    width: 100%;
    background: var(--rose);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(201,123,132,0.4);
    margin-top: 8px;
}

    .submit-btn:hover {
        background: #b5636e;
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(201,123,132,0.5);
    }

/* Success message */
.success-msg {
    display: none;
    text-align: center;
    padding: 20px;
    background: rgba(100,200,130,0.15);
    border: 1px solid rgba(100,200,130,0.3);
    border-radius: 12px;
    color: #7ee8a2;
    font-size: 0.92rem;
    margin-top: 16px;
}

    .success-msg.show {
        display: block;
    }

/* ── AWARDS ── */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
    gap: 20px;
}

.award-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .award-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }

.award-pos {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

    .award-pos.gold {
        color: #b8860b;
    }

    .award-pos.silver {
        color: #708090;
    }

    .award-pos.bronze {
        color: #a0522d;
    }

.award-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.award-conf {
    font-size: 0.85rem;
    color: var(--charcoal);
    margin-bottom: 8px;
    line-height: 1.4;
}

.award-meta {
    font-size: 0.75rem;
    color: var(--muted);
}

/* ── FOOTER ── */
footer {
    background: #1a1a1a;
    color: rgba(255,255,255,0.4);
    text-align: center;
    padding: 28px;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
}

    footer span {
        color: var(--rose);
    }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    nav {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-left {
        padding: 48px 24px;
    }

    section {
        padding: 56px 24px;
    }

    .divider {
        margin: 0 24px;
    }

    .about-grid, .about-grid-3col, .book-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .doctor-photo-frame {
        width: 220px;
    }

    .doctor-real-img {
        height: 280px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .slot-grid {
        grid-template-columns: repeat(2,1fr);
    }
}




/*=========================================
    LOADER
=========================================*/

#loaderOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.8);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-box {
    text-align: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #ddd;
    border-top: 6px solid #7a5af8;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
}

.loader-text {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
}

@keyframes spin {

    100% {
        transform: rotate(360deg);
    }
}



/*=========================================
    POPUP
=========================================*/

.custom-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 400px;
    max-width: 90%;
    text-align: center;
}

    .popup-content button {
        margin-top: 20px;
        padding: 10px 25px;
        border: none;
        background: #7a5af8;
        color: white;
        border-radius: 6px;
        cursor: pointer;
    }

.qr-image {
    width: 220px;
    margin-top: 20px;
}

.payment-note {
    margin-top: 15px;
    color: #dc3545;
    font-weight: 600;
}