:root {
    --deep-indigo: #1A1035;
    --royal-plum: #2A1A4A;
    --soft-violet: #6F6488;

    --logo-gold: #C89B35;
    --logo-gold-light: #E7C76B;
    --sacred-gold: #C89B35;
    --pure-gold: #D8AA40;
    --antique-bronze: #8B6010;

    --warm-beige: #EADBC2;
    --ivory-cream: #FBF6EC;
    --page-light: #FFF9F0;
    --section-light: #F7EEDC;
    --card-light: rgba(255, 249, 240, 0.88);

    --brand-font: "Cinzel", serif;
    --heading-font: "Bodoni Moda", serif;
    --body-font: "Jost", sans-serif;

    --shadow-soft: 0 20px 55px rgba(26, 16, 53, 0.12);
    --shadow-card: 0 16px 42px rgba(26, 16, 53, 0.10);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--body-font);
    color: var(--deep-indigo);
    background: var(--page-light);
    overflow-x: hidden;
    padding-top: 88px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

main {
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 8%, rgba(200, 155, 53, 0.08), transparent 32%),
        linear-gradient(180deg, var(--page-light) 0%, #F8EEDC 100%);
}

::selection {
    background: var(--logo-gold);
    color: var(--deep-indigo);
}

/* Buttons */
.btn {
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.btn-brand,
.btn-primary {
    background: var(--logo-gold) !important;
    border: 1px solid var(--logo-gold) !important;
    color: var(--deep-indigo) !important;
    padding: 0.82rem 1.42rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-brand:hover,
.btn-primary:hover {
    background: var(--deep-indigo) !important;
    border-color: var(--deep-indigo) !important;
    color: var(--ivory-cream) !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(26, 16, 53, 0.24);
}

.btn-brand-outline,
.btn-outline-primary {
    background: transparent !important;
    border: 1px solid var(--logo-gold) !important;
    color: var(--deep-indigo) !important;
    padding: 0.82rem 1.42rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-brand-outline:hover,
.btn-outline-primary:hover {
    background: var(--deep-indigo) !important;
    border-color: var(--deep-indigo) !important;
    color: var(--ivory-cream) !important;
    transform: translateY(-3px);
}

.btn-brand-sm {
    background: var(--logo-gold);
    color: var(--deep-indigo);
    border: 1px solid var(--logo-gold);
    padding: 0.62rem 1.15rem;
    font-size: 0.92rem;
}

.btn-brand-sm:hover {
    background: var(--deep-indigo);
    border-color: var(--deep-indigo);
    color: var(--ivory-cream);
}


/* Brand wordmark helpers */
.logo-text-main,
.brand-wordmark,
.deoshala-wordmark {
    font-family: var(--brand-font);
    color: var(--deep-indigo);
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    line-height: 1;
}

.logo-text-sub,
.brand-subtitle,
.deoshala-subtitle {
    font-family: var(--brand-font);
    color: var(--logo-gold);
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

/* Common */
.section-padding {
    position: relative;
    padding: 92px 0;
}

.soft-section {
    background:
        radial-gradient(circle at top left, rgba(200, 155, 53, 0.12), transparent 32%),
        linear-gradient(135deg, var(--page-light) 0%, var(--section-light) 100%);
}

.section-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(49, 40, 77, 0.10) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--logo-gold);
    margin-bottom: 0.9rem;
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--logo-gold);
    opacity: 0.45;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 52px;
}

.section-heading h2 {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: clamp(2.35rem, 4.8vw, 4.2rem);
    line-height: 1.05;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-heading p {
    color: var(--soft-violet);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* Hero fixed for laptop */
.hero-section {
    min-height: auto;
    position: relative;
    display: flex;
    align-items: center;
    padding: 54px 0 68px;
    background:
        radial-gradient(circle at 8% 18%, rgba(200, 155, 53, 0.12), transparent 24%),
        radial-gradient(circle at 93% 76%, rgba(42, 26, 74, 0.08), transparent 28%),
        linear-gradient(135deg, var(--page-light) 0%, var(--section-light) 100%);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.38;
    background-image:
        linear-gradient(135deg, rgba(49, 40, 77, 0.06) 1px, transparent 1px),
        linear-gradient(45deg, rgba(49, 40, 77, 0.04) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to right, black, transparent 78%);
}

.pattern {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.pattern-leaf-one {
    width: 170px;
    height: 92px;
    left: 5%;
    top: 16%;
    opacity: 0.11;
    border: 3px solid var(--soft-violet);
    border-left: 0;
    border-bottom: 0;
    border-radius: 100% 0 100% 0;
    transform: rotate(-12deg);
}

.pattern-circle-one {
    width: 250px;
    height: 250px;
    right: -90px;
    top: 140px;
    border-radius: 50%;
    background: rgba(95, 84, 124, 0.11);
}

.pattern-dots-one {
    width: 190px;
    height: 190px;
    right: 13%;
    bottom: 8%;
    opacity: 0.25;
    background-image: radial-gradient(circle, var(--soft-violet) 2px, transparent 2px);
    background-size: 22px 22px;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--heading-font);
    font-size: clamp(3.35rem, 5.2vw, 5.1rem);
    font-weight: 500;
    line-height: 0.98;
    color: var(--deep-indigo);
    margin-bottom: 1.15rem;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    color: var(--soft-violet);
    font-size: 1.05rem;
    line-height: 1.72;
    max-width: 590px;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    max-width: 620px;
}

.hero-mini-stats div {
    background: rgba(234, 219, 194, 0.56);
    border: 1px solid rgba(200, 155, 53, 0.16);
    padding: 0.95rem;
    border-radius: var(--radius-md);
}

.hero-mini-stats strong {
    display: block;
    font-family: var(--heading-font);
    font-size: 1.22rem;
    color: var(--deep-indigo);
}

.hero-mini-stats span {
    color: var(--soft-violet);
    font-size: 0.82rem;
}

.hero-image-card {
    position: relative;
    border-radius: 34px;
    padding: 13px;
    background: rgba(229, 221, 210, 0.76);
    box-shadow: var(--shadow-soft);
}

.hero-image {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 25px;
    filter: saturate(0.82);
}

.hero-floating-card {
    position: absolute;
    left: -12px;
    bottom: 30px;
    background: var(--deep-indigo);
    color: var(--ivory-cream);
    border-radius: 999px;
    padding: 0.85rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    box-shadow: var(--shadow-card);
    font-size: 0.92rem;
}

.hero-floating-card i {
    color: var(--logo-gold);
}

/* About */
.portrait-card {
    position: sticky;
    top: 105px;
    padding: 13px;
    border-radius: 34px;
    background: rgba(234, 219, 194, 0.72);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
}

.portrait-card img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 25px;
    filter: saturate(0.85);
}

.about-content h3 {
    font-family: var(--heading-font);
    font-size: clamp(2.4rem, 4vw, 4.1rem);
    color: var(--deep-indigo);
    margin-bottom: 0.35rem;
}

.lead-text {
    color: var(--royal-plum);
    font-weight: 700;
    font-size: 1.06rem;
}

.about-content p {
    color: var(--soft-violet);
    line-height: 1.8;
    font-size: 1.01rem;
}

.info-card,
.contact-card,
.principle-card,
.form-card {
    background: var(--card-light);
    border: 1px solid rgba(200, 155, 53, 0.18);
    border-radius: var(--radius-lg);
    padding: 1.55rem;
    box-shadow: var(--shadow-card);
}

.info-card i,
.contact-card i,
.principle-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--warm-beige);
    color: var(--deep-indigo);
    margin-bottom: 1rem;
}

.info-card h4,
.contact-card h3,
.principle-card h3 {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: 1.5rem;
}

.info-card p,
.contact-card p,
.principle-card p {
    color: var(--soft-violet);
    line-height: 1.7;
    margin-bottom: 0;
}

.principle-card {
    height: 100%;
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-8px);
}

/* Cards */
.modern-card {
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--card-light);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
    transition: all 0.35s ease;
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(18, 11, 45, 0.16);
}

.card-image {
    position: relative;
    display: block;
    height: 250px;
    overflow: hidden;
    background: var(--warm-beige);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
    filter: saturate(0.86);
}

.modern-card:hover .card-image img {
    transform: scale(1.08);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 230px;
    background:
        radial-gradient(circle at center, rgba(95, 84, 124, 0.18), transparent 55%),
        var(--warm-beige);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder.large {
    min-height: 340px;
}

.image-placeholder i {
    font-size: 3.3rem;
    color: var(--royal-plum);
}

.modern-card-body {
    padding: 1.5rem;
}

.card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--soft-violet);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.card-topline strong {
    color: var(--royal-plum);
}

.modern-card h3 {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: 1.68rem;
    line-height: 1.18;
    margin-bottom: 0.8rem;
}

.modern-card h3 a:hover {
    color: var(--soft-violet);
}

.modern-card p {
    color: var(--soft-violet);
    line-height: 1.68;
    margin-bottom: 1.2rem;
}

.text-link {
    color: var(--deep-indigo);
    font-weight: 700;
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
}

.text-link:hover {
    color: var(--soft-violet);
}

.floating-label {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--logo-gold);
    color: var(--deep-indigo);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

/* Retreat */
.retreat-card {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: var(--card-light);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
}

.retreat-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    color: var(--deep-indigo);
    background: var(--logo-gold);
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.retreat-badge.upcoming {
    background: var(--logo-gold);
}

.retreat-image {
    display: block;
    height: 325px;
    overflow: hidden;
}

.retreat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.86);
    transition: transform 0.55s ease;
}

.retreat-card:hover .retreat-image img {
    transform: scale(1.06);
}

.retreat-body {
    padding: 1.65rem;
}

.date-line,
.location-line {
    color: var(--soft-violet);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.retreat-body h3 {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: 1.95rem;
    line-height: 1.15;
    margin: 0.75rem 0;
}

.retreat-body p {
    color: var(--soft-violet);
    line-height: 1.68;
}

.retreat-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(200, 155, 53, 0.18);
}

.retreat-footer span {
    color: var(--soft-violet);
}

.retreat-footer strong {
    color: var(--deep-indigo);
}

/* Testimonials */
.swiper {
    padding-bottom: 56px !important;
}

.swiper-pagination-bullet {
    background: var(--soft-violet);
    opacity: 0.45;
}

.swiper-pagination-bullet-active {
    background: var(--deep-indigo);
    opacity: 1;
}

.testimonial-card {
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--card-light);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
}

.testimonial-video {
    position: relative;
    height: 225px;
    background: var(--warm-beige);
}

.testimonial-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 66px;
    height: 66px;
    border: 0;
    border-radius: 50%;
    background: var(--ivory-cream);
    color: var(--deep-indigo);
    box-shadow: var(--shadow-card);
}

.testimonial-body {
    padding: 1.65rem;
    position: relative;
}

.quote-mark {
    color: var(--logo-gold);
    font-size: 2.3rem;
    margin-bottom: 0.75rem;
}

.testimonial-body p {
    color: var(--soft-violet);
    line-height: 1.75;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(200, 155, 53, 0.16);
}

.testimonial-author img,
.avatar-placeholder {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--royal-plum);
    color: var(--ivory-cream);
    font-weight: 700;
}

.testimonial-author h4 {
    margin: 0;
    color: var(--deep-indigo);
    font-size: 1rem;
    font-weight: 700;
}

.testimonial-author span {
    color: var(--soft-violet);
    font-size: 0.9rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.gallery-item {
    min-height: 300px;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-card);
    background: var(--warm-beige);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.55s ease;
    filter: saturate(0.86);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 11, 45, 0.78), transparent 60%);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-content {
    position: absolute;
    z-index: 2;
    left: 1.3rem;
    right: 1.3rem;
    bottom: 1.3rem;
    color: var(--ivory-cream);
}

.gallery-content span {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--logo-gold);
}

.gallery-content h3 {
    font-family: var(--heading-font);
    font-size: 1.48rem;
    margin: 0.35rem 0 0;
}

/* Contact */
.contact-section {
    background:
        radial-gradient(circle at 80% 10%, rgba(95, 84, 124, 0.12), transparent 35%),
        var(--ivory-cream);
}

.contact-card {
    height: 100%;
    text-align: center;
}

.form-card {
    height: 100%;
}

.form-label {
    color: var(--deep-indigo);
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.form-control {
    border-radius: 15px;
    border: 1px solid rgba(200, 155, 53, 0.24);
    background: rgba(255, 249, 240, 0.88);
    color: var(--deep-indigo);
    padding: 0.92rem 1rem;
}

.form-control::placeholder {
    color: rgba(95, 84, 124, 0.72);
}

.form-control:focus {
    background: var(--ivory-cream);
    border-color: var(--logo-gold);
    box-shadow: 0 0 0 0.25rem rgba(200, 155, 53, 0.16);
    color: var(--deep-indigo);
}

.input-group-text {
    background: var(--warm-beige);
    border-color: rgba(200, 155, 53, 0.24);
    color: var(--deep-indigo);
    border-radius: 15px;
}

.form-message {
    display: none;
    border-radius: 16px;
    padding: 0.9rem 1rem;
    font-weight: 600;
}

.form-message.success,
.form-message.error {
    display: block;
}

.form-message.success {
    background: var(--warm-beige);
    color: var(--deep-indigo);
    border: 1px solid rgba(18, 11, 45, 0.16);
}

.form-message.error {
    background: var(--royal-plum);
    color: var(--ivory-cream);
    border: 1px solid var(--royal-plum);
}

.map-card {
    height: 100%;
    min-height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(200, 155, 53, 0.18);
}

/* Video Modal */
.video-modal-content {
    background: var(--deep-indigo);
    border: 0;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.video-close {
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 2;
    background-color: var(--ivory-cream);
    opacity: 1;
    border-radius: 50%;
}

/* Footer */
.footer {
    background:
        radial-gradient(circle at 12% 0%, rgba(200, 155, 53, 0.12), transparent 30%),
        linear-gradient(180deg, var(--page-light) 0%, #F0DFC1 100%);
    color: var(--deep-indigo);
    border-top: 1px solid rgba(200, 155, 53, 0.25);
    padding: 76px 0 28px;
}

.footer-logo-img {
    height: 108px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.1rem;
    filter: none;
}

.footer p {
    color: var(--soft-violet);
    line-height: 1.75;
}

.footer-links h3,
.footer-contact h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--deep-indigo);
    margin-bottom: 1.15rem;
}

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

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer a {
    color: var(--soft-violet);
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--deep-indigo);
}

.footer-contact p {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--logo-gold);
    margin-top: 0.28rem;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 249, 240, 0.75);
    border: 1px solid rgba(200, 155, 53, 0.28);
    color: var(--deep-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    background: var(--deep-indigo);
    color: var(--ivory-cream);
    transform: translateY(-4px);
}

.btn-footer {
    background: var(--deep-indigo);
    color: var(--ivory-cream) !important;
    border: 1px solid var(--deep-indigo);
    padding: 0.75rem 1.25rem;
    display: inline-flex;
    margin-top: 0.7rem;
}

.btn-footer:hover {
    background: var(--logo-gold);
    border-color: var(--logo-gold);
    color: var(--deep-indigo) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(26, 16, 53, 0.12);
    margin-top: 46px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.92rem;
}

/* Floating buttons */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--logo-gold);
    color: var(--deep-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    box-shadow: 0 18px 45px rgba(26, 16, 53, 0.22);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    color: var(--ivory-cream);
    background: var(--deep-indigo);
    transform: translateY(-5px) scale(1.04);
}

.retreatModalButton {
    background: var(--logo-gold) !important;
    border-color: var(--logo-gold) !important;
    color: var(--deep-indigo) !important;
    position: fixed;
    right: -5%;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    z-index: 999;
    border-radius: 8px 8px 0 0;
    padding: 0.75rem 1.3rem;
}

.retreatModalButton:hover {
    background-color: var(--deep-indigo) !important;
    color: var(--ivory-cream) !important;
    transform: translateY(-50%) rotate(-90deg) !important;
}

/* Retreat Modal */
.retreat-modal-content {
    border: 0;
    border-radius: 26px;
    overflow: hidden;
    background: var(--ivory-cream);
}

.retreat-modal-content .modal-header {
    background: var(--deep-indigo);
    color: var(--ivory-cream);
    border-bottom: 0;
    padding: 1.3rem 1.5rem;
}

.retreat-modal-content .modal-title {
    font-family: var(--heading-font);
    font-size: 1.45rem;
}

.retreat-modal-content .modal-body {
    padding: 1.5rem;
}

.retreat-modal-content .modal-footer {
    border-top: 1px solid rgba(200, 155, 53, 0.18);
    padding: 1rem 1.5rem;
}

.form-section {
    padding-bottom: 1.4rem;
    margin-bottom: 1.4rem;
    border-bottom: 1px solid rgba(200, 155, 53, 0.18);
}

