/* ==========================================================================
   SWARAAG - TRADITIONAL INDIAN FUSION BAND
   Core CSS Stylesheet (Compact Hero Framing for Single Viewport Visibility)
   ========================================================================== */

:root {
    --color-maroon: #6a1a23;
    --color-maroon-dark: #230c10;
    --color-maroon-light: #7e222c;
    --color-gold: #c59b27;
    --color-gold-light: #e0be6c;
    --color-gold-dark: #9e7724;
    --color-gold-gradient: linear-gradient(135deg, #dfc06d 0%, #c69c43 50%, #9e7724 100%);
    --color-sand: #ede6d8;
    --color-sand-light: #f5efe4;
    --color-sand-dark: #ded3bf;
    --color-dark-card: #283226;
    --color-text-dark: #222222;
    --color-text-muted: #6b645d;
    --font-heading: 'Montserrat', sans-serif;
    --font-serif-heading: 'Cinzel', 'Playfair Display', serif;
    --font-subheading: 'Cormorant Garamond', Georgia, serif;
    --font-script: 'Alex Brush', 'Great Vibes', cursive;
    --font-hindi: 'Mukta', 'Poppins', 'Noto Sans Devanagari', 'Hind', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --box-shadow-card: 0 10px 30px rgba(45, 30, 15, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-sand);
    color: var(--color-text-dark);
    line-height: 1.65;
    overflow-x: hidden;
}

/* ==========================================================================
   HEADER & NAVBAR (ALWAYS VISIBLE, NO-COLLAPSE ON DESKTOP)
   ========================================================================== */

.swaraag-header-wrapper {
    background-color: var(--color-maroon-dark);
    position: relative;
    z-index: 1040;
    border-bottom: 1px solid var(--color-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    width: 100%;
}

.swaraag-nav-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

/* Mobile Top Header (Hidden on Desktop) */
.mobile-header-bar {
    display: none;
}

.mobile-brand-link {
    text-decoration: none;
}

.mobile-logo-text {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--color-gold-light);
    line-height: 1;
    display: block;
}

.mobile-tagline {
    font-family: var(--font-subheading);
    font-size: 0.65rem;
    font-style: italic;
    color: #dfcaa0;
    margin-top: -2px;
    display: block;
}

.mobile-nav-toggle {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold-light);
    font-size: 1.2rem;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav-toggle:hover {
    background: rgba(197, 155, 39, 0.2);
    color: #fff;
}

/* Desktop 3-Column Navigation Grid */
.swaraag-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    position: relative;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex: 1 1 0;
}

.nav-menu-left {
    justify-content: flex-end;
    padding-right: 28px;
    gap: clamp(12px, 1.8vw, 24px);
}

.nav-menu-right {
    justify-content: flex-start;
    padding-left: 28px;
    gap: clamp(12px, 1.8vw, 24px);
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu .nav-link {
    color: var(--color-gold-light) !important;
    font-family: var(--font-body);
    font-size: clamp(0.7rem, 0.78vw, 0.8rem);
    font-weight: 700;
    letter-spacing: 1px;
    padding: 14px 2px !important;
    text-transform: uppercase;
    white-space: nowrap;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(224, 190, 108, 0.8);
}

.nav-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-gold-light);
    transition: var(--transition);
}

.nav-menu .nav-link:hover::after,
.nav-menu .nav-link.active::after {
    width: 100%;
}

/* Center Hanging Arch Emblem */
.nav-center-emblem {
    flex-shrink: 0;
    width: 220px;
    margin-bottom: -32px;
    position: relative;
    z-index: 1050;
    text-align: center;
}

.emblem-link {
    text-decoration: none;
    display: inline-block;
}

.emblem-arch {
    background: linear-gradient(180deg, #230c10 0%, #2f0f15 100%);
    border-left: 1px solid var(--color-gold);
    border-right: 1px solid var(--color-gold);
    border-bottom: 1px solid var(--color-gold);
    border-radius: 0 0 50% 50% / 0 0 85% 85%;
    padding: 8px 24px 14px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: var(--transition);
}

.emblem-arch:hover {
    box-shadow: 0 10px 25px rgba(197, 155, 39, 0.45);
    transform: translateY(2px);
}

.emblem-logo-img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.6));
    transition: transform 0.3s ease;
}

.mobile-logo-img {
    max-height: 38px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

/* ==========================================================================
   HERO SECTION (COMPACT HEIGHT - FITS FIRST SCREEN)
   ========================================================================== */

.hero-section {
    position: relative;
    background-color: #1a0609;
    width: 100%;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    line-height: 0;
    height: 85vh;
    max-height: 750px;
    min-height: 670px;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    image-rendering: -webkit-optimize-contrast;
}

/* Custom Hindi Ribbon Banner */
.ribbon-banner-container {
    position: relative;
    margin-top: -30px;
    z-index: 20;
    display: flex;
    justify-content: center;
    padding: 0 15px;
}

.ribbon-banner {
    background: #6a1a23;
    border: 1.5px solid #d4af37;
    border-radius: 10px;
    padding: 10px 50px;
    min-width: 440px;
    max-width: 620px;
    width: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.ribbon-text {
    font-family: var(--font-hindi);
    font-size: 1.9rem;
    font-weight: 500;
    color: #dfcaa0;
    margin: 0;
    letter-spacing: 2px;
    line-height: 1.25;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

/* ==========================================================================
   INTRO / HEADLINE SECTION (EXACT TEMPLATE MATCH)
   ========================================================================== */

.section-wrapper {
    padding: 35px 0;
}

.page-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 0px;
}
.container {
    padding: 0px;
}
/* Intro / Headline Section */
.intro-section {
    padding: 45px 0 35px;
}

.intro-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.05rem;
    font-weight: 800;
    color: #6a1a23;
    line-height: 1.25;
    padding-right: 20px;
    letter-spacing: -0.2px;
    margin-bottom: 0;
}

.intro-divider {
    border-left: 2px solid #d4c2a3;
    padding-left: 35px;
}

.intro-paragraph {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.75;
    margin-bottom: 0;
}

/* Swaraag Flavours Section (Exact Match to Mockup) */
.flavours-section {
    padding: 65px 0 50px;
    position: relative;
}

.flavours-card {
    background: #17271e;
    background: linear-gradient(135deg, #17271f 0%, #1e3328 65%, #15241b 100%);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(15, 25, 18, 0.25);
    position: relative;
    overflow: visible;
    color: #dfcaa0;
}

.flavours-content {
    padding: 45px 30px 45px 48px;
    position: relative;
    z-index: 5;
}

.flavours-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: #dfcaa0;
    letter-spacing: -0.2px;
    margin-bottom: 16px;
}

.flavours-descriptions {
    margin-bottom: 22px;
}

.flavours-desc-p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: #dfcaa0;
    line-height: 1.55;
    margin-bottom: 12px;
    opacity: 0.92;
}

.flavours-desc-p:last-child {
    margin-bottom: 0;
}

.flavours-tags-row {
    display: flex;
    gap: 45px;
    margin-bottom: 28px;
}

.flavours-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flavours-tag-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.96rem;
    font-weight: 700;
    color: #dfcaa0;
    letter-spacing: 0.1px;
}

.flavours-action {
    margin-top: 5px;
}

.flavours-know-more-btn {
    background: #6a1a23 !important;
    color: #dfcaa0 !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
    border: 1px solid rgba(223, 202, 160, 0.25);
}

.flavours-know-more-btn:hover {
    background: #82222d !important;
    color: #ffffff !important;
    transform: translateX(4px);
    box-shadow: 0 8px 22px rgba(106, 26, 35, 0.5);
    border-color: #dfcaa0;
}

.flavours-know-more-btn i {
    font-size: 0.78rem;
    transition: transform 0.2s ease;
}

.flavours-know-more-btn:hover i {
    transform: translateX(3px);
}

/* Artist Column & Framing (Popping out top edge of card) */
.flavours-artist-container {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

.flavours-artist-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.flavours-artist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    image-rendering: -webkit-optimize-contrast;
}

@media (min-width: 768px) {
    .flavours-card {
        overflow: visible !important;
    }
    .flavours-artist-container {
        position: relative;
    }
    .flavours-artist-wrap {
        position: absolute;
        top: -84px;
        right: 0;
        bottom: 0;
        width: calc(100% + 11px);
        height: calc(100% + 83px);
        overflow: visible;
    }
    .flavours-artist-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center right;
        border-radius: 0 0 24px 0;
    }
}

/* Discography Card */
.discography-card {
    background: linear-gradient(rgba(20, 15, 12, 0.88), rgba(20, 15, 12, 0.92)), url('../images/hero-band.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    border: 1px solid rgba(198, 156, 67, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    padding: 40px 30px;
    text-align: center;
    color: #fff;
}

.disco-title {
    font-family: 'Cinzel', serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.disco-subtitle {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.albums-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.album-item {
    width: 140px;
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(198, 156, 67, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.album-item:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--color-gold);
    box-shadow: 0 12px 28px rgba(198, 156, 67, 0.3);
}

.album-thumb-wrap {
    position: relative;
    width: 100%;
    padding-top: 120%;
    overflow: hidden;
    background-color: #222;
}

.album-thumb-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.album-item:hover .album-thumb-wrap img {
    transform: scale(1.08);
}

.album-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.album-item:hover .album-play-overlay {
    opacity: 1;
}

.album-play-overlay i {
    font-size: 1.8rem;
    color: var(--color-gold-light);
}

.album-info {
    padding: 8px 6px;
    background: #181412;
    text-align: center;
}

.album-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: #f0e6d6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

/* Media Card */
.media-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: var(--box-shadow-card);
    border: 1px solid rgba(198, 156, 67, 0.25);
    overflow: hidden;
}

.media-artist-col {
    padding: 0;
    background: #201515;
}

.media-artist-img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.media-content-col {
    padding: 35px 35px 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.media-title {
    font-family: 'Cinzel', serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--color-maroon);
    margin-bottom: 12px;
}

.media-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 22px;
}

.media-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 12px;
    align-items: center;
    margin-bottom: 25px;
}

.media-logo-box {
    background: #fbf9f5;
    border: 1px solid #eedec7;
    border-radius: 6px;
    padding: 8px 10px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.media-logo-box img,
.media-logo-box svg {
    max-width: 100%;
    max-height: 32px;
    object-fit: contain;
}

.media-logo-box:hover {
    border-color: var(--color-gold);
    box-shadow: 0 4px 12px rgba(198, 156, 67, 0.2);
    transform: translateY(-2px);
}

/* Worldwide Card */
.worldwide-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: var(--box-shadow-card);
    border: 1px solid rgba(198, 156, 67, 0.25);
    overflow: hidden;
}

.worldwide-content-col {
    padding: 35px 30px 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.worldwide-title {
    font-family: 'Cinzel', serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--color-maroon);
    margin-bottom: 12px;
}

.worldwide-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 14px;
}

.country-item {
    font-size: 0.88rem;
    font-weight: 700;
    color: #2b2320;
    display: flex;
    align-items: center;
}

.country-item::before {
    content: '•';
    color: var(--color-maroon);
    font-size: 1.2rem;
    margin-right: 6px;
    line-height: 1;
}

.worldwide-landmark-col {
    padding: 0;
    background: #112838;
}

.worldwide-landmark-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Awards Card */
.awards-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: var(--box-shadow-card);
    border: 1px solid rgba(198, 156, 67, 0.25);
    overflow: hidden;
}

.awards-content-col {
    padding: 35px 30px 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.awards-title {
    font-family: 'Cinzel', serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--color-maroon);
    margin-bottom: 12px;
}

.awards-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 22px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.award-box {
    background: #2a1114;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(198, 156, 67, 0.3);
    text-align: center;
    transition: var(--transition);
}

.award-box:hover {
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(91, 23, 32, 0.25);
}

.award-box-img {
    width: 100%;
    height: 65px;
    object-fit: cover;
    display: block;
}

.award-box-title {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--color-gold-light);
    padding: 4px 6px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.awards-artist-col {
    padding: 0;
    background: #1d1413;
}

.awards-artist-img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Testimonials Card */
.testimonials-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: var(--box-shadow-card);
    border: 1px solid rgba(198, 156, 67, 0.25);
    overflow: hidden;
}

.testimonials-artist-col {
    padding: 0;
    background: #172224;
}

.testimonials-artist-img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.testimonials-content-col {
    padding: 35px 35px 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonials-title {
    font-family: 'Cinzel', serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--color-maroon);
    margin-bottom: 12px;
}

.testimonials-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 22px;
}

.testimonials-bubbles-row {
    display: flex;
    gap: 14px;
    margin-bottom: 25px;
}

.testimonial-bubble {
    flex: 1;
    background: #fdfaf4;
    border: 1px solid #e7d8c0;
    border-radius: 8px;
    padding: 14px 12px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-bubble:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(198, 156, 67, 0.2);
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #efe4d2;
    border: 2px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-maroon);
    margin-bottom: 8px;
}

.testimonial-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-maroon);
    margin: 0;
}

.testimonial-role {
    font-size: 0.68rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* ==========================================================================
   CALL TO ACTION BANNER (UNFORGETTABLE CELEBRATION - EXACT MATCH)
   ========================================================================== */
.unforgettable-cta-card {
    background: linear-gradient(135deg, rgba(74, 15, 22, 0.92) 0%, rgba(46, 8, 12, 0.95) 100%), url('../images/hero-band.jpg') center/cover no-repeat;
    border-radius: 20px;
    padding: 38px 45px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.unforgettable-cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #dfcaa0;
    letter-spacing: -0.2px;
    margin-bottom: 10px;
}

.unforgettable-cta-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.86rem;
    font-weight: 500;
    color: #ede5d5;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 780px;
}

.unforgettable-cta-btn {
    background-color: #dfcaa0 !important;
    color: #5c1b24 !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    padding: 14px 34px;
    border-radius: 12px;
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
    border: none;
}

