:root {
    --gold: #c9933a;
    --gold-light: #e8b86d;
    --gold-pale: #f5e6c8;
    --deep: #1a0a00;
    --dark: #2c1500;
    --mid: #5a3010;
    --cream: #fdf5e4;
    --saffron: #e07b20;
    --saffron-light: #f09840;
    --text-dark: #1a0a00;
    --text-mid: #5a3010;
}

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

body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ─── NAVBAR ─── */
.navbar {
    background: var(--deep);
    border-bottom: 2px solid var(--gold);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.brand-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-decoration: none;
}

.brand-name {
    font-family: 'Cinzel Decorative', serif;
    font-size: 15px;
    color: var(--gold-light);
    letter-spacing: 1px;
}

.brand-sub {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    color: #b8a07a;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-toggler {
    border-color: var(--gold);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c9933a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 700;
    color: #c8b89a;
    letter-spacing: 1px;
    padding: 8px 14px !important;
    transition: color 0.3s;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    right: 50%;
    height: 1px;
    background: var(--gold);
    transition: all 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
}

.navbar-nav .nav-link:hover::after {
    left: 14px;
    right: 14px;
}



.nav-cta:hover {
    background: var(--gold-light) !important;
}

.nav-cta::after {
    display: none;
}

/* ─── TOP BAR ─── */
.top-bar {
    background: var(--saffron);
    padding: 5px 0;
    font-size: 14px;
    color: white;
}

.top-bar a {
    color: white;
    text-decoration: none;
}

.top-bar a:hover {
    text-decoration: underline;
}

/* ─── DIVIDER ─── */
.ornamental-divider {
    text-align: center;
    margin: 0 auto;
    color: var(--gold);
    font-size: 20px;
    letter-spacing: 6px;
    line-height: 1;
}

/* ─── HERO ─── */
.hero {
    background: var(--deep);
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-mandala {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    opacity: 0.06;
    animation: rotateSlow 60s linear infinite;
}

@keyframes rotateSlow {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.hero-stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(201, 147, 58, 0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 70%, rgba(201, 147, 58, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 15%, rgba(201, 147, 58, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 80%, rgba(201, 147, 58, 0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 45% 45%, rgba(201, 147, 58, 0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 35%, rgba(201, 147, 58, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 15% 60%, rgba(201, 147, 58, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 50%, rgba(201, 147, 58, 0.6) 0%, transparent 100%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 18px;
    margin-bottom: 22px;
}

.hero h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(28px, 5vw, 58px);
    color: var(--gold-light);
    line-height: 1.15;
    margin-bottom: 10px;
}

.hero h1 span {
    display: block;
    color: white;
    font-size: 60%;
    font-family: 'Cinzel', serif;
    font-weight: 400;
    letter-spacing: 3px;
}

.hero-desc {
    color: #c8b89a;
    font-size: 16px;
    line-height: 1.9;
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.hero-stat-val {
    font-family: 'Cinzel Decorative', serif;
    font-size: 32px;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 11px;
    color: #9a7e58;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.btn-gold {
    background: var(--gold);
    color: var(--deep);
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 13px 32px;
    border: none;
    border-radius: 2px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--deep);
    transform: translateY(-2px);
}

.btn-outline-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 28px;
    background: transparent;
    border-radius: 2px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-gold:hover {
    background: rgba(201, 147, 58, 0.12);
    color: var(--gold-light);
}

/* ─── SECTION TITLES ─── */
.section-badge {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(22px, 4vw, 36px);
    color: var(--deep);
    line-height: 1.25;
}

.section-title-light {
    color: var(--gold-light);
}

.gold-underline {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 14px 0 0;
}

.gold-underline.center {
    margin: 14px auto 0;
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--gold-pale) !important;
    border-radius: 4px;
    font-weight: 700 !important;
    padding: 7px 18px !important;
    margin-left: 8px;
    transition: background 0.3s !important;
}


/* ─── ABOUT ─── */
.about-section {
    background: var(--cream);
    padding: 90px 0;
}

.about-img-wrap {
    position: relative;
    display: inline-block;
}

.about-img {
    width: 100%;
    max-width: 380px;
    border-radius: 4px;
    border: 3px solid var(--gold);
    filter: sepia(20%);
}

.about-img-placeholder {
    width: 340px;
    height: 440px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%);
    border: 3px solid var(--gold);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gold);
}

.about-img-placeholder i {
    font-size: 72px;
    opacity: 0.6;
}

.about-corner {
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 100px;
    height: 100px;
    border-bottom: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
}

.about-corner-tl {
    position: absolute;
    top: -18px;
    left: -18px;
    width: 100px;
    height: 100px;
    border-top: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
}

.about-text p {
    color: var(--text-mid);
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 18px;
}

.cert-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-pale);
    border: 1px solid var(--gold);
    border-radius: 2px;
    padding: 6px 14px;
    font-size: 12px;
    font-family: 'Cinzel', serif;
    color: var(--mid);
    margin: 4px 4px 4px 0;
}

/* ─── SERVICES ─── */
.services-section {
    background: var(--dark);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: 'ॐ';
    position: absolute;
    font-size: 400px;
    color: rgba(201, 147, 58, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: serif;
    pointer-events: none;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 147, 58, 0.25);
    border-radius: 4px;
    padding: 32px 24px;
    height: 100%;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.35s;
}

.service-card:hover {
    background: rgba(201, 147, 58, 0.07);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(201, 147, 58, 0.12);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--gold);
}

.service-card h5 {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.service-card p {
    color: #9a8060;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.service-link {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.service-link:hover {
    border-bottom-color: var(--gold);
    color: var(--gold);
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
    background: var(--gold-pale);
    padding: 90px 0;
}

.testi-card {
    background: white;
    border-radius: 4px;
    border: 1px solid rgba(201, 147, 58, 0.3);
    padding: 32px 28px;
    height: 100%;
    position: relative;
}

.testi-quote {
    font-size: 60px;
    color: var(--gold);
    font-family: Georgia, serif;
    line-height: 0.6;
    margin-bottom: 16px;
    opacity: 0.4;
}

.testi-text {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-stars {
    color: var(--saffron);
    font-size: 13px;
    margin-bottom: 14px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    color: var(--deep);
    font-weight: 700;
    flex-shrink: 0;
}

.testi-name {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    color: var(--deep);
}

.testi-city {
    font-size: 12px;
    color: #9a7e58;
}

/* ─── CONTACT ─── */
.contact-section {
    background: var(--deep);
    padding: 90px 0;
}

.contact-form-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 147, 58, 0.25);
    border-radius: 4px;
    padding: 40px;
}

.contact-form-wrap label {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 6px;
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 147, 58, 0.3);
    color: white;
    border-radius: 2px;
    padding: 10px 14px;
    font-size: 14px;
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201, 147, 58, 0.15);
    color: white;
}