.form-section:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section-title {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.retreat-modal-content .form-check-label {
    color: var(--soft-violet);
    font-weight: 500;
}

.retreat-modal-content .alert-info {
    background: var(--warm-beige);
    border-color: rgba(200, 155, 53, 0.18);
    color: var(--deep-indigo);
}

.retreat-modal-content .alert-warning {
    background: rgba(234, 219, 194, 0.65);
    border-color: rgba(200, 155, 53, 0.18);
    color: var(--royal-plum);
}

.retreat-modal-content .alert-light {
    background: var(--card-light);
    border-color: rgba(200, 155, 53, 0.18);
    color: var(--soft-violet);
}

/* Laptop height fix */
@media (min-width: 992px) and (max-height: 820px) {
    body {
        padding-top: 78px;
    }

    .hero-section {
        padding: 38px 0 48px;
    }

    .hero-title {
        font-size: clamp(3rem, 4.45vw, 4.25rem);
        line-height: 0.98;
        margin-bottom: 0.95rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.58;
        margin-bottom: 1.1rem;
    }

    .hero-actions {
        margin-bottom: 1rem;
    }

    .hero-mini-stats div {
        padding: 0.78rem;
    }

    .hero-image {
        height: 365px;
    }

    .hero-image-card {
        border-radius: 28px;
    }

    .hero-floating-card {
        bottom: 22px;
    }
}

/* Responsive */
@media (max-width: 1199px) {
    body {
        padding-top: 82px;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 78px 0;
    }

    .hero-section {
        padding: 50px 0 72px;
    }

    .hero-mini-stats {
        grid-template-columns: 1fr;
    }

    .hero-image {
        height: 500px;
    }

    .portrait-card {
        position: relative;
        top: 0;
    }

    .portrait-card img {
        height: 500px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 76px;
    }

    .hero-title {
        font-size: clamp(2.65rem, 12vw, 4rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        height: 410px;
    }

    .hero-floating-card {
        left: 16px;
        right: 16px;
        bottom: 24px;
        justify-content: center;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2 {
        font-size: clamp(2.15rem, 10vw, 3rem);
    }

    .portrait-card img {
        height: 420px;
    }

    .card-image,
    .retreat-image {
        height: 235px;
    }

    .retreat-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        min-height: 275px;
    }

    .map-card {
        min-height: 350px;
    }

    .footer {
        text-align: center;
    }

    .footer-logo-img {
        margin-left: auto;
        margin-right: auto;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .retreatModalButton {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .eyebrow {
        letter-spacing: 0.16em;
        font-size: 0.66rem;
    }

    .eyebrow::before,
    .eyebrow::after {
        width: 18px;
    }

    .hero-image {
        height: 340px;
    }

    .portrait-card img {
        height: 350px;
    }

    .info-card,
    .contact-card,
    .principle-card,
    .form-card,
    .modern-card-body,
    .retreat-body,
    .testimonial-body {
        padding: 1.2rem;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 18px;
        bottom: 18px;
    }
}


/* =========================================================
   DEOSHALA SECTION BACKGROUND PATTERNS
   Add this at the END of style.css
========================================================= */

main>section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

main>section>.container {
    position: relative;
    z-index: 2;
}

main>section::before,
main>section::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

main>section:nth-of-type(odd)::before {
    width: 340px;
    height: 340px;
    right: -90px;
    top: 70px;
    opacity: 0.16;
    background-image: radial-gradient(circle, var(--soft-violet) 2px, transparent 2px);
    background-size: 24px 24px;
    transform: rotate(8deg);
}

main>section:nth-of-type(even)::before {
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(135deg, rgba(18, 11, 45, 0.05) 1px, transparent 1px),
        linear-gradient(45deg, rgba(95, 84, 124, 0.04) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
}

main>section:nth-of-type(4n + 1)::after {
    width: 230px;
    height: 120px;
    left: -55px;
    bottom: 80px;
    opacity: 0.12;
    border: 4px solid var(--deep-indigo);
    border-left: 0;
    border-bottom: 0;
    border-radius: 100% 0 100% 0;
    transform: rotate(-16deg);
}

main>section:nth-of-type(4n + 1) .container::before {
    content: "";
    position: absolute;
    width: 155px;
    height: 3px;
    left: -28px;
    bottom: 132px;
    background: var(--deep-indigo);
    opacity: 0.10;
    transform: rotate(-27deg);
    border-radius: 999px;
    pointer-events: none;
    z-index: -1;
}

main>section:nth-of-type(4n + 2)::after {
    width: 360px;
    height: 360px;
    right: -120px;
    bottom: -110px;
    opacity: 0.12;
    background:
        radial-gradient(ellipse at 50% 10%, var(--royal-plum) 0 18%, transparent 19%),
        radial-gradient(ellipse at 28% 34%, var(--soft-violet) 0 16%, transparent 17%),
        radial-gradient(ellipse at 72% 34%, var(--soft-violet) 0 16%, transparent 17%),
        radial-gradient(ellipse at 38% 66%, var(--deep-indigo) 0 14%, transparent 15%),
        radial-gradient(ellipse at 62% 66%, var(--deep-indigo) 0 14%, transparent 15%);
    filter: blur(0.2px);
}

main>section:nth-of-type(4n + 3)::after {
    width: 420px;
    height: 420px;
    left: -180px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.10;
    border: 1px solid var(--deep-indigo);
    border-radius: 50%;
    box-shadow:
        45px 0 0 -8px transparent,
        45px 0 0 -7px var(--royal-plum),
        90px 0 0 -16px transparent,
        90px 0 0 -15px var(--soft-violet);
}

main>section:nth-of-type(4n + 4)::after {
    width: 320px;
    height: 190px;
    right: 6%;
    top: 90px;
    opacity: 0.16;
    background: none;
    border: 3px solid var(--soft-violet);
    border-left: 0;
    border-bottom: 0;
    border-radius: 100% 0 100% 0;
    transform: rotate(18deg);
}

main>section:nth-of-type(4n + 4) .container::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 3px;
    right: -5%;
    top: 100px;
    background: var(--soft-violet);
    opacity: 0.13;
    border-radius: 999px;
    transform: rotate(-18deg);
    pointer-events: none;
    z-index: -1;
}

main>section:nth-of-type(4n + 4) .container {
    position: relative;
    z-index: 2;
}

.hero-section::before {
    opacity: 0.24;
}

.hero-section .pattern-leaf-one {
    opacity: 0.16;
}

.hero-section .pattern-circle-one {
    opacity: 0.14;
}

.hero-section .pattern-dots-one {
    opacity: 0.20;
}

.soft-section::before {
    opacity: 0.12;
}

.soft-section::after {
    opacity: 0.10;
}

.form-card,
.modern-card,
.retreat-card,
.testimonial-card,
.contact-card,
.info-card,
.principle-card,
.gallery-item,
.map-card {
    position: relative;
    z-index: 3;
}

@media (max-width: 767px) {
    main>section::before {
        opacity: 0.08 !important;
    }

    main>section::after {
        opacity: 0.07 !important;
        transform: scale(0.75);
    }

    main>section:nth-of-type(odd)::before {
        width: 220px;
        height: 220px;
        right: -90px;
        top: 50px;
        background-size: 20px 20px;
    }

    main>section:nth-of-type(4n + 1)::after {
        width: 170px;
        height: 90px;
        left: -65px;
        bottom: 50px;
    }

    main>section:nth-of-type(4n + 1) .container::before {
        display: none;
    }
}


main>section:nth-of-type(even) {
    position: relative;
    overflow: hidden;
}


/* =========================================================
   SERVICES INDEX + SERVICE SHOW PAGE
========================================================= */

.inner-hero-section {
    position: relative;
    padding: 74px 0 76px;
    background:
        radial-gradient(circle at 12% 20%, rgba(95, 84, 124, 0.14), transparent 28%),
        radial-gradient(circle at 88% 78%, rgba(49, 40, 77, 0.10), transparent 30%),
        linear-gradient(135deg, var(--page-light) 0%, var(--section-light) 100%);
    overflow: hidden;
}

.inner-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.28;
    background-image:
        linear-gradient(135deg, rgba(18, 11, 45, 0.05) 1px, transparent 1px),
        linear-gradient(45deg, rgba(95, 84, 124, 0.04) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to right, black, transparent 82%);
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
}

.inner-hero-content h1 {
    font-family: var(--heading-font);
    font-size: clamp(2.9rem, 6vw, 5.7rem);
    line-height: 0.98;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--deep-indigo);
    margin-bottom: 1.1rem;
}

.inner-hero-content p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--soft-violet);
    font-size: 1.08rem;
    line-height: 1.75;
}

.inner-hero-pattern {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.inner-hero-pattern-left {
    width: 220px;
    height: 120px;
    left: -60px;
    bottom: 45px;
    opacity: 0.12;
    border: 4px solid var(--deep-indigo);
    border-left: 0;
    border-bottom: 0;
    border-radius: 100% 0 100% 0;
    transform: rotate(-15deg);
}

.inner-hero-pattern-right {
    width: 220px;
    height: 220px;
    right: -70px;
    top: 42px;
    opacity: 0.14;
    background-image: radial-gradient(circle, var(--soft-violet) 2px, transparent 2px);
    background-size: 22px 22px;
    transform: rotate(12deg);
}

/* Service filter */
.service-filter-section {
    position: relative;
    padding: 0 0 18px;
    margin-top: -34px;
    z-index: 4;
}

.service-filter-card {
    background: rgba(245, 241, 234, 0.88);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
    border-radius: 999px;
    padding: 0.85rem;
    backdrop-filter: blur(14px);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.service-filter-btn {
    border: 1px solid rgba(49, 40, 77, 0.18);
    background: transparent;
    color: var(--royal-plum);
    border-radius: 999px;
    padding: 0.72rem 1.2rem;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.service-filter-btn:hover,
.service-filter-btn.active-filter {
    background: var(--deep-indigo);
    border-color: var(--deep-indigo);
    color: var(--ivory-cream);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(18, 11, 45, 0.18);
}

/* Services listing */
.services-grid-section {
    padding-top: 72px;
}

.service-list-row {
    min-height: 320px;
}

.service-item {
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.service-item.service-fade-in {
    opacity: 1;
    transform: scale(1);
}

.service-item.service-fade-out {
    opacity: 0;
    transform: scale(0.94);
}

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

.services-page-card {
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--card-light);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
    transition: all 0.35s ease;
}

.services-page-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(18, 11, 45, 0.16);
}

.services-page-card-image {
    position: relative;
    height: 255px;
    display: block;
    overflow: hidden;
    background: var(--warm-beige);
}

.services-page-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.86);
    transition: transform 0.55s ease;
}

.services-page-card:hover .services-page-card-image img {
    transform: scale(1.08);
}

.services-page-placeholder {
    width: 100%;
    height: 100%;
    min-height: 255px;
    background:
        radial-gradient(circle at center, rgba(95, 84, 124, 0.18), transparent 55%),
        var(--warm-beige);
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-page-placeholder i {
    font-size: 3.5rem;
    color: var(--royal-plum);
}

.services-page-placeholder.small-placeholder {
    min-height: 210px;
}

.service-featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--logo-gold);
    color: var(--deep-indigo);
    padding: 0.48rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.services-page-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 11, 45, 0.58);
    color: var(--ivory-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.32s ease;
}

.services-page-overlay span {
    background: var(--ivory-cream);
    color: var(--deep-indigo);
    border-radius: 999px;
    padding: 0.78rem 1.2rem;
    font-weight: 800;
}

.services-page-card:hover .services-page-overlay {
    opacity: 1;
}

.services-page-card-body {
    padding: 1.55rem;
}

.services-page-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    color: var(--soft-violet);
    font-size: 0.86rem;
}

.services-page-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
}

.services-page-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.services-page-title-row h3 {
    font-family: var(--heading-font);
    font-size: 1.72rem;
    line-height: 1.12;
    margin: 0;
    color: var(--deep-indigo);
}

.services-page-title-row h3 a:hover {
    color: var(--soft-violet);
}

.service-price-pill {
    flex-shrink: 0;
    background: var(--logo-gold);
    color: var(--deep-indigo);
    border-radius: 999px;
    padding: 0.42rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 800;
}

.services-page-card-body p {
    color: var(--soft-violet);
    line-height: 1.72;
    margin-bottom: 1.2rem;
}

.services-page-card-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(200, 155, 53, 0.16);
}

.empty-state-card {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    padding: 3.2rem 2rem;
    border-radius: var(--radius-lg);
    background: var(--card-light);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
}

.empty-state-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: var(--warm-beige);
    color: var(--deep-indigo);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.empty-state-card h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--deep-indigo);
}

.empty-state-card p {
    color: var(--soft-violet);
    margin-bottom: 0;
}

/* Pagination */
.deoshala-pagination nav {
    display: flex;
    justify-content: center;
}

.deoshala-pagination .pagination {
    gap: 0.45rem;
    flex-wrap: wrap;
    justify-content: center;
}

.deoshala-pagination .page-link {
    border-radius: 999px !important;
    border: 1px solid rgba(200, 155, 53, 0.24);
    background: var(--card-light);
    color: var(--royal-plum);
    font-weight: 700;
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.deoshala-pagination .page-item.active .page-link {
    background: var(--deep-indigo);
    border-color: var(--deep-indigo);
    color: var(--ivory-cream);
}

.deoshala-pagination .page-link:hover {
    background: var(--royal-plum);
    border-color: var(--royal-plum);
    color: var(--ivory-cream);
}

/* CTA */
.service-cta-section {
    position: relative;
    padding: 88px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(95, 84, 124, 0.10), transparent 28%),
        var(--warm-beige);
    overflow: hidden;
}

.service-cta-section::before {
    content: "DEOSHALA";
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-family: var(--heading-font);
    font-size: clamp(4rem, 12vw, 11rem);
    letter-spacing: 0.08em;
    color: var(--soft-violet);
    opacity: 0.055;
    white-space: nowrap;
    pointer-events: none;
}

.service-cta-card {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    border-radius: 36px;
    padding: 3rem 2rem;
    background: var(--card-light);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
}

.service-cta-card h2 {
    font-family: var(--heading-font);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
    color: var(--deep-indigo);
    margin-bottom: 1rem;
}

.service-cta-card p {
    max-width: 680px;
    margin: 0 auto 1.6rem;
    color: var(--soft-violet);
    line-height: 1.75;
}

/* Service detail page */
.service-detail-section {
    padding-top: 78px;
}

.deoshala-breadcrumb {
    margin-bottom: 1.5rem;
}

.deoshala-breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
}

.deoshala-breadcrumb .breadcrumb-item,
.deoshala-breadcrumb .breadcrumb-item a {
    color: var(--soft-violet);
    font-weight: 700;
}

.deoshala-breadcrumb .breadcrumb-item.active {
    color: var(--deep-indigo);
}

.deoshala-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: var(--soft-violet);
}

.service-detail-card {
    overflow: hidden;
    border-radius: 38px;
    background: var(--card-light);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
}

.service-detail-image {
    position: relative;
    height: 100%;
    min-height: 620px;
    background: var(--warm-beige);
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.86);
}

.service-detail-placeholder {
    width: 100%;
    height: 100%;
    min-height: 620px;
    background:
        radial-gradient(circle at center, rgba(95, 84, 124, 0.18), transparent 55%),
        var(--warm-beige);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-placeholder i {
    font-size: 5rem;
    color: var(--royal-plum);
}

.detail-badge {
    top: 24px;
    left: 24px;
}

.service-detail-content {
    height: 100%;
    padding: 2.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.1rem;
}

.service-detail-top h2 {
    font-family: var(--heading-font);
    font-size: clamp(2.3rem, 4vw, 4.4rem);
    line-height: 1;
    color: var(--deep-indigo);
    margin: 0;
}

.service-detail-price {
    flex-shrink: 0;
    background: var(--deep-indigo);
    color: var(--ivory-cream);
    border-radius: 999px;
    padding: 0.75rem 1.1rem;
    font-weight: 800;
    font-size: 1rem;
}

.service-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--warm-beige);
    color: var(--royal-plum);
    border: 1px solid rgba(200, 155, 53, 0.16);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.service-detail-description {
    color: var(--soft-violet);
    font-size: 1.04rem;
    line-height: 1.85;
    margin-bottom: 1.8rem;
}

.service-detail-features {
    margin-top: 0.5rem;
    margin-bottom: 1.8rem;
}

.service-detail-features h3 {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: 1.65rem;
    margin-bottom: 0.9rem;
}

.service-detail-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.service-detail-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--soft-violet);
    line-height: 1.6;
    padding: 0.72rem 0;
    border-bottom: 1px solid rgba(200, 155, 53, 0.16);
}

.service-detail-features li i {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--deep-indigo);
    color: var(--ivory-cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.74rem;
    margin-top: 0.1rem;
}

.service-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

/* Related services */
.related-services-block {
    margin-top: 86px;
}

.related-service-card {
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--card-light);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
    transition: all 0.35s ease;
}