.unforgettable-cta-btn:hover {
    background-color: #ffffff !important;
    color: #6a1a23 !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}

/* Legacy CTA fallback */
.cta-banner {
    background: linear-gradient(135deg, #4d1017 0%, #2f070c 100%);
    border: 2px solid var(--color-gold);
    border-radius: 10px;
    padding: 24px 35px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(77, 16, 23, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cta-title {
    font-family: 'Cinzel', serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--color-gold-light);
    margin-bottom: 4px;
}

.cta-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cta-btn {
    white-space: nowrap;
    padding: 12px 28px;
    font-size: 0.9rem;
}

/* ==========================================================================
   ROYAL FOOTER SECTION (EXACT MOCKUP MATCH)
   ========================================================================== */
.royal-footer-section {
    background: #23150c;
    background: linear-gradient(180deg, #26160d 0%, #1e1008 100%);
    color: #dfcaa0;
    padding: 60px 0 25px;
    position: relative;
    z-index: 10;
}

.footer-brand-title {
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #dfcaa0;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.footer-brand-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    color: #c59b27;
    letter-spacing: 0.2px;
    margin-bottom: 14px;
}

.footer-brand-bio {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1.65;
    color: #dcd0bc;
    margin-bottom: 0;
    text-align: left;
}

.footer-col-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #dfcaa0;
    margin-bottom: 18px;
    letter-spacing: 0.1px;
}

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

.footer-styled-links li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.footer-styled-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    color: #dfcaa0;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.footer-styled-links a .link-chevron {
    color: #dfcaa0;
    font-size: 1.05rem;
    margin-right: 6px;
    transition: transform 0.2s ease;
}

.footer-styled-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-styled-links a:hover .link-chevron {
    color: #c59b27;
}

.footer-contact-row {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    color: #dfcaa0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-row i {
    font-size: 0.95rem;
    color: #dfcaa0;
}

.footer-contact-row a {
    color: #dfcaa0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-row a:hover {
    color: #ffffff;
}

.footer-contact-item {
    font-family: 'Montserrat', sans-serif;
}

.footer-contact-person {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.84rem;
    line-height: 1.4;
}

.footer-contact-person .person-name {
    color: #dfcaa0;
    font-weight: 600;
}

.footer-phone-link {
    color: #dfcaa0;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.footer-phone-link:hover {
    color: #ffffff;
}

.footer-email-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    color: #dfcaa0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-email-link:hover {
    color: #ffffff;
}

.footer-contact-link {
    color: #dfcaa0;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-contact-link:hover {
    color: #ffffff;
}

.footer-social-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #1a0e06;
    border: 1.5px solid #dfcaa0;
    color: #dfcaa0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    background-color: #dfcaa0;
    color: #1a0e06;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(223, 202, 160, 0.4);
}

.footer-divider-line {
    width: 100%;
    height: 1px;
    background-color: rgba(223, 202, 160, 0.2);
    margin: 40px 0 20px;
}

.footer-copyright-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.92rem;
    color: #dfcaa0;
    letter-spacing: 0.5px;
}

/* Modals */
.modal-royal .modal-content {
    background: #1f0b0e;
    border: 2px solid var(--color-gold);
    border-radius: 10px;
    color: #fff;
}

.modal-royal .modal-header {
    border-bottom: 1px solid rgba(198, 156, 67, 0.3);
}

.modal-royal .modal-title {
    color: var(--color-gold-light);
    font-family: 'Cinzel', serif;
}

.form-royal {
    background: #140507;
    border: 1px solid rgba(198, 156, 67, 0.4);
    color: #fff;
    border-radius: 4px;
    padding: 10px 14px;
}

.form-royal:focus {
    background: #170709;
    border-color: var(--color-gold);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(198, 156, 67, 0.25);
}

.form-label-royal {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-gold-light);
    margin-bottom: 4px;
}

.text-gold {
    color: var(--color-gold) !important;
}

.text-muted-gold {
    color: rgba(198, 156, 67, 0.5) !important;
}

/* ==========================================================================
   ABOUT US PAGE STYLES (MATCHING USER DESIGN REFERENCE)
   ========================================================================== */

/* 1. About Hero Section */
.about-hero-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #0c0809;
}

.about-hero-img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px 20px 35px 20px;
}

.about-hero-card {
    background: rgba(12, 26, 20, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1.5px solid rgba(227, 195, 72, 0.35);
    border-radius: 12px;
    padding: 32px 35px;
    text-align: center;
    max-width: 620px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.about-hero-title {
    font-family: 'Cinzel', 'Montserrat', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #e3c348;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.about-hero-years {
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-size: 4.2rem;
    font-weight: 800;
    color: #e3c348;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.about-hero-years sup {
    font-size: 2.3rem;
    top: -0.5em;
    font-weight: 700;
}

.about-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #e3c348;
    letter-spacing: 0;
    margin-bottom: 14px;
    text-transform: none;
}

.about-hero-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    font-style: normal;
    opacity: 0.95;
}

/* 2. About Intro & Section Headings */
.about-section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #6a1a23;
    letter-spacing: -0.3px;
}

.about-section-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #b8681b;
    letter-spacing: 0.1px;
}

.awards-section-subheading {
    font-weight: 700 !important;
}

.about-box-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #6a1a23;
    text-align: left;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.about-box-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #b8681b;
    text-align: left;
    text-transform: none;
    margin-bottom: 24px;
    letter-spacing: 0.1px;
}

.about-intro-container {
    max-width: 1060px;
    margin: 0 auto;
}

.about-intro-col p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.68;
    color: #2c2520;
    margin-bottom: 16px;
    text-align: left;
}

.about-intro-col strong {
    font-weight: 700;
    color: #1a1614;
}

.about-highlight-quote {
    font-weight: 700 !important;
    color: #6a1a23 !important;
    margin-top: 20px;
    font-style: normal;
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
}

/* 3. Awards & Appreciation Container Card (Exact Mockup Match & Full Width) */
.awards-wrapper-card {
    background-color: #ebdcb8;
    border-radius: 18px;
    padding: 26px 30px 28px 30px;
    box-shadow: 0 6px 20px rgba(80, 50, 20, 0.04);
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
}

.awards-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.awards-title-col {
    flex: 0 0 34%;
    max-width: 34%;
}

.awards-desc-col {
    flex: 0 0 64%;
    max-width: 64%;
}

.awards-left-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.15rem;
    font-weight: 800;
    color: #6a1a23;
    line-height: 1.05;
    margin: 0;
    letter-spacing: -0.3px;
}

.awards-right-intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.80rem;
    font-weight: 500;
    line-height: 1.55;
    color: #3e352d;
    margin: 0;
}

/* Awards Content Grid: Left Featured + Right 3x2 Grid */
.awards-content-grid {
    display: grid;
    grid-template-columns: 265px 1fr;
    gap: 14px;
    align-items: stretch;
}

.award-featured-box {
    display: flex;
    width: 100%;
    height: 100%;
}

.award-main-featured-card {
    position: relative;
    background: #120608;
    border-radius: 6px;
    overflow: hidden;
    border: 1.5px solid #1a080a;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
    width: 100%;
    height: 264px !important;
    min-height: 264px !important;
    max-height: 264px !important;
    display: flex;
    flex-direction: column;
}

.award-main-featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.award-main-badge-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(12, 4, 6, 0.96) 0%, rgba(12, 4, 6, 0.7) 65%, transparent 100%);
    padding: 12px 6px 8px 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.award-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    width: 100%;
    margin-bottom: 1px;
}

.award-main-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    width: 100%;
}

/* 3x2 Grid for 6 items */
.awards-six-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    height: 264px !important;
}

.award-grid-item {
    position: relative;
    background: #120608;
    border-radius: 5px;
    overflow: hidden;
    border: 1.5px solid #1a080a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 126px !important;
    min-height: 126px !important;
    max-height: 126px !important;
    display: flex;
    flex-direction: column;
}

.award-grid-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.22);
}

.award-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.award-grid-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(14, 5, 7, 0.94);
    padding: 4px 3px 5px 3px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.award-caption-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    text-align: center;
    width: 100%;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.award-sub-text {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.62rem;
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 1px;
}

/* 4. Team Members Section (Large Avatars Matching Design Screenshot) */
.team-member-card {
    text-align: center;
    margin-bottom: 42px;
}

.team-avatar-ring {
    width: 235px;
    height: 235px;
    max-width: 100%;
    margin: 0 auto 16px auto;
    border-radius: 0;
    border: none;
    overflow: visible;
    box-shadow: none;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-card:hover .team-avatar-ring {
    transform: scale(1.05);
    box-shadow: none;
}

.team-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    display: block;
}

.team-member-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.22rem;
    font-weight: 700;
    color: #731b26;
    margin-bottom: 3px;
    letter-spacing: -0.2px;
}

.team-member-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #222222;
    margin: 0;
}

/* 5. About Management Section */
.about-management-text {
    max-width: 760px;
    margin: 0 auto;
}

.about-management-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #5c5348;
    margin-bottom: 20px;
    text-align: center;
}

@media (max-width: 991px) {
    .about-hero-years { font-size: 3rem; }
    .about-hero-subtitle { font-size: 1.25rem; }
    .awards-wrapper-card { padding: 25px 20px; }
    .awards-top-row { flex-direction: column; align-items: flex-start; gap: 12px; }
    .awards-title-col, .awards-desc-col { flex: 0 0 100%; max-width: 100%; }
    .awards-left-title { font-size: 1.9rem; }
    .awards-content-grid { grid-template-columns: 1fr; gap: 14px; }
    .award-main-featured-card { min-height: 250px; height: 250px; }
    .awards-six-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
    .award-grid-item { min-height: 125px; }
    .team-avatar-ring { width: 190px; height: 190px; }
}

@media (max-width: 767px) {
    .awards-six-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .team-avatar-ring { width: 175px; height: 175px; }
}

@media (max-width: 576px) {
    .about-hero-card { padding: 25px 20px; }
    .about-hero-years { font-size: 2.5rem; }
    .awards-wrapper-card { padding: 20px 15px; border-radius: 16px; }
    .awards-left-title { font-size: 1.7rem; }
    .awards-six-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .award-main-featured-card { min-height: 220px; height: 220px; }
    .award-grid-item { min-height: 110px; }
    .award-caption-title { font-size: 0.62rem; }
    .award-sub-text { font-size: 0.6rem; }
    .team-avatar-ring { width: 155px; height: 155px; }
}

/* ==========================================
   ABOUT ARTIST PAGE STYLES (Exact Mockup Match)
   ========================================== */
.artist-hero-wrapper {
    position: relative;
    width: 100%;
    height: 580px;
    background: #0c0406;
    overflow: visible;
}

.artist-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 1;
    display: block;
}

.artist-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.85) 100%);
}

.artist-hero-content {
    position: absolute;
    bottom: 50px;
    left: 15px;
    z-index: 5;
}

.artist-hero-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.7);
}

.artist-hero-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

/* Floating Circular Avatar Overlapping Hero & Bio */
.artist-avatar-floating-wrap {
    position: absolute;
    right: 35px;
    bottom: -95px;
    z-index: 10;
    width: 330px;
    height: 330px;
}

.artist-avatar-ring {
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: none;
    overflow: visible;
    background: transparent;
    box-shadow: none;
}

.artist-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    display: block;
}

/* Main Content Area */
.artist-main-bg {
    background-color: #e7e1d5;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    padding-top: 40px;
}

.artist-bio-wrapper {
    position: relative;
    z-index: 2;
}

.artist-bio-paragraphs {
    width: 65%;
    max-width: 780px;
}

.artist-bio-paragraphs p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: #5c5348;
    margin-bottom: 18px;
    text-align: justify;
}

/* Artist Photos Grid Section */
.artist-photos-wrapper {
    margin-top: 40px;
}

.artist-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #222222;
    letter-spacing: -0.1px;
}

.artist-photo-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 175px;
    background: #d0c09d;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.artist-photo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.artist-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artist-photo-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artist-photo-hover-overlay i {
    font-size: 1.8rem;
    color: #dfcaa0;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.artist-photo-card:hover .artist-photo-hover-overlay {
    opacity: 1;
}

.artist-photo-card:hover .artist-photo-hover-overlay i {
    transform: scale(1);
}

/* Lightbox Modal Nav Buttons */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(196, 137, 40, 0.6);
    color: #dfcaa0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.gallery-nav-btn:hover {
    background: #731b26;
    color: #ffffff;
    border-color: #731b26;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-btn.prev-btn { left: -10px; }
.gallery-nav-btn.next-btn { right: -10px; }

/* Artist Videos Section (Full-Width Band Exact Mockup Match) */
.artist-videos-wrapper {
    background-color: #e4d2ac;
    padding: 50px 164px 60px 164px;
    width: 100%;
}

.artist-videos-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #222222;
    margin-bottom: 6px;
    text-align: center;
}

.artist-videos-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #5c5348;
    max-width: 680px;
    margin: 0 auto 35px auto;
    text-align: center;
}

.artist-videos-slider-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    /* max-width: 980px; */
    margin: 0 auto;
}

.video-slider-arrow {
    background: transparent;
    border: none;
    font-size: 2.6rem;
    color: #c48928;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.video-slider-arrow:hover {
    color: #731b26;
    transform: scale(1.15);
}

.artist-videos-flex {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
    padding: 10px 0;
    flex-wrap: nowrap;
    max-width: 1100px;
    margin: 0 auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.artist-videos-flex::-webkit-scrollbar {
    display: none;
}

.artist-video-thumb-card {
    position: relative;
    width: 210px;
    height: 371px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: #222;
}

.artist-video-thumb-card.active {
    border-color: #731b26;
    box-shadow: 0 0 15px rgba(115, 27, 38, 0.4);
}

.artist-video-thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.artist-video-thumb-card:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
}

.video-play-btn i {
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.95);
    transition: transform 0.2s ease, color 0.2s ease;
}

.artist-video-thumb-card:hover .video-play-btn i {
    transform: scale(1.18);
    color: #ffffff;
}

/* ==========================================
   COMPLETE RESPONSIVE MEDIA QUERIES FOR ARTIST PAGE
   ========================================== */

/* Large Desktops / Laptops (1200px - 1399px) */
@media (max-width: 1399px) {
    .artist-hero-wrapper { height: 520px; }
    .artist-hero-name { font-size: 3.4rem; }
    .artist-avatar-floating-wrap { width: 300px; height: 300px; bottom: -85px; right: 25px; }
}

/* Medium Desktops / Tablets Landscape (992px - 1199px) */
@media (max-width: 1199px) {
    .artist-hero-wrapper { height: 460px; }
    .artist-hero-name { font-size: 3rem; }
    .artist-hero-role { font-size: 1.2rem; }
    .artist-avatar-floating-wrap { width: 260px; height: 260px; bottom: -75px; right: 20px; }
    .artist-videos-flex { max-width: 660px; }
}

/* Tablets Portrait (768px - 991px) */
@media (max-width: 991px) {
    .artist-hero-wrapper { height: 360px; }
    .artist-hero-name { font-size: 2.6rem; }
    .artist-hero-role { font-size: 1.15rem; }
    .artist-hero-content {
        position: absolute;
        bottom: 50px;
        left: 25px;
    }
    .artist-avatar-floating-wrap {
        position: absolute;
        right: 25px;
        bottom: -70px;
        width: 220px;
        height: 220px;
        margin: 0;
    }
    .artist-main-bg { padding-top: 75px; }
    .artist-bio-paragraphs {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
    }
    .artist-photo-card { height: 150px; }
    .artist-videos-wrapper { padding: 40px 0 45px 0; }
    .artist-videos-flex { max-width: 490px; gap: 14px; }
    .artist-video-thumb-card { width: 140px; height: 240px; }
}