.contact-form-wrap .form-control::placeholder {
    color: #6a5038;
}

.contact-form-wrap .form-select option {
    background: var(--dark);
    color: white;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-label {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: #7a6040;
    margin-bottom: 4px;
}

.contact-info-value {
    color: var(--gold-light);
    font-size: 15px;
}

/* ─── FOOTER ─── */
footer {
    background: #0c0400;
    border-top: 2px solid rgba(201, 147, 58, 0.3);
    padding: 60px 0 0;
}

.footer-brand {
    font-family: 'Cinzel Decorative', serif;
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 13px;
    color: #6a5038;
    line-height: 1.7;
    max-width: 280px;
}

.footer-heading {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #7a6040;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 147, 58, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a6040;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 147, 58, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 147, 58, 0.1);
    margin-top: 40px;
    padding: 18px 0;
    text-align: center;
    font-size: 12px;
    color: #ffffff;
}

.footer-bottom span {
    color: var(--saffron);
}

/* ─── ZODIAC STRIP ─── */
.zodiac-strip {
    background: var(--saffron);
    overflow: hidden;
    padding: 12px 0;
}

.zodiac-scroll {
    display: flex;
    animation: scrollZodiac 20s linear infinite;
    white-space: nowrap;
    gap: 40px;
}

@keyframes scrollZodiac {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.zodiac-item {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    color: var(--deep);
    letter-spacing: 1px;
    flex-shrink: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 70px 0 60px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-val {
        font-size: 24px;
    }

    .about-img-placeholder {
        width: 100%;
        max-width: 300px;
        height: 360px;
    }

    .contact-form-wrap {
        padding: 24px;
    }

    .hero-mandala {
        display: none;
    }
}


.top-social {
    display: flex;
    gap: 12px;
}

.top-social a {
    color: white;
    font-size: 14px;
    transition: color 0.3s;
}

.top-social a:hover {
    color: var(--deep);
}

.navbar-brand .logo {
    height: 60px;

}




.navbar-nav .nav-link.active::after {
    left: 14px;
    right: 14px;
}

.navbar-nav .nav-link.active {
    color: var(--cream) !important;
}


/* ─── BREADCRUMB ─── */
.breadcrumb-bar {
    background: #1a0a00;
    border-bottom: 1px solid rgba(201, 147, 58, 0.2);
    padding: 10px 0;
}

.breadcrumb-bar .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    align-items: center;
    flex-wrap: nowrap;
}

.breadcrumb-bar .breadcrumb-item {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6a5038;
    display: flex;
    align-items: center;
}

.breadcrumb-bar .breadcrumb-item a {
    color: #9a7050;
    text-decoration: none;
    transition: color 0.25s;
}

.breadcrumb-bar .breadcrumb-item a:hover {
    color: #c9933a;
}

.breadcrumb-bar .breadcrumb-item.active {
    color: #c9933a;
}

.breadcrumb-bar .breadcrumb-item+.breadcrumb-item::before {
    content: '✦';
    color: #e07b20;
    font-size: 8px;
    padding: 0 10px;
    line-height: 1;
}

.breadcrumb-bar .breadcrumb-home-icon {
    font-size: 12px;
    margin-right: 5px;
    color: #9a7050;
}

.breadcrumb-page-title {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: #4a3020;
    margin-left: auto;
    white-space: nowrap;
}


/* ─── BLOG ─── */
.blog-section {
    background: var(--cream);
    padding: 90px 0;
}

.blog-intro {
    color: #9a7e58;
    font-size: 15px;
    margin-top: 14px;
}

.blog-card {
    background: white;
    border: 1px solid rgba(201, 147, 58, 0.25);
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    transition: all 0.35s;
}

.blog-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(201, 147, 58, 0.12);
}