.related-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(18, 11, 45, 0.16);
}

.related-service-image {
    display: block;
    height: 210px;
    overflow: hidden;
    background: var(--warm-beige);
}

.related-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.86);
    transition: transform 0.55s ease;
}

.related-service-card:hover .related-service-image img {
    transform: scale(1.08);
}

.related-service-body {
    padding: 1.35rem;
}

.related-service-body h3 {
    font-family: var(--heading-font);
    font-size: 1.45rem;
    line-height: 1.15;
    color: var(--deep-indigo);
    margin-bottom: 0.7rem;
}

.related-service-body p {
    color: var(--soft-violet);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.related-service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(200, 155, 53, 0.16);
}

.related-service-footer span {
    color: var(--royal-plum);
    font-weight: 800;
}

/* Responsive */
@media (max-width: 1199px) {
    .service-detail-content {
        padding: 2rem;
    }

    .service-detail-top {
        flex-direction: column;
    }
}

@media (max-width: 991px) {
    .inner-hero-section {
        padding: 64px 0 68px;
    }

    .service-filter-card {
        border-radius: 28px;
    }

    .service-detail-image,
    .service-detail-placeholder {
        min-height: 430px;
    }

    .service-detail-content {
        padding: 2rem;
    }

    .service-detail-actions .btn {
        flex: 1 1 auto;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .inner-hero-section {
        padding: 52px 0 58px;
    }

    .inner-hero-content h1 {
        font-size: clamp(2.55rem, 12vw, 4rem);
    }

    .inner-hero-content p {
        font-size: 1rem;
    }

    .inner-hero-pattern-left {
        width: 150px;
        height: 82px;
        left: -62px;
        bottom: 35px;
    }

    .inner-hero-pattern-right {
        width: 160px;
        height: 160px;
        right: -75px;
        top: 34px;
    }

    .service-filter-section {
        margin-top: -24px;
    }

    .service-filter-card {
        padding: 0.75rem;
    }

    .filter-buttons {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.2rem;
        scrollbar-width: none;
    }

    .filter-buttons::-webkit-scrollbar {
        display: none;
    }

    .service-filter-btn {
        flex: 0 0 auto;
        padding: 0.65rem 1rem;
        font-size: 0.86rem;
    }

    .services-grid-section {
        padding-top: 58px;
    }

    .services-page-card-image {
        height: 235px;
    }

    .services-page-title-row {
        flex-direction: column;
        gap: 0.7rem;
    }

    .service-price-pill {
        align-self: flex-start;
    }

    .service-cta-section {
        padding: 70px 0;
    }

    .service-cta-card {
        border-radius: 28px;
        padding: 2.2rem 1.35rem;
    }

    .service-detail-card {
        border-radius: 30px;
    }

    .service-detail-image,
    .service-detail-placeholder {
        min-height: 330px;
    }

    .service-detail-content {
        padding: 1.35rem;
    }

    .service-detail-top h2 {
        font-size: clamp(2.15rem, 10vw, 3.2rem);
    }

    .service-detail-meta {
        gap: 0.55rem;
    }

    .service-detail-actions {
        flex-direction: column;
    }

    .service-detail-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .related-services-block {
        margin-top: 66px;
    }
}

@media (max-width: 480px) {

    .services-page-card-body,
    .related-service-body {
        padding: 1.2rem;
    }

    .services-page-card-meta {
        gap: 0.55rem;
        font-size: 0.8rem;
    }

    .services-page-title-row h3 {
        font-size: 1.55rem;
    }

    .service-detail-description {
        font-size: 1rem;
    }
}


/* =========================================================
   EVENTS INDEX + EVENT SHOW + REGISTER + SUCCESS PAGE
========================================================= */

.inner-hero-section {
    position: relative;
    padding: 74px 0 76px;
    background:
        radial-gradient(circle at 12% 20%, rgba(95, 84, 124, 0.14), transparent 28%),
        radial-gradient(circle at 88% 78%, rgba(49, 40, 77, 0.10), transparent 30%),
        linear-gradient(135deg, var(--page-light) 0%, var(--section-light) 100%);
    overflow: hidden;
}

.inner-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.28;
    background-image:
        linear-gradient(135deg, rgba(18, 11, 45, 0.05) 1px, transparent 1px),
        linear-gradient(45deg, rgba(95, 84, 124, 0.04) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to right, black, transparent 82%);
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
}

.inner-hero-content h1 {
    font-family: var(--heading-font);
    font-size: clamp(2.9rem, 6vw, 5.7rem);
    line-height: 0.98;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--deep-indigo);
    margin-bottom: 1.1rem;
}

.inner-hero-content p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--soft-violet);
    font-size: 1.08rem;
    line-height: 1.75;
}

.inner-hero-pattern {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.inner-hero-pattern-left {
    width: 220px;
    height: 120px;
    left: -60px;
    bottom: 45px;
    opacity: 0.12;
    border: 4px solid var(--deep-indigo);
    border-left: 0;
    border-bottom: 0;
    border-radius: 100% 0 100% 0;
    transform: rotate(-15deg);
}

.inner-hero-pattern-right {
    width: 220px;
    height: 220px;
    right: -70px;
    top: 42px;
    opacity: 0.14;
    background-image: radial-gradient(circle, var(--soft-violet) 2px, transparent 2px);
    background-size: 22px 22px;
    transform: rotate(12deg);
}

/* Events listing */
.events-section {
    position: relative;
}

.events-live-section {
    background:
        radial-gradient(circle at 15% 18%, rgba(95, 84, 124, 0.10), transparent 30%),
        var(--warm-beige);
}

.event-live-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--deep-indigo);
    color: var(--ivory-cream);
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.event-live-label i {
    font-size: 0.55rem;
    animation: deoshalaLivePulse 1.3s infinite;
}

@keyframes deoshalaLivePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.55;
        transform: scale(0.85);
    }
}

.deoshala-event-card {
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--card-light);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
    transition: all 0.35s ease;
    position: relative;
}

.deoshala-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(18, 11, 45, 0.16);
}

.live-event-card {
    border-color: rgba(18, 11, 45, 0.22);
}

.live-event-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 2px rgba(18, 11, 45, 0.18);
    animation: eventCardPulse 2s infinite;
    z-index: 3;
}

@keyframes eventCardPulse {
    0% {
        box-shadow: inset 0 0 0 2px rgba(18, 11, 45, 0.18), 0 0 0 0 rgba(18, 11, 45, 0.18);
    }

    70% {
        box-shadow: inset 0 0 0 2px rgba(18, 11, 45, 0.10), 0 0 0 10px rgba(18, 11, 45, 0);
    }

    100% {
        box-shadow: inset 0 0 0 2px rgba(18, 11, 45, 0.18), 0 0 0 0 rgba(18, 11, 45, 0);
    }
}

.deoshala-event-image {
    display: block;
    position: relative;
    height: 255px;
    overflow: hidden;
    background: var(--warm-beige);
}

.deoshala-event-image img,
.past-event-image img,
.related-event-image img,
.event-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.86);
    transition: transform 0.55s ease;
}

.deoshala-event-card:hover .deoshala-event-image img,
.past-event-card:hover .past-event-image img,
.related-event-card:hover .related-event-image img {
    transform: scale(1.08);
}

.event-placeholder {
    width: 100%;
    height: 100%;
    min-height: 255px;
    background:
        radial-gradient(circle at center, rgba(95, 84, 124, 0.18), transparent 55%),
        var(--warm-beige);
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-placeholder.small {
    min-height: 210px;
}

.event-placeholder i {
    font-size: 3.5rem;
    color: var(--royal-plum);
}

.event-status-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--logo-gold);
    color: var(--deep-indigo);
    border-radius: 999px;
    padding: 0.48rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.event-status-badge i {
    font-size: 0.58rem;
}

.event-status-badge.featured {
    background: var(--logo-gold);
}

.event-status-badge.upcoming {
    background: var(--logo-gold);
}

.event-status-badge.past {
    background: var(--soft-violet);
}

.event-status-badge.limited {
    background: var(--warm-beige);
    color: var(--deep-indigo);
}

.deoshala-event-body {
    position: relative;
    padding: 1.55rem;
}

.event-date-pill {
    width: 62px;
    height: 66px;
    border-radius: 18px;
    background: var(--logo-gold);
    color: var(--deep-indigo);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 12px 25px rgba(18, 11, 45, 0.18);
}

.event-date-pill span {
    font-family: var(--heading-font);
    font-size: 1.7rem;
    line-height: 1;
}

.event-date-pill small {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.deoshala-event-body h3 {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: 1.75rem;
    line-height: 1.12;
    margin-bottom: 0.9rem;
}

.deoshala-event-body h3 a:hover {
    color: var(--soft-violet);
}

.deoshala-event-meta {
    display: grid;
    gap: 0.5rem;
    color: var(--soft-violet);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.deoshala-event-meta span {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.deoshala-event-meta i {
    color: var(--royal-plum);
    margin-top: 0.2rem;
    min-width: 16px;
}

.deoshala-event-body p {
    color: var(--soft-violet);
    line-height: 1.72;
    margin-bottom: 1.2rem;
}

.deoshala-event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(200, 155, 53, 0.16);
}

.event-price-pill {
    flex-shrink: 0;
    background: var(--warm-beige);
    color: var(--deep-indigo);
    border: 1px solid rgba(200, 155, 53, 0.16);
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    font-size: 0.88rem;
    font-weight: 800;
}

.event-sold-out {
    background: var(--soft-violet);
    color: var(--ivory-cream);
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 800;
}

/* Past events */
.past-event-card,
.related-event-card {
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--card-light);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
    transition: all 0.35s ease;
}

.past-event-card:hover,
.related-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(18, 11, 45, 0.16);
}

.past-event-image,
.related-event-image {
    display: block;
    height: 210px;
    overflow: hidden;
    background: var(--warm-beige);
}

.past-event-body,
.related-event-body {
    padding: 1.35rem;
}

.past-event-date {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--soft-violet);
    font-size: 0.86rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.past-event-body h3,
.related-event-body h3 {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: 1.45rem;
    line-height: 1.15;
    margin-bottom: 0.7rem;
}

.past-event-body p {
    color: var(--soft-violet);
    display: flex;
    gap: 0.45rem;
    line-height: 1.6;
}

/* Breadcrumb */
.deoshala-breadcrumb {
    margin-bottom: 1.5rem;
}

.deoshala-breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
}

.deoshala-breadcrumb .breadcrumb-item,
.deoshala-breadcrumb .breadcrumb-item a {
    color: var(--soft-violet);
    font-weight: 700;
}

.deoshala-breadcrumb .breadcrumb-item.active {
    color: var(--deep-indigo);
}

.deoshala-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: var(--soft-violet);
}

/* Event detail */
.event-detail-section {
    padding-top: 78px;
}

.event-detail-card {
    overflow: hidden;
    border-radius: 38px;
    background: var(--card-light);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
}

.event-detail-image {
    position: relative;
    height: 520px;
    background: var(--warm-beige);
    overflow: hidden;
}