/* Small Tablets & Large Phones (576px - 767px) */
@media (max-width: 767px) {
    .artist-hero-wrapper { height: 280px; }
    .artist-hero-content {
        position: absolute;
        top: 45%;
        left: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
        padding: 0;
    }
    .artist-hero-name { font-size: 2.1rem; }
    .artist-hero-role { font-size: 0.98rem; }
    
    .artist-avatar-floating-wrap {
        position: absolute;
        left: 50%;
        right: auto;
        bottom: -55px;
        transform: translateX(-50%);
        width: 150px;
        height: 150px;
        margin: 0;
    }
    .artist-main-bg { padding-top: 68px; }
    .artist-bio-paragraphs { margin-top: 0; }
    .artist-bio-paragraphs p { font-size: 0.84rem; line-height: 1.6; text-align: left; }
    .artist-photo-card { height: 140px; }
    
    .artist-videos-slider-row { gap: 10px; }
    .video-slider-arrow { font-size: 1.8rem; }
    .artist-videos-flex { max-width: 284px; padding: 5px 0; gap: 14px; margin: 0 auto; }
    .artist-video-thumb-card { width: 135px; height: 235px; }
    
    /* Lightbox Modal Arrows on Mobile */
    .gallery-nav-btn.prev-btn { left: 5px !important; width: 40px !important; height: 40px !important; font-size: 1rem !important; }
    .gallery-nav-btn.next-btn { right: 5px !important; width: 40px !important; height: 40px !important; font-size: 1rem !important; }
}

/* Small Smartphones (<576px) */
@media (max-width: 575px) {
    .artist-hero-wrapper { height: 250px; }
    .artist-hero-name { font-size: 1.85rem; }
    .artist-hero-role { font-size: 0.9rem; }
    .artist-avatar-floating-wrap {
        position: absolute;
        left: 50%;
        right: auto;
        bottom: -48px;
        transform: translateX(-50%);
        width: 135px;
        height: 135px;
        margin: 0;
    }
    .artist-main-bg { padding-top: 58px; }
    .artist-section-title { font-size: 1rem; }
    .artist-photo-card { height: 125px; }
    .artist-videos-card { padding: 25px 12px; }
    .artist-videos-title { font-size: 1.1rem; }
    .artist-videos-subtitle { font-size: 0.75rem; margin-bottom: 20px; }
    .artist-videos-flex { max-width: 268px; padding: 5px 0; gap: 12px; margin: 0 auto; }
    .artist-video-thumb-card { width: 128px; height: 220px; }
    
    /* Shorts Modal on Extra Small Screens */
    #youtubeShortsModal .modal-dialog { max-width: 94vw !important; margin: 0 auto; }
    #youtubeShortsModal .gallery-nav-btn.prev-btn { left: -10px !important; width: 38px !important; height: 38px !important; font-size: 0.95rem !important; }
    #youtubeShortsModal .gallery-nav-btn.next-btn { right: -10px !important; width: 38px !important; height: 38px !important; font-size: 0.95rem !important; }
}

/* ==========================================
   DISCOGRAPHY PAGE STYLES
   ========================================== */

/* Hero Banner */
.disco-hero-wrapper {
    position: relative;
    min-height: 706px;
    background: #080304;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 65px 0 55px 0;
}

.disco-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    opacity: 0.65;
}

.disco-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 5, 8, 0.75) 0%, rgba(12, 5, 8, 0.45) 50%, rgba(12, 5, 8, 0.95) 100%);
    z-index: 2;
}

.disco-hero-content {
    position: relative;
    z-index: 5;
    text-align: left !important;
}

.disco-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #c48928;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    line-height: 1.18;
    text-transform: uppercase;
}

.disco-hero-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    color: #cccccc;
    line-height: 1.65;
    max-width: 820px;
    margin: 0 0 14px 0;
    text-align: left;
}

.disco-hero-desc:last-of-type {
    margin-bottom: 32px;
}

.disco-season-tracks-row {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.disco-track-card {
    width: 148px;
    height: 175px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.disco-track-card:hover {
    transform: translateY(-4px);
}

.disco-track-thumb {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    background: #111;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.disco-track-card.active .disco-track-thumb {
    border: 2.5px solid #c48928;
    box-shadow: 0 0 18px rgba(196, 137, 40, 0.5);
}

.disco-track-card:hover .disco-track-thumb {
    border-color: #c48928;
}

.disco-track-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.disco-track-play-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 10;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(196, 137, 40, 0.6);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c48928;
    font-size: 0.85rem;
    transition: all 0.25s ease;
}

.disco-track-card:hover .disco-track-play-badge,
.disco-track-card.active .disco-track-play-badge {
    background: #731b26;
    color: #ffffff;
    border-color: #731b26;
}

.disco-track-overlay-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10px 8px 10px 44px;
    text-align: left;
    z-index: 5;
}

.disco-card-logo {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #dfcaa0;
    line-height: 1.1;
    display: block;
}

.disco-card-title {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    color: #ffffff;
    line-height: 1.2;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Main Background */
.disco-main-bg {
    min-height: 100vh;
        margin-top: 23px;
}

/* Release Item Card */
.disco-release-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(196, 137, 40, 0.15);
}

.disco-release-img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
}

.disco-release-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 14px;
    height: 100%;
}
.disco-release-details1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -3px;
    height: 100%;
}

.disco-release-details.bg-beige {
    background-color: #E7E1D5 !important;
    margin-top: -10 !important;
}

/* Ghani Ghani Release Specific Styles */
.disco-ghani-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.disco-red-lang-card {
    background-color: #d6253c !important;
    
}