.blog-thumb img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blog-thumb-icon {
    font-size: 56px;
    opacity: 0.75;
}

.blog-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--deep);
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
}

.blog-body {
    padding: 22px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 11px;
    color: #9a7e58;
    margin-bottom: 12px;
}

.blog-meta i {
    margin-right: 4px;
}

.blog-title {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    color: var(--deep);
    line-height: 1.5;
    margin-bottom: 10px;
}

.blog-excerpt {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 18px;
}

.blog-link {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.blog-link:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}


/* ─── GALLERY ─── */
.gallery-section {
    background: var(--mid);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '🔯';
    position: absolute;
    font-size: 300px;
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
}

.filter-btn {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 20px;
    border: 1px solid rgba(201, 147, 58, 0.35);
    background: transparent;
    color: #9a7050;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--deep);
    border-color: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 147, 58, 0.2);
    border-radius: 4px;
    aspect-ratio: 4/3;
    background: var(--deep);
    cursor: pointer;
}

.gallery-item.hidden {
    display: none;
}

.gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

/* Placeholder when no real image */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a0a00, #3a1a00);
    transition: transform 0.45s ease;
}

.gallery-placeholder span {
    font-size: 48px;
}

.gallery-placeholder p {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    color: #6a4020;
    letter-spacing: 1px;
    margin: 0;
}

.gallery-item:hover .gallery-thumb,
.gallery-item:hover .gallery-placeholder {
    transform: scale(1.07);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 10, 0, 0.88) 0%, rgba(26, 10, 0, 0.1) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 18px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-icon {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 6px;
}

.gallery-overlay-title {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--gold-light);
    text-align: center;
}

.gallery-overlay-cat {
    font-size: 11px;
    color: #9a7050;
    margin-top: 3px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Lightbox customization */
.lb-data .lb-caption {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    color: var(--gold-light) !important;
}

.lb-outerContainer {
    border: 2px solid var(--gold) !important;
    border-radius: 4px !important;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 0.7;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    opacity: 1;
}

.service-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}





/* ─── SERVICE SINGLE PAGE ─── */
.service-single-hero {
    background: var(--dark);
    padding: 50px 0 40px;
    border-bottom: 1px solid rgba(201, 147, 58, 0.2);
    position: relative;
    overflow: hidden;
}

.service-single-hero::before {
    content: 'ॐ';
    position: absolute;
    font-size: 300px;
    color: rgba(201, 147, 58, 0.03);
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-family: serif;
    pointer-events: none;
}

.service-single-hero .breadcrumb-bar {
    background: transparent;
    border: none;
    padding: 0 0 18px 0;
}

.service-hero-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 147, 58, 0.12);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 18px;
}