.event-detail-placeholder {
    width: 100%;
    height: 100%;
    min-height: 520px;
    background:
        radial-gradient(circle at center, rgba(95, 84, 124, 0.18), transparent 55%),
        var(--warm-beige);
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-detail-placeholder i {
    font-size: 5rem;
    color: var(--royal-plum);
}

.event-detail-badges {
    position: absolute;
    left: 24px;
    top: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    z-index: 4;
}

.event-detail-badges .event-status-badge {
    position: static;
}

.event-detail-content {
    padding: 2.6rem;
}

.event-detail-main>h2 {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1;
    margin-bottom: 1.6rem;
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.event-info-card {
    background: rgba(234, 219, 194, 0.56);
    border: 1px solid rgba(200, 155, 53, 0.16);
    border-radius: 24px;
    padding: 1.3rem;
    height: 100%;
}

.event-info-card i {
    width: 48px;
    height: 48px;
    background: var(--deep-indigo);
    color: var(--ivory-cream);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
}

.event-info-card h3 {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.event-info-card p {
    color: var(--deep-indigo);
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.event-info-card span {
    color: var(--soft-violet);
    font-size: 0.9rem;
}

.deoshala-progress {
    height: 7px;
    background: rgba(95, 84, 124, 0.18);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 0.8rem;
}

.deoshala-progress span {
    display: block;
    height: 100%;
    background: var(--deep-indigo);
    border-radius: inherit;
}

.event-description-block,
.event-speakers-block {
    margin-top: 2rem;
}

.event-description-block h3,
.event-speakers-block h3 {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: 1.85rem;
    margin-bottom: 0.9rem;
}

.description-content {
    color: var(--soft-violet);
    font-size: 1.04rem;
    line-height: 1.85;
}

.event-speaker-card {
    height: 100%;
    text-align: center;
    background: rgba(234, 219, 194, 0.56);
    border: 1px solid rgba(200, 155, 53, 0.16);
    border-radius: 22px;
    padding: 1.3rem;
    transition: all 0.3s ease;
}

.event-speaker-card:hover {
    transform: translateY(-6px);
}

.event-speaker-card i {
    font-size: 2.6rem;
    color: var(--royal-plum);
    margin-bottom: 0.7rem;
}

.event-speaker-card h4 {
    color: var(--deep-indigo);
    font-weight: 800;
    font-size: 1rem;
    margin: 0;
}

.event-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

/* Alerts */
.deoshala-alert {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    border-radius: 18px;
    padding: 1rem 1.1rem;
    font-weight: 600;
    line-height: 1.6;
}

.deoshala-alert i {
    margin-top: 0.22rem;
}

.deoshala-alert.info {
    background: rgba(234, 219, 194, 0.65);
    color: var(--deep-indigo);
    border: 1px solid rgba(200, 155, 53, 0.18);
}

.deoshala-alert.warning {
    background: rgba(234, 219, 194, 0.82);
    color: var(--royal-plum);
    border: 1px solid rgba(200, 155, 53, 0.18);
}

.deoshala-alert.danger {
    background: var(--royal-plum);
    color: var(--ivory-cream);
    border: 1px solid var(--royal-plum);
}

.deoshala-alert.muted {
    background: var(--warm-beige);
    color: var(--soft-violet);
    border: 1px solid rgba(200, 155, 53, 0.18);
}

/* Related events */
.related-events-block {
    margin-top: 86px;
}

/* Registration page */
.event-registration-section {
    padding-top: 78px;
}

.event-registration-card {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 38px;
    background: var(--card-light);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
}

.event-registration-header {
    background: var(--deep-indigo);
    color: var(--ivory-cream);
    padding: 2rem 2.4rem;
}

.event-registration-header .eyebrow {
    color: var(--logo-gold);
}

.event-registration-header .eyebrow::before,
.event-registration-header .eyebrow::after {
    background: var(--warm-beige);
}

.event-registration-header h2 {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.05;
    margin: 0;
}

.event-registration-body {
    padding: 2.4rem;
}

.registration-summary {
    background: rgba(234, 219, 194, 0.56);
    border: 1px solid rgba(200, 155, 53, 0.16);
    border-radius: 26px;
    padding: 1.5rem;
    margin-bottom: 1.8rem;
}

.registration-summary h3 {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: 1.75rem;
    margin-bottom: 1.2rem;
}

.summary-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.summary-item i {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--deep-indigo);
    color: var(--ivory-cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.summary-item strong {
    display: block;
    color: var(--deep-indigo);
    font-weight: 800;
}

.summary-item span {
    color: var(--soft-violet);
}

.total-amount-card {
    margin: 1rem 0;
    border-radius: 24px;
    padding: 1.25rem;
    background: var(--deep-indigo);
    color: var(--ivory-cream);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.total-amount-card span {
    font-weight: 700;
}

.total-amount-card strong {
    font-family: var(--heading-font);
    font-size: 2rem;
}

/* Success page */
.registration-success-section {
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 15% 20%, rgba(95, 84, 124, 0.10), transparent 30%),
        linear-gradient(135deg, var(--page-light), var(--section-light));
}

.success-card {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    border-radius: 40px;
    background: var(--card-light);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
    padding: 3rem 2.4rem;
}

.success-icon {
    width: 94px;
    height: 94px;
    margin: 0 auto 1.4rem;
    border-radius: 50%;
    background: var(--deep-indigo);
    color: var(--ivory-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    animation: successScaleIn 0.55s ease;
}

@keyframes successScaleIn {
    from {
        opacity: 0;
        transform: scale(0.35);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-card h1 {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    line-height: 1;
    margin-bottom: 0.9rem;
}

.success-card .lead-text {
    color: var(--soft-violet);
    font-size: 1.12rem;
    margin-bottom: 1.8rem;
}

.registration-details-card {
    text-align: left;
    background: rgba(234, 219, 194, 0.56);
    border: 1px solid rgba(200, 155, 53, 0.16);
    border-radius: 28px;
    padding: 1.5rem;
    margin: 2rem 0 1.4rem;
}

.registration-details-card h2 {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: 1.85rem;
    margin-bottom: 1.2rem;
}

.registration-detail-item {
    border-bottom: 1px solid rgba(200, 155, 53, 0.16);
    padding-bottom: 0.85rem;
}

.registration-detail-item span {
    display: block;
    color: var(--soft-violet);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.registration-detail-item strong {
    color: var(--deep-indigo);
    font-weight: 800;
}

.success-info-alert {
    text-align: left;
    margin-bottom: 1.5rem;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

/* Pagination */
.deoshala-pagination nav {
    display: flex;
    justify-content: center;
}

.deoshala-pagination .pagination {
    gap: 0.45rem;
    flex-wrap: wrap;
    justify-content: center;
}

.deoshala-pagination .page-link {
    border-radius: 999px !important;
    border: 1px solid rgba(200, 155, 53, 0.24);
    background: var(--card-light);
    color: var(--royal-plum);
    font-weight: 700;
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.deoshala-pagination .page-item.active .page-link {
    background: var(--deep-indigo);
    border-color: var(--deep-indigo);
    color: var(--ivory-cream);
}

.deoshala-pagination .page-link:hover {
    background: var(--royal-plum);
    border-color: var(--royal-plum);
    color: var(--ivory-cream);
}

/* Responsive */
@media (max-width: 1199px) {
    .event-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-detail-content {
        padding: 2rem;
    }
}

@media (max-width: 991px) {
    .inner-hero-section {
        padding: 64px 0 68px;
    }

    .event-detail-image,
    .event-detail-placeholder {
        height: 420px;
        min-height: 420px;
    }

    .event-registration-body {
        padding: 1.8rem;
    }

    .event-registration-header {
        padding: 1.8rem;
    }
}

@media (max-width: 767px) {
    .inner-hero-section {
        padding: 52px 0 58px;
    }

    .inner-hero-content h1 {
        font-size: clamp(2.55rem, 12vw, 4rem);
    }

    .inner-hero-content p {
        font-size: 1rem;
    }

    .inner-hero-pattern-left {
        width: 150px;
        height: 82px;
        left: -62px;
        bottom: 35px;
    }

    .inner-hero-pattern-right {
        width: 160px;
        height: 160px;
        right: -75px;
        top: 34px;
    }

    .deoshala-event-image {
        height: 235px;
    }

    .deoshala-event-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-info-grid {
        grid-template-columns: 1fr;
    }

    .event-detail-card,
    .event-registration-card,
    .success-card {
        border-radius: 30px;
    }

    .event-detail-image,
    .event-detail-placeholder {
        height: 330px;
        min-height: 330px;
    }

    .event-detail-content {
        padding: 1.35rem;
    }

    .event-detail-main>h2 {
        font-size: clamp(2.15rem, 10vw, 3.2rem);
    }

    .event-actions,
    .success-actions {
        flex-direction: column;
    }

    .event-actions .btn,
    .success-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .event-registration-body {
        padding: 1.35rem;
    }

    .event-registration-header {
        padding: 1.5rem;
    }

    .summary-item {
        gap: 0.75rem;
    }

    .total-amount-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .success-card {
        padding: 2.2rem 1.35rem;
    }

    .registration-details-card {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {

    .deoshala-event-body,
    .past-event-body,
    .related-event-body {
        padding: 1.2rem;
    }

    .deoshala-event-body h3 {
        font-size: 1.55rem;
    }

    .event-status-badge {
        font-size: 0.68rem;
        padding: 0.42rem 0.7rem;
    }

    .event-detail-badges {
        left: 14px;
        top: 14px;
        right: 14px;
    }

    .success-icon {
        width: 78px;
        height: 78px;
        font-size: 2.2rem;
    }
}


/* =========================================================
   MODERN DEOSHALA PAGINATION
========================================================= */

.deoshala-pagination-box {
    width: 100%;
    max-width: 980px;
    margin: 48px auto 0;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: rgba(245, 241, 234, 0.88);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: 0 18px 45px rgba(18, 11, 45, 0.10);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    z-index: 5;
}

.deoshala-pagination-info {
    color: var(--soft-violet);
    font-size: 0.94rem;
    font-weight: 600;
    white-space: nowrap;
    padding-left: 0.65rem;
}

.deoshala-pagination-info strong {
    color: var(--deep-indigo);
    font-weight: 800;
}

.deoshala-pagination-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.deoshala-pagination-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.deoshala-page-item {
    margin: 0;
    padding: 0;
}

.deoshala-page-link {
    min-width: 44px;
    height: 44px;
    padding: 0 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(200, 155, 53, 0.24);
    background: var(--ivory-cream);
    color: var(--deep-indigo);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: all 0.28s ease;
}

.deoshala-prev-next {
    min-width: 112px;
}

.page-icon {
    font-size: 1.25rem;
    line-height: 1;
    margin-top: -1px;
}

.deoshala-page-item:not(.disabled):not(.active) .deoshala-page-link:hover {
    background: var(--royal-plum);
    border-color: var(--royal-plum);
    color: var(--ivory-cream);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(18, 11, 45, 0.18);
}

.deoshala-page-item.active .deoshala-page-link {
    background: var(--deep-indigo);
    border-color: var(--deep-indigo);
    color: var(--ivory-cream);
    box-shadow: 0 10px 24px rgba(18, 11, 45, 0.22);
}

.deoshala-page-item.disabled .deoshala-page-link {
    opacity: 0.42;
    cursor: not-allowed;
    pointer-events: none;
    background: rgba(245, 241, 234, 0.7);
    color: var(--soft-violet);
}

.deoshala-page-link.dots {
    min-width: 38px;
    padding: 0 0.7rem;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

/* Stop Laravel default SVG arrows from becoming huge */
.deoshala-pagination-box svg,
.pagination svg {
    width: 16px !important;
    height: 16px !important;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .deoshala-pagination-box {
        max-width: 100%;
        border-radius: 28px;
        flex-direction: column;
        justify-content: center;
        padding: 1rem;
        gap: 0.85rem;
    }

    .deoshala-pagination-info {
        padding-left: 0;
        text-align: center;
        font-size: 0.86rem;
        white-space: normal;
    }

    .deoshala-pagination-list {
        flex-wrap: wrap;
        gap: 0.38rem;
    }

    .deoshala-page-link {
        min-width: 38px;
        height: 38px;
        padding: 0 0.78rem;
        font-size: 0.82rem;
    }

    .deoshala-prev-next {
        min-width: 42px;
    }

    .deoshala-prev-next .page-text {
        display: none;
    }

    .page-icon {
        font-size: 1.25rem;
    }
}

@media (max-width: 420px) {
    .deoshala-pagination-list {
        width: 100%;
    }

    .deoshala-page-link {
        min-width: 36px;
        height: 36px;
        padding: 0 0.68rem;
    }
}


/* =========================================================
   RETREATS INDEX + RETREAT DETAIL PAGE
========================================================= */

.retreats-list-section {
    position: relative;
}

.retreats-live-section {
    background:
        radial-gradient(circle at 15% 18%, rgba(95, 84, 124, 0.10), transparent 30%),
        var(--warm-beige);
}

.retreat-live-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--deep-indigo);
    color: var(--ivory-cream);
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.retreat-live-label i {
    font-size: 0.55rem;
    animation: deoshalaLivePulse 1.3s infinite;
}

.ds-retreat-card {
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--card-light);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
    transition: all 0.35s ease;
    position: relative;
}

.ds-retreat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(18, 11, 45, 0.16);
}

.ds-retreat-live-card {
    border-color: rgba(18, 11, 45, 0.22);
}

.ds-retreat-live-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 2px rgba(18, 11, 45, 0.18);
    animation: eventCardPulse 2s infinite;
    z-index: 3;
}

.ds-retreat-image {
    position: relative;
    display: block;
    height: 260px;
    overflow: hidden;
    background: var(--warm-beige);
}

.ds-retreat-image-side {
    height: 100%;
    min-height: 340px;
}

.ds-retreat-image img,
.ds-past-retreat-image img,
.retreat-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.86);
    transition: transform 0.55s ease;
}

.ds-retreat-card:hover .ds-retreat-image img,
.ds-past-retreat-card:hover .ds-past-retreat-image img {
    transform: scale(1.08);
}

.ds-retreat-placeholder {
    width: 100%;
    height: 100%;
    min-height: 260px;
    background:
        radial-gradient(circle at center, rgba(95, 84, 124, 0.18), transparent 55%),
        var(--warm-beige);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-retreat-placeholder.small {
    min-height: 210px;
}

.ds-retreat-placeholder i {
    font-size: 3.5rem;
    color: var(--royal-plum);
}

.ds-retreat-status,
.ds-retreat-duration {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.48rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ds-retreat-status {
    top: 16px;
    left: 16px;
    background: var(--logo-gold);
    color: var(--deep-indigo);
}

.ds-retreat-status i {
    font-size: 0.58rem;
}

.ds-retreat-status.live {
    background: var(--logo-gold);
}

.ds-retreat-status.upcoming {
    background: var(--logo-gold);
}

.ds-retreat-status.past {
    background: var(--soft-violet);
}

.ds-retreat-status.featured {
    background: var(--warm-beige);
    color: var(--deep-indigo);
}

.ds-retreat-duration {
    right: 16px;
    bottom: 16px;
    background: rgba(18, 11, 45, 0.86);
    color: var(--ivory-cream);
}

.ds-retreat-body {
    padding: 1.55rem;
}

.ds-retreat-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: var(--soft-violet);
    font-size: 0.88rem;
    margin-bottom: 0.85rem;
}

.ds-retreat-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
}

.ds-retreat-meta i,
.ds-retreat-location i {
    color: var(--royal-plum);
}

.ds-retreat-body h3 {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: 1.75rem;
    line-height: 1.12;
    margin-bottom: 0.85rem;
}

.ds-retreat-body h3 a:hover {
    color: var(--soft-violet);
}

.ds-retreat-location {
    display: flex;
    gap: 0.45rem;
    align-items: flex-start;
    color: var(--soft-violet);
    font-size: 0.92rem;
    margin-bottom: 0.9rem;
}

.ds-retreat-body p {
    color: var(--soft-violet);
    line-height: 1.72;
    margin-bottom: 1.2rem;
}

.ds-retreat-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(200, 155, 53, 0.16);
}

.ds-retreat-price span {
    display: block;
    color: var(--soft-violet);
    font-size: 0.78rem;
    font-weight: 700;
}

.ds-retreat-price strong {
    color: var(--deep-indigo);
    font-weight: 900;
}

/* Past Retreats */
.ds-past-retreat-card {
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--card-light);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
    transition: all 0.35s ease;
}

.ds-past-retreat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(18, 11, 45, 0.16);
}

.ds-past-retreat-image {
    display: block;
    height: 210px;
    overflow: hidden;
    background: var(--warm-beige);
}

.ds-past-retreat-body {
    padding: 1.35rem;
}

.ds-past-date {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    color: var(--soft-violet);
    font-size: 0.84rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.ds-past-retreat-body h3 {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: 1.45rem;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.ds-past-retreat-body p {
    display: flex;
    gap: 0.45rem;
    color: var(--soft-violet);
    line-height: 1.6;
}

/* Retreat detail */
.retreat-detail-section {
    padding-top: 78px;
}

.retreat-detail-card {
    overflow: hidden;
    border-radius: 38px;
    background: var(--card-light);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
}

.retreat-detail-image {
    position: relative;
    height: 560px;
    background: var(--warm-beige);
    overflow: hidden;
}

.retreat-detail-placeholder {
    width: 100%;
    height: 100%;
    min-height: 560px;
    background:
        radial-gradient(circle at center, rgba(95, 84, 124, 0.18), transparent 55%),
        var(--warm-beige);
    display: flex;
    align-items: center;
    justify-content: center;
}

.retreat-detail-placeholder i {
    font-size: 5rem;
    color: var(--royal-plum);
}

.retreat-detail-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 11, 45, 0.60), transparent 58%);
    pointer-events: none;
}

.retreat-detail-badges {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    z-index: 4;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.retreat-detail-badges .ds-retreat-status {
    position: static;
}

.retreat-detail-body {
    padding: 2.6rem;
}

.retreat-detail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 1.6rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(200, 155, 53, 0.18);
}

.retreat-detail-header h2 {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1;
    margin: 0;
}

.retreat-detail-price {
    flex-shrink: 0;
    background: var(--deep-indigo);
    color: var(--ivory-cream);
    border-radius: 999px;
    padding: 0.85rem 1.2rem;
    font-size: 1.2rem;
    font-weight: 900;
    text-align: center;
}

.retreat-detail-price span {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    opacity: 0.8;
}

.retreat-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.2rem;
}

.retreat-info-card,
.retreat-feature-card,
.retreat-list-card,
.retreat-instructor-card {
    background: rgba(234, 219, 194, 0.56);
    border: 1px solid rgba(200, 155, 53, 0.16);
    border-radius: 24px;
    padding: 1.3rem;
    height: 100%;
}

.retreat-info-card i,
.retreat-feature-card>i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--deep-indigo);
    color: var(--ivory-cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
}

.retreat-info-card h3,
.retreat-feature-card h4 {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: 1.3rem;
    margin-bottom: 0.45rem;
}

.retreat-info-card p,
.retreat-feature-card p {
    color: var(--soft-violet);
    line-height: 1.65;
    margin-bottom: 0;
}

.retreat-info-card span {
    color: var(--royal-plum);
    font-weight: 700;
    font-size: 0.9rem;
}

.retreat-section-block {
    margin-top: 2.2rem;
}

.retreat-section-block>h3 {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: 1.9rem;
    margin-bottom: 1rem;
}

.retreat-description-content {
    color: var(--soft-violet);
    line-height: 1.85;
    font-size: 1.04rem;
}

.retreat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.retreat-tags span {
    background: var(--warm-beige);
    color: var(--deep-indigo);
    border: 1px solid rgba(200, 155, 53, 0.18);
    border-radius: 999px;
    padding: 0.62rem 1rem;
    font-weight: 800;
}

.retreat-instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.retreat-instructor-card {
    text-align: center;
}

.retreat-instructor-card i {
    font-size: 3rem;
    color: var(--royal-plum);
    margin-bottom: 0.75rem;
}

.retreat-instructor-card h4 {
    color: var(--deep-indigo);
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
}

/* Schedule */
.retreat-schedule-accordion {
    border: 1px solid rgba(200, 155, 53, 0.18);
    border-radius: 26px;
    overflow: hidden;
    background: rgba(245, 241, 234, 0.60);
}

.retreat-schedule-day+.retreat-schedule-day {
    border-top: 1px solid rgba(200, 155, 53, 0.18);
}

.retreat-schedule-header {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--deep-indigo);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    font-weight: 800;
}

.retreat-day-number {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--deep-indigo);
    color: var(--ivory-cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.retreat-day-title {
    flex: 1;
}

.retreat-schedule-content {
    padding: 0 1.2rem 1.2rem 4.2rem;
}

.retreat-activity-item {
    display: flex;
    gap: 1.2rem;
    padding: 0.85rem 0;
    border-top: 1px dashed rgba(49, 40, 77, 0.14);
}

.retreat-activity-item strong {
    width: 110px;
    color: var(--royal-plum);
}

.retreat-activity-item span {
    flex: 1;
    color: var(--soft-violet);
}

/* Included / excluded */
.retreat-list-card h3 {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.retreat-list-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.retreat-list-card li {
    display: flex;
    gap: 0.7rem;
    padding: 0.55rem 0;
    color: var(--soft-violet);
}

.retreat-list-card li i {
    color: var(--deep-indigo);
    margin-top: 0.25rem;
}

.retreat-list-card.excluded {
    background: rgba(95, 84, 124, 0.10);
}

.retreat-detail-cta {
    margin-top: 2.4rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(200, 155, 53, 0.18);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    width: 100%;
    justify-content: space-between;
}

.retreat-detail-cta p {
    width: 100%;
    color: var(--soft-violet);
    margin: -0.3rem 0 0;
}

.related-retreats-section {
    margin-top: 86px;
}

.modal {
    z-index: 10500;
}

/* Responsive */
@media (max-width: 1199px) {
    .retreat-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .retreat-detail-header {
        flex-direction: column;
    }
}

@media (max-width: 991px) {
    .ds-retreat-image-side {
        min-height: 280px;
        height: 280px;
    }

    .retreat-detail-image,
    .retreat-detail-placeholder {
        height: 430px;
        min-height: 430px;
    }

    .retreat-detail-body {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .ds-retreat-image {
        height: 235px;
    }

    .ds-retreat-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .retreat-info-grid {
        grid-template-columns: 1fr;
    }

    .retreat-detail-card {
        border-radius: 30px;
    }

    .retreat-detail-image,
    .retreat-detail-placeholder {
        height: 330px;
        min-height: 330px;
    }

    .retreat-detail-body {
        padding: 1.35rem;
    }

    .retreat-detail-header h2 {
        font-size: clamp(2.15rem, 10vw, 3.2rem);
    }

    .retreat-detail-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .retreat-detail-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .retreat-activity-item {
        flex-direction: column;
        gap: 0.25rem;
    }

    .retreat-activity-item strong {
        width: auto;
    }

    .retreat-schedule-content {
        padding: 0 1rem 1rem;
    }
}

@media (max-width: 480px) {

    .ds-retreat-body,
    .ds-past-retreat-body {
        padding: 1.2rem;
    }

    .ds-retreat-body h3 {
        font-size: 1.55rem;
    }

    .retreat-detail-badges {
        left: 14px;
        bottom: 14px;
        right: 14px;
    }
}


/* =========================================================
   GALLERY PAGE
========================================================= */

.ds-gallery-filter-section {
    position: relative;
    padding: 0 0 18px;
    margin-top: -34px;
    z-index: 4;
}

.ds-gallery-filter-card {
    background: rgba(245, 241, 234, 0.88);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
    border-radius: 999px;
    padding: 0.85rem;
    backdrop-filter: blur(14px);
}

.ds-gallery-filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.ds-gallery-filter-btn {
    border: 1px solid rgba(49, 40, 77, 0.18);
    background: transparent;
    color: var(--royal-plum);
    border-radius: 999px;
    padding: 0.72rem 1.2rem;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.ds-gallery-filter-btn:hover,
.ds-gallery-filter-btn.active-filter {
    background: var(--deep-indigo);
    border-color: var(--deep-indigo);
    color: var(--ivory-cream);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(18, 11, 45, 0.18);
}

.ds-gallery-section {
    padding-top: 72px;
}

.ds-gallery-item {
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.ds-gallery-item.ds-gallery-fade-in {
    opacity: 1;
    transform: scale(1);
}

.ds-gallery-item.ds-gallery-fade-out {
    opacity: 0;
    transform: scale(0.94);
}

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

.ds-gallery-card {
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--card-light);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
    transition: all 0.35s ease;
}

.ds-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(18, 11, 45, 0.16);
}

.ds-gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1.08;
    background: var(--warm-beige);
}

.ds-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.86);
    transition: transform 0.55s ease;
}

.ds-gallery-card:hover .ds-gallery-img {
    transform: scale(1.08);
}

.ds-gallery-placeholder {
    width: 100%;
    height: 100%;
    min-height: 260px;
    background:
        radial-gradient(circle at center, rgba(95, 84, 124, 0.18), transparent 55%),
        var(--warm-beige);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-gallery-placeholder i {
    font-size: 3.5rem;
    color: var(--royal-plum);
}

.ds-gallery-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(18, 11, 45, 0.86), rgba(18, 11, 45, 0.22));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.3rem;
    opacity: 0;
    transition: all 0.35s ease;
}