.disco-lang-play-btn {
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.disco-lang-list span {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.disco-circle-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.disco-circle-icon:hover {
    background: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: scale(1.1);
}

.disco-circle-icon.bg-spotify { background-color: #1ed760; color: #000000; }
.disco-circle-icon.bg-apple { background-color: #fc3c44; color: #ffffff; }
.disco-circle-icon.bg-gaana { background-color: #e72c30; color: #ffffff; }
.disco-circle-icon.bg-saavn { background-color: #00b093; color: #ffffff; }

.disco-release-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
}

.disco-release-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a4237;
}

/* Red Royal Buttons & Cards */
.btn-red-royal {
    background-color: #731b26;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 30px;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(115, 27, 38, 0.3);
}

.btn-red-royal:hover {
    background-color: #58131d;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(115, 27, 38, 0.4);
}

.bg-red-royal {
    background-color: #731b26 !important;
    color: #ffffff !important;
}

/* Credits & Platforms */
.disco-credits-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 6px;
}

.disco-platform-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(115, 27, 38, 0.08);
    color: #731b26;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.disco-platform-icon:hover {
    background: #731b26;
    color: #ffffff;
    transform: translateY(-3px);
}

/* TV Feature Section */
.disco-tv-heading {
    font-family: 'Cinzel', serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #731b26;
}

.disco-tv-card {
    height: 110px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.disco-tv-card:hover {
    transform: translateY(-4px);
}

.disco-tv-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.disco-tv-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.disco-feature-img {
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    max-height: 480px;
    object-fit: cover;
    width: 100%;
}

/* Album Card */
.disco-album-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px;
    border: 1px solid rgba(196, 137, 40, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.disco-album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.disco-album-img-wrap {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.disco-album-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.disco-album-title {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
}

.disco-release-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.disco-release-text:last-child {
    margin-bottom: 0;
}

.disco-release-item-full {
    width: 100%;
    margin-bottom: 3rem;
}



.disco-red-lang-card {
    padding: 1rem;
    background-color: #d6253c;
    box-shadow: 0 4px 15px rgba(214, 37, 60, 0.3);
    margin-top: -24px;
    margin-bottom: -50px;
    position: relative;
    z-index: 10;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.disco-red-lang-card .disco-card-heading {
    margin-bottom: 0.5rem;
    font-size: 0.92rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.disco-red-lang-card .disco-lang-content {
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.disco-lang-link {
    transition: opacity 0.2s ease, text-decoration 0.2s ease;
}

.disco-lang-link:hover {
    text-decoration: underline !important;
    opacity: 0.85;
}

.disco-platform-circles {
    gap: 1rem;
}

.col-lg-4.col-md-5 {
    padding-right: 0;
    margin-right: 0;
    width: 28%;
}
    .col-lg-8 {
        flex: 0 0 auto;
        width: 72%;
    }
#release-bottom-albums {
    padding: 60px 0px 60px 0px ;
}

/* Responsive Rules for Discography */
@media (max-width: 991px) {
    .disco-hero-title { font-size: 2.3rem; }
    .disco-hero-wrapper { min-height: 440px; }
    .disco-track-card { width: 120px; height: 170px; }
    .disco-release-img { min-height: 280px; }
    .disco-release-title { font-size: 1.6rem; }
    .disco-tv-heading { font-size: 1.4rem; }
}

@media (max-width: 767px) {
    .disco-hero-title { font-size: 1.8rem; }
    .disco-hero-subtitle { font-size: 0.9rem; }
    .disco-track-card { width: 100px; height: 140px; }
    .disco-release-title { font-size: 1.35rem; }
    .disco-release-desc { font-size: 0.85rem; }
    .disco-tv-heading { font-size: 1.25rem; }
    .disco-tv-card { height: 85px; }
}

/* Discography Button Hover Effects */
.disco-red-yt-btn,
.btn-red-royal {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.disco-red-yt-btn:hover,
.btn-red-royal:hover {
    transform: translateY(-3px) scale(1.03) !important;
    background-color: #b81c30 !important;
    box-shadow: 0 10px 25px rgba(214, 37, 60, 0.45) !important;
    color: #ffffff !important;
}

.disco-red-yt-btn:active,
.btn-red-royal:active {
    transform: translateY(-1px) scale(0.99) !important;
}

.disco-circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.3s ease !important;
}

.disco-circle-icon:hover {
    transform: translateY(-3px) scale(1.15) !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35) !important;
    filter: brightness(1.2) !important;
}

.disco-album-poster-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.disco-album-poster-card:hover {
    transform: translateY(-6px) scale(1.02) !important;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22) !important;
}

/* Home Page Redesigned Discography Section */
.disco-main-hero-card {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/Home-Production (1).png') center/cover no-repeat;
    border-radius: 20px;
    /* padding: 4.5rem 2.5rem 9.5rem 2.5rem; */
    min-height: 458px;
    padding-top: 21px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.disco-hero-main-title {
    font-family: var(--font-body);
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.disco-hero-desc {
    font-family: var(--font-body);
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.65;
}

.disco-overlapping-cards-wrap {
    position: relative;
    margin-top: -120px;
    margin-bottom: 2rem;
    z-index: 10;
}

.disco-card-item {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    background-color: #1a1a1a;
    aspect-ratio: 1 / 1;
    width: 100%;
}

.disco-card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.disco-card-item:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.disco-btn-wrap {
    margin-top: 1.8rem;
}

.disco-know-more-btn {
    background-color: #5c1b24;
    border: none;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(92, 27, 36, 0.3);
}

.disco-know-more-btn:hover {
    background-color: #7e222c;
    color: #ffffff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 22px rgba(92, 27, 36, 0.45);
}

/* Home Page Redesigned Media Section */
.media-main-card {
    background-color: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.media-left-img-col {
    position: relative;
    overflow: hidden;
    
}

.media-left-img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    object-position: left center;
    display: block;
}

.media-right-content-col {
    padding: 3.2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.media-section-title {
    font-family: var(--font-body);
    font-size: 2.8rem;
    font-weight: 700;
    color: #6a1a23;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.media-section-desc {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: #444444;
    max-width: 580px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.media-logos-grid-wrap {
    width: 100%;
    max-width: 650px;
    margin: 0 auto 2.2rem auto;
}

.media-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5rem 1.2rem;
    align-items: center;
}

.media-grid-item {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.media-grid-item:hover {
    transform: scale(1.05);
}

.media-grid-item.text-start {
    justify-content: flex-start;
}

.media-grid-item.text-center {
    justify-content: center;
}

.media-grid-item.text-end {
    justify-content: flex-end;
}

.grid-col-span-2 {
    grid-column: span 2 / span 2;
    justify-content: flex-start;
    padding-left: 0.5rem;
}

/* Individual Logo Custom Heights matching reference UI */
.logo-toi {
    height: 54px;
    max-width: 150px;
    width: auto;
    object-fit: contain;
}

.logo-deccan {
    height: 40px;
    max-width: 170px;
    width: auto;
    object-fit: contain;
}

.logo-indianews {
    height: 48px;
    max-width: 115px;
    width: auto;
    object-fit: contain;
}

.logo-hindu {
    height: 46px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
}

.logo-abp {
    height: 46px;
    max-width: 135px;
    width: auto;
    object-fit: contain;
}

.logo-tribune {
    height: 42px;
    max-width: 155px;
    width: auto;
    object-fit: contain;
}

.logo-ht {
    height: 44px;
    max-width: 230px;
    width: auto;
    object-fit: contain;
}

.logo-morning {
    height: 50px;
    max-width: 145px;
    width: auto;
    object-fit: contain;
}

.media-know-more-btn {
    background-color: #5c1b24;
    border: none;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(92, 27, 36, 0.25);
}

.media-know-more-btn:hover {
    background-color: #7e222c;
    color: #ffffff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 22px rgba(92, 27, 36, 0.4);
}

/* Home Page Redesigned Performing Worldwide Section */
.worldwide-main-card {
    background-color: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.worldwide-left-content-col {
    padding: 3.2rem 2.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.worldwide-section-title {
    font-family: var(--font-body);
    font-size: 2.8rem;
    font-weight: 700;
    color: #6a1a23;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.worldwide-section-desc {
    font-family: var(--font-body);
    font-size: 0.84rem;
    color: #444444;
    max-width: 600px;
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

.worldwide-countries-grid {
    width: 100%;
    max-width: 580px;
}

.country-name-item {
    font-family: var(--font-body);
    font-size: 0.96rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.85rem;
    line-height: 1.3;
}

.worldwide-right-img-col {
    position: relative;
    overflow: hidden;
}

.worldwide-right-img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    max-height: 472px;
    object-fit: cover;
    object-position: right center;
    display: block;
}

/* Home Page Redesigned Awards Section (Exact Match to HOME PAGE copy.jpg) */
.awards-main-card {
    background-color: #ffffff;
    border-radius: 24px;
    position: relative;
    overflow: visible !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.awards-left-content-col {
    padding: 3.2rem 2.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.awards-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #6a1a23;
    letter-spacing: -0.2px;
    margin-bottom: 0.8rem;
}

.awards-section-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.84rem;
    color: #444444;
    max-width: 580px;
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

.awards-grid-wrap {
    width: 100%;
    max-width: 610px;
    margin-bottom: 2rem;
}

.awards-grid-container {
    display: flex;
    gap: 12px;
}

.award-grid-tall-card {
    flex: 0 0 44%;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background-color: #111111;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.award-grid-tall-card:hover, .award-grid-small-card:hover {
    transform: translateY(-3px) scale(1.02);
}

.award-grid-tall-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.award-grid-small-cards {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.award-grid-small-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background-color: #111111;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.award-grid-small-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.award-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px 4px 5px 4px;
    background: rgba(0, 0, 0, 0.78);
    text-align: center;
    color: #ffffff;
}

.award-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    margin-bottom: 1px;
    color: #ffffff;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.award-card-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    color: #dfcaa0;
    margin: 0;
    line-height: 1.1;
}

.text-gold-accent {
    color: #dfcaa0 !important;
}

.awards-know-more-btn {
    background-color: #6a1a23 !important;
    border: none;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 10px 30px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(106, 26, 35, 0.3);
    align-self: flex-start;
}

.awards-know-more-btn:hover {
    background-color: #84232e !important;
    color: #dfcaa0 !important;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 22px rgba(106, 26, 35, 0.45);
}

.awards-right-img-col {
    position: relative;
    overflow: visible !important;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.awards-right-img {
    width: 120%;
    max-width: 125%;
    height: calc(100% + 95px);
    margin-top: -95px;
    margin-right: -10px;
    margin-bottom: 0;
    object-fit: contain;
    object-position: bottom right;
    display: block;
    border-bottom-right-radius: 24px;
    image-rendering: -webkit-optimize-contrast;
    z-index: 10;
    pointer-events: none;
}

/* Home Page Redesigned Testimonials Section */
.testimonials-main-card {
    background-color: #ffffff;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.testimonials-left-img-col {
    position: relative;
    min-height: 440px;
    overflow: hidden;
}

.testimonials-left-img {
    width: 100%;
    height: 100%;
    margin-top: 0;
    object-fit: cover;
    object-position: left center;
    display: block;
}

.testimonials-right-content-col {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.testimonials-section-title {
    font-family: var(--font-body);
    font-size: 2.8rem;
    font-weight: 700;
    color: #6a1a23;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.testimonials-section-desc {
    font-family: var(--font-body);
    font-size: 0.84rem;
    color: #444444;
    max-width: 580px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.testimonials-avatars-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.testimonial-avatar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-avatar-circle {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    border: 3px solid #dfc06d;
    background-color: #ede6d8;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.testimonial-avatar-item:hover .testimonial-avatar-circle {
    transform: scale(1.05);
}

.testimonial-person-name {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 2px;
}

.testimonial-person-role {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: #6a1a23;
    margin: 0;
}

.testimonials-know-more-btn {
    background-color: #5c1b24;
    border: none;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(92, 27, 36, 0.25);
}

.testimonials-know-more-btn:hover {
    background-color: #7e222c;
    color: #ffffff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 22px rgba(92, 27, 36, 0.4);
}

/* ==========================================================================
   Responsive Media Queries for Redesigned Home Page Sections
   ========================================================================== */

/* Large Tablets & Mobile Landscape (max-width: 991px) */
@media (max-width: 991px) {
    /* Discography */
    .disco-main-hero-card {
        padding: 3.5rem 1.8rem 7.5rem 1.8rem;
        min-height: 380px;
    }
    .disco-hero-main-title {
        font-size: 2.3rem;
    }
    .disco-overlapping-cards-wrap {
        margin-top: -90px;
    }

    /* Media Section */
    .media-left-img-col {
        min-height: 320px;
        max-height: 420px;
        height: auto;
    }
    .media-left-img {
        min-height: 320px;
        max-height: 420px;
        height: 100%;
        border-radius: 24px 24px 0 0;
        object-fit: cover;
        object-position: center 20%;
    }
    .media-right-content-col {
        padding: 2.2rem 1.8rem;
    }
    .media-section-title {
        font-size: 2.2rem;
    }

    /* Worldwide Section */
    .worldwide-left-content-col {
        padding: 2.2rem 1.8rem;
    }
    .worldwide-section-title {
        font-size: 2.2rem;
    }
    .worldwide-right-img-col {
        min-height: 340px;
        max-height: 420px;
        height: auto;
    }
    .worldwide-right-img {
        min-height: 340px;
        max-height: 420px;
        height: 100%;
        border-radius: 0 0 24px 24px;
        object-fit: cover;
        object-position: center 30%;
    }

    /* Awards Section */
    .awards-left-content-col {
        padding: 2.2rem 1.8rem;
    }
    .awards-section-title {
        font-size: 2.2rem;
    }
    .awards-right-img-col {
        min-height: 320px;
        max-height: 420px;
        height: auto;
        display: flex;
        justify-content: center;
    }
    .awards-right-img {
        min-height: 320px;
        max-height: 420px;
        height: 100%;
        margin-top: 0;
        border-radius: 0 0 24px 24px;
        object-fit: contain;
        object-position: center bottom;
    }

    /* Testimonials Section */
    .testimonials-main-card {
        margin-top: 0;
    }
    .testimonials-left-img-col {
        min-height: 320px;
        max-height: 420px;
        height: auto;
    }
    .testimonials-left-img {
        height: 100%;
        min-height: 320px;
        max-height: 420px;
        margin-top: 0;
        border-radius: 24px 24px 0 0;
        object-fit: cover;
        object-position: center 20%;
    }
    .testimonials-right-content-col {
        padding: 2.2rem 1.8rem;
    }
    .testimonials-section-title {
        font-size: 2.2rem;
    }
}

/* Medium Mobile & Small Tablets (max-width: 767px) */
@media (max-width: 767px) {
    /* Discography */
    .disco-main-hero-card {
        padding: 2.5rem 1.2rem 6.5rem 1.2rem;
        min-height: 340px;
        border-radius: 16px;
    }
    .disco-hero-main-title {
        font-size: 2rem;
    }
    .disco-hero-desc {
        font-size: 0.8rem;
    }
    .disco-overlapping-cards-wrap {
        margin-top: -70px;
    }

    /* Media Grid */
    .media-grid-container {
        grid-gap: 1rem 0.8rem;
    }

    /* Awards Grid */
    .awards-grid-wrap {
        max-width: 100%;
    }
    .awards-grid-container {
        flex-direction: column;
    }
    .award-grid-tall-card {
        flex: 0 0 auto;
        height: auto;
        aspect-ratio: 16 / 10;
        min-height: 220px;
    }
}

/* Mobile Screens (max-width: 575px) */
@media (max-width: 575px) {
    /* Section Titles & Cards */
    .disco-hero-main-title,
    .media-section-title,
    .worldwide-section-title,
    .awards-section-title,
    .testimonials-section-title {
        font-size: 1.75rem;
    }

    .media-main-card,
    .worldwide-main-card,
    .awards-main-card,
    .testimonials-main-card {
        border-radius: 16px;
    }

    .media-left-img,
    .testimonials-left-img {
        border-radius: 16px 16px 0 0;
        min-height: 250px;
        max-height: 320px;
    }

    .worldwide-right-img,
    .awards-right-img {
        border-radius: 0 0 16px 16px;
        min-height: 250px;
        max-height: 320px;
    }

    .media-right-content-col,
    .worldwide-left-content-col,
    .awards-left-content-col,
    .testimonials-right-content-col {
        padding: 1.8rem 1.2rem;
    }

    .disco-overlapping-cards-wrap {
        margin-top: -50px;
    }

    /* Media logos responsive scaling */
    .media-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-col-span-2 {
        grid-column: span 2 / span 2;
    }

    /* Testimonials Avatars */
    .testimonials-avatars-row {
        gap: 1.2rem;
    }
    .testimonial-avatar-circle {
        width: 85px;
        height: 85px;
    }
    .testimonial-person-name {
        font-size: 0.82rem;
    }
    .testimonial-person-role {
        font-size: 0.72rem;
    }
}

/* ==========================================================================
   TESTIMONIALS PAGE STYLES (Exact Match to Testimonial.jpg Mockup)
   ========================================================================== */
.testimonials-page-wrapper {
    background-color: #ede5d8;
    min-height: 100vh;
    padding-bottom: 70px;
}

/* 1. Hero Collage Section */
.testimonials-hero-section {
    position: relative;
    padding: 40px 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.testimonials-collage-container {
    position: relative;
    width: 100%;
    max-width: 960px;
    height: 480px;
    margin: 0 auto;
}

/* 5 Grey Rounded Frames matching mockup */
.collage-frame {
    position: absolute;
    background-color: #d1d1d1;
    border-radius: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* Top Left Frame */
.collage-frame.frame-1 {
    width: 220px;
    height: 250px;
    top: 20px;
    left: 40px;
    z-index: 1;
}

/* Top Center Frame (Taller & Centered High) */
.collage-frame.frame-2 {
    width: 360px;
    height: 270px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* Top Right Frame */
.collage-frame.frame-3 {
    width: 260px;
    height: 240px;
    top: 15px;
    right: 40px;
    z-index: 1;
}

/* Bottom Left / Center Frame */
.collage-frame.frame-4 {
    width: 270px;
    height: 250px;
    bottom: 20px;
    left: 170px;
    z-index: 2;
}

/* Bottom Right / Center Frame */
.collage-frame.frame-5 {
    width: 270px;
    height: 250px;
    bottom: 30px;
    right: 170px;
    z-index: 2;
}

/* Centered Title & Subtitle in Foreground */
.testimonials-hero-heading-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 100%;
    pointer-events: none;
}

.testimonials-page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #a71b28;
    margin-bottom: 2px;
    letter-spacing: -0.5px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

.testimonials-page-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #cf5353;
    letter-spacing: 0.2px;
    margin: 0;
}

/* 2. Intro Description Text */
.testimonials-intro-section {
    max-width: 780px;
    margin: 40px auto 45px auto;
    text-align: center;
    padding: 0 15px;
}

.testimonials-intro-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1.68;
    color: #2b2320;
    margin: 0;
}

/* 3. Testimonials Video Cards Grid */
.testimonials-cards-grid {
    max-width: 1060px;
    margin: 0 auto;
}

.testimonial-card-item {
    background-color: #d1d1d1;
    border-radius: 18px;
    padding: 15px 15px 14px 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.testimonial-video-box {
    width: 100%;
    aspect-ratio: 16 / 10;
    border: 2px solid #ffffff;
    border-radius: 14px;
    background-color: #d1d1d1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.testimonial-video-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-play-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a71b28;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, background 0.2s ease;
}

.testimonial-card-item:hover .testimonial-play-icon {
    transform: scale(1.1);
    background: #ffffff;
}

.testimonial-person-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 2px;
}

.testimonial-avatar-ring {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #888888;
    font-size: 0.85rem;
}

.testimonial-person-meta {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.80rem;
    font-weight: 700;
    color: #111111;
    margin: 0 0 1px 0;
    line-height: 1.2;
}

.testimonial-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    color: #444444;
    margin: 0;
    line-height: 1.2;
}

/* ==========================================================================
   PHOTOGRAPHS PAGE STYLES (Exact Match to PHotos.jpg Mockup)
   ========================================================================== */
.photos-page-wrapper {
    background-color: #ede5d8;
    min-height: 100vh;
    padding-bottom: 70px;
}

/* 1. Hero Banner */
.photos-hero-section {
    position: relative;
    background: linear-gradient(rgba(15, 8, 10, 0.72), rgba(15, 8, 10, 0.68)), url('../images/photos_hero_banner.webp');
    background-size: cover;
    background-position: center center;
    min-height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

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

.photos-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.4rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.photos-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: #f0f0f0;
    line-height: 1.45;
    margin: 0;
}

/* 2. Categories 3x2 Grid */
.photos-grid-section {
    width: 100%;
    background-color: #ede5d8;
}

.photos-categories-container {
    max-width: 980px;
    margin: 0 auto;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 210px);
    gap: 0;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.photo-category-card {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 30px 28px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.photo-category-card:hover {
    filter: brightness(0.96);
    transform: scale(1.015);
    z-index: 5;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.cat-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #111111;
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.2px;
}

/* 6 Distinct Category Box Colors matching PHotos.jpg */
.cat-weddings {
    background-color: #d1d0cb;
    justify-content: flex-end;
    text-align: right;
}

.cat-corporate {
    background-color: #cca557;
    justify-content: flex-start;
    text-align: left;
}

.cat-public {
    background-color: #c69a47;
    justify-content: flex-start;
    text-align: left;
}

.cat-college {
    background-color: #c5918a;
    justify-content: flex-end;
    text-align: right;
}

.cat-lifestyle {
    background-color: #c8c7c3;
    justify-content: flex-start;
    text-align: left;
}

.cat-bts {
    background-color: #ffffff;
    justify-content: center;
    text-align: center;
}

/* ==========================================================================
   CORPORATE EVENTS PAGE STYLES (Exact Match to Corporate events.jpg Mockup)
   ========================================================================== */
.corporate-page-wrapper {
    background-color: #ffffff;
    min-height: 100vh;
    padding-bottom: 70px;
}

/* 1. Hero Banner */
.corporate-hero-section {
    position: relative;
    background: linear-gradient(rgba(12, 6, 8, 0.45), rgba(12, 6, 8, 0.58)), url('../images/corporate_hero_banner.webp');
    background-size: cover;
    background-position: center 20%;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 110px 20px 80px 20px;
}

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

.corporate-hero-tagline {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.corporate-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2.5px;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

/* 2. Intro Description Section */
.corporate-intro-section {
    padding: 60px 0 40px;
    background-color: #ffffff;
}

.corporate-intro-box {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.corporate-intro-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: #5a2c1b;
    margin-bottom: 18px;
    line-height: 1.4;
}

.corporate-intro-p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.84rem;
    font-weight: 400;
    color: #333333;
    line-height: 1.68;
    margin-bottom: 16px;
    text-align: center;
}

.corporate-intro-p:last-child {
    margin-bottom: 0;
}

/* 3. Corporate Cards Grid (4x2 Pastel Grid) */
.corporate-grid-section {
    padding: 10px 0 30px;
    background-color: #ffffff;
}

.corporate-cards-grid {
    max-width: 1140px;
    margin: 0 auto;
}

.corp-card {
    border-radius: 18px;
    padding: 24px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

.corp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.corp-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #2b2320;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -0.2px;
    line-height: 1.25;
}

.corp-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    color: #555555;
    line-height: 1.48;
    margin: 0;
}

/* 8 Pastel Colors matching Mockup */
.card-sand { background-color: #ded9cb; }
.card-peach { background-color: #f5d5be; }
.card-ice { background-color: #d2e8ee; }
.card-mint { background-color: #cef0e4; }
.card-skyblue { background-color: #d8e8f2; }
.card-lavender { background-color: #dfdbf2; }
.card-aqua { background-color: #cdf0e3; }
.card-coral { background-color: #f8d7c4; }

/* 4. Mosaic Grid Surround Layout */
.trusted-leaders-section {
    padding: 70px 0 60px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.mosaic-surround-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-gap: 12px;
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
}

.mosaic-card {
    border-radius: 14px;
    aspect-ratio: 3 / 4;
    min-height: 120px;
    background-color: #9fbdb5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mosaic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.mosaic-card.placeholder-card {
    background-color: #9fbdb5;
}

.mosaic-card.image-card {
    background-color: #ffffff;
}

.mosaic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.mosaic-center-text {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px 20px;
}

.trusted-leaders-title {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.15;
}

.trusted-leaders-title .title-maroon {
    display: block;
    color: #a71b28;
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.trusted-leaders-title .title-dark {
    display: block;
    color: #141414;
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-top: 2px;
}

.trusted-leaders-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.80rem;
    font-weight: 400;
    color: #666666;
    line-height: 1.55;
    margin: 0 auto;
    max-width: 480px;
    text-align: center;
}

.trusted-leaders-brands {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: #888888;
    margin-top: 12px;
    letter-spacing: 0.2px;
    text-align: center;
    max-width: 500px;
}

/* 5. Why Leading Brands Choose Swaraag */
.why-brands-section {
    position: relative;
    background: #cb8f50 url('../images/corporate/why_choose_swaraag_bg.webp') no-repeat right center;
    background-size: cover;
    padding: 75px 0 85px 0;
    margin-top: 50px;
    overflow: hidden;
    width: 100%;
}

.why-brands-container {
    width: 100%;
    margin: 0 auto;
}

.why-brands-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.2px;
    margin-bottom: 35px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.why-cards-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 18px;
    max-width: 72%;
}

.why-box {
    border-radius: 18px;
    padding: 26px 20px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.why-box.card-white {
    background-color: #ffffff;
}

.why-box.card-mustard {
    background-color: #dcaf4e;
}

.why-box-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #4a181d;
    line-height: 1.25;
    margin-bottom: 12px;
}

.why-box-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #333333;
    margin-bottom: 0;
}

/* 6. Experience That Speaks for Itself */
.experience-speaks-section {
    position: relative;
    background: #901c1c url('../images/corporate/experience_speaks_bg.webp') no-repeat center 35%;
    background-size: cover;
    padding: 45px 0 80px 0;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.experience-speaks-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.35rem;
    font-weight: 800;
    color: #e5a024;
    text-align: center;
    margin-top: 0;
    margin-bottom: 65px;
    letter-spacing: -0.2px;
}

.experience-stats-row {
    position: relative;
    z-index: 2;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.4rem;
    font-weight: 800;
    color: #f5b842;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #e5a024;
    letter-spacing: 0.2px;
}

.experience-singer-spacer {
    min-height: 220px;
}

/* 7. Taking Indian Music Across the World */
.worldwide-music-section {
    background-color: #ffffff;
    padding: 28px 0 75px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.taking-class {
background-color: #dcedf3;
    padding-left: 160px;
}

.worldwide-content-col {
    padding-right: 35px;
}

.worldwide-travel-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #cc292b;
    line-height: 1.18;
    margin-bottom: 22px;
    letter-spacing: -0.3px;
}

.worldwide-travel-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    line-height: 1.65;
    color: #333333;
    max-width: 580px;
    margin-bottom: 35px;
}

.worldwide-destinations-row {
    margin-top: 15px;
}

.destination-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.destination-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 16px;
    letter-spacing: -0.2px;
}

.worldwide-travel-img-wrap {
    position: relative;
    
    max-width: 100%;
}

.worldwide-travel-img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

/* 8. Swaraag at Corporate Events Gallery */
.corporate-gallery-section {
    background-color: #ffffff;
    padding: 75px 0 80px 0;
    width: 100%;
    overflow: hidden;
}

.corporate-gallery-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #cc292b;
    text-align: center;
    margin-bottom: 45px;
    letter-spacing: -0.3px;
}

.corporate-gallery-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(3, 140px);
    grid-gap: 8px;
    width: 100%;
}

.corp-gallery-slot {
    background-color: #c9c9c9;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corp-gallery-slot.slot-1 {
    background-color: #6a6160;
}

.corp-gallery-slot:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.corp-gallery-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.corp-gallery-slot:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   SWARAAG FLAVOURS DEDICATED PAGE STYLES (Exact Mockup Match)
   ========================================================================== */
.swaraag-flavours-page {
    background: #0d1918;
    background: radial-gradient(circle at 50% 30%, #132624 0%, #0c1817 70%, #08100f 100%);
    color: #dfcaa0;
    min-height: 100vh;
    padding-bottom: 60px;
}

/* 1. Hero Showcase Section */
.sf-hero-showcase {
    position: relative;
    padding-top: 20px;
}

.sf-info-block {
    margin-bottom: 28px;
}

.sf-info-block:last-child {
    margin-bottom: 0;
}

.sf-block-title {
    font-family: 'Cinzel', 'Montserrat', serif;
    font-size: 1.28rem;
    font-weight: 700;
    color: #dfcaa0;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.sf-block-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: #8fa49e;
    line-height: 1.55;
    margin-bottom: 0;
}

.sf-artist-hero-wrap {
    position: relative;
    display: inline-block;
    max-width: 380px;
    margin: 0 auto;
}

.sf-artist-hero-img {
    max-height: 480px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
}

/* Calligraphy Hindi Slogan */
.sf-slogan-wrap {
    text-align: center;
}

.sf-slogan-hindi-top {
    font-family: 'Mukta', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #dfcaa0;
    margin: 0;
    letter-spacing: 1px;
}

.sf-slogan-small {
    font-size: 1.1rem;
    font-weight: 500;
    color: #dfcaa0;
}

.sf-slogan-hindi-main {
    font-family: 'Mukta', sans-serif;
    font-size: 3.4rem;
    font-weight: 800;
    color: #dfcaa0;
    margin: -8px 0 0 0;
    letter-spacing: 2px;
    text-shadow: 0 4px 15px rgba(223, 202, 160, 0.2);
}

/* 2. Middle Section: Multi Languages Songs */
.sf-languages-section {
    border-top: 1px solid rgba(223, 202, 160, 0.12);
    border-bottom: 1px solid rgba(223, 202, 160, 0.12);
    padding: 35px 20px;
}

.sf-lang-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #dfcaa0;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.sf-lang-tags-row {
    margin: 20px 0;
}

.sf-lang-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    color: #dfcaa0;
    letter-spacing: 0.4px;
    transition: color 0.2s ease;
}

.sf-lang-tag:hover {
    color: #ffffff;
}

.sf-lang-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    color: #8fa49e;
    max-width: 820px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 3. Event / Category Cards Grid */
.sf-cards-grid-section {
    position: relative;
}

.sf-event-card {
    background: linear-gradient(135deg, #122220 0%, #0d1a18 100%);
    border: 2.5px solid #c9a552;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 195px;
    display: flex;
    align-items: center;
    padding: 20px 0 20px 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.sf-event-card:hover {
    transform: translateY(-5px);
    border-color: #f3d489;
    box-shadow: 0 15px 35px rgba(201, 165, 82, 0.25);
}

.sf-card-body {
    width: 60%;
    height: 100%;
    position: relative;
    z-index: 5;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sf-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.sf-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: #9cb1aa;
    line-height: 1.4;
    margin-bottom: 12px;
    opacity: 0.95;
}

.sf-card-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.sf-card-link:hover {
    color: #c9a552;
    transform: translateX(3px);
}

.sf-card-img-wrap {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 44%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.sf-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: contrast(1.05) brightness(0.95);
    transition: transform 0.4s ease;
}

.sf-event-card:hover .sf-card-img {
    transform: scale(1.05);
}

/* Responsive adjustments for Mobile & Tablet */
@media (max-width: 991px) {
    .sf-col-left, .sf-col-right {
        text-align: center;
    }
    .sf-artist-hero-img {
        max-height: 360px;
    }
    .sf-card-title {
        font-size: 1.15rem;
    }
    .sf-card-body {
        width: 65%;
    }
    .sf-card-img-wrap {
        width: 38%;
    }
}

@media (max-width: 575px) {
    .sf-slogan-hindi-top {
        font-size: 1.4rem;
    }
    .sf-slogan-hindi-main {
        font-size: 2.6rem;
    }
    .sf-event-card {
        min-height: 160px;
        padding: 15px 0 15px 18px;
    }
    .sf-card-title {
        font-size: 1.05rem;
    }
    .sf-card-desc {
        font-size: 0.68rem;
    }
}

/* Homepage & About Sections Font Size Rule (1rem) */
.flavours-desc-p,
.disco-hero-desc,
.media-section-desc,
.worldwide-section-desc,
.awards-section-desc,
.testimonials-section-desc,
.awards-right-intro,
.about-team-desc,
.about-management-text p {
    font-size: 1rem !important;
    line-height: 1.65 !important;
}

.about-team-desc {
    max-width: 820px;
    color: #3e352d;
}

.about-management-text p {
    color: #3e352d;
    text-align: center !important;
    margin-bottom: 16px;
}

/* ==========================================
   PR TEAM / PRESS MEDIA COVERAGE PAGE STYLES
   ========================================== */
.pr-hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 580px;
    height: 580px;
    background: #0d0406 url('../images/pr_team/pr_hero_bg.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.pr-hero-wrapper .page-container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 175px !important;
    padding-right: 30px !important;
    margin: 0 !important;
}

.pr-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 4, 6, 0.88) 0%, rgba(12, 4, 6, 0.45) 50%, rgba(12, 4, 6, 0.15) 100%);
}

.pr-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    max-width: 480px;
    margin-left: 0 !important;
    margin-right: auto !important;
    text-align: left !important;
}

.pr-hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.6);
    text-align: left !important;
}

.pr-hero-bullets {
    list-style: disc;
    padding-left: 28px !important;
    margin: 0 !important;
    text-align: left !important;
}

.pr-hero-bullets li {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
    text-align: left !important;
}

/* 1. Intro Slogan & Overview Section */
.pr-intro-section {
    background-color: #eae4d6;
    padding: 60px 0;
}

.pr-slogan-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a080a;
    text-align: center;
    line-height: 1.35;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pr-slogan-title .pr-red {
    color: #e31c25;
    font-weight: 900;
}

.pr-intro-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #2b231d;
    text-align: center;
    max-width: 780px;
    margin: 22px auto 0 auto;
}

/* 2. TV News Channel Section (Full Width Edge-to-Edge) */
.pr-tv-news-section {
    background-color: #eddaba;
    padding: 0;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.pr-tv-container-full {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pr-tv-row {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.pr-tv-left-col {
    flex: 0 0 38%;
    max-width: 38%;
    display: flex;
    align-items: stretch;
}

.pr-tv-right-col {
    flex: 0 0 62%;
    max-width: 62%;
    padding: 50px 60px 50px 40px;
}

.pr-tv-artist-img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: left center;
    display: block;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.pr-section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #6a1a23;
    margin-bottom: 14px;
    margin-left: 42px;
    letter-spacing: -0.2px;
}

.pr-section-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.90rem;
    line-height: 1.6;
    color: #3e352d;
    margin-bottom: 26px;
    margin-left: 42px;
    max-width: 780px;
}

.pr-red-inline {
    color: #e31c25;
    font-weight: 700;
}

/* 2x2 Video Cards Grid */
.pr-tv-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 24px;
    max-width: 740px;
}

.pr-tv-card-item {
    background: #ebdcb8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pr-tv-card-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.pr-tv-card-thumb {
    position: relative;
    width: 100%;
    height: 150px;
    background: #0f0507;
    cursor: pointer;
    overflow: hidden;
}

.pr-tv-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pr-tv-card-thumb .pr-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.2rem;
    color: #ffffff;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8));
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 2;
}

.pr-tv-card-thumb:hover .pr-play-icon {
    transform: translate(-50%, -50%) scale(1.15);
    color: #c48928;
}

.pr-tv-card-bar {
    background: #ebdcb8;
    padding: 8px 12px 8px 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pr-tv-badge {
    height: 32px;
    padding: 0 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.pr-tv-badge.badge-abp {
    background-color: #e31c25;
}

.pr-tv-badge.badge-india {
    background-color: #184594;
}

.pr-tv-caption {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.80rem;
    font-weight: 700;
    color: #1a080a;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pr-tv-card:hover .pr-play-icon {
    transform: translate(-50%, -50%) scale(1.15);
    color: #c48928;
}

/* 3. Swaraag Originals' Featured on National TV (Full Width Edge-to-Edge) */
.pr-national-tv-section {
    background-color: #ffffff;
    padding: 0;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.pr-nat-container-full {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pr-nat-row {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.pr-nat-left-col {
    flex: 0 0 58%;
    max-width: 58%;
    padding: 60px 60px 60px 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.pr-nat-right-col {
    flex: 0 0 42%;
    max-width: 42%;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.pr-nat-artist-img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: right center;
    display: block;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.pr-nat-grid-wrap {
    max-width: 620px;
    margin-top: 10px;
}

.pr-nat-grid-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
}

.pr-nat-col {
    display: flex;
    flex-direction: column;
}

.pr-nat-logo-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    height: 36px;
}

.logo-9xm {
    display: inline-flex;
    align-items: center;
}

.logo-9xm .txt-9x {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: #1a080a;
}

.logo-9xm .badge-m {
    background-color: #e5007d;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 900;
    font-size: 0.95rem;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
}

.logo-mtvbeats {
    display: inline-flex;
    align-items: center;
}

.logo-mtvbeats .txt-mtv {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 1.4rem;
    color: #1a080a;
    letter-spacing: 0.5px;
}

.logo-mtvbeats .txt-beats {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.0rem;
    color: #e8631b;
    margin-left: 4px;
    letter-spacing: -0.5px;
}

.curved-arrow {
    flex-shrink: 0;
}

.pr-nat-sublabel {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #5a2624;
    margin-bottom: 6px;
}

.pr-nat-sublabel-spacer {
    height: 24px;
    margin-bottom: 6px;
}

.pr-nat-card-item {
    background: #0f0507;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    position: relative;
    cursor: pointer;
    border: 3px solid #1f1a18;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pr-nat-card-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.pr-nat-card-thumb {
    position: relative;
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.pr-nat-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pr-nat-card-thumb .pr-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.2rem;
    color: #ffffff;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8));
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 2;
}

.pr-nat-card-item:hover .pr-play-icon {
    transform: translate(-50%, -50%) scale(1.15);
    color: #c48928;
}

.pr-nat-card-tap {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4a3e35;
    text-align: center;
    margin-top: 5px;
}

/* Responsive adjustments for Section 4 */
@media (max-width: 991px) {
    .pr-nat-row {
        flex-direction: column-reverse;
    }
    .pr-nat-left-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 40px 24px;
    }
    .pr-nat-right-col {
        flex: 0 0 100%;
        max-width: 100%;
        min-height: 380px;
    }
    .pr-nat-artist-img {
        min-height: 380px;
        height: 380px;
    }
}
@media (max-width: 576px) {
    .pr-nat-grid-row {
        grid-template-columns: 1fr;
    }
}
    transform: translate(-50%, -50%) scale(1.15);
    color: #c48928;
}

/* 4. Print Media Section */
section.pr-print-media-section,
.pr-print-media-section {
    background-color: #ebdcb8;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.pr-print-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px 20px;
    margin-top: 30px;
    transition: opacity 0.35s ease-in-out;
}

.pr-print-card {
    position: relative;
    height: 360px;
    border-radius: 14px;
    overflow: hidden;
    background: #0d0406;
    box-shadow: 0 5px 16px rgba(0,0,0,0.22);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pr-print-card:hover {
    transform: translateY(-4px);
    border-color: #b08d57;
    box-shadow: 0 8px 24px rgba(0,0,0,0.32);
}

.pr-print-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}

.pr-print-card:hover .pr-print-card-img {
    transform: scale(1.05);
}

.pr-print-hover-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 3;
    pointer-events: none;
}

.pr-print-card:hover .pr-print-hover-overlay {
    opacity: 1;
    visibility: visible;
}

.pr-print-hover-icon {
    font-size: 1.4rem;
    color: #ffffff;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.8));
    transform: rotate(-45deg);
}

.pr-print-hover-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.9);
}

.pr-print-card-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 12px 10px 14px;
    background: linear-gradient(to top, rgba(13, 4, 6, 0.98) 0%, rgba(13, 4, 6, 0.85) 60%, rgba(13, 4, 6, 0) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    z-index: 2;
}

.pr-print-source-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: 82%;
}

.pr-print-source-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.80rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pr-print-source-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    color: #b8b0a6;
}

.pr-print-link-icon {
    color: #d49a37;
    font-size: 0.88rem;
    transform: rotate(-45deg);
    flex-shrink: 0;
    margin-bottom: 2px;
}

.pr-print-pagination {
    text-align: center;
    margin-top: 35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #3e352d;
}

.pr-print-pagination span {
    margin: 0 4px;
    cursor: pointer;
    font-weight: 600;
    color: #3e352d;
    transition: color 0.2s ease;
}

.pr-print-pagination span.active,
.pr-print-pagination span:hover {
    color: #e31c25;
    font-weight: 800;
}

/* 5. FM Interviews & Podcasts Section */
.pr-fm-podcasts-section {
    background-color: #ebdcb8;
    padding: 60px 164px;
}

.pr-slider-arrow.left-arrow { left: 0; }
.pr-slider-arrow.right-arrow { right: 0; }

/* Responsive Styling for Mobile & Tablet */
@media (max-width: 991px) {
    .pr-hero-wrapper .page-container { padding-left: 25px !important; }
    .pr-hero-title { font-size: 2.4rem; }
    .pr-hero-bullets li { font-size: 1.15rem; }
    .pr-slogan-title { font-size: 1.35rem; }
    .pr-print-grid { grid-template-columns: repeat(3, 1fr); }
    .pr-fm-card { flex: 0 0 calc(33.33% - 11px); }
    .pr-tv-artist-img, .pr-nat-artist-img { max-height: 300px; margin-bottom: 25px; }
}

@media (max-width: 767px) {
    .pr-hero-wrapper { min-height: 380px; }
    .pr-hero-title { font-size: 1.9rem; }
    .pr-hero-bullets li { font-size: 1rem; }
    .pr-slogan-title { font-size: 1.15rem; }
    .pr-tv-cards-grid, .pr-nat-cards-grid { grid-template-columns: 1fr; }
    .pr-print-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .pr-fm-card { flex: 0 0 calc(50% - 8px); }
    .pr-fm-slider-container { padding: 0 35px; }
}

@media (max-width: 480px) {
    .pr-print-grid { grid-template-columns: 1fr; }
    .pr-fm-card { flex: 0 0 100%; }
}

section.pr-print-media-section {
    padding-top: 50px !important;
    padding-bottom: 70px !important;
}

/* ==========================================================================
   9. THREE-CARD HIGHLIGHTS SECTION (Awards, Swaraag in Media, Discography)
   ========================================================================== */
.corp-highlights-section {
    padding: 70px 0 80px 0;
    background-color: #ffffff;
    width: 100%;
    position: relative;
}

.corp-highlight-card {
    background-color: #ebdcb8;
    border-radius: 24px;
    padding: 32px 26px 28px 26px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.corp-highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.09);
}

.corp-highlight-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.corp-highlight-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: #6a1a23;
    margin-bottom: 12px;
    line-height: 1.25;
    letter-spacing: -0.3px;
    text-align: left;
}

.corp-highlight-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: #3e352d;
    line-height: 1.55;
    margin-bottom: 22px;
    text-align: left;
}

/* Card 1: Awards 2x2 Grid */
.corp-awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 25px;
}

.corp-award-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    background: #0f0507;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.corp-award-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.corp-award-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(12, 4, 6, 0.85);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.60rem;
    font-weight: 600;
    padding: 4px 5px;
    text-align: center;
    line-height: 1.25;
}