.service-single-hero h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(22px, 4vw, 38px);
    color: var(--gold-light);
    line-height: 1.25;
    margin-bottom: 14px;
}

.service-single-hero p {
    color: #9a8060;
    font-size: 15px;
    line-height: 1.9;
    max-width: 620px;
}

.service-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.service-hero-tag {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border: 1px solid rgba(201, 147, 58, 0.35);
    color: #9a7050;
    border-radius: 2px;
}

/* ─── MAIN CONTENT AREA ─── */
.service-single-body {
    background: var(--cream);
    padding: 60px 0 80px;
}

/* ─── MAIN COLUMN ─── */
.service-main img {
    width: 100%;
    border-radius: 4px;
    border: 2px solid rgba(201, 147, 58, 0.3);
    margin-bottom: 32px;
    object-fit: cover;
}

.service-img-placeholder {
    width: 100%;
    height: 360px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%);
    border: 2px solid rgba(201, 147, 58, 0.3);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 32px;
}

.service-img-placeholder span {
    font-size: 80px;
    opacity: 0.6;
}

.service-img-placeholder p {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 1px;
    margin: 0;
}

.service-main h2 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: var(--deep);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201, 147, 58, 0.25);
}

.service-main h3 {
    font-family: 'Cinzel', serif;
    font-size: 17px;
    color: var(--mid);
    margin: 28px 0 12px;
}

.service-main p {
    color: var(--text-mid);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.service-main ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 24px;
}

.service-main ul li {
    color: var(--text-mid);
    font-size: 14px;
    line-height: 1.8;
    padding: 7px 0 7px 26px;
    position: relative;
    border-bottom: 1px dashed rgba(201, 147, 58, 0.15);
}

.service-main ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 10px;
    top: 10px;
}

/* Process Steps */
.process-steps {
    margin: 32px 0;
}

.process-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 20px;
    background: white;
    border: 1px solid rgba(201, 147, 58, 0.2);
    border-radius: 4px;
    transition: border-color 0.3s;
}

.process-step:hover {
    border-color: var(--gold);
}

.process-step-num {
    width: 42px;
    height: 42px;
    background: var(--gold);
    color: var(--deep);
    font-family: 'Cinzel Decorative', serif;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-step-content h5 {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    color: var(--deep);
    margin-bottom: 6px;
}

.process-step-content p {
    font-size: 13px;
    color: #7a6040;
    line-height: 1.7;
    margin: 0;
}

/* FAQ */
.service-faq {
    margin-top: 36px;
}

.service-faq .accordion-item {
    background: white;
    border: 1px solid rgba(201, 147, 58, 0.2) !important;
    border-radius: 4px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.service-faq .accordion-button {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    color: var(--deep);
    background: white;
    letter-spacing: 0.5px;
    padding: 16px 20px;
    box-shadow: none !important;
}

.service-faq .accordion-button:not(.collapsed) {
    color: var(--gold);
    background: rgba(201, 147, 58, 0.05);
}

.service-faq .accordion-button::after {
    filter: sepia(1) saturate(3) hue-rotate(5deg);
}

.service-faq .accordion-body {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.85;
    padding: 0 20px 18px;
    border-top: 1px dashed rgba(201, 147, 58, 0.2);
}

/* ─── SIDEBAR ─── */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    border: 1px solid rgba(201, 147, 58, 0.25);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 24px;
}

.sidebar-card-header {
    background: var(--dark);
    padding: 14px 20px;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: var(--gold);
    text-transform: uppercase;
    border-bottom: 1px solid rgba(201, 147, 58, 0.25);
}

.sidebar-card-body {
    padding: 20px;
}

/* Book Now Card */
.sidebar-book-price {
    text-align: center;
    padding: 10px 0 20px;
}

.sidebar-price-label {
    font-size: 12px;
    color: #9a7e58;
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
}

.sidebar-price-val {
    font-family: 'Cinzel Decorative', serif;
    font-size: 36px;
    color: var(--gold);
    line-height: 1.1;
}

.sidebar-price-note {
    font-size: 11px;
    color: #9a7e58;
    margin-top: 4px;
}

.sidebar-book-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.sidebar-book-features li {
    font-size: 13px;
    color: var(--text-mid);
    padding: 7px 0;
    border-bottom: 1px dashed rgba(201, 147, 58, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-book-features li i {
    color: var(--gold);
    font-size: 13px;
    flex-shrink: 0;
}

.btn-gold-full {
    display: block;
    width: 100%;
    background: var(--gold);
    color: var(--deep);
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 13px;
    border: none;
    border-radius: 2px;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s;
    cursor: pointer;
    margin-bottom: 10px;
}

.btn-gold-full:hover {
    background: var(--gold-light);
    color: var(--deep);
}

.btn-whatsapp {
    display: block;
    width: 100%;
    background: #25d366;
    color: white;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 11px;
    border: none;
    border-radius: 2px;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    color: white;
}

/* Astrologer Card */
.sidebar-astrologer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.sidebar-astro-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark), var(--mid));
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.sidebar-astro-name {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    color: var(--deep);
    line-height: 1.4;
}

.sidebar-astro-exp {
    font-size: 11px;
    color: #9a7e58;
    margin-top: 3px;
}

.sidebar-astro-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.75;
}