.ds-gallery-card:hover .ds-gallery-overlay {
    opacity: 1;
}

.ds-gallery-overlay-content {
    width: 100%;
    color: var(--ivory-cream);
    transform: translateY(14px);
    transition: transform 0.35s ease;
}

.ds-gallery-card:hover .ds-gallery-overlay-content {
    transform: translateY(0);
}

.ds-gallery-category {
    display: inline-flex;
    background: var(--warm-beige);
    color: var(--deep-indigo);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

.ds-gallery-overlay-content h3 {
    font-family: var(--heading-font);
    font-size: 1.45rem;
    line-height: 1.12;
    margin-bottom: 0.9rem;
}

.ds-gallery-view-btn {
    border: 1px solid var(--ivory-cream);
    background: var(--ivory-cream);
    color: var(--deep-indigo);
    border-radius: 999px;
    padding: 0.65rem 1rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.28s ease;
}

.ds-gallery-view-btn:hover {
    background: var(--deep-indigo);
    border-color: var(--deep-indigo);
    color: var(--ivory-cream);
    transform: translateY(-2px);
}

.ds-gallery-caption {
    padding: 1.15rem 1.25rem;
    border-top: 1px solid rgba(200, 155, 53, 0.16);
}

.ds-gallery-caption h4 {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: 1.25rem;
    line-height: 1.15;
    margin-bottom: 0.25rem;
}

.ds-gallery-caption span {
    color: var(--soft-violet);
    font-size: 0.86rem;
    font-weight: 700;
}

/* Lightbox */
.ds-lightbox-modal .modal-dialog {
    max-width: min(1140px, calc(100vw - 28px));
}

.ds-lightbox-content {
    background: transparent;
    border: 1px solid rgba(245, 241, 234, 0.16);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(18, 11, 45, 0.38);
    backdrop-filter: blur(14px);
}

.ds-lightbox-content .modal-body {
    padding: 1rem;
}

.ds-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--ivory-cream);
    opacity: 1;
}

.ds-lightbox-image-wrap {
    border-radius: 22px;
    overflow: hidden;
    background: transparent;
}

.ds-lightbox-image {
    width: 100%;
    max-height: 76vh;
    object-fit: contain;
    display: block;
}

.ds-lightbox-info {
    text-align: center;
    padding: 1.1rem 1rem 0.35rem;
}

.ds-lightbox-info h4 {
    font-family: var(--heading-font);
    color: var(--ivory-cream);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    margin-bottom: 0.35rem;
}

.ds-lightbox-info p {
    color: rgba(245, 241, 234, 0.74);
    margin-bottom: 0;
    line-height: 1.65;
}

/* Responsive */
@media (max-width: 767px) {
    .ds-gallery-filter-section {
        margin-top: -24px;
    }

    .ds-gallery-filter-card {
        border-radius: 28px;
        padding: 0.75rem;
    }

    .ds-gallery-filter-buttons {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.2rem;
        scrollbar-width: none;
    }

    .ds-gallery-filter-buttons::-webkit-scrollbar {
        display: none;
    }

    .ds-gallery-filter-btn {
        flex: 0 0 auto;
        padding: 0.65rem 1rem;
        font-size: 0.86rem;
    }

    .ds-gallery-section {
        padding-top: 58px;
    }

    .ds-gallery-image-wrapper {
        aspect-ratio: 1 / 1;
    }

    .ds-gallery-overlay {
        opacity: 1;
        background:
            linear-gradient(to top, rgba(18, 11, 45, 0.78), transparent 70%);
        align-items: flex-end;
    }

    .ds-gallery-overlay-content {
        transform: translateY(0);
    }

    .ds-gallery-view-btn {
        padding: 0.55rem 0.85rem;
        font-size: 0.84rem;
    }

    .ds-lightbox-content {
        border-radius: 22px;
    }

    .ds-lightbox-content .modal-body {
        padding: 0.75rem;
    }

    .ds-lightbox-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
    }

    .ds-lightbox-image {
        max-height: 70vh;
    }
}

@media (max-width: 480px) {
    .ds-gallery-caption {
        padding: 1rem;
    }

    .ds-gallery-caption h4 {
        font-size: 1.12rem;
    }

    .ds-gallery-overlay {
        padding: 1rem;
    }

    .ds-gallery-overlay-content h3 {
        font-size: 1.22rem;
    }
}


/* =========================================================
   TESTIMONIALS PAGE
========================================================= */

.ds-testimonial-filter-section {
    position: relative;
    padding: 0 0 18px;
    margin-top: -34px;
    z-index: 4;
}

.ds-testimonial-filter-card {
    background: rgba(245, 241, 234, 0.88);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
    border-radius: 999px;
    padding: 0.85rem;
    backdrop-filter: blur(14px);
}

.ds-testimonial-filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.ds-testimonial-filter-btn {
    border: 1px solid rgba(49, 40, 77, 0.18);
    background: transparent;
    color: var(--royal-plum);
    border-radius: 999px;
    padding: 0.72rem 1.2rem;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.ds-testimonial-filter-btn:hover,
.ds-testimonial-filter-btn.active-filter {
    background: var(--deep-indigo);
    border-color: var(--deep-indigo);
    color: var(--ivory-cream);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(18, 11, 45, 0.18);
}

.ds-testimonials-section {
    padding-top: 72px;
}

.ds-testimonial-item {
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.ds-testimonial-item.ds-testimonial-fade-in {
    opacity: 1;
    transform: scale(1);
}

.ds-testimonial-item.ds-testimonial-fade-out {
    opacity: 0;
    transform: scale(0.94);
}

.ds-testimonial-item.ds-testimonial-hidden {
    display: none;
}

/* Cards */
.ds-testimonial-card {
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--card-light);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
    transition: all 0.35s ease;
}

.ds-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(18, 11, 45, 0.16);
}

.ds-text-testimonial-card {
    position: relative;
}

.ds-text-testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--deep-indigo);
    opacity: 0.9;
}

.ds-testimonial-body {
    padding: 1.65rem;
}

.ds-quote-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--warm-beige);
    color: var(--deep-indigo);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.ds-quote-icon i {
    font-size: 1.35rem;
}

.ds-testimonial-text {
    color: var(--soft-violet);
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.4rem;
}

/* Author */
.ds-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(200, 155, 53, 0.16);
}

.ds-author-avatar,
.ds-author-avatar img,
.ds-avatar-placeholder {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ds-author-avatar img {
    object-fit: cover;
}

.ds-avatar-placeholder {
    background: var(--deep-indigo);
    color: var(--ivory-cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-testimonial-author h3 {
    color: var(--deep-indigo);
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 0.15rem;
}

.ds-testimonial-author span {
    display: block;
    color: var(--soft-violet);
    font-size: 0.86rem;
    font-weight: 600;
}

.ds-testimonial-category {
    display: inline-flex;
    background: var(--warm-beige);
    color: var(--deep-indigo);
    border: 1px solid rgba(200, 155, 53, 0.16);
    padding: 0.38rem 0.78rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.ds-featured-text {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    color: var(--royal-plum);
    font-size: 0.82rem;
    font-weight: 800;
    margin-top: 1rem;
}

.ds-featured-text i {
    color: var(--deep-indigo);
}

/* Video card */
.ds-video-wrapper {
    position: relative;
    height: 235px;
    overflow: hidden;
    background: var(--warm-beige);
}

.ds-video-thumbnail,
.ds-video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.86);
    transition: transform 0.55s ease;
}

.ds-video-testimonial-card:hover .ds-video-thumbnail,
.ds-video-testimonial-card:hover .ds-video-preview {
    transform: scale(1.08);
}

.ds-video-placeholder {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at center, rgba(95, 84, 124, 0.18), transparent 55%),
        var(--warm-beige);
    color: var(--deep-indigo);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    font-weight: 800;
}

.ds-video-placeholder i {
    font-size: 3rem;
}

.ds-video-play-overlay {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(18, 11, 45, 0.42);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.ds-video-play-overlay:hover {
    background: rgba(18, 11, 45, 0.58);
}

.ds-play-button {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--ivory-cream);
    color: var(--deep-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.ds-play-button i {
    margin-left: 5px;
    font-size: 1.35rem;
}

.ds-video-play-overlay:hover .ds-play-button {
    transform: scale(1.08);
}

.ds-testimonial-featured {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--warm-beige);
    color: var(--deep-indigo);
    border-radius: 999px;
    padding: 0.48rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ds-testimonial-type {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--deep-indigo);
    color: var(--ivory-cream);
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 800;
    margin-top: 0.2rem;
}

/* Video Modal */
.ds-video-modal .modal-dialog {
    max-width: min(1140px, calc(100vw - 28px));
}

.ds-video-modal-content {
    background: rgba(18, 11, 45, 0.95);
    border: 1px solid rgba(245, 241, 234, 0.16);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(18, 11, 45, 0.38);
    backdrop-filter: blur(14px);
}

.ds-video-modal-content .modal-body {
    padding: 1rem;
}

.ds-video-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--ivory-cream);
    opacity: 1;
}

.ds-video-modal-frame {
    width: 100%;
    background: #000;
    border-radius: 22px;
    overflow: hidden;
}

.ds-video-modal-frame iframe {
    width: 100%;
    height: 70vh;
    min-height: 420px;
    display: block;
}

.ds-video-modal-frame video {
    width: 100%;
    max-height: 76vh;
    display: block;
}

/* Responsive */
@media (max-width: 767px) {
    .ds-testimonial-filter-section {
        margin-top: -24px;
    }

    .ds-testimonial-filter-card {
        border-radius: 28px;
        padding: 0.75rem;
    }

    .ds-testimonial-filter-buttons {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.2rem;
        scrollbar-width: none;
    }

    .ds-testimonial-filter-buttons::-webkit-scrollbar {
        display: none;
    }

    .ds-testimonial-filter-btn {
        flex: 0 0 auto;
        padding: 0.65rem 1rem;
        font-size: 0.86rem;
    }

    .ds-testimonials-section {
        padding-top: 58px;
    }

    .ds-video-wrapper {
        height: 220px;
    }

    .ds-testimonial-body {
        padding: 1.25rem;
    }

    .ds-video-modal-content {
        border-radius: 22px;
    }

    .ds-video-modal-content .modal-body {
        padding: 0.75rem;
    }

    .ds-video-modal-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
    }

    .ds-video-modal-frame iframe {
        height: 52vh;
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .ds-testimonial-author {
        align-items: flex-start;
    }

    .ds-testimonial-text {
        font-size: 0.94rem;
    }

    .ds-play-button {
        width: 58px;
        height: 58px;
    }
}


/* =========================================================
   BLOG INDEX + BLOG DETAIL PAGE
========================================================= */

.ds-blog-filter-section {
    position: relative;
    padding: 0 0 18px;
    margin-top: -34px;
    z-index: 4;
}

.ds-blog-filter-card {
    background: rgba(245, 241, 234, 0.88);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
    border-radius: 999px;
    padding: 0.85rem;
    backdrop-filter: blur(14px);
}

.ds-blog-filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.ds-blog-filter-btn {
    border: 1px solid rgba(49, 40, 77, 0.18);
    background: transparent;
    color: var(--royal-plum);
    border-radius: 999px;
    padding: 0.72rem 1.2rem;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.ds-blog-filter-btn:hover,
.ds-blog-filter-btn.active-filter {
    background: var(--deep-indigo);
    border-color: var(--deep-indigo);
    color: var(--ivory-cream);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(18, 11, 45, 0.18);
}

.ds-blog-grid-section {
    padding-top: 72px;
}

.ds-blog-item {
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.ds-blog-item.ds-blog-fade-in {
    opacity: 1;
    transform: scale(1);
}

.ds-blog-item.ds-blog-fade-out {
    opacity: 0;
    transform: scale(0.94);
}

.ds-blog-item.ds-blog-hidden {
    display: none;
}

/* Blog Card */
.ds-blog-card {
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--card-light);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
    transition: all 0.35s ease;
}

.ds-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(18, 11, 45, 0.16);
}

.ds-blog-image {
    position: relative;
    display: block;
    height: 255px;
    overflow: hidden;
    background: var(--warm-beige);
}

.ds-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.86);
    transition: transform 0.55s ease;
}

.ds-blog-card:hover .ds-blog-image img {
    transform: scale(1.08);
}

.ds-blog-placeholder {
    width: 100%;
    height: 100%;
    min-height: 255px;
    background:
        radial-gradient(circle at center, rgba(95, 84, 124, 0.18), transparent 55%),
        var(--warm-beige);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-blog-placeholder i {
    font-size: 3.5rem;
    color: var(--royal-plum);
}

.ds-blog-featured,
.ds-blog-category {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.48rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.ds-blog-featured {
    top: 16px;
    left: 16px;
    background: var(--warm-beige);
    color: var(--deep-indigo);
    text-transform: uppercase;
}

.ds-blog-category {
    right: 16px;
    bottom: 16px;
    background: var(--deep-indigo);
    color: var(--ivory-cream);
}

.ds-blog-card-body {
    padding: 1.55rem;
}

.ds-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    color: var(--soft-violet);
    font-size: 0.86rem;
    margin-bottom: 0.85rem;
}

.ds-blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
}

.ds-blog-meta i {
    color: var(--royal-plum);
}

.ds-blog-card-body h3 {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: 1.75rem;
    line-height: 1.12;
    margin-bottom: 0.85rem;
}

.ds-blog-card-body h3 a:hover {
    color: var(--soft-violet);
}

.ds-blog-card-body p {
    color: var(--soft-violet);
    line-height: 1.72;
    margin-bottom: 1.2rem;
}

.ds-blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(200, 155, 53, 0.16);
}

.ds-blog-author {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--soft-violet);
    font-size: 0.86rem;
    font-weight: 700;
}

.ds-blog-author i {
    color: var(--royal-plum);
}

/* Newsletter */
.ds-newsletter-section {
    position: relative;
    padding: 88px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(95, 84, 124, 0.10), transparent 28%),
        var(--warm-beige);
    overflow: hidden;
}

.ds-newsletter-section::before {
    content: "DEOSHALA";
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-family: var(--heading-font);
    font-size: clamp(4rem, 12vw, 11rem);
    letter-spacing: 0.08em;
    color: var(--soft-violet);
    opacity: 0.055;
    white-space: nowrap;
    pointer-events: none;
}