/* Card 2: Swaraag in Media Logos */
.corp-media-logos-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 12px 14px;
    margin-bottom: 25px;
    padding-top: 5px;
}

.corp-media-logo-box {
    background: #ffffff;
    border-radius: 6px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.corp-media-logo-box img {
    max-height: 24px;
    max-width: 110px;
    object-fit: contain;
    display: block;
}

.corp-media-logo-box.box-toi img { max-height: 22px; }
.corp-media-logo-box.box-deccan img { max-height: 24px; }
.corp-media-logo-box.box-hindu img { max-height: 22px; }
.corp-media-logo-box.box-abp img { max-height: 24px; }
.corp-media-logo-box.box-india img { max-height: 24px; }
.corp-media-logo-box.box-ht img { max-height: 22px; }
.corp-media-logo-box.box-tribune img { max-height: 20px; }
.corp-media-logo-box.box-morning img { max-height: 22px; }

/* Card 3: Discography 3x3 Grid */
.corp-disco-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.corp-disco-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: #0f0507;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.corp-disco-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card Footers & Pill Buttons */
.corp-highlight-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding-top: 10px;
}

.corp-pill-btn {
    background-color: #5c1822;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(92, 24, 34, 0.25);
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.corp-pill-btn:hover {
    background-color: #7d202e;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(92, 24, 34, 0.35);
}

/* ==========================================================================
   10. LIVE EXPERIENCES CREATED FOR CORPORATE BRANDS (Video Slider Carousel)
   ========================================================================== */
.corp-live-exp-section {
    background-color: #e6d3cd;
    padding: 65px 151px 75px 151px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.corp-live-exp-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #6a1a23;
    margin-bottom: 12px;
    line-height: 1.25;
    letter-spacing: -0.3px;
    text-align: center;
}

.corp-live-exp-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #3e352d;
    line-height: 1.55;
    max-width: 640px;
    margin: 0 auto 35px auto;
    text-align: center;
}