/* Related Services */
.related-service-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(201, 147, 58, 0.2);
    text-decoration: none;
    transition: all 0.25s;
}

.related-service-item:last-child {
    border-bottom: none;
}

.related-service-item:hover .related-service-title {
    color: var(--gold);
}

.related-service-icon {
    width: 40px;
    height: 40px;
    background: rgba(201, 147, 58, 0.1);
    border: 1px solid rgba(201, 147, 58, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.related-service-title {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    color: var(--deep);
    line-height: 1.4;
    transition: color 0.25s;
}

.related-service-arrow {
    margin-left: auto;
    color: var(--gold);
    font-size: 13px;
    flex-shrink: 0;
}

/* Contact Info */
.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px dashed rgba(201, 147, 58, 0.15);
    font-size: 13px;
    color: var(--text-mid);
    text-decoration: none;
}

.sidebar-contact-item:last-child {
    border-bottom: none;
}

.sidebar-contact-item i {
    color: var(--gold);
    font-size: 15px;
    flex-shrink: 0;
}

.sidebar-contact-item:hover {
    color: var(--gold);
}

.map iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 4px;
}


.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #2db742;
    display: flex;
    padding: 10px 12px;
    border-radius: 40px;
    align-items: center;
    z-index: 99999999
}

.whatsapp-btn {
    text-decoration: none;
}

.whatsapp-btn:hover {
    padding: 10px 12px;
}

.whatsapp-btn .icon img {
    width: 40px;
    height: 40px
}

.whatsapp-btn .whatsapp-btn-text {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.5s ease, opacity 0.5s ease
}

.whatsapp-btn .whatsapp-btn-text .whatsapp-info {
    display: flex;
    align-items: flex-start
}

.whatsapp-btn .whatsapp-btn-text .whatsapp-info .name {
    font-size: 12px;
    color: #fff;
    margin-right: 5px;
    font-weight: 500
}

.whatsapp-btn .whatsapp-btn-text .whatsapp-info .status {
    font-size: 10px;
    padding: 0 4px;
    border-radius: 2px;
    background: #62c971;
    color: #000
}

.whatsapp-btn .whatsapp-btn-text .whatsapp-btn-title {
    color: #000;
    font-size: 12px;
    font-weight: 600
}

.whatsapp-btn:hover .whatsapp-btn-text {
    margin-left: 10px;
    opacity: 1;
    max-width: 200px
}


/* ─── DROPDOWN ─── */
.navbar .dropdown-menu {
    background: var(--deep);
    border: 1px solid rgba(201, 147, 58, 0.3);
    border-radius: 4px;
    padding: 8px 0;
    margin-top: 8px;
    min-width: 230px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.navbar .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: var(--deep);
    border-left: 1px solid rgba(201, 147, 58, 0.3);
    border-top: 1px solid rgba(201, 147, 58, 0.3);
    transform: rotate(45deg);
}

.navbar .dropdown-item {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 0.8px;
    color: #9a8060;
    padding: 10px 20px;
    transition: all 0.25s;
    border-bottom: 1px solid rgba(201, 147, 58, 0.07);
}

.navbar .dropdown-item:last-child {
    border-bottom: none;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item.active {
    background: rgba(201, 147, 58, 0.1);
    color: var(--gold-light);
}

.navbar .dropdown-divider {
    border-color: rgba(201, 147, 58, 0.2);
    margin: 4px 0;
}

.navbar .dropdown-toggle::after {
    border-top-color: var(--gold);
    margin-left: 6px;
}

.navbar-nav .nav-link.show {
    color: var(--cream);
}