.ds-newsletter-card {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    border-radius: 36px;
    padding: 3rem 2rem;
    background: var(--card-light);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
}

.ds-newsletter-card h2 {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.ds-newsletter-card p {
    max-width: 680px;
    margin: 0 auto 1.5rem;
    color: var(--soft-violet);
    line-height: 1.75;
}

.ds-newsletter-form small {
    display: block;
    margin-top: 0.9rem;
    color: var(--soft-violet);
}

.ds-newsletter-input-group {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    gap: 0.75rem;
}

.ds-newsletter-input-group .form-control {
    min-height: 54px;
}

/* Blog Detail */
.ds-blog-detail-section {
    padding-top: 78px;
}

.ds-blog-article-card,
.ds-comments-section {
    overflow: hidden;
    border-radius: 38px;
    background: var(--card-light);
    border: 1px solid rgba(200, 155, 53, 0.18);
    box-shadow: var(--shadow-card);
}

.ds-blog-article-header {
    padding: 2.6rem 2.6rem 2rem;
}

.ds-blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    color: var(--soft-violet);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ds-blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
}

.ds-blog-detail-meta i {
    color: var(--royal-plum);
}

.ds-blog-article-header h2 {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.ds-blog-author-box {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    background: rgba(234, 219, 194, 0.56);
    border: 1px solid rgba(200, 155, 53, 0.16);
    border-radius: 999px;
    padding: 0.75rem 1rem 0.75rem 0.75rem;
}

.ds-blog-author-avatar,
.ds-comment-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--deep-indigo);
    color: var(--ivory-cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ds-blog-author-box h3 {
    color: var(--deep-indigo);
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
}

.ds-blog-author-box span {
    color: var(--soft-violet);
    font-size: 0.86rem;
    font-weight: 600;
}

.ds-blog-featured-image {
    height: 520px;
    overflow: hidden;
    background: var(--warm-beige);
}

.ds-blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.86);
}

.ds-blog-article-content {
    padding: 2.6rem;
    color: var(--soft-violet);
    font-size: 1.06rem;
    line-height: 1.9;
}

.ds-blog-article-content h1,
.ds-blog-article-content h2,
.ds-blog-article-content h3,
.ds-blog-article-content h4 {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.ds-blog-article-content h2 {
    font-size: 2rem;
}

.ds-blog-article-content h3 {
    font-size: 1.65rem;
}

.ds-blog-article-content p {
    margin-bottom: 1.25rem;
}

.ds-blog-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    margin: 1.4rem 0;
}

.ds-blog-article-content blockquote {
    border-left: 4px solid var(--deep-indigo);
    background: rgba(234, 219, 194, 0.56);
    border-radius: 0 22px 22px 0;
    padding: 1.2rem 1.4rem;
    color: var(--royal-plum);
    font-style: italic;
    margin: 1.5rem 0;
}

.ds-blog-tags,
.ds-blog-share {
    padding: 0 2.6rem 2rem;
}

.ds-blog-tags h3,
.ds-blog-share h3,
.ds-comments-header h2,
.ds-comment-form-card h3 {
    font-family: var(--heading-font);
    color: var(--deep-indigo);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.ds-tags-list,
.ds-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ds-tags-list a,
.ds-share-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.62rem 1rem;
    font-weight: 800;
    font-size: 0.88rem;
    transition: all 0.28s ease;
}

.ds-tags-list a {
    background: var(--warm-beige);
    color: var(--deep-indigo);
    border: 1px solid rgba(200, 155, 53, 0.18);
}

.ds-share-buttons a {
    background: transparent;
    color: var(--deep-indigo);
    border: 1px solid rgba(49, 40, 77, 0.18);
}

.ds-tags-list a:hover,
.ds-share-buttons a:hover {
    background: var(--deep-indigo);
    border-color: var(--deep-indigo);
    color: var(--ivory-cream);
    transform: translateY(-2px);
}

/* Comments */
.ds-comments-section {
    margin-top: 3rem;
    padding: 2.6rem;
}

.ds-comments-header {
    margin-bottom: 1.5rem;
}

.ds-comments-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ds-comment-item {
    display: flex;
    gap: 1rem;
    background: rgba(234, 219, 194, 0.48);
    border: 1px solid rgba(200, 155, 53, 0.16);
    border-radius: 24px;
    padding: 1.2rem;
}

.ds-comment-top {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.8rem;
    margin-bottom: 0.35rem;
}

.ds-comment-top strong {
    color: var(--deep-indigo);
    font-weight: 900;
}

.ds-comment-top span {
    color: var(--soft-violet);
    font-size: 0.86rem;
}

.ds-comment-content p {
    color: var(--soft-violet);
    line-height: 1.7;
    margin: 0;
}

.ds-comment-form-card {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(200, 155, 53, 0.18);
}

/* Related Posts */
.ds-related-posts-section {
    position: relative;
}

/* Responsive */
@media (max-width: 991px) {
    .ds-blog-featured-image {
        height: 420px;
    }

    .ds-blog-article-header,
    .ds-blog-article-content,
    .ds-blog-tags,
    .ds-blog-share,
    .ds-comments-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 767px) {
    .ds-blog-filter-section {
        margin-top: -24px;
    }

    .ds-blog-filter-card {
        border-radius: 28px;
        padding: 0.75rem;
    }

    .ds-blog-filter-buttons {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.2rem;
        scrollbar-width: none;
    }

    .ds-blog-filter-buttons::-webkit-scrollbar {
        display: none;
    }

    .ds-blog-filter-btn {
        flex: 0 0 auto;
        padding: 0.65rem 1rem;
        font-size: 0.86rem;
    }

    .ds-blog-grid-section {
        padding-top: 58px;
    }

    .ds-blog-image {
        height: 235px;
    }

    .ds-blog-card-footer,
    .ds-newsletter-input-group {
        flex-direction: column;
        align-items: stretch;
    }

    .ds-blog-card-footer .text-link {
        justify-content: flex-start;
    }

    .ds-newsletter-card {
        border-radius: 28px;
        padding: 2.2rem 1.35rem;
    }

    .ds-blog-article-card,
    .ds-comments-section {
        border-radius: 30px;
    }

    .ds-blog-featured-image {
        height: 330px;
    }

    .ds-blog-article-header,
    .ds-blog-article-content,
    .ds-blog-tags,
    .ds-blog-share,
    .ds-comments-section {
        padding-left: 1.35rem;
        padding-right: 1.35rem;
    }

    .ds-blog-article-header {
        padding-top: 1.6rem;
    }

    .ds-blog-article-header h2 {
        font-size: clamp(2.15rem, 10vw, 3.2rem);
    }

    .ds-blog-author-box {
        border-radius: 24px;
        align-items: flex-start;
    }

    .ds-comment-item {
        flex-direction: column;
    }

    .ds-share-buttons a,
    .ds-tags-list a {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ds-blog-card-body {
        padding: 1.2rem;
    }

    .ds-blog-card-body h3 {
        font-size: 1.55rem;
    }

    .ds-blog-detail-meta {
        gap: 0.55rem;
    }

    .ds-blog-article-content {
        font-size: 1rem;
    }
}

@media (max-width: 1199px) {
    body {
        padding-top: 104px;
    }
}


body {
    padding-top: 0 !important;
}

body.default-page main {
    padding-top: 98px;
}

body.has-video-hero main {
    padding-top: 0;
}

body.deoshala-menu-open {
    overflow: hidden;
}

/* Header */
.site-header {
    position: relative;
    z-index: 1200;
}

.deoshala-simple-header {
    min-height: 138px;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    transition: min-height 0.32s ease, transform 0.32s ease;
    z-index: 1100;
}

body.has-video-hero .deoshala-simple-header {
    background: linear-gradient(to bottom, rgba(12, 5, 28, 0.70), rgba(12, 5, 28, 0.14));
    border-bottom-color: rgba(231, 199, 107, 0.14);
    box-shadow: none;
}

.deoshala-header-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.deoshala-header-logo {
    width: 74px;
    height: 74px;
    object-fit: contain;
    border-radius: 18px;
    background: var(--deep-indigo);
    box-shadow: 0 16px 40px rgba(26, 16, 53, 0.18);
}

body.has-video-hero .deoshala-header-logo {
    background: rgba(11, 4, 27, 0.82);
    border: 1px solid rgba(231, 199, 107, 0.20);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.20);
}

.deoshala-menu-toggle {
    min-height: 54px;
    border: 1px solid rgba(200, 155, 53, 0.28);
    border-radius: 999px;
    background: rgba(255, 249, 240, 0.86);
    color: var(--deep-indigo);
    padding: 0.55rem 0.65rem 0.55rem 1.15rem;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.28s ease;
    box-shadow: 0 12px 30px rgba(26, 16, 53, 0.08);
}

body.has-video-hero .deoshala-menu-toggle {
    background: rgba(255, 249, 240, 0.10);
    color: var(--ivory-cream);
    border-color: rgba(231, 199, 107, 0.34);
    box-shadow: none;
}

.deoshala-menu-toggle:hover,
.deoshala-menu-toggle[aria-expanded="true"] {
    background: var(--logo-gold);
    border-color: var(--logo-gold);
    color: var(--deep-indigo);
    transform: translateY(-2px);
}

.deoshala-menu-text {
    font-size: 0.78rem;
}

.deoshala-menu-lines {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--deep-indigo);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.deoshala-menu-toggle:hover .deoshala-menu-lines,
.deoshala-menu-toggle[aria-expanded="true"] .deoshala-menu-lines {
    background: var(--deep-indigo);
}

.deoshala-menu-lines span {
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: var(--logo-gold-light);
    transition: all 0.25s ease;
}

.deoshala-menu-toggle[aria-expanded="true"] .deoshala-menu-lines span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.deoshala-menu-toggle[aria-expanded="true"] .deoshala-menu-lines span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}


/* Fullscreen video first section */
.deoshala-video-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    background: var(--deep-indigo);
}

.deoshala-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

.deoshala-video-shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 50% 44%, rgba(231, 199, 107, 0.10), transparent 32%),
        linear-gradient(90deg, rgba(10, 4, 25, 0.35), rgba(26, 16, 53, 0.20), rgba(10, 4, 25, 0.35)),
        linear-gradient(to bottom, rgba(10, 4, 25, 0.40), rgba(10, 4, 25, 0.12) 42%, rgba(10, 4, 25, 0.40));
}

.deoshala-video-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.22;
    background-image:
        linear-gradient(135deg, rgba(231, 199, 107, 0.10) 1px, transparent 1px),
        linear-gradient(45deg, rgba(255, 249, 240, 0.08) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

.deoshala-video-content {
    width: min(980px, calc(100% - 32px));
    margin: 0 auto;
    text-align: center;
    color: var(--ivory-cream);
    padding: 150px 0 90px;
}

.deoshala-video-logo {
    width: clamp(108px, 15vw, 162px);
    height: clamp(108px, 15vw, 162px);
    object-fit: contain;
    margin: 0 auto 1.25rem;
    border-radius: 30px;
    background: rgba(10, 4, 25, 0.22);
    /* border: 1px solid rgba(231, 199, 107, 0.20); */
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
    object-fit: fill;
}

.deoshala-video-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--logo-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.deoshala-video-eyebrow::before,
.deoshala-video-eyebrow::after {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--logo-gold);
    opacity: 0.75;
}

.deoshala-video-content h1 {
    font-family: var(--heading-font);
    font-size: clamp(3.1rem, 6vw, 7.4rem);
    line-height: 0.94;
    font-weight: 500;
    color: var(--ivory-cream);
    letter-spacing: -0.03em;
    margin-bottom: 1.3rem;
    text-shadow: 0 20px 80px rgba(0, 0, 0, 0.42);
}

.deoshala-video-content p {
    max-width: 780px;
    margin: 0 auto 2rem;
    color: rgba(251, 246, 236, 0.82);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.8;
}

.deoshala-video-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.video-outline {
    border-color: rgba(251, 246, 236, 0.68) !important;
    color: var(--ivory-cream) !important;
    background: rgba(255, 249, 240, 0.08) !important;
}

.video-outline:hover {
    background: var(--ivory-cream) !important;
    border-color: var(--ivory-cream) !important;
    color: var(--deep-indigo) !important;
}

.deoshala-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 30px;
    width: 34px;
    height: 56px;
    border: 1px solid rgba(231, 199, 107, 0.55);
    border-radius: 999px;
    transform: translateX(-50%);
    display: inline-flex;
    justify-content: center;
    padding-top: 10px;
}

.deoshala-scroll-cue span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--logo-gold-light);
    animation: deoshalaScrollCue 1.45s infinite;
}

@keyframes deoshalaScrollCue {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(22px);
    }
}

/* Make current hero behave as second section */
body.has-video-hero .hero-section {
    min-height: auto;
    padding-top: 96px;
}

@media (max-width: 1199px) {

    body,
    body.default-page,
    body.has-video-hero {
        padding-top: 0 !important;
    }

    body.default-page main {
        padding-top: 88px;
    }

    .deoshala-simple-header,
    .deoshala-header-inner {
        min-height: 88px;
    }

    .deoshala-header-logo {
        width: 66px;
        height: 66px;
        border-radius: 16px;
    }

    .deoshala-video-content {
        padding-top: 132px;
    }
}

@media (max-width: 767px) {

    body,
    body.default-page,
    body.has-video-hero {
        padding-top: 0 !important;
    }

    body.default-page main {
        padding-top: 82px;
    }

    .deoshala-video-content {
        width: min(100% - 28px, 760px);
        padding: 118px 0 78px;
    }

    .deoshala-video-logo {
        width: 104px;
        height: 104px;
        border-radius: 24px;
    }

    .deoshala-video-eyebrow {
        letter-spacing: 0.12em;
        font-size: 0.68rem;
        gap: 0.5rem;
    }

    .deoshala-video-eyebrow::before,
    .deoshala-video-eyebrow::after {
        width: 18px;
    }

    .deoshala-video-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .deoshala-video-actions .btn {
        width: 100%;
        justify-content: center;
    }

    body.has-video-hero .hero-section {
        padding-top: 76px;
    }
}

@media (max-width: 420px) {

    .deoshala-video-content h1 {
        font-size: clamp(2.75rem, 12vw, 4.3rem);
    }
}



/* =========================================================
   SMOOTH VIDEO LOGO TO STICKY HEADER LOGO
========================================================= */

body {
    --logo-handoff-progress: 0;
    --header-logo-scale: 0.76;
    --video-logo-opacity: 1;
    --video-logo-scale: 1;
    --video-logo-lift: 0px;
}

body:not(.has-video-hero) {
    --logo-handoff-progress: 1;
    --header-logo-scale: 1;
    --video-logo-opacity: 0;
    --video-logo-scale: 0.6;
}


.footer-brand {
    max-width: 470px;
}

.footer-logo-card {
    width: 132px;
    height: 132px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* padding: 14px; */
    margin-bottom: 24px;
    border-radius: 28px;
    background: #14082f;
    border: 1px solid rgba(202, 156, 44, 0.35);
    box-shadow: 0 18px 45px rgba(20, 8, 47, 0.16);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.footer-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(20, 8, 47, 0.22);
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 991px) {
    .footer-brand {
        text-align: center;
        margin: 0 auto;
    }

    .footer-logo-card {
        margin-left: auto;
        margin-right: auto;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .footer-logo-card {
        width: 112px;
        height: 112px;
        border-radius: 24px;
        /* padding: 12px; */
    }
}

body.deoshala-menu-open {
    overflow: hidden;
}

body.default-page main {
    padding-top: 130px !important;
}

body.has-video-hero main {
    padding-top: 0 !important;
}

.site-header {
    position: relative !important;
    z-index: 1200 !important;
}

.deoshala-simple-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1200 !important;
    min-height: 132px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    pointer-events: auto !important;
    transition:
        min-height 0.32s ease,
        background 0.32s ease,
        box-shadow 0.32s ease,
        border-color 0.32s ease !important;
}

.deoshala-simple-header.scrolled,
.deoshala-simple-header.is-scrolled {
    min-height: 88px !important;
}

body.has-video-hero .deoshala-simple-header:not(.scrolled):not(.is-scrolled) {
    background: linear-gradient(to bottom,
            rgba(12, 5, 28, 0.50),
            rgba(12, 5, 28, 0)) !important;
}

.deoshala-simple-header .container-fluid {
    height: 100% !important;
    background: transparent !important;
}

.deoshala-header-inner {
    min-height: 132px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    transition: min-height 0.32s ease !important;
}

.deoshala-simple-header.scrolled .deoshala-header-inner,
.deoshala-simple-header.is-scrolled .deoshala-header-inner {
    min-height: 88px !important;
}

.deoshala-header-brand {
    grid-column: auto !important;
    justify-self: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    transform-origin: left center !important;
    z-index: 2 !important;
    line-height: 1 !important;
}