.corp-arrow {
    color: #6a1a23 !important;
    font-size: 2.8rem !important;
}

.corp-arrow:hover {
    color: #8b202c !important;
    transform: scale(1.15);
}

.corp-videos-flex .artist-video-thumb-card {
    border-radius: 16px;
    border: 2.5px solid #ffffff;
}

.corp-videos-flex .artist-video-thumb-card.active {
    border-color: #7a1820 !important;
    box-shadow: 0 0 16px rgba(122, 24, 32, 0.45) !important;
}

/* ==========================================================================
   11. FREQUENTLY ASKED QUESTIONS (FAQ Accordion Section)
   ========================================================================== */
.corp-faq-section {
    width: 100%;
    background-color: #eaeaea;
    padding: 75px 0;
}

.corp-faq-container {
    max-width: 820px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.corp-faq-title {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #000000;
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
}

.corp-faq-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #555555;
    font-size: 0.9rem;
    line-height: 1.55;
    max-width: 620px;
    margin: 0 auto;
}

.corp-faq-item {
    background-color: #e5d1c5;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    border: none;
    transition: background-color 0.2s ease;
}

.corp-faq-button {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    outline: none !important;
    box-shadow: none !important;
}

.corp-faq-button:hover {
    color: #000000;
}

.faq-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: #000000;
    transition: transform 0.25s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.corp-faq-button:not(.collapsed) .faq-toggle-icon {
    transform: rotate(45deg);
}

.corp-faq-body {
    padding: 0 22px 18px 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #2a2a2a;
    background-color: #e5d1c5;
}

.corp-faq-more-btn {
    background-color: #ebba43;
    color: #111111 !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    display: inline-block;
    box-shadow: none;
    transition: all 0.2s ease;
    text-decoration: none;
}

.corp-faq-more-btn:hover {
    background-color: #dfad37;
    color: #000000 !important;
    box-shadow: none;
}

@media (max-width: 768px) {
    .corp-faq-section {
        padding: 50px 0;
    }
    .corp-faq-title {
        font-size: 1.65rem;
    }
    .corp-faq-subtitle {
        font-size: 0.85rem;
        padding: 0 10px;
    }
    .corp-faq-button {
        padding: 14px 18px;
        font-size: 0.92rem;
    }
    .corp-faq-body {
        padding: 0 18px 16px 18px;
        font-size: 0.88rem;
    }
}

/* ==========================================================================
   12. BRING SWARAAG TO YOUR NEXT CORPORATE EVENT (CTA BANNER SECTION)
   ========================================================================== */
.corp-cta-section {
    width: 100%;
    background-color: #ffffff;
    padding: 70px 0;
}

.corp-cta-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 50px 60px;
    background-image: linear-gradient(90deg, rgba(50, 6, 12, 0.92) 0%, rgba(50, 6, 12, 0.82) 100%), url('../images/About_us_Hero_banner.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.corp-cta-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.corp-cta-text {
    flex: 1;
    max-width: 720px;
}

.corp-cta-btn-wrap {
    flex-shrink: 0;
}

.corp-cta-title {
    font-family: 'Montserrat', sans-serif;
    color: #e8ba52;
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    line-height: 1.25;
    margin-bottom: 12px;
}

.corp-cta-desc {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 680px;
    margin-bottom: 0;
}

