/* ============================================
   PROF. KARTIK RAWAL — REDESIGNED STYLESHEET
   Theme: Creamy Celestial | Elegant & Warm
   ============================================ */

/* --- CSS Variables --- */
:root {
    --cream: #FBF7F0;
    --cream-dark: #F4EDE0;
    --cream-deep: #EDE0CC;
    --gold: #C9933A;
    --gold-light: #E8B96A;
    --gold-dark: #9B6E22;
    --brown: #5C3D1E;
    --brown-light: #8B5E3C;
    --text-primary: #2C1A0E;
    --text-secondary: #6B4C30;
    --text-muted: #9C7A5A;
    --white: #FFFFFF;
    --dark-overlay: #1A0E05;
    --shadow-soft: 0 4px 24px rgba(92, 61, 30, 0.1);
    --shadow-medium: 0 8px 40px rgba(92, 61, 30, 0.15);
    --shadow-gold: 0 4px 20px rgba(201, 147, 58, 0.3);
    --border-cream: rgba(201, 147, 58, 0.2);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}


img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* --- Top Bar --- */
.topbar {
    background: var(--brown);
    color: rgba(255,255,255,0.85);
    padding: 8px 0;
    font-size: 13px;
    font-family: var(--font-body);
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-left span, .topbar-right span { display: flex; align-items: center; gap: 6px; }
.topbar-left i, .topbar-right i { color: var(--gold-light); }
.topbar-socials { display: flex; gap: 12px; }
.topbar-socials a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.topbar-socials a:hover { color: var(--gold-light); }

/* --- Header / Navbar --- */
#main-header {
    background: rgba(251, 247, 240, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-cream);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
#main-header.scrolled {
    box-shadow: var(--shadow-medium);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 20px;
}

.nav-logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.nav-links li a {
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.02em;
}
.nav-links li a:hover,
.nav-links li a.active {
    color: var(--gold-dark);
    background: rgba(201, 147, 58, 0.1);
}

.nav-actions { display: flex; align-items: center; gap: 12px; z-index:1021; }

.nav-appointment-btn {
    background: var(--gold);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    font-family: var(--font-body);
    border: 2px solid var(--gold);
}
.nav-appointment-btn:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brown);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Buttons --- */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: var(--transition);
    border: 2px solid var(--gold);
    cursor: pointer;
}
.btn-primary-custom:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--white);
}
.btn-primary-custom.large { padding: 16px 40px; font-size: 16px; }

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--gold-dark);
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: var(--transition);
    border: 2px solid var(--gold);
}
.btn-outline-custom:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-light-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
}
.btn-light-custom:hover {
    background: var(--white);
    color: var(--gold-dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* --- Section Helpers --- */
.section-main {
    padding: 80px 0;
}
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 16px;
}
.section-header.light .section-tag,
.section-header.light .section-title,
.section-header.light .section-subtitle { color: var(--white); }
.section-header.light .section-tag { background: rgba(255,255,255,0.15); color: var(--gold-light); }

.section-tag {
    display: inline-block;
    background: rgba(201, 147, 58, 0.12);
    color: var(--gold-dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: var(--font-body);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

/* ============ HERO SECTION ============ */
.hero-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 50%, #EDE0CC 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(201,147,58,0.06) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(201,147,58,0.05) 0%, transparent 40%);
    pointer-events: none;
}
.hero-bg-pattern::before {
    content: '';
    position: absolute;
    top: 5%;
    right: 5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(201,147,58,0.1);
}
.hero-bg-pattern::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 3%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1px solid rgba(201,147,58,0.08);
}

.min-vh-section { min-height: calc(90vh - 140px); }

.hero-content { padding: 30px 0; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,147,58,0.1);
    color: var(--gold-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
    border: 1px solid rgba(201,147,58,0.2);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 16px;
}
.highlight-name {
    color: var(--gold-dark);
    display: block;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.typed-text { color: var(--gold); }
.cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    background: var(--gold);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-desc {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-cream);
}

/* Hero Image */
.hero-image-col { display: flex; justify-content: center; align-items: center; }
.hero-image-wrap {
    position: relative;
    display: inline-block;
}
.hero-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border-radius: 50%;
    border: 2px solid rgba(201,147,58,0.15);
    animation: pulseRing 3s ease-in-out infinite;
}
@keyframes pulseRing {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

.hero-image-frame {
    width: 380px;
    height: 460px;
    border-radius: 50% 50% 48% 52% / 48% 48% 52% 52%;
    overflow: hidden;
    border: 4px solid rgba(201,147,58,0.25);
    background: var(--cream-dark);
    box-shadow: var(--shadow-medium), 0 0 60px rgba(201,147,58,0.1);
    position: relative;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brown);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-cream);
    white-space: nowrap;
}
.floating-badge i { color: var(--gold); }
.badge-1 { top: 15%; right: -30px; animation: floatBadge 3s ease-in-out infinite; }
.badge-2 { bottom: 20%; left: -30px; animation: floatBadge 3s ease-in-out infinite 1.5s; }
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ============ QUICK ACTIONS ============ */
.quick-actions-section {
    padding: 0 0 60px;
}
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-cream);
}
.quick-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.quick-card:hover {
    background: rgba(201,147,58,0.06);
    border-color: var(--border-cream);
    transform: translateY(-2px);
}
.qc-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}
.qc-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}
.qc-text p { font-size: 12px; color: var(--text-muted); margin: 0; }
.qc-arrow { margin-left: auto; color: var(--gold); font-size: 14px; opacity: 0; transition: var(--transition); }
.quick-card:hover .qc-arrow { opacity: 1; }