.deoshala-header-logo {
    width: 118px !important;
    height: 118px !important;
    max-width: none !important;
    display: block !important;
    object-fit: contain !important;
    border-radius: 28px !important;
    background: var(--deep-indigo) !important;
    border: 1px solid rgba(231, 199, 107, 0.24) !important;
    box-shadow: 0 22px 58px rgba(26, 16, 53, 0.22) !important;
    transition:
        width 0.32s ease,
        height 0.32s ease,
        border-radius 0.32s ease,
        box-shadow 0.32s ease,
        background 0.32s ease !important;
}

.deoshala-simple-header.scrolled .deoshala-header-logo,
.deoshala-simple-header.is-scrolled .deoshala-header-logo {
    width: 74px !important;
    height: 74px !important;
    border-radius: 20px !important;
    /* box-shadow: 0 14px 34px rgba(26, 16, 53, 0.18) !important; */
}

body.has-video-hero .deoshala-simple-header:not(.scrolled):not(.is-scrolled) .deoshala-header-logo {
    background: rgb(26 16 53) !important;
    border-color: rgba(231, 199, 107, 0.28) !important;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22) !important;
}

.deoshala-menu-toggle {
    grid-column: auto !important;
    justify-self: auto !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
    padding: 2px 4px !important;
    border: 1px solid rgba(200, 155, 53, 0.42) !important;
    border-radius: 999px !important;
    background: rgba(19, 10, 39, 0.42) !important;
    color: var(--ivory-cream) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.9rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    box-shadow: 0 14px 36px rgba(11, 4, 27, 0.10) !important;
    pointer-events: auto !important;
    transition:
        background 0.28s ease,
        color 0.28s ease,
        border-color 0.28s ease,
        transform 0.28s ease,
        box-shadow 0.28s ease !important;
}

.deoshala-simple-header.scrolled .deoshala-menu-toggle,
.deoshala-simple-header.is-scrolled .deoshala-menu-toggle,
body.default-page .deoshala-menu-toggle {
    background: rgba(255, 249, 240, 0.90) !important;
    color: var(--deep-indigo) !important;
    box-shadow: 0 14px 36px rgba(26, 16, 53, 0.12) !important;
}

.deoshala-menu-toggle:hover,
.deoshala-menu-toggle[aria-expanded="true"] {
    background: var(--logo-gold) !important;
    border-color: var(--logo-gold) !important;
    color: var(--deep-indigo) !important;
    transform: translateY(-2px) !important;
}

.deoshala-menu-text {
    font-size: 0.78rem !important;
    line-height: 1 !important;
}

.deoshala-menu-lines {
    width: 46px !important;
    height: 46px !important;
    flex: 0 0 46px !important;
    border-radius: 50% !important;
    background: var(--deep-indigo) !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
}

.deoshala-menu-lines span {
    width: 19px !important;
    height: 2px !important;
    display: block !important;
    border-radius: 999px !important;
    background: var(--logo-gold-light) !important;
    transition:
        transform 0.28s ease,
        opacity 0.28s ease !important;
}

.deoshala-menu-toggle[aria-expanded="true"] .deoshala-menu-lines span:first-child,
body.deoshala-menu-open .deoshala-menu-lines span:first-child {
    transform: translateY(4.5px) rotate(45deg) !important;
}

.deoshala-menu-toggle[aria-expanded="true"] .deoshala-menu-lines span:last-child,
body.deoshala-menu-open .deoshala-menu-lines span:last-child {
    transform: translateY(-4.5px) rotate(-45deg) !important;
}

.deoshala-sidebar-backdrop {
    position: fixed !important;
    inset: 0 !important;
    z-index: 1210 !important;
    background: rgba(11, 4, 27, 0.52) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.28s ease !important;
}

body.deoshala-menu-open .deoshala-sidebar-backdrop {
    opacity: 1 !important;
    visibility: visible !important;
}

.deoshala-sidebar-menu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: min(460px, 92vw) !important;
    height: 100vh !important;
    z-index: 1220 !important;
    background:
        radial-gradient(circle at 15% 10%, rgba(231, 199, 107, 0.18), transparent 28%),
        radial-gradient(circle at 100% 95%, rgba(255, 249, 240, 0.10), transparent 30%),
        linear-gradient(160deg, #0D061F 0%, var(--deep-indigo) 45%, var(--royal-plum) 100%) !important;
    color: var(--ivory-cream) !important;
    box-shadow: -28px 0 80px rgba(0, 0, 0, 0.32) !important;
    transform: translateX(105%) !important;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1) !important;
    overflow: hidden !important;
}

body.deoshala-menu-open .deoshala-sidebar-menu {
    transform: translateX(0) !important;
}

.deoshala-sidebar-menu::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    opacity: 0.12 !important;
    background-image: radial-gradient(circle, var(--logo-gold-light) 1.4px, transparent 1.4px) !important;
    background-size: 28px 28px !important;
    pointer-events: none !important;
}

.deoshala-sidebar-menu::after {
    content: "DEOSHALA" !important;
    position: absolute !important;
    right: -18px !important;
    bottom: 18px !important;
    font-family: var(--brand-font) !important;
    font-size: clamp(3rem, 11vw, 7.2rem) !important;
    letter-spacing: 0.12em !important;
    color: var(--logo-gold-light) !important;
    opacity: 0.055 !important;
    white-space: nowrap !important;
    pointer-events: none !important;
}

.deoshala-sidebar-inner {
    position: relative !important;
    z-index: 2 !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 15px;
}

.deoshala-sidebar-top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem !important;
    padding-bottom: 1.2rem !important;
    border-bottom: 1px solid rgba(231, 199, 107, 0.16) !important;
}

.deoshala-sidebar-logo {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.9rem !important;
    color: var(--ivory-cream) !important;
}

.deoshala-sidebar-logo img {
    width: 64px !important;
    height: 64px !important;
    object-fit: contain !important;
    border-radius: 16px !important;
    background: rgba(8, 3, 19, 0.76) !important;
    border: 1px solid rgba(231, 199, 107, 0.20) !important;
}

.deoshala-sidebar-logo span {
    font-family: var(--brand-font) !important;
    color: var(--logo-gold-light) !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.20em !important;
    text-transform: uppercase !important;
}

.deoshala-sidebar-close {
    width: 48px !important;
    height: 48px !important;
    border: 1px solid rgba(231, 199, 107, 0.22) !important;
    border-radius: 50% !important;
    background: rgba(255, 249, 240, 0.08) !important;
    color: var(--logo-gold-light) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.25s ease !important;
}

.deoshala-sidebar-close:hover {
    background: var(--logo-gold) !important;
    color: var(--deep-indigo) !important;
    transform: rotate(90deg) !important;
}

.deoshala-sidebar-content {
    flex: 1 !important;
    overflow-y: auto !important;
    padding: 2rem 0 1.2rem !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(231, 199, 107, 0.28) transparent !important;
}

.deoshala-sidebar-content::-webkit-scrollbar {
    width: 6px !important;
}

.deoshala-sidebar-content::-webkit-scrollbar-thumb {
    background: rgba(231, 199, 107, 0.28) !important;
    border-radius: 999px !important;
}

.deoshala-sidebar-eyebrow {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.65rem !important;
    color: var(--logo-gold-light) !important;
    font-size: 0.72rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.20em !important;
    text-transform: uppercase !important;
    margin-bottom: 1.2rem !important;
}

.deoshala-sidebar-eyebrow::before {
    content: "" !important;
    width: 32px !important;
    height: 1px !important;
    background: var(--logo-gold) !important;
}

.deoshala-sidebar-nav {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid !important;
    gap: 0.35rem !important;
}

.deoshala-sidebar-nav a {
    min-height: 58px !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    color: rgba(251, 246, 236, 0.82) !important;
    border-radius: 18px !important;
    padding: 0.85rem 1rem !important;
    font-weight: 800 !important;
    font-size: clamp(1.05rem, 2vw, 1.25rem) !important;
    letter-spacing: 0.02em !important;
    transition: all 0.25s ease !important;
}

.deoshala-sidebar-nav a span {
    width: 34px !important;
    color: var(--logo-gold-light) !important;
    font-size: 0.92rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.12em !important;
    flex-shrink: 0 !important;
}

.deoshala-sidebar-nav a:hover,
.deoshala-sidebar-nav a.active {
    background: rgba(255, 249, 240, 0.10) !important;
    color: var(--ivory-cream) !important;
    transform: translateX(6px) !important;
}

.deoshala-sidebar-nav a.active {
    background: linear-gradient(135deg, var(--logo-gold-light), var(--logo-gold)) !important;
    color: var(--deep-indigo) !important;
}

.deoshala-sidebar-nav a.active span {
    color: var(--deep-indigo) !important;
}

.deoshala-sidebar-type-grid {
    display: grid !important;
    gap: 10px !important;
    margin: 14px 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.deoshala-sidebar-type-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    padding: 13px 14px !important;
    border-radius: 18px !important;
    color: var(--ivory-cream) !important;
    background: rgba(255, 249, 240, 0.06) !important;
    border: 1px solid rgba(200, 155, 53, 0.16) !important;
    transition: all 0.28s ease !important;
}

.deoshala-sidebar-type-link:hover,
.deoshala-sidebar-type-link.active {
    background: rgba(200, 155, 53, 0.18) !important;
    border-color: rgba(200, 155, 53, 0.42) !important;
    color: var(--logo-gold-light) !important;
    transform: translateX(4px) !important;
}

.deoshala-sidebar-type-link span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.03em !important;
}

.deoshala-sidebar-type-link i:first-child {
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(200, 155, 53, 0.14) !important;
    color: var(--logo-gold) !important;
}

.deoshala-sidebar-type-link i:last-child {
    font-size: 0.8rem !important;
    opacity: 0.7 !important;
}

.deoshala-sidebar-footer {
    padding-top: 1.1rem !important;
    border-top: 1px solid rgba(231, 199, 107, 0.16) !important;
}

.deoshala-sidebar-cta {
    width: 100% !important;
    min-height: 56px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.65rem !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, var(--logo-gold-light), var(--logo-gold)) !important;
    color: var(--deep-indigo) !important;
    font-weight: 900 !important;
    margin-bottom: 1rem !important;
    transition: all 0.28s ease !important;
}

.deoshala-sidebar-cta:hover {
    background: var(--ivory-cream) !important;
    color: var(--deep-indigo) !important;
    transform: translateY(-2px) !important;
}

.deoshala-sidebar-footer p {
    color: rgba(251, 246, 236, 0.68) !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    font-size: 0.92rem !important;
}

.deoshala-video-logo {
    opacity: 1 !important;
    transform: none !important;
}

@media (max-width: 1199px) {
    body.default-page main {
        padding-top: 106px !important;
    }

    .deoshala-simple-header {
        min-height: 106px !important;
    }

    .deoshala-simple-header.scrolled,
    .deoshala-simple-header.is-scrolled {
        min-height: 78px !important;
    }

    .deoshala-header-inner {
        min-height: 106px !important;
    }

    .deoshala-simple-header.scrolled .deoshala-header-inner,
    .deoshala-simple-header.is-scrolled .deoshala-header-inner {
        min-height: 78px !important;
    }

    .deoshala-header-logo {
        width: 92px !important;
        height: 92px !important;
        border-radius: 22px !important;
    }

    .deoshala-simple-header.scrolled .deoshala-header-logo,
    .deoshala-simple-header.is-scrolled .deoshala-header-logo {
        width: 64px !important;
        height: 64px !important;
        border-radius: 17px !important;
    }

    .deoshala-menu-toggle {
        min-height: 52px !important;
        padding: 0.38rem 0.45rem 0.38rem 1rem !important;
        gap: 0.7rem !important;
    }

    .deoshala-menu-lines {
        width: 40px !important;
        height: 40px !important;
        flex-basis: 40px !important;
    }
}

@media (max-width: 767px) {
    body.default-page main {
        padding-top: 90px !important;
    }

    .deoshala-simple-header {
        min-height: 90px !important;
    }

    .deoshala-simple-header.scrolled,
    .deoshala-simple-header.is-scrolled {
        min-height: 70px !important;
    }

    .deoshala-header-inner {
        min-height: 90px !important;
    }

    .deoshala-simple-header.scrolled .deoshala-header-inner,
    .deoshala-simple-header.is-scrolled .deoshala-header-inner {
        min-height: 70px !important;
    }

    .deoshala-header-logo {
        width: 74px !important;
        height: 74px !important;
        border-radius: 18px !important;
    }

    .deoshala-simple-header.scrolled .deoshala-header-logo,
    .deoshala-simple-header.is-scrolled .deoshala-header-logo {
        width: 54px !important;
        height: 54px !important;
        border-radius: 14px !important;
    }

    .deoshala-menu-toggle {
        width: 48px !important;
        min-width: 48px !important;
        max-width: 48px !important;
        height: 48px !important;
        min-height: 48px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        background: rgba(255, 249, 240, 0.88) !important;
        color: var(--deep-indigo) !important;
    }

    .deoshala-menu-text {
        display: none !important;
    }

    .deoshala-menu-lines {
        width: 46px !important;
        height: 46px !important;
        flex-basis: 46px !important;
    }

    .deoshala-sidebar-inner {
        padding: 1rem !important;
    }

    .deoshala-sidebar-logo img {
        width: 56px !important;
        height: 56px !important;
        border-radius: 15px !important;
    }

    .deoshala-sidebar-logo span {
        font-size: 0.72rem !important;
        letter-spacing: 0.16em !important;
    }

    .deoshala-sidebar-close {
        width: 44px !important;
        height: 44px !important;
    }

    .deoshala-sidebar-content {
        padding-top: 1.45rem !important;
    }

    .deoshala-sidebar-nav a {
        min-height: 52px !important;
        border-radius: 16px !important;
        font-size: 1.02rem !important;
    }
}

@media (max-width: 420px) {
    .deoshala-sidebar-menu {
        width: 100vw !important;
    }

    .deoshala-header-logo {
        width: 68px !important;
        height: 68px !important;
    }

    .deoshala-simple-header.scrolled .deoshala-header-logo,
    .deoshala-simple-header.is-scrolled .deoshala-header-logo {
        width: 50px !important;
        height: 50px !important;
    }
}



/* =========================================================
       VISION / MISSION SECTION
    ========================================================= */