.corp-cta-btn {
    background-color: #e8ba52;
    color: #4a0a10 !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 14px 34px;
    border-radius: 12px;
    border: none;
    display: inline-block;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.corp-cta-btn:hover {
    background-color: #d8a63a;
    color: #380509 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

@media (max-width: 991.98px) {
    .corp-cta-banner {
        padding: 35px 30px;
    }
    .corp-cta-flex {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .corp-cta-title {
        font-size: 1.7rem;
    }
    .corp-cta-desc {
        font-size: 0.88rem;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .corp-cta-banner {
        padding: 28px 20px;
        border-radius: 16px;
    }
    .corp-cta-title {
        font-size: 1.45rem;
    }
    .corp-cta-btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 0.98rem;
    }
}

/* ==========================================================================
   DESTINATION WEDDINGS PAGE STYLES
   ========================================================================== */
.destination-wedding-wrapper {
    background-color: #fbf8f3;
}

.wedding-hero-section {
    padding: 213px 0 619px 0;
    background-color: #fcfaf6;
    background-image: url('../images/wedding/flavours_destination_hero_bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.wedding-hero-subtag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 14px;
}

.wedding-hero-pill-wrap {
    display: inline-block;
}

.wedding-hero-pill {
    background-color: #6b141e;
    color: #ffffff;
    font-family: 'Georgia', 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 4px 14px rgba(107, 20, 30, 0.25);
}



.wedding-hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: #7a1820;
    letter-spacing: -0.5px;
    line-height: 1.05;
    margin-top: 15px;
    margin-bottom: 0;
}

.wedding-hero-cards-section {
    background-color: transparent;
    padding: 0 0 50px 0;
    margin-top: -595px;
    position: relative;
    z-index: 10;
}

.wedding-hero-cards-row {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.wedding-hero-card {
    height: 651px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wedding-hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.wedding-hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Destination Wedding Intro & Categories Section */
.wedding-categories-section {
    background-color: #ffffff;
    padding: 70px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.wedding-side-ornament {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    max-height: 85%;
    z-index: 1;
    pointer-events: none;
}

.ornament-left {
    left: 0;
}

.ornament-right {
    right: 0;
    transform: translateY(-50%) scaleX(-1);
}

.wedding-cat-intro-wrap {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.wedding-cat-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #4a302e;
    margin-bottom: 20px;
    line-height: 1.4;
}

.wedding-cat-intro-p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: #444444;
    margin-bottom: 14px;
}

.wedding-pastel-cards-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.wedding-pastel-card {
    border-radius: 18px;
    padding: 24px 20px;
    min-height: 250px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.pastel-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #3b2c2a;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.pastel-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    line-height: 1.55;
    color: #444444;
    margin-bottom: 0;
}

/* Background Colors matching reference image */
.card-sangeet {
    background-color: #e5b2b0;
}

.card-ceremony {
    background-color: #f9d8b7;
}

.card-reception {
    background-color: #d6ebf8;
}

.card-cocktail {
    background-color: #9bbaa7;
}

.card-sufi {
    background-color: #c6d0e7;
}

.card-welcome {
    background-color: #d8c8da;
}

/* Why Couples Choose Swaraag Video Banner */
.wedding-why-section {
    background-color: #59494c;
    padding: 60px 0;
}

.wedding-why-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.8px;
}

.wedding-video-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    background-color: #000000;
}

.wedding-video-container iframe {
    border: none;
    width: 100%;
    height: 100%;
}

/* Our Journey in Numbers Section */
.wedding-numbers-section {
    background-color: #fcfaf6;
    padding: 60px 0 90px 0;
}

.wedding-numbers-banner-card {
    background-color: #ffffff;
    background-image: url('../images/wedding/flavours_destination_numbers_bg.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid #8b2635;
    border-radius: 24px;
    padding: 98px 35px 30px 35px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.wedding-numbers-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #6b1d26;
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

.wedding-numbers-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #555555;
    max-width: 650px;
    margin: -15px auto 35px auto;
    line-height: 1.5;
}

.wedding-numbers-content-row {
    position: relative;
    z-index: 2;
}

.wedding-num-val {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: #d12b32;
    line-height: 1;
    margin-bottom: 6px;
}

.wedding-num-lbl {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #b8242a;
    margin-bottom: 0;
}

.wedding-numbers-center-img-wrap {
    display: inline-block;
    position: relative;
    margin-bottom: -70px;
    z-index: 10;
}

.wedding-numbers-center-img {
    max-height: 400px;
    width: auto;
    border-radius: 22px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
    object-fit: cover;
}

/* Swaraag at Weddings Gallery Section */
.wedding-gallery-section {
    background-color: #ffffff;
    padding: 60px 0 80px 0;
    width: 100%;
    overflow: hidden;
}

.wedding-gallery-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #6b1d26;
    margin-bottom: 40px;
    letter-spacing: 0.2px;
}

/* Section 7: Experience Swaraag Live Video Slider */
.wedding-experience-section {
    background-color: #ebdcd5;
    padding: 70px 180px 85px 180px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.wedding-exp-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #6b1d26;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.wedding-exp-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #444444;
    max-width: 780px;
    margin: 0 auto 40px auto;
}

.wedding-exp-slider-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 5;
}

.wedding-exp-arrow {
    color: #7a1820 !important;
    font-size: 3rem !important;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

.wedding-exp-arrow:hover {
    color: #9e1d27 !important;
    transform: scale(1.15);
}

.wedding-exp-videos-flex {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px;
    max-width: 1050px;
    margin: 0 auto;
    scrollbar-width: none;
}

.wedding-exp-videos-flex::-webkit-scrollbar {
    display: none;
}

.wedding-video-thumb-card {
    position: relative;
    width: 195px;
    height: 350px;
    flex-shrink: 0;
    border-radius: 18px;
    background-color: #c4bebb;
    border: 3.5px solid #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.wedding-video-thumb-card.active {
    background-color: #6a5957;
    border-color: #d15662 !important;
    box-shadow: 0 0 18px rgba(209, 86, 98, 0.4);
}

.wedding-video-thumb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.wedding-video-inner {
    width: 44px;
    height: 34px;
    border: 2px solid #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.85rem;
}

.wedding-video-thumb-card.active .wedding-video-inner {
    border-color: #ffffff;
}

/* Section 8: Loved by Couples & Celebrations (Testimonials) */
.wedding-testimonials-section {
    background-color: #f5ebe4;
    padding: 70px 0 110px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.wedding-testi-bg-img {
    position: absolute;
    bottom: 0;
    max-height: 240px;
    width: auto;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
}

.testi-bg-left {
    left: 0;
}

.testi-bg-right {
    right: 0;
    transform: scaleX(-1);
}

.wedding-testi-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #6b1d26;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.wedding-testi-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #444444;
    max-width: 780px;
    margin: 0 auto 45px auto;
}

.wedding-testi-row {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.wedding-testi-card {
    background-color: #844b4b;
    border-radius: 20px;
    padding: 20px 20px 22px 20px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 5;
}

.wedding-testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.wedding-testi-media-box {
    background-color: #c9c9c9;
    height: 195px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wedding-testi-play-icon {
    width: 46px;
    height: 36px;
    border: 2px solid #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem;
}

.wedding-testi-profile-wrap {
    margin-top: -24px;
    position: relative;
    z-index: 3;
    padding-left: 10px;
}

.wedding-testi-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #c9c9c9;
    border: 3px solid #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.wedding-testi-info {
    padding-top: 26px;
}

.wedding-testi-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
    line-height: 1.2;
}

.wedding-testi-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #f0d8d8;
    margin-bottom: 0;
    line-height: 1.3;
}

.wedding-video-banner-card {
    height: 380px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('../images/About_us_Hero_banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.wedding-video-banner-card:hover {
    transform: scale(1.01);
}

.wedding-video-play-btn {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #731b26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    padding-left: 5px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.wedding-video-banner-card:hover .wedding-video-play-btn {
    background-color: #eba834;
    color: #000000;
    transform: scale(1.1);
}

/* Stats Section */
.wedding-stats-section {
    background-color: #f7ede8;
    padding: 60px 0;
}

.wedding-stats-banner {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 45px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.wedding-stats-title {
    font-family: 'Cinzel', serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #61141a;
}

.wedding-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #731b26;
    line-height: 1.1;
}

.wedding-stat-lbl {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555555;
    margin-top: 4px;
}

.wedding-stat-singer-card {
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    max-width: 240px;
}

.wedding-stat-singer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Explore More Wedding Experiences Section */
.wedding-explore-section {
    background-color: #fbf8f3;
}

.wedding-explore-card {
    height: 190px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 22px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.wedding-explore-card:hover {
    transform: translateY(-4px);
}

.wedding-explore-title {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.wedding-faq-corner-bg {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 220px;
    height: auto;
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
    transform: scaleX(-1);
}

/* ==========================================================================
   EXPLORE MORE WEDDING EXPERIENCES & SOUNDTRACK BANNER
   ========================================================================== */
.wedding-explore-exp-section {
    background-color: #ffffff !important;
    padding: 75px 0 85px 0;
    position: relative;
}

.wedding-exp-side-bg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 92%;
    max-height: 560px;
    z-index: 1;
    pointer-events: none;
}

.wedding-exp-side-bg.side-left {
    left: 0;
}

.wedding-exp-side-bg.side-right {
    right: 0;
    transform: translateY(-50%) scaleX(-1);
}

.wedding-explore-exp-title {
    font-family: 'Montserrat', sans-serif;
    color: #844b4b;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.wedding-exp-card {
    background: linear-gradient(135deg, #5c5332 0%, #3e371f 100%);
    border: 2.5px solid #c8a356;
    border-radius: 20px;
    height: 195px;
    display: flex;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.wedding-exp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.wedding-exp-card-content {
    flex: 1;
    padding: 22px 14px 22px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wedding-exp-card-title {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

.wedding-exp-card-desc {
    font-family: 'Montserrat', sans-serif;
    color: #e5ded0;
    font-size: 0.72rem;
    line-height: 1.4;
    margin-bottom: 12px;
}

.wedding-exp-card-more {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.wedding-exp-card-img {
    width: 44%;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.wedding-exp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Let's Create Your Wedding Soundtrack Banner */
.wedding-soundtrack-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 45px 113px 45px 89px;
    margin: 0 77px;
    background-image: url('../images/wedding/flavours_destination_book_now_bg.png');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 3px solid #731b26;
}

.wedding-soundtrack-title {
    font-family: 'Montserrat', sans-serif;
    color: #731b26;
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
    line-height: 1.25;
}

.wedding-soundtrack-desc {
    font-family: 'Montserrat', sans-serif;
    color: #4a4a4a;
    font-size: 0.88rem;
    line-height: 1.55;
    max-width: 620px;
    margin-bottom: 0;
}

.wedding-soundtrack-btn {
    background-color: #731b26;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 14px 34px;
    border-radius: 12px;
    border: none;
    display: inline-block;
    box-shadow: 0 4px 14px rgba(115, 27, 38, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.wedding-soundtrack-btn:hover {
    background-color: #59131d;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(115, 27, 38, 0.5);
}

@media (max-width: 991.98px) {
    .wedding-soundtrack-banner {
        padding: 35px 30px;
        margin: 0 auto;
        background-size: cover;
    }
    .wedding-soundtrack-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 575.98px) {
    .wedding-soundtrack-banner {
        padding: 25px 20px;
    }
    .wedding-soundtrack-title {
        font-size: 1.35rem;
    }
    .wedding-soundtrack-btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* ======================================================================
   SUFI NIGHT PAGE - SECTION 1: HERO & THREE CARDS
   ====================================================================== */
.sufi-night-wrapper {
    background-color: #fbf8f3;
}

.sufi-hero-section {
    padding: 261px 0 480px 0;
    background-color: #fcfaf6;
    background-image: url('../images/sufi%20night/flavours_sufi_hero_bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.sufi-hero-subtag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 14px;
}

.sufi-hero-pill-wrap {
    display: inline-block;
}

.sufi-hero-pill {
    background-color: #1c2541;
    color: #ffffff;
    font-family: 'Georgia', 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 10px 32px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 4px 14px rgba(28, 37, 65, 0.25);
}

.sufi-hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4.8rem;
    font-weight: 800;
    color: #1c2541;
    letter-spacing: -0.5px;
    line-height: 1.05;
    margin-top: 15px;
    margin-bottom: 0;
}

.sufi-hero-cards-section {
    background-color: transparent;
    padding: 0 0 50px 0;
    margin-top: -500px;
    position: relative;
    z-index: 10;
}

.sufi-hero-cards-row {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.sufi-hero-card {
    height: 530px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sufi-hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.sufi-hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ======================================================================
   SUFI NIGHT PAGE - SECTION 2: SUFI MUSIC FOR EVERY OCCASION
   ====================================================================== */
.sufi-occasion-section {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.sufi-occasion-intro-wrap {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sufi-occasion-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: #4a302e;
    letter-spacing: 0.2px;
}

.sufi-occasion-intro-p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #444444;
    margin-bottom: 16px;
}

.sufi-pastel-cards-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.sufi-pastel-card {
    border-radius: 20px;
    padding: 28px 24px;
    min-height: 240px;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sufi-pastel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.sufi-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #3b2c2a;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sufi-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    line-height: 1.55;
    color: #444444;
    margin-bottom: 0;
}

/* Color Palette matching reference image */
.sufi-card-sufi-night {
    background-color: #e8dfd5;
}

.sufi-card-weddings {
    background-color: #fcdcc8;
}

.sufi-card-corporate {
    background-color: #d8effa;
}

.sufi-card-cultural {
    background-color: #d5edf8;
}

.sufi-card-private {
    background-color: #e5daf7;
}

.sufi-card-concerts {
    background-color: #cef3e6;
}

/* ======================================================================
   SUFI NIGHT PAGE - SECTION 3: WHY EXPERIENCE SUFI WITH SWARAAG (VIDEO)
   ====================================================================== */
.sufi-why-section {
    background-color: #59494c;
    padding: 65px 0 75px 0;
}

.sufi-why-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.1px;
}

.sufi-video-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    background-color: #000000;
}

.sufi-video-container iframe {
    border: none;
    width: 100%;
    height: 100%;
}

/* ======================================================================
   SUFI NIGHT PAGE - SECTION 4: OUR JOURNEY IN NUMBERS
   ====================================================================== */
.sufi-numbers-section {
    padding: 70px 0 90px 0;
    position: relative;
}

.sufi-numbers-banner-card {
    background: url('../images/sufi night/flavours_sufi_numbers_bg.png') no-repeat center center;
    background-size: cover;
    border-radius: 20px;
    /* border: 2.5px solid #a8272a; */
      outline: 2.5px solid #a8272a; 
    padding: 107px 30px 40px 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sufi-numbers-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #992628;
    margin-bottom: 35px;
    letter-spacing: 0.2px;
}

.sufi-num-val {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #e03336;
    margin-bottom: 4px;
    line-height: 1.1;
}

.sufi-num-lbl {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #d62d30;
    margin-bottom: 0;
    letter-spacing: 0.2px;
}

.sufi-numbers-center-img-wrap {
    max-width: 270px;
    margin: 0 auto -65px auto;
    position: relative;
    z-index: 2;
}

.sufi-numbers-center-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    display: block;
}

/* ======================================================================
   SUFI NIGHT PAGE - SECTION 5: SUFI NIGHTS WITH SWARAAG GALLERY (FULL WIDTH)
   ====================================================================== */
.sufi-gallery-section {
    background-color: #ffffff;
    padding: 60px 0 0 0;
    width: 100%;
    overflow: hidden;
}

.sufi-gallery-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #992628;
    margin-bottom: 35px;
    letter-spacing: 0.2px;
}

.sufi-gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 170px;
    gap: 3px;
    width: 100%;
    background-color: #ffffff;
}

.sufi-gallery-slot {
    background-color: #d2d0d0;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.sufi-gallery-slot.slot-1 {
    background-color: #59494c;
}

.sufi-gallery-slot:hover {
    filter: brightness(1.08);
}

.sufi-gallery-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ======================================================================
   SUFI NIGHT PAGE - SECTION 6: EXPERIENCE THE SUFI SOUL OF SWARAAG (SLIDER)
   ====================================================================== */
.sufi-experience-section {
    background-color: #ebdcd5;
    padding: 70px 0 85px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.sufi-side-ornament {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    height: auto;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
}

.sufi-side-ornament.ornament-left {
    left: 0;
}

.sufi-side-ornament.ornament-right {
    right: 0;
    transform: translateY(-50%) scaleX(-1);
}

.sufi-exp-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #992628;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.sufi-exp-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a3a37;
    max-width: 750px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.sufi-exp-slider-row {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.sufi-exp-videos-flex {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px;
    width: 100%;
    scrollbar-width: none;
}

.sufi-exp-videos-flex::-webkit-scrollbar {
    display: none;
}

.sufi-video-thumb-card {
    flex: 0 0 190px;
    height: 340px;
    border-radius: 18px;
    position: relative;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid #ffffff;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.sufi-video-thumb-card.active,
.sufi-video-thumb-card:hover {
    transform: translateY(-5px);
    border-color: #a8272a;
    box-shadow: 0 12px 28px rgba(168, 39, 42, 0.3);
}

.sufi-video-thumb-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.3s ease;
}

.sufi-video-thumb-card:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

.sufi-video-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #a8272a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    padding-left: 3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

.sufi-video-thumb-card:hover .sufi-video-inner {
    transform: translate(-50%, -50%) scale(1.12);
    background: #a8272a;
    color: #ffffff;
}

.sufi-exp-arrow {
    background: transparent;
    border: none;
    color: #992628;
    font-size: 2.2rem;
    cursor: pointer;
    padding: 10px;
    z-index: 5;
    transition: transform 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.sufi-exp-arrow:hover {
    color: #e03336;
    transform: scale(1.15);
}

/* ======================================================================
   SUFI NIGHT PAGE - SECTION 7: LOVED BY COUPLES & CELEBRATIONS (TESTIMONIALS)
   ====================================================================== */
.sufi-testimonials-section {
    background-color: #f7f2ed;
    padding: 70px 0 95px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.sufi-testi-bg-img {
    position: absolute;
    bottom: 0;
    width: 250px;
    height: auto;
    pointer-events: none;
    z-index: 1;
    opacity: 0.9;
}

.sufi-testi-bg-img.testi-bg-left {
    left: 0;
}

.sufi-testi-bg-img.testi-bg-right {
    right: 0;
    transform: scaleX(-1);
}

.sufi-testi-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #992628;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.sufi-testi-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a3a37;
    max-width: 780px;
    margin: 0 auto 45px auto;
    line-height: 1.6;
}

.sufi-testi-card {
    background-color: #732b33;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sufi-testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(115, 43, 51, 0.35);
}

.sufi-testi-media-box {
    width: 100%;
    height: 195px;
    background-color: #d0cece;
    border-radius: 14px;
    border: 3px solid #ffffff;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.sufi-testi-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #732b33;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    padding-left: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, background 0.3s ease;
}

.sufi-testi-media-box:hover .sufi-testi-play-icon {
    transform: translate(-50%, -50%) scale(1.12);
    background: #a8272a;
    color: #ffffff;
}

.sufi-testi-profile-wrap {
    margin-top: 18px;
}

.sufi-testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #d0cece;
    border: 2px solid #ffffff;
    flex-shrink: 0;
}

.sufi-testi-info {
    margin-left: 12px;
}

.sufi-testi-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.sufi-testi-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* ======================================================================
   SUFI NIGHT PAGE - SECTION 8: FREQUENTLY ASKED QUESTIONS
   ====================================================================== */
.sufi-faq-section {
    background-color: #f8f5f0;
    padding: 60px 0 80px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.sufi-faq-container {
    max-width: 880px;
}

.sufi-faq-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.sufi-faq-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: #555555;
    max-width: 720px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
}

.sufi-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sufi-faq-item {
    background-color: #e8dcd5;
    border-radius: 12px;
    overflow: hidden;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.sufi-faq-item:hover {
    background-color: #e2d4cb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.sufi-faq-button {
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: #3b2c2a;
    text-align: left;
    cursor: pointer;
}

.sufi-faq-button:focus {
    outline: none;
}

.sufi-faq-button .faq-toggle-icon {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3b2c2a;
    transition: transform 0.3s ease;
    margin-left: 15px;
    line-height: 1;
}

.sufi-faq-button:not(.collapsed) .faq-toggle-icon {
    transform: rotate(45deg);
}

.sufi-faq-body {
    padding: 0 24px 20px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    line-height: 1.65;
    color: #4a3a37;
}

.sufi-faq-more-btn {
    display: inline-block;
    background-color: #e5a823;
    color: #1a1a1a !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 11px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(229, 168, 35, 0.3);
}

.sufi-faq-more-btn:hover {
    background-color: #d49a1d;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(229, 168, 35, 0.45);
}

/* 9. Let's Create Your Sufi Experience CTA Banner (Matching destination-wedding.php design) */
.sufi-cta-section {
    background-color: #ffffff;
    padding: 50px 0;
}

.sufi-cta-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 45px 113px 45px 89px;
    margin: 0 77px;
    background-image: url('../images/wedding/flavours_destination_book_now_bg.png');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 3px solid #731b26;
}

.sufi-cta-title {
    font-family: 'Montserrat', sans-serif;
    color: #731b26;
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
    line-height: 1.25;
}

.sufi-cta-desc {
    font-family: 'Montserrat', sans-serif;
    color: #4a4a4a;
    font-size: 0.88rem;
    line-height: 1.55;
    max-width: 620px;
    margin-bottom: 0;
}

.sufi-cta-btn {
    background-color: #731b26;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 14px 34px;
    border-radius: 12px;
    border: none;
    display: inline-block;
    box-shadow: 0 4px 14px rgba(115, 27, 38, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.sufi-cta-btn:hover {
    background-color: #59131d;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(115, 27, 38, 0.5);
}

/* ======================================================================
   CONTACT US PAGE STYLES (Exact Match to Reference Mockup)
   ====================================================================== */
.contact-page-wrapper {
    background-color: #ede7de;
    min-height: 100vh;
    padding-bottom: 60px;
}

.contact-section {
    padding: 60px 0 80px 0;
}

/* Header Titles */
.contact-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #731b26;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.contact-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 16px;
}

.contact-header-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: #4a4a4a;
    max-width: 680px;
    line-height: 1.55;
    margin-bottom: 0;
}

/* Left Column: Form Card */
.contact-form-card {
    background-color: #ffffff;
    border-radius: 22px;
    padding: 40px 36px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.contact-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.contact-card-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: #777777;
    margin-bottom: 28px;
}

.contact-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    color: #222222;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.contact-input {
    background-color: #f7f4ef;
    border: 1px solid #e7e2d8;
    border-radius: 12px;
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    color: #333333;
    transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-input::placeholder {
    color: #a0998e;
    font-size: 0.85rem;
}

.contact-input:focus {
    background-color: #ffffff;
    border-color: #731b26;
    box-shadow: 0 0 0 3px rgba(115, 27, 38, 0.12);
    outline: none;
}

.contact-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23731b26' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.contact-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    background-color: #731b26;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    padding: 12px 38px;
    border-radius: 30px;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 14px rgba(115, 27, 38, 0.3);
}

.contact-submit-btn:hover {
    background-color: #59131d;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(115, 27, 38, 0.45);
}

/* Right Column: 5 Cards Stack */
.contact-info-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.035);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.contact-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f7eaec;
    color: #731b26;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.contact-info-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 6px;
}

.contact-info-p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #555555;
    line-height: 1.5;
}

.contact-social-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid #731b26;
    color: #731b26;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-circle:hover {
    background-color: #731b26;
    color: #ffffff;
    transform: scale(1.1);
}

.contact-container {
    max-width: 1140px;
    margin-top: 54px;
}

/* ==========================================================================
   VIDEOS PAGE - SECTION 1: HERO SHOWCASE BANNER
   ========================================================================== */
.videos-page-wrapper {
    background-color: #ffffff;
    overflow-x: hidden;
}

.video-showcase-hero {
    position: relative;
    width: 100%;
    height: 606px;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 50px;
    margin-bottom: 62px;
}

.showcase-grid-bg {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 0 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.showcase-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.showcase-tile {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    flex-shrink: 0;
}

.tile-sage {
    background-color: #a4c2b5;
}

.tile-img {
    position: relative;
    background-color: #111111;
    border-radius: 28px;
}

.tile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(115%);
    display: block;
    border-radius: 28px;
}

/* Height Variations matching reference image */
.tile-cut-top { height: 110px; margin-top: -30px; }
.tile-h-xs { height: 85px; }
.tile-h-sm { height: 110px; }
.tile-h-md { height: 160px; }
.tile-h-lg { height: 220px; }
.tile-h-xl { height: 275px; }
.tile-h-xxl { height: 330px; }

.tile-h-photo { height: 250px; }
.tile-h-photo-lg { height: 290px; }

/* Center Content */
.video-showcase-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
    margin-bottom: 30px;
}


.video-showcase-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.4rem;
    font-weight: 900;
    color: #000000;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.video-showcase-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333333;
    letter-spacing: 0.5px;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 600px;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .video-showcase-hero {
        height: 480px;
        padding-bottom: 30px;
    }
    .video-showcase-title {
        font-size: 2.5rem;
    }
    .video-showcase-subtitle {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .video-showcase-hero {
        height: 400px;
    }
    .video-showcase-title {
        font-size: 1.8rem;
    }
    .video-showcase-subtitle {
        font-size: 0.7rem;
    }
}

/* ==========================================================================
   VIDEOS PAGE - SECTION 2: CATEGORY TABS & VIDEO GALLERY GRID
   ========================================================================== */
.video-gallery-section {
    background-color: #ebe7dc;
    padding-top: 45px;
    padding-bottom: 75px;
    width: 100%;
}

.video-gallery-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 55px;
    padding-right: 55px;
}

@media (max-width: 768px) {
    .video-gallery-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.video-category-tabs-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}

.tabs-scroll-container {
    position: relative;
    display: flex;
    align-items: center;
}

.video-category-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 4px;
    width: 100%;
}

.video-category-nav::-webkit-scrollbar {
    display: none;
}

.tabs-scroll-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #c49a45;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(196, 154, 69, 0.35);
}

.tabs-scroll-arrow.arrow-left {
    left: -42px;
}

.tabs-scroll-arrow.arrow-right {
    right: -42px;
}

.tabs-scroll-arrow:hover {
    background-color: #927027;
    color: #ffffff;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.tabs-gold-accent-line {
    width: 100%;
    height: 2px;
    background-color: #c49a45;
    margin-top: -2px;
    position: relative;
    z-index: 1;
}

.video-category-nav .nav-link {
    background-color: #ffffff;
    color: #111111;
    border: 1.8px solid #c49a45;
    border-radius: 8px 8px 0 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 10px 24px;
    transition: all 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.video-category-nav .nav-link:hover,
.video-category-nav .nav-link.active {
    background-color: #c49a45;
    color: #ffffff !important;
    border-color: #c49a45;
    box-shadow: 0 4px 12px rgba(196, 154, 69, 0.25);
}

/* Video Cards Grid */
.video-card-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background-color: #111111;
    min-height: 225px;
    height: 225px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.video-card-item.active-gold-border {
    border-color: #c49a45;
    box-shadow: 0 8px 22px rgba(196, 154, 69, 0.25);
}

.video-card-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.video-card-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
    transition: background 0.3s ease;
}

.video-card-item:hover .video-card-thumb {
    transform: scale(1.06);
}

.video-card-item:hover .video-card-overlay-bg {
    background: rgba(0, 0, 0, 0.1);
}

.video-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.video-play-icon {
    position: relative;
    z-index: 3;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid #c49a45;
    color: #c49a45;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.video-card-item:hover .video-play-icon {
    transform: scale(1.15);
    background-color: #c49a45;
    color: #ffffff;
}

.video-card-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    padding: 16px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0) 100%);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.btn-view-more-videos {
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #111111;
    padding: 12px 36px;
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: 30px;
}