/* ============ SERVICES ============ */
.services-section { background: var(--cream); }

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--border-cream);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(201,147,58,0.3);
}
.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid var(--border-cream);
    overflow: hidden;
    padding: 12px;
    transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
    background: rgba(201,147,58,0.1);
    border-color: rgba(201,147,58,0.4);
}
.service-icon-wrap img { width: 100%; height: 100%; object-fit: contain; }

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 12px;
}
.service-card p {
    color: var(--text-secondary);
    font-size: 14.5px;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}
.service-price {
    border-top: 1px solid var(--border-cream);
    padding-top: 16px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.price-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.price-amount { font-size: 1.2rem; font-weight: 700; color: var(--gold-dark); font-family: var(--font-display); }
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}
.service-cta:hover { color: var(--gold); gap: 12px; }

/* ============ AWARDS ============ */
.awards-section {
    background: linear-gradient(135deg, var(--brown) 0%, #3D2410 100%);
    position: relative;
    overflow: hidden;
}
.awards-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 50%, rgba(201,147,58,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.award-card {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.award-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(201,147,58,0.4);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.award-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.award-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.award-card:hover .award-img-wrap img { transform: scale(1.05); }
.award-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    font-size: 24px;
}
.award-card:hover .award-overlay { opacity: 1; }
.award-info { padding: 16px 20px; }
.award-info h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.award-info p { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }

/* ============ GALLERY ============ */
.gallery-section { background: var(--cream); }
.gallery-section.alt-bg { background: var(--cream-dark); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(92,61,30,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    font-size: 24px;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============ VIDEOS ============ */
.video-section { background: var(--cream-dark); }
.video-card {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/10;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-cream);
    transition: var(--transition);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.video-card iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============ TESTIMONIALS ============ */
.testimonial-section {
    background: linear-gradient(135deg, #2C1A0E 0%, #4A2E10 100%);
    position: relative;
    overflow: hidden;
}
.testimonial-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 70%, rgba(201,147,58,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}
.testimonial-card:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-4px);
    border-color: rgba(201,147,58,0.3);
}
.testi-quote { font-size: 2rem; color: var(--gold-light); margin-bottom: 16px; opacity: 0.6; }
.testi-text {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
    font-family: var(--font-display);
    margin-bottom: 20px;
}
.testi-stars { color: var(--gold-light); margin-bottom: 20px; font-size: 13px; letter-spacing: 2px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.testi-name { font-weight: 600; color: var(--white); font-size: 15px; }
.testi-role { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ============ CTA SECTION ============ */
.cta-section {
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream-deep) 100%);
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--border-cream);
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-stars { color: var(--gold); letter-spacing: 12px; margin-bottom: 20px; font-size: 14px; }
.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 16px;
}
.cta-inner p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 36px;
}

/* ============ FOOTER ============ */
#main-footer { background: var(--dark-overlay); }
.footer-main { padding: 60px 0 40px; }
.footer-brand img.footer-logo { height: 56px; margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 14.5px; line-height: 1.7; max-width: 300px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-link {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}
.social-link:hover { color: var(--white); border-color: var(--gold); background: rgba(201,147,58,0.2); }

.footer-widget h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,147,58,0.2);
}
.footer-widget ul li { margin-bottom: 10px; }
.footer-widget ul li a {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-widget ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-widget ul li a i { font-size: 10px; color: var(--gold); }

.footer-contact .contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    align-items: flex-start;
}
.footer-contact .contact-item i { color: var(--gold-light); margin-top: 3px; font-size: 15px; flex-shrink: 0; }
.footer-contact .contact-item span,
.footer-contact .contact-item a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.6;
    transition: var(--transition);
}
.footer-contact .contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 13px; }
.footer-bottom strong { color: var(--gold-light); }