.vision-mission-section {
    position: relative;
    background:
        radial-gradient(circle at 12% 12%, rgba(200, 155, 53, 0.10), transparent 32%),
        radial-gradient(circle at 90% 16%, rgba(26, 16, 53, 0.07), transparent 30%),
        linear-gradient(180deg, var(--section-light, #f8f0e4), var(--page-light, #fff8ec));
    overflow: hidden;
}

.vision-mission-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image: radial-gradient(circle, rgba(42, 26, 74, 0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
}

.vision-mission-section .container {
    position: relative;
    z-index: 2;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.vision-mission-card {
    position: relative;
    min-height: 360px;
    padding: 42px;
    border-radius: 34px;
    background: rgba(255, 249, 240, 0.84);
    border: 1px solid rgba(200, 155, 53, 0.22);
    box-shadow: var(--shadow-card, 0 24px 70px rgba(26, 16, 53, 0.08));
    overflow: hidden;
}

.vision-mission-card::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(200, 155, 53, 0.10);
    pointer-events: none;
}

.vision-mission-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--deep-indigo, #170d35);
    color: var(--logo-gold-light, #f3d985);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 26px;
    position: relative;
    z-index: 2;
}

.vision-mission-card span {
    display: inline-flex;
    color: var(--logo-gold, #c89b35);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.78rem;
    font-weight: 900;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.vision-mission-card h3 {
    font-family: var(--heading-font, "Cinzel", serif);
    color: var(--deep-indigo, #170d35);
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.vision-mission-card p {
    color: var(--soft-violet, #706783);
    line-height: 1.85;
    font-size: 1.02rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

.vision-mission-card.is-dark {
    background:
        radial-gradient(circle at 15% 14%, rgba(200, 155, 53, 0.18), transparent 36%),
        linear-gradient(135deg, #100720, #241442);
    border-color: rgba(200, 155, 53, 0.28);
}

.vision-mission-card.is-dark h3 {
    color: var(--ivory-cream, #fff8ec);
}

.vision-mission-card.is-dark p {
    color: rgba(255, 249, 240, 0.78);
}

/* =========================================================
       TEAM SECTION
    ========================================================= */

.team-section {
    position: relative;
    background:
        radial-gradient(circle at 90% 10%, rgba(200, 155, 53, 0.08), transparent 28%),
        var(--page-light, #fff8ec);
    overflow: hidden;
}

.team-main-card {
    border-radius: 38px;
    overflow: hidden;
    background: rgba(255, 249, 240, 0.92);
    border: 1px solid rgba(200, 155, 53, 0.22);
    box-shadow: var(--shadow-card, 0 24px 70px rgba(26, 16, 53, 0.08));
}

.team-image-wrap {
    height: 100%;
    min-height: 560px;
    position: relative;
    background: var(--warm-beige, #eadbc2);
}

.team-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-image-badge {
    position: absolute;
    left: 28px;
    bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(23, 13, 53, 0.92);
    color: var(--logo-gold-light, #f3d985);
    font-weight: 900;
    box-shadow: 0 18px 46px rgba(10, 4, 28, 0.22);
}

.team-content {
    padding: 52px;
}

.team-content h3 {
    font-family: var(--heading-font, "Cinzel", serif);
    color: var(--deep-indigo, #170d35);
    font-size: clamp(2.2rem, 4vw, 4rem);
    margin-bottom: 8px;
}

.team-role {
    color: var(--logo-gold, #c89b35);
    font-weight: 900;
    font-size: 1.05rem;
    margin-bottom: 26px;
}

.team-content p {
    color: var(--soft-violet, #706783);
    line-height: 1.85;
    margin-bottom: 18px;
}

.team-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.team-info-card {
    padding: 22px;
    border-radius: 24px;
    background: rgba(234, 219, 194, 0.55);
    border: 1px solid rgba(200, 155, 53, 0.18);
}

.team-info-card i {
    color: var(--logo-gold, #c89b35);
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.team-info-card h4 {
    color: var(--deep-indigo, #170d35);
    font-weight: 900;
    margin-bottom: 8px;
}

.team-info-card p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.65;
}

/* =========================================================
       CONTACT SERVICE DROPDOWN
    ========================================================= */

.contact-service-select {
    min-height: 58px;
    border-radius: 18px;
    border: 1px solid rgba(200, 155, 53, 0.28);
    background-color: rgba(255, 255, 255, 0.68);
    color: var(--deep-indigo, #170d35);
    font-weight: 700;
    padding: 0.85rem 1.05rem;
}

.contact-service-select:focus {
    border-color: var(--logo-gold, #c89b35);
    box-shadow: 0 0 0 0.2rem rgba(200, 155, 53, 0.16);
}

@media (max-width: 991px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .team-image-wrap {
        min-height: 420px;
    }

    .team-content {
        padding: 38px 28px;
    }
}

@media (max-width: 767px) {
    .vision-mission-card {
        padding: 30px 24px;
        min-height: auto;
        border-radius: 28px;
    }

    .team-info-grid {
        grid-template-columns: 1fr;
    }

    .team-image-wrap {
        min-height: 360px;
    }

    .team-content {
        padding: 32px 22px;
    }
}


.team-section {
    position: relative;
    background:
        radial-gradient(circle at 90% 10%, rgba(200, 155, 53, 0.08), transparent 28%),
        radial-gradient(circle at 10% 90%, rgba(26, 16, 53, 0.06), transparent 30%),
        var(--page-light, #fff8ec);
    overflow: hidden;
}

.team-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image: radial-gradient(circle, rgba(42, 26, 74, 0.12) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
}

.team-section .container {
    position: relative;
    z-index: 2;
}

.team-intro-card {
    max-width: 980px;
    margin: 0 auto 42px;
    padding: 34px 38px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 10% 10%, rgba(200, 155, 53, 0.12), transparent 32%),
        rgba(255, 249, 240, 0.86);
    border: 1px solid rgba(200, 155, 53, 0.22);
    box-shadow: 0 20px 58px rgba(26, 16, 53, 0.08);
    text-align: center;
}

.team-intro-card h3 {
    font-family: var(--heading-font, "Cinzel", serif);
    color: var(--deep-indigo, #170d35);
    font-size: clamp(2rem, 4vw, 3.6rem);
    margin-bottom: 14px;
}

.team-intro-card p {
    color: var(--soft-violet, #706783);
    line-height: 1.85;
    margin: 0 auto;
    max-width: 820px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.team-member-card {
    position: relative;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: rgba(255, 249, 240, 0.92);
    border: 1px solid rgba(200, 155, 53, 0.22);
    box-shadow: 0 18px 52px rgba(26, 16, 53, 0.09);
    transition: all 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 78px rgba(26, 16, 53, 0.15);
}

.team-member-image {
    position: relative;
    height: 310px;
    background: var(--warm-beige, #eadbc2);
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.team-member-card:hover .team-member-image img {
    transform: scale(1.06);
}

.team-member-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(200, 155, 53, 0.18), transparent 35%),
        linear-gradient(135deg, #eadbc2, #fff8ec);
    color: var(--deep-indigo, #170d35);
    font-size: 3rem;
}

.team-member-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(23, 13, 53, 0.92);
    color: var(--logo-gold-light, #f3d985);
    font-size: 0.78rem;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(10, 4, 28, 0.20);
}

.team-member-body {
    padding: 28px;
}

.team-member-body h3 {
    font-family: var(--heading-font, "Cinzel", serif);
    color: var(--deep-indigo, #170d35);
    font-size: clamp(1.65rem, 2.4vw, 2.15rem);
    margin-bottom: 8px;
}

.team-member-role {
    color: var(--logo-gold, #c89b35);
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.45;
}

.team-member-body p {
    color: var(--soft-violet, #706783);
    line-height: 1.75;
    margin-bottom: 18px;
}

.team-member-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.team-member-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0.32rem 0.72rem;
    border-radius: 999px;
    background: rgba(234, 219, 194, 0.72);
    border: 1px solid rgba(200, 155, 53, 0.20);
    color: var(--antique-bronze, #8a681c);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.team-bottom-note {
    margin-top: 42px;
    padding: 28px 32px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 12% 12%, rgba(200, 155, 53, 0.16), transparent 34%),
        linear-gradient(135deg, #100720, #241442);
    border: 1px solid rgba(200, 155, 53, 0.28);
    color: rgba(255, 249, 240, 0.78);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.team-bottom-note h3 {
    font-family: var(--heading-font, "Cinzel", serif);
    color: var(--ivory-cream, #fff8ec);
    margin-bottom: 8px;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.team-bottom-note p {
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 1199px) {
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .team-intro-card {
        padding: 30px 26px;
    }

    .team-bottom-note {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

    .team-member-image {
        height: 330px;
    }

    .team-member-body {
        padding: 24px;
    }

    .team-bottom-note {
        padding: 26px 22px;
    }
}

/* =========================================================
   DEOSHALA JOURNEY CONTACT SECTION
========================================================= */

.deoshala-journey-contact-section {
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(circle at 14% 16%, rgba(200, 155, 53, 0.08), transparent 30%),
        radial-gradient(circle at 88% 76%, rgba(200, 155, 53, 0.06), transparent 34%),
        #25144f;
    color: #fff8ec;
    overflow: hidden;
}

.deoshala-journey-contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.45;
    pointer-events: none;
}

.deoshala-journey-contact-section .container {
    position: relative;
    z-index: 2;
}

.journey-contact-shell {
    max-width: 1380px;
    margin: 0 auto;
}

.journey-contact-copy {
    padding-right: 28px;
}

.journey-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #c99a32;
    text-transform: uppercase;
    letter-spacing: 0.42em;
    font-size: 0.72rem;
    font-weight: 900;
    margin-bottom: 34px;
}

.journey-eyebrow span {
    width: 28px;
    height: 1px;
    background: #c99a32;
    display: inline-block;
}

.journey-contact-copy h2 {
    font-family: var(--heading-font, "Cinzel", serif);
    color: #fff8ec;
    font-size: clamp(3.2rem, 6vw, 5.8rem);
    line-height: 1.05;
    margin: 0;
    letter-spacing: -0.03em;
}

.journey-contact-copy h2 em {
    display: inline-block;
    color: #c99a32;
    font-family: var(--script-font, "Cormorant Garamond", serif);
    font-style: italic;
    font-weight: 400;
}

.journey-title-line {
    width: 50px;
    height: 1px;
    background: #c99a32;
    margin: 34px 0 24px;
}

.journey-lead {
    color: rgba(255, 248, 236, 0.72);
    font-size: 1.03rem;
    line-height: 2;
    max-width: 570px;
    margin: 0;
}

.journey-contact-list {
    margin-top: 54px;
    display: grid;
    gap: 30px;
}

.journey-contact-row {
    display: grid;
    grid-template-columns: 94px 1fr;
    gap: 18px;
    align-items: start;
}

.journey-contact-row span {
    color: #c99a32;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 0.72rem;
    font-weight: 900;
    padding-top: 4px;
}

.journey-contact-row p {
    margin: 0;
    color: rgba(255, 248, 236, 0.76);
    line-height: 1.9;
}

.journey-contact-row a {
    color: rgba(255, 248, 236, 0.78);
    text-decoration: none;
    transition: color 0.25s ease;
}

.journey-contact-row a:hover {
    color: #c99a32;
}

.journey-form-card {
    width: 100%;
}

.journey-form-label {
    display: block;
    color: rgba(255, 248, 236, 0.54);
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 0.68rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.journey-form-control {
    width: 100%;
    min-height: 56px;
    border-radius: 0;
    border: 1px solid rgba(255, 248, 236, 0.16);
    background: rgba(255, 255, 255, 0.035);
    color: #fff8ec;
    padding: 0.95rem 1.25rem;
    font-size: 0.98rem;
    outline: none;
    box-shadow: none;
    transition: all 0.25s ease;
}

.journey-form-control::placeholder {
    color: rgba(255, 248, 236, 0.36);
}

.journey-form-control:focus {
    border-color: rgba(201, 154, 50, 0.82);
    background: rgba(255, 255, 255, 0.06);
    color: #fff8ec;
    box-shadow: 0 0 0 0.18rem rgba(201, 154, 50, 0.10);
}

.journey-form-select {
    appearance: auto;
    cursor: pointer;
}

.journey-form-select option {
    background: #25144f;
    color: #fff8ec;
}

.journey-form-textarea {
    min-height: 112px;
    resize: vertical;
}

.journey-submit-btn {
    width: 100%;
    min-height: 58px;
    border: 0;
    border-radius: 0;
    background: #cf9b33;
    color: #120923;
    text-transform: uppercase;
    letter-spacing: 0.38em;
    font-size: 0.72rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.journey-submit-btn:hover {
    background: #e0b04b;
    transform: translateY(-2px);
}

.journey-submit-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
}

.journey-form-note {
    color: rgba(255, 248, 236, 0.34);
    font-size: 0.78rem;
    text-align: center;
    margin: 26px 0 0;
}

.journey-form-message {
    color: #fff8ec;
}

.journey-form-message.success,
.journey-form-message.alert-success {
    color: #fff8ec;
    background: rgba(25, 135, 84, 0.14);
    border: 1px solid rgba(25, 135, 84, 0.32);
    padding: 14px 16px;
}

.journey-form-message.error,
.journey-form-message.alert-danger {
    color: #fff8ec;
    background: rgba(220, 53, 69, 0.14);
    border: 1px solid rgba(220, 53, 69, 0.32);
    padding: 14px 16px;
}

@media (max-width: 1199px) {
    .deoshala-journey-contact-section {
        padding: 100px 0;
    }

    .journey-contact-copy {
        padding-right: 0;
    }

    .journey-contact-copy h2 {
        font-size: clamp(3rem, 7vw, 5rem);
    }
}

@media (max-width: 991px) {
    .deoshala-journey-contact-section {
        padding: 86px 0;
    }

    .journey-contact-copy {
        text-align: center;
        max-width: 760px;
        margin: 0 auto;
    }

    .journey-eyebrow {
        justify-content: center;
    }

    .journey-title-line {
        margin-left: auto;
        margin-right: auto;
    }

    .journey-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .journey-contact-list {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .deoshala-journey-contact-section {
        padding: 72px 0;
    }

    .journey-contact-copy h2 {
        font-size: clamp(2.7rem, 13vw, 4.4rem);
    }

    .journey-eyebrow {
        letter-spacing: 0.28em;
        font-size: 0.66rem;
    }

    .journey-contact-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .journey-contact-row span {
        padding-top: 0;
    }

    .journey-contact-list {
        gap: 22px;
        margin-top: 42px;
    }

    .journey-form-card {
        margin-top: 10px;
    }

    .journey-form-label {
        letter-spacing: 0.22em;
    }

    .journey-submit-btn {
        letter-spacing: 0.26em;
    }
}


.legal-page {
    background: var(--page-light, #fff8ec);
    color: var(--deep-indigo, #170d35);
}

.legal-hero {
    position: relative;
    padding: 180px 0 90px;
    background:
        radial-gradient(circle at 14% 20%, rgba(200, 155, 53, 0.16), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(255, 248, 236, 0.08), transparent 30%),
        linear-gradient(135deg, #130827 0%, #29175a 100%);
    color: #fff8ec;
    overflow: hidden;
}

.legal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: .55;
}

.legal-hero .container {
    position: relative;
    z-index: 2;
}

.legal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #c99a32;
    text-transform: uppercase;
    letter-spacing: .35em;
    font-size: .72rem;
    font-weight: 900;
    margin-bottom: 24px;
}

.legal-eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: #c99a32;
}

.legal-hero h1 {
    font-family: var(--heading-font, "Cinzel", serif);
    color: #fff8ec;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1.05;
    margin-bottom: 22px;
}

.legal-hero p {
    max-width: 760px;
    color: rgba(255, 248, 236, .72);
    line-height: 1.85;
    margin: 0;
    font-size: 1.05rem;
}

.legal-content-section {
    padding: 90px 0;
    overflow: visible !important;
}

.legal-content-section .container {
    overflow: visible !important;
}

.legal-shell {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 42px;
    align-items: flex-start;
    overflow: visible !important;
}

.legal-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
    align-self: flex-start;
    height: fit-content;
    max-height: calc(100dvh - 130px);
    overflow-y: auto;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 249, 240, .92);
    border: 1px solid rgba(200, 155, 53, .22);
    box-shadow: 0 18px 52px rgba(26, 16, 53, .08);
    z-index: 5;
    scrollbar-width: thin;
}

.legal-sidebar::-webkit-scrollbar {
    width: 6px;
}

.legal-sidebar::-webkit-scrollbar-track {
    background: rgba(200, 155, 53, .08);
    border-radius: 999px;
}

.legal-sidebar::-webkit-scrollbar-thumb {
    background: rgba(200, 155, 53, .45);
    border-radius: 999px;
}

.legal-sidebar h3 {
    font-family: var(--heading-font, "Cinzel", serif);
    color: var(--deep-indigo, #170d35);
    font-size: 1.65rem;
    margin-bottom: 16px;
}

.legal-sidebar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    color: var(--soft-violet, #706783);
    text-decoration: none;
    font-weight: 800;
    border-bottom: 1px solid rgba(200, 155, 53, .15);
    transition: color .2s ease;
}

.legal-sidebar a:hover {
    color: var(--logo-gold, #c89b35);
}

.legal-sidebar a:last-child {
    border-bottom: 0;
}

.legal-card {
    padding: 46px;
    border-radius: 34px;
    background: rgba(255, 249, 240, .96);
    border: 1px solid rgba(200, 155, 53, .22);
    box-shadow: 0 24px 70px rgba(26, 16, 53, .08);
}

.legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(200, 155, 53, .14);
    color: #8a681c;
    font-size: .82rem;
    font-weight: 900;
    margin-bottom: 34px;
}

.legal-block {
    scroll-margin-top: 130px;
    padding-bottom: 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid rgba(200, 155, 53, .18);
}

.legal-block:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-block h2 {
    font-family: var(--heading-font, "Cinzel", serif);
    color: var(--deep-indigo, #170d35);
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    margin-bottom: 18px;
}

.legal-block h3 {
    color: var(--deep-indigo, #170d35);
    font-size: 1.15rem;
    font-weight: 900;
    margin: 22px 0 10px;
}

.legal-block p,
.legal-block li {
    color: var(--soft-violet, #706783);
    line-height: 1.9;
    font-size: 1rem;
}

.legal-block ul {
    padding-left: 22px;
    margin-bottom: 0;
}

.legal-info-box {
    padding: 22px 24px;
    border-radius: 22px;
    background: rgba(234, 219, 194, .52);
    border: 1px solid rgba(200, 155, 53, .20);
    margin-top: 18px;
}

.legal-info-box strong {
    color: var(--deep-indigo, #170d35);
}

.legal-warning {
    padding: 20px 22px;
    border-radius: 22px;
    background: rgba(220, 53, 69, .08);
    border: 1px solid rgba(220, 53, 69, .18);
    color: #842029;
    margin-bottom: 28px;
    line-height: 1.75;
}

@media (max-width: 991px) {
    .legal-hero {
        padding: 150px 0 76px;
    }

    .legal-shell {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        position: static;
        max-height: none;
        overflow: visible;
    }
}

@media (max-width: 767px) {
    .legal-hero {
        padding: 130px 0 62px;
    }

    .legal-content-section {
        padding: 60px 0;
    }

    .legal-card {
        padding: 28px 22px;
        border-radius: 28px;
    }

    .legal-sidebar {
        padding: 24px 20px;
    }
}