.btn-view-more-videos:hover {
    color: #c49a45;
    transform: translateY(-2px);
}

/* ==========================================================================
   VIDEOS PAGE - SECTION 3: WEDDING REELS CAROUSEL GRID
   ========================================================================== */
.wedding-reels-section {
    background-color: #e4cc95;
    padding-top: 50px;
    padding-bottom: 0;
    width: 100%;
    position: relative;
    margin-bottom: 110px;
}

.wedding-reels-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 55px;
    padding-right: 55px;
}

.wedding-reels-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 8px;
}

.wedding-reels-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333333;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.45;
}

/* ==========================================================================
   WEDDING REELS EXACT SECTION (MATCHING REFERENCE media_1790164711084.png)
   ========================================================================== */
.wedding-reels-exact-section {
    background-color: #e5d5b7;
    padding: 55px 0 65px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.wedding-reels-heading-exact {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: #2b221a;
    margin-bottom: 8px;
    text-align: center;
}

.wedding-reels-subheading-exact {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #3e3227;
    max-width: 760px;
    margin: 0 auto 35px auto;
    text-align: center;
    line-height: 1.45;
}

.wedding-reels-outer-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 75px; /* Space for side chevrons */
}

.wedding-reels-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.wedding-reels-arrow-btn.arrow-left {
    left: 12px;
}

.wedding-reels-arrow-btn.arrow-right {
    right: 12px;
}

.wedding-reels-arrow-btn:hover {
    transform: translateY(-50%) scale(1.12);
}

.wedding-reels-arrow-btn svg path {
    transition: stroke 0.2s ease;
}

.wedding-reels-arrow-btn:hover svg path {
    stroke: #96742a;
}

.wedding-reels-grid-track-scroll {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    width: 100%;
}

.wedding-reels-grid-track-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.wedding-reels-5col-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    gap: 16px; /* Same row and column gap */
    min-width: 100%;
}

.reel-card-exact {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 14px;
    overflow: hidden;
    background-color: #a89f99;
    border: 2.5px solid #ffffff;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.reel-card-exact.active-highlight {
    background-color: #6d5b59;
    border-color: #ad5c66; /* Rose/red highlight border matching reference image */
    box-shadow: 0 6px 18px rgba(173, 92, 102, 0.35);
}

.reel-card-exact:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.reel-card-exact img.reel-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-overlay-shadow {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    transition: background 0.25s ease;
}

.reel-card-exact:hover .reel-overlay-shadow {
    background: rgba(0, 0, 0, 0.05);
}

.reel-play-icon-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
    transition: transform 0.25s ease, color 0.25s ease;
}

.reel-card-exact:hover .reel-play-icon-svg {
    transform: translate(-50%, -50%) scale(1.15);
    color: #e5d5b7;
}

@media (max-width: 1199px) {
    .video-showcase-hero {
        height: 520px;
        padding-bottom: 40px;
    }
    .video-showcase-title {
        font-size: 2.8rem;
    }
    .video-showcase-subtitle {
        font-size: 0.88rem;
    }
    .wedding-reels-5col-grid {
        grid-template-columns: repeat(5, minmax(140px, 1fr));
        gap: 12px;
    }
    .wedding-reels-outer-container {
        padding: 0 55px;
    }
}

@media (max-width: 991px) {
    .video-showcase-hero {
        height: 450px;
        padding-bottom: 35px;
        margin-bottom: 40px;
    }
    .showcase-column.col-1,
    .showcase-column.col-2,
    .showcase-column.col-5,
    .showcase-column.col-10,
    .showcase-column.col-11 {
        display: none !important; /* Hide 5 plain columns on tablet so photo columns expand clearly */
    }
    .showcase-grid-bg {
        gap: 12px;
        padding: 0 18px;
    }
    .showcase-column {
        gap: 12px;
    }
    .showcase-tile,
    .tile-img,
    .tile-img img {
        border-radius: 22px;
    }
    .video-showcase-title {
        font-size: 2.3rem;
    }
    .video-showcase-subtitle {
        font-size: 0.82rem;
    }
    .video-gallery-container {
        padding-left: 35px;
        padding-right: 35px;
    }
    .tabs-scroll-arrow.arrow-left { left: -26px; }
    .tabs-scroll-arrow.arrow-right { right: -26px; }
    .wedding-reels-5col-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    .wedding-reels-outer-container {
        padding: 0 45px;
    }
}

@media (max-width: 767px) {
    .video-showcase-hero {
        height: 380px;
        padding-bottom: 25px;
        margin-bottom: 30px;
    }
    .showcase-column.col-1,
    .showcase-column.col-2,
    .showcase-column.col-4,
    .showcase-column.col-6,
    .showcase-column.col-8,
    .showcase-column.col-10,
    .showcase-column.col-11 {
        display: none !important; /* Keep only key photo columns on mobile for optimal width */
    }
    .showcase-grid-bg {
        gap: 10px;
        padding: 0 15px;
    }
    .showcase-column {
        gap: 10px;
    }
    .showcase-tile,
    .tile-img,
    .tile-img img {
        border-radius: 18px;
    }
    .video-showcase-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    .video-showcase-subtitle {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    .video-gallery-section {
        padding-top: 35px;
        padding-bottom: 50px;
    }
    .video-gallery-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .video-category-nav .nav-link {
        font-size: 0.82rem;
        padding: 8px 16px;
    }
    .tabs-scroll-arrow.arrow-left { left: -10px; }
    .tabs-scroll-arrow.arrow-right { right: -10px; }
    .video-card-item {
        height: 200px;
        min-height: 200px;
    }
    .video-play-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    .video-card-title-overlay {
        font-size: 0.88rem;
        padding: 12px 15px;
    }
    .wedding-reels-exact-section {
        padding: 40px 0 50px 0;
    }
    .wedding-reels-heading-exact {
        font-size: 1.45rem;
    }
    .wedding-reels-subheading-exact {
        font-size: 0.78rem;
        padding: 0 15px;
        margin-bottom: 25px;
    }
    .wedding-reels-outer-container {
        padding: 0 40px;
    }
    .wedding-reels-5col-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .wedding-reels-arrow-btn {
        padding: 2px;
    }
    .wedding-reels-arrow-btn.arrow-left { left: 5px; }
    .wedding-reels-arrow-btn.arrow-right { right: 5px; }
    .wedding-reels-arrow-btn svg {
        width: 26px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .video-showcase-hero {
        height: 340px;
        padding-bottom: 20px;
    }
    .showcase-column.col-1,
    .showcase-column.col-2,
    .showcase-column.col-4,
    .showcase-column.col-5,
    .showcase-column.col-6,
    .showcase-column.col-8,
    .showcase-column.col-10,
    .showcase-column.col-11 {
        display: none !important; /* Show 3 clean photo columns on small mobile */
    }
    .showcase-grid-bg {
        gap: 8px;
        padding: 0 10px;
    }
    .showcase-tile,
    .tile-img,
    .tile-img img {
        border-radius: 14px;
    }
    .video-showcase-title {
        font-size: 1.5rem;
    }
    .video-showcase-subtitle {
        font-size: 0.7rem;
    }
    .video-category-nav .nav-link {
        font-size: 0.78rem;
        padding: 7px 12px;
    }
    .wedding-reels-outer-container {
        padding: 0 32px;
    }
    .wedding-reels-5col-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .reel-card-exact {
        border-radius: 12px;
    }
}
 