/* ============ BREADCRUMB ============ */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--brown) 0%, #3D2410 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.breadcrumb-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 50% 100%, rgba(201,147,58,0.08) 0%, transparent 60%);
}
.breadcrumb-content { position: relative; z-index: 1; }
.breadcrumb-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    text-transform: capitalize;
}
.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}
.breadcrumb-nav a { color: var(--gold-light); transition: var(--transition); }
.breadcrumb-nav a:hover { color: var(--white); }
.breadcrumb-nav i { font-size: 10px; }

/* ============ MODALS ============ */
.custom-modal {
    border-radius: var(--radius);
    border: 1px solid var(--border-cream);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.custom-modal .modal-header {
    background: var(--cream-dark);
    padding: 24px 28px;
    border-bottom: 1px solid var(--border-cream);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-title-wrap { display: flex; align-items: center; gap: 12px; }
.modal-icon {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 15px;
}
.custom-modal .modal-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--brown); margin: 0; }
.btn-close-custom {
    width: 36px; height: 36px;
    border-radius: 50%; border: 1px solid var(--border-cream);
    background: var(--white); color: var(--text-muted);
    font-size: 16px; cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.btn-close-custom:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.custom-modal .modal-body { padding: 28px; background: var(--white); }

.form-group-custom { margin-bottom: 18px; }
.form-group-custom label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.form-input-custom {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-cream);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
    resize: vertical;
    appearance: none;
}
.form-input-custom:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(201,147,58,0.1); }
.btn-submit-custom {
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit-custom:hover { background: var(--gold-dark); transform: translateY(-1px); }

.share-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.share-btn {
    padding: 12px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center; gap: 8px;
    color: var(--white);
}
.share-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.whatsapp { background: #25D366; }
.share-btn.linkedin { background: #0A66C2; }

/* ============ TOAST ============ */
#toast-container {
    position: fixed; bottom: 30px; right: 30px;
    z-index: 9999; display: flex; flex-direction: column; gap: 10px;
}
.custom-toast {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    background: var(--white); border-left: 4px solid var(--gold);
    padding: 14px 20px; border-radius: var(--radius-sm);
    box-shadow: var(--shadow-medium);
    font-size: 14px; font-weight: 500; color: var(--text-primary);
    animation: slideToast 0.3s ease;
    min-width: 280px;
}
.custom-toast button { border: none; background: transparent; cursor: pointer; color: var(--text-muted); font-size: 16px; padding: 0; }
@keyframes slideToast { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

.success-msg { background: rgba(40,167,69,0.1); color: #155724; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; }
.error-msg { background: rgba(220,53,69,0.1); color: #721c24; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; }

/* ============ SCROLL REVEAL ============ */
.reveal-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

/* ============ ABOUT PAGE ============ */
.about-section { background: var(--cream); }
.about-image-wrap {
    position: relative;
    display: inline-block;
}
.about-img {
    width: 100%;
    max-width: 420px;
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    box-shadow: var(--shadow-medium);
    border: 4px solid var(--border-cream);
}
.about-result-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--gold);
    color: var(--white);
    text-align: center;
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-gold);
}
.about-result-badge .big-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; display: block; line-height: 1; }
.about-result-badge .badge-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }

.about-heading { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; color: var(--brown); margin-bottom: 20px; }
.about-text p { color: var(--text-secondary); font-size: 15.5px; line-height: 1.8; margin-bottom: 16px; }
.about-stats {
    display: flex; gap: 32px; flex-wrap: wrap;
    border-top: 1px solid var(--border-cream);
    padding-top: 28px; margin-top: 28px;
}
.about-stat .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold-dark); display: block; }
.about-stat .label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ============ SERVICE PAGE ============ */
.service-full-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border-cream);
    transition: var(--transition);
    height: 100%;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.service-full-card:hover { box-shadow: var(--shadow-medium); border-color: rgba(201,147,58,0.3); transform: translateY(-3px); }

/* ============ CONTACT PAGE ============ */
.contact-info-card {
    background: var(--brown);
    border-radius: var(--radius);
    padding: 40px;
    color: var(--white);
    height: 100%;
}
.contact-info-card h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.contact-info-card p { color: rgba(255,255,255,0.65); margin-bottom: 36px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-detail-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold-light); flex-shrink: 0; }
.contact-detail-text h4 { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.contact-detail-text a, .contact-detail-text span { color: var(--white); font-size: 15px; transition: var(--transition); }
.contact-detail-text a:hover { color: var(--gold-light); }

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-cream);
    height: 100%;
}
.contact-form-card h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--brown); margin-bottom: 28px; }

/* ============ APPOINTMENT PAGE ============ */
.appointment-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-cream);
}
.appointment-card h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; color: var(--brown); margin-bottom: 8px; }
.appointment-card p { color: var(--text-muted); margin-bottom: 32px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1199px) {
    .quick-actions-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-slider { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%; bottom: 0;
        width: min(300px, 85vw);
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 40px;
        gap: 4px;
        box-shadow: -8px 0 30px rgba(0,0,0,0.12);
        transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
        z-index: 999;
        overflow-y: auto;
        border-left: 1px solid var(--border-cream);
    }
    .nav-links {
        display: none;
    }
    .nav-links.open { right: 0; display:inline-block;height:100vh;}
    .nav-links li { width: 100%; }
    .nav-links li a { padding: 12px 16px; font-size: 16px; border-radius: var(--radius-sm); display: block; }
    .nav-appointment-btn {         font-size: 12px;
        padding: 5px 10px;}
    .hero-image-col { display: none; }
    .hero-title { text-align: center; }
    .hero-subtitle { text-align: center; }
    .hero-desc { text-align: center; max-width: 100%; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-badge { display: flex; }
    .floating-badge { display: none; }
    .topbar-left { display: none; }
}

@media (max-width: 767px) {
    .section-main { padding: 56px 0; }
    .quick-actions-grid { grid-template-columns: 1fr 1fr; gap: 12px; padding: 20px; }
    .testimonial-slider { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-section { padding: 0px 0 40px; min-height: auto; }
    .hero-stats { gap: 16px; }
    .stat-divider { height: 30px; }
    .topbar { display: none; }
    .share-btns { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
    .quick-actions-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .hero-btns { flex-direction: column; align-items: center; }
    .btn-primary-custom, .btn-outline-custom { width: 100%; justify-content: center; }
    .hero-stats { gap: 12px; }
    .stat-num { font-size: 1.5rem; }
}
