@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Open Sans", sans-serif;
}

:root {
    --gold: #D29752;
    --dark-bg: #0a0a0a;
    --light-bg: #F7F6F2;
    --card-bg-dark: rgba(255, 255, 255, 0.03);
    --card-bg-light: rgba(0, 0, 0, 0.02);
    --border-dark: rgba(255, 255, 255, 0.1);
    --border-light: rgba(0, 0, 0, 0.05);
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    --white: #ffffff;
    --light: #f8fbff;
    --soft: #eef5ff;
    --primary: #D29752;
    --secondary: #966D39;
    --text: #0d1b2a;
    --muted: #667085;
}

/* ===== NAVBAR ===== */
.navbar {
    /*    background: #bdb6b636;*/
    padding: 10px 0;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.sticky-top {
    z-index: 999;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-nav {
    margin-left: auto;
}

.nav-link {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #966D39 !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #966D39;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #000 !important;
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler-icon {
    filter: invert(1);

}

@media (max-width: 991px) {
    .navbar-collapse {
        /* background-color: #000; */
        padding: 15px;
        border-radius: 8px;
    }

    .nav-link {
        margin: 10px 0;

    }
}

/* ===== FOOTER ===== */
.footer {
    padding: 50px 0 20px;
}

.footer-title {
    color: #966E3A;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
}

.footer a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: #f5c518;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.social-icon {
    display: inline-block;
    margin: 0 10px;
    font-size: 18px;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #966D39;
    border-radius: 50%;
    transition: 0.3s;
}

.footer_icon11 {
    color: #fff !important;
    font-weight: 500;
}

.footer_icon11:hover {
    color: #000 !important;
    font-weight: 500;
}

.social-icon:hover {
    background: #f2f2f2;
    color: #000;
    transform: translateY(-3px);
}

.footer i {
    margin-right: 8px;
    color: #966D39;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 13px;
}

/* slider section  */


/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
    background: #F7F6F2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 60px;
}

/* =========================================================
   CONTENT
========================================================= */

.hero-logo-wrapper {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*.hero-logo {
    width: 100%;
    max-width: 520px;
    object-fit: contain;
}*/

/* =========================================================
   RIGHT TEXT
========================================================= */

.hero-text-wrapper {
    position: relative;
    z-index: 5;
    text-align: center;
}

.hero-top-text {
    font-size: 50px;
    line-height: 0.95;
    font-weight: 800;
    color: #D29752;
    margin-bottom: 35px;
    letter-spacing: -2px;
}

.hero-main-text {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 800;
    color: #111;
    margin: 0;
    letter-spacing: -2px;
}

/* =========================================================
   IMAGE TRAIL
========================================================= */

.image-trail {
    position: absolute;
    inset: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    z-index: 999;
}

.trail-img {
    position: absolute;
    width: 220px;
    height: auto;
    object-fit: cover;
    border-radius: 14px;
    opacity: 0;
    transform: scale(0.9);
    transition:
        transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1),
        opacity 0.35s ease;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

/* CONTENT */
.hero-logo-wrapper,
.hero-text-wrapper {
    position: relative;
    z-index: 2;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1400px) {

    .hero-top-text {
        font-size: 50px;
    }

    .hero-main-text {
        font-size: 50px;
    }
}

@media (max-width: 991px) {

    .hero-section {
        height: auto;
        padding: 100px 25px;
    }

    .hero-logo-wrapper {
        margin-bottom: 60px;
    }

    .hero-logo {
        max-width: 360px;
    }

    .hero-text-wrapper {
        text-align: center;
    }

    .hero-top-text {
        font-size: 48px;
        margin-bottom: 25px;
    }

    .hero-main-text {
        font-size: 52px;
    }
}

@media (max-width: 576px) {

    .hero-top-text {
        font-size: 38px;
    }

    .hero-main-text {
        font-size: 42px;
    }

    .trail-img {
        width: 140px;
    }
}

/* who we are section  */

.who-we-are-dark {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    /* min-height: 80vh; */
    display: flex;
    align-items: center;
}


.who-we-are-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 30%, rgba(245, 197, 24, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 197, 24, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    animation: gradientShift 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gradientShift {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(2%, 2%) rotate(1deg);
    }

    66% {
        transform: translate(-1%, 1%) rotate(-1deg);
    }
}


/* Vertical Text */
.bg-text-vertical {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: clamp(80px, 12vw, 140px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.025);
    letter-spacing: 20px;
    z-index: 1;
    white-space: nowrap;
    user-select: none;
    text-transform: uppercase;
}

/* Image Grid Styling */
.image-grid {
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

.main-image-wrapper {
    width: 85%;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.main-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    /*    background: linear-gradient(135deg, rgba(245, 197, 24, 0.1) 0%, transparent 50%);*/
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.main-image-wrapper:hover::before {
    opacity: 1;
}

.main-image-wrapper:hover {
    transform: translateZ(20px) rotateY(-2deg);
}

.img-main {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s ease;
    filter: brightness(0.75) contrast(1.15) saturate(0.9);
}

.main-image-wrapper:hover .img-main {
    transform: scale(1.08);
    filter: brightness(0.9) contrast(1.1) saturate(1);
}

/* Floating Image */
.floating-image-wrapper {
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 55%;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.floating-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    pointer-events: none;
}

.floating-image-wrapper:hover {
    transform: translateZ(30px) rotateY(3deg) rotateX(-2deg);
}

.img-sub {
    width: 100%;
    display: block;
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(0.8) contrast(1.1);
}

.floating-image-wrapper:hover .img-sub {
    transform: scale(1.1);
}

/* Decorative Elements */
.deco-line {
    position: absolute;
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(245, 197, 24, 0.3), transparent);
    left: -30px;
    top: 20%;
}

.deco-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #f5c518;
    border-radius: 50%;
    right: 15%;
    top: 10%;
    box-shadow: 0 0 20px rgba(245, 197, 24, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

/* Content Styling */
.content-wrapper {
    position: relative;
    z-index: 2;
}

.accent-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding: 8px 16px;
    background: #966D39;
    /*    border: 1px solid rgba(245, 197, 24, 0.15);*/
    border-radius: 100px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.accent-badge:hover {
    background: rgba(245, 197, 24, 0.15);
    border-color: rgba(245, 197, 24, 0.3);
    transform: translateX(5px);
}

.accent-badge .dot {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(245, 197, 24, 0.6);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(245, 197, 24, 0.6);
    }

    50% {
        box-shadow: 0 0 25px rgba(245, 197, 24, 0.9);
    }
}

.accent-badge .label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
}

.title-large {
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 35px;
    letter-spacing: -2px;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.5);
    position: relative;
    display: inline-block;
}

.text-outline::after {
    content: 'Experiences';
    position: absolute;
    left: 0;
    top: 0;
    color: #D29752;
    -webkit-text-stroke: 0;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.title-large:hover .text-outline::after {
    clip-path: inset(0 0 0 0);
}

.description-text {
    font-size: 18px;
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 90%;
    position: relative;
}

.description-text::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 10px;
    width: 3px;
    height: 40px;
    background: linear-gradient(to bottom, #f5c518, transparent);
    border-radius: 2px;
}

/* Feature Rows */
.feature-rows {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #fff;
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(245, 197, 24, 0.2);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-item .icon-box {
    font-size: 13px;
    font-weight: 800;
    color: #D29752;
    padding: 10px;
    background: rgba(245, 197, 24, 0.1);
    border-radius: 8px;
    min-width: 44px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover .icon-box {
    background: rgba(245, 197, 24, 0.2);
    transform: scale(1.1);
}

.feature-item h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
    transition: color 0.3s ease;
}

.feature-item:hover h5 {
    color: #D29752;
}

.feature-item p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

/* Magnetic Link Effect */
.cta-section {
    margin-top: 50px;
}

.magnetic-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.magnetic-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(150, 109, 57, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.magnetic-link:hover {
    color: #C47B35;
    border-color: rgba(150, 109, 57, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(150, 109, 57, 0.15);
}

.magnetic-link:hover::before {
    opacity: 1;
}

.magnetic-link .arrow-icon {
    font-size: 20px;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 1;
}

.magnetic-link:hover .arrow-icon {
    transform: translateX(8px);
}

/* Scroll Indicator */
.scroll-line {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(245, 197, 24, 0.5), transparent);
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5c518;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .who-we-are-dark {
        padding: 80px 0;
    }

    .main-image-wrapper {
        width: 100%;
        margin-bottom: 60px;
    }

    .floating-image-wrapper {
        width: 50%;
        bottom: -30px;
        right: -10px;
    }

    .bg-text-vertical {
        display: none;
    }

    .description-text::before {
        left: -15px;
    }
}

/* our expertise section  */

.nx-expertise-kinetic {
    background: #F7F6F2;
    padding-top: 180px;
    padding-bottom: 50px;

    position: relative;
    overflow: hidden;
}

.nx-sticky-header {
    position: absolute;
    top: 60px;
    left: 50px;
    z-index: 10;
}

/* .nx-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #966D39;
    margin-top: 14px;
    max-width: 90%;
    font-weight: 400;
} */



.nx-main-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -5px;
    color: #1a1a1a;
    line-height: 0.8;
}

.nx-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px #966d39;
}



/* =========================================================
   EXPERTISE CARD
========================================================= */

.nx-expertise-card {
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
}

/* IMAGE */

.nx-expertise-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    /* object-position: center; */
    /* padding: 12px; */
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.5s ease;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.06);
}

/* HOVER */

.nx-expertise-card:hover .nx-expertise-img {

    transform: scale(1.1);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12);

    border-color: rgba(210, 151, 82, 0.35);
}



.nx-content {
    margin-top: 10px;
}

.nx-index {
    font-size: 20px;
    font-weight: 800;
    color: #966D39;
    display: block;
    margin-bottom: 5px;
}

.nx-label {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
}


/* Event Stories Section */
.event-stories-section {
    background-color: #fff;
    overflow: hidden;
    padding: 100px 0;
}

.editorial-heading {
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.9;
    color: #1a1a1a;

}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.filter-btn {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    color: #666;
}

.filter-btn.active {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover:not(.active) {
    background: #f8f8f8;
    transform: translateY(-2px);
    border-color: #1a1a1a;
    color: #1a1a1a;
}

/* Slider Customization */
.carousel-container {
    padding: 50px 0;
}

/* .owl-carousel .item {
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.3;
    transform: scale(0.85);
    filter: blur(2px);
}

.owl-carousel .center .item {
    opacity: 1;
    transform: scale(1.08);
    filter: blur(0);
    z-index: 2;
} */

.story-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 10/6;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    background: #f0f0f0;
}

.story-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.story-card:hover img {
    transform: scale(1.1);
}

.story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.owl-carousel .center .story-overlay {
    opacity: 1;
    transform: translateY(0);
}

.play-btn {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 22px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
}

.play-btn:hover {
    background: #fff;
    color: #000;
    transform: scale(1.15) rotate(10deg);
}

.story-info h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.story-info p {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* Owl Dots Customization */
.owl-theme .owl-dots {
    margin-top: 50px !important;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #e0e0e0;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 30px;
    background: #1a1a1a;
}

@media (max-width: 991px) {
    .story-overlay {
        padding: 40px;
    }

    .story-info h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .event-stories-section {
        padding: 60px 0;
    }

    .filter-controls {
        display: flex;
        overflow-x: auto;
        padding: 10px 20px;
        gap: 10px;
        justify-content: flex-start;
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    .filter-controls::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar for Chrome, Safari and Opera */
    }

    .filter-btn {
        flex: 0 0 auto;
        padding: 10px 20px;
        font-size: 12px;
    }

    .story-overlay {
        padding: 25px;
    }

    .story-info h3 {
        font-size: 1.4rem;
    }

    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
        margin-bottom: 15px;
    }

    .owl-carousel .center .item {
        transform: scale(1.02);
    }

    .event-stories-section .editorial-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .story-image-wrapper {
        aspect-ratio: 1/1;
        /* Square cards on very small screens for better thumb space */
    }

    .story-overlay {
        padding: 20px;
    }

    .story-info h3 {
        font-size: 1.2rem;
    }
}

/* LIGHTBOX */

.custom-lightbox {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;

    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.custom-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 85%;
    max-height: 85vh;
    border-radius: 20px;
    object-fit: contain;
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #000;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.lightbox-nav:hover {
    background: #fff;
    color: #000;
}

.lightbox-nav.prev {
    left: 40px;
}

.lightbox-nav.next {
    right: 40px;
}

@media(max-width:768px) {

    .lightbox-image {
        max-width: 95%;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .lightbox-close {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

}


/* Team Section - Header/Footer Theme */
.team-section {
    background-color: #000;
    background-image: radial-gradient(circle at 0% 0%, rgba(245, 197, 24, 0.05) 0%, transparent 50%);
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

/* Background Glowing Accent */
.team-section::before {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: rgba(245, 197, 24, 0.03);
    filter: blur(150px);
    border-radius: 50%;
    z-index: 0;
}

.team-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.team-heading .accent-text {
    color: #D29752;
    position: relative;
}

.team-desc {
    color: #888;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 45px;
/*    max-width: 90%;*/
}

/* Team Card */
.team-card {
    background: #111;
    border: 1px solid rgba(150, 109, 57, 0.05);
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    margin: 15px;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.team-card:hover {
    transform: translateY(-12px);
    border-color: rgba(150, 109, 57, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(245, 197, 24, 0.05);
}

.team-card:hover::before {
    opacity: 1;
}

.team-img-wrapper {
    width: 160px;
    height: 160px;
    margin: 0 auto 30px;
    position: relative;
    padding: 6px;
    border-radius: 50%;
    background: rgba(150, 109, 57, 0.05);
    border: 2px solid rgba(150, 109, 57, 0.15);
    box-shadow: 0 0 20px rgba(150, 109, 57, 0.1);
    transition: all 0.5s ease;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
    filter: none;
}

.team-card:hover .team-img-wrapper {
    background: rgba(150, 109, 57, 0.1);
    border-color: #D29752;
    box-shadow: 0 0 40px rgba(150, 109, 57, 0.4);
}

.team-img-wrapper1 {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    position: relative;
    padding: 6px;
    border-radius: 50%;
    background: rgba(150, 109, 57, 0.05);
    border: 2px solid rgba(150, 109, 57, 0.15);
    box-shadow: 0 0 20px rgba(150, 109, 57, 0.1);
    transition: all 0.5s ease;
}

.team-img-wrapper1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
    filter: none;
}

.team-card:hover .team-img-wrapper1 {
    background: rgba(150, 109, 57, 0.1);
    border-color: #D29752;
    box-shadow: 0 0 40px rgba(150, 109, 57, 0.4);
}

.team-card:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.team-info h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.team-info p {
    color: #D29752;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.team-contact {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.team-card:hover .team-contact {
    color: #fff;
}

.team-contact i {
    color: #D29752;
    font-size: 12px;
}

/* Slider Controls */
.team-slider-nav {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.nav-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.nav-btn:hover {
    background: #966D39;
    border-color: #966D39;
    color: #fff;
    transform: scale(1.1);
}

/* Dots Styling */
#teamCarousel .owl-dots {
    margin-top: 50px !important;
}

#teamCarousel .owl-dot span {
    width: 12px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 2px;
    transition: all 0.3s ease;
}

#teamCarousel .owl-dot.active span {
    width: 30px;
    background: #966D39 !important;
}



/* =========================================================
   IMPACT METRICS SECTION
========================================================= */

.impact-metrics-universe {
    background: linear-gradient(180deg, #0f0f0f 0%, #050505 100%);
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   METRICS HEADING
========================================= */

.metrics-heading-wrap {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.metrics-subtitle {
    display: inline-block;

    color: #966D39;

    font-size: 15px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 4px;

    margin-bottom: 18px;
}

.metrics-main-title {
    font-size: 56px;

    font-weight: 800;

    line-height: 1.1;

    color: #ffffff;

    letter-spacing: -2px;

    margin-bottom: 22px;
}

.metrics-main-title span {
    color: #D29752;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .metrics-heading-wrap {
        margin-bottom: 50px;
    }

    .metrics-main-title {
        font-size: 2rem;
    }


}

/* SUBTLE GLOW */

.stat-orb-aura {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
}

.stat-orb-aura.blue {
    background: #966D39;
    top: -10%;
    left: -5%;
}

.stat-orb-aura.gold {
    background: #D29752;
    bottom: -10%;
    right: -5%;
}

/* GRID */

.kinetic-metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* CARD */

.impact-metric-card {
    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 24px;

    padding: 50px 30px;

    text-align: center;

    transition: all 0.4s ease;

    position: relative;

    overflow: hidden;
}

/* GOLD TOP BORDER */

.impact-metric-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background: linear-gradient(90deg,
            transparent,
            #D29752,
            transparent);

    opacity: 0;
    transition: 0.4s ease;
}

.impact-metric-card:hover {
    transform: translateY(-10px);

    border-color: rgba(150, 109, 57, 0.4);

    background: rgba(255, 255, 255, 0.07);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.35);
}

.impact-metric-card:hover::before {
    opacity: 1;
}

/* ICON */

.impact-metric-card i {
    font-size: 32px;
    color: #D29752;
    margin-bottom: 24px;

    transition: all 0.4s ease;
}

.impact-metric-card:hover i {
    transform: scale(1.15) rotate(8deg);
}

/* NUMBER */

.metric-value-core {
    font-size: clamp(3rem, 6vw, 4.5rem);

    font-weight: 900;

    color: #ffffff;

    line-height: 1;

    margin-bottom: 14px;

    display: block;
}

.metric-value-core .plus {
    color: #D29752;
}

/* LABEL */

.velocity-metric-label {
    color: #aaaaaa;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .brand-showcase-light,
    .impact-metrics-universe {
        padding: 80px 0;
    }

    .brand-title-light {
        font-size: 2rem;
    }

    .brand-grid-light {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .brand-card-light {
        height: 110px;
        padding: 20px;
    }

    .brand-card-light img {
        max-height: 40px;
    }

    .impact-metric-card {
        padding: 40px 25px;
    }
}

/* =========================================================
  Trusted by brands section  
========================================================= */

.brand-showcase-light {
    position: relative;
    padding: 80px 0;
    background:
        linear-gradient(180deg,
            #fdfcf9 0%,
            #f7f6f2 50%,
            #ffffff 100%);
    overflow: hidden;
    z-index: 1;
}

/* =========================================================
   BACKGROUND GLOW
========================================================= */

.light-bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.light-bg-glow::before,
.light-bg-glow::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.light-bg-glow::before {
    width: 420px;
    height: 420px;
    background: rgba(210, 151, 82, 0.18);
    top: -120px;
    left: -120px;
}

.light-bg-glow::after {
    width: 380px;
    height: 380px;
    background: rgba(150, 109, 57, 0.12);
    bottom: -140px;
    right: -100px;
}

/* =========================================================
   HEADER
========================================================= */

.brand-header-light {
    max-width: 760px;
    margin: 0 auto 90px;
    position: relative;
    z-index: 2;
}

.brand-subtitle-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #966D39;
    margin-bottom: 22px;
    position: relative;
}

.brand-subtitle-light::before,
.brand-subtitle-light::after {
    content: "";
    width: 35px;
    height: 1px;
    background: rgba(150, 109, 57, 0.4);
}

.brand-title-light {
    font-size: 3rem;
    line-height: 0.95;
    font-weight: 800;
    color: #111;
    letter-spacing: -3px;
    margin-bottom: 25px;
}

.brand-title-light span {
    color: #D29752;
    position: relative;
}

.brand-title-light span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 12px;
    background: rgba(210, 151, 82, 0.18);
    z-index: -1;
    border-radius: 30px;
}

.brand-desc-light {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 680px;
    margin: auto;
}

/* =========================================================
   GRID
========================================================= */

.brand-grid-light {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

/* =========================================================
   CARD
========================================================= */

.brand-card-light {
    position: relative;
    height: 190px;
    border-radius: 30px;
    overflow: hidden;
    padding: 35px;
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.9),
            rgba(255, 255, 255, 0.65));

    border: 1px solid rgba(0, 0, 0, 0.05);

    backdrop-filter: blur(20px);

    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    display: flex;
    align-items: center;
    justify-content: center;
}

/* GOLD SHINE */
.brand-card-light::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -40%;
    width: 70%;
    height: 320%;
    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);

    transform: rotate(25deg);
    transition: 0.8s;
}

/* BORDER GLOW */
.brand-card-light::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 1px;
    background:
        linear-gradient(135deg,
            rgba(210, 151, 82, 0.5),
            transparent,
            rgba(150, 109, 57, 0.4));

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity: 0;
    transition: 0.5s;
}

/* =========================================================
   INNER
========================================================= */

.brand-card-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-card-light img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    transition: all 0.6s ease;
    /* filter: grayscale(100%) contrast(1); */
    /* opacity: 0.75; */
}

/* =========================================================
   HOVER EFFECTS
========================================================= */

.brand-card-light:hover {
    transform: translateY(-16px) scale(1.03);

    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.08),
        0 10px 25px rgba(210, 151, 82, 0.08);

    border-color: transparent;
}

.brand-card-light:hover::before {
    left: 140%;
}

.brand-card-light:hover::after {
    opacity: 1;
}

.brand-card-light:hover img {
    transform: scale(1.12);
    /* filter: grayscale(0%); */
    opacity: 1;
}

/* =========================================================
   FLOATING DECOR
========================================================= */

.brand-grid-light::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 900px;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(circle,
            rgba(210, 151, 82, 0.05),
            transparent 65%);

    z-index: -1;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .brand-showcase-light {
        padding: 90px 0;
    }

    .brand-header-light {
        margin-bottom: 70px;
    }

    .brand-grid-light {
        gap: 25px;
    }

    .brand-card-light {
        height: 170px;
    }

}

@media (max-width: 576px) {

    .brand-title-light {
        font-size: 42px;
        line-height: 1.1;
    }

    .brand-desc-light {
        font-size: 15px;
    }

    .brand-grid-light {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .brand-card-light {
        height: 140px;
        border-radius: 22px;
        padding: 20px;
    }

    .brand-card-light img {
        max-height: 55px;
    }

}

/* contact us page  */


/* --- Global Helpers --- */
.section-dark {
    background: var(--dark-bg);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.section-light {
    background: var(--light-bg);
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.text-outline-gold {
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
}

.accent-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.section-dark .accent-badge-premium {
    background: rgba(245, 197, 24, 0.08);
    border: 1px solid rgba(245, 197, 24, 0.15);
    color: var(--gold);
}

.section-light .accent-badge-premium {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

.title-huge {
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -4px;
    margin-bottom: 30px;
}

/* --- Noise Texture Overlay --- */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
}

/* --- Section: Info Cards (Light) --- */
.info-card-premium {
    background: #fff;
    border: 1px solid var(--border-light);
    padding: 50px 40px;
    border-radius: 24px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    animation: softFloat 6s infinite alternate ease-in-out;
}

@keyframes softFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.info-card-premium:nth-child(even) {
    animation-delay: 2s;
}

.info-card-premium:hover {
    transform: translateY(-20px) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
    animation-play-state: paused;
}

.info-card-premium i {
    width: 70px;
    height: 70px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 30px;
    transition: var(--transition);
}

.info-card-premium:hover i {
    background: #000000;
    color: #ffffff;
    transform: rotateY(360deg);
}

.info-card-premium h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-card-premium p,
.info-card-premium a {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.6;
}

.info-card-premium a:hover {
    color: var(--gold);
}

/* --- Section: Form (Dark) --- */
.form-glass-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-dark);
    border-radius: 40px;
    padding: 80px;
    backdrop-filter: blur(20px);
}

.contact-form-premium .form-group {
    position: relative;
    margin-bottom: 35px;
}

.contact-form-premium .form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 15px;
    padding: 18px 25px;
    color: #fff;
    font-size: 16px;
    transition: var(--transition);
}

.contact-form-premium .form-control:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(245, 197, 24, 0.15);
    outline: none;
    transform: translateY(-3px);
}

.contact-form-premium label {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
    transition: var(--transition);
}

.contact-form-premium textarea~label {
    top: 30px;
}

.contact-form-premium .form-control:focus~label,
.contact-form-premium .form-control:not(:placeholder-shown)~label {
    top: -12px;
    left: 15px;
    font-size: 12px;
    color: var(--gold);
    background: var(--dark-bg);
    padding: 0 12px;
    font-weight: 700;
}

.premium-btn-gold {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 20px 30px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(245, 197, 24, 0.25);
    text-decoration: none;
}

.premium-btn-gold:hover {
    transform: translateY(-5px) scale(1.05);
    background: #fff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* --- Section: Why Connect (Light) --- */
.why-connect-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 35px;
    border-radius: 24px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid transparent;
}

.why-connect-item:hover {
    background: #fff;
    border-color: var(--gold);
    transform: scale(1.02) translateX(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.why-connect-item .icon-box {
    min-width: 60px;
    height: 60px;
    background: #000;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 22px;
}

/* --- Section: Map (Dark) --- */
.map-container-premium {
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    filter: grayscale(1) invert(0.9) contrast(1.2);
    transition: var(--transition);
    height: 600px;
}

.map-container-premium:hover {
    filter: grayscale(0) invert(0) contrast(1);
}

/* --- Section: FAQ (Light) --- */
.faq-premium .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
}

.faq-premium .accordion-button {
    background: transparent;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 18px;
    padding: 35px 0;
    border: none;
    box-shadow: none;
    position: relative;
}

.faq-premium .accordion-button::after {
    content: '\f067';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    background-image: none;
    transform: none;
    font-size: 14px;
    color: #1a1a1a;
    position: absolute;
    right: 0;
    transition: var(--transition);
}

.faq-premium .accordion-button:not(.collapsed)::after {
    content: '\f068';
    transform: rotate(180deg);
    color: var(--gold);
}

.faq-premium .accordion-button:not(.collapsed) {
    color: var(--gold);
}

.faq-premium .accordion-body {
    padding: 0 0 35px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.8;
}

/* --- Social Area --- */
.social-premium-circle {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    font-size: 26px;
    color: #1a1a1a;
    transition: var(--transition);
    text-decoration: none;
}

.social-premium-circle:hover {
    background: #000;
    color: var(--gold);
    transform: rotate(360deg) scale(1.1);
}

/* --- Final CTA (Dark) --- */
.final-cta-dark {
    background: linear-gradient(135deg, #000, #1a1a1a);
    padding: 40px 0;
    text-align: center;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .form-glass-container {
        padding: 40px 20px;
    }

    .title-huge {
        font-size: 45px;
        letter-spacing: -2px;
    }

    .section-dark,
    .section-light {
        padding: 80px 0;
    }
}



/* =========================================================
      Breadcrumb
    ========================================================= */

.editorial-event-hero {

    position: relative;
    overflow: hidden;

    padding: 70px 0 60px;

    background:
        radial-gradient(circle at top left, rgba(150, 109, 57, 0.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(210, 151, 82, 0.1), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #FDFBF7 45%, #F8F4EA 100%);

}

.editorial-event-hero .container {
    position: relative;
    z-index: 5;
}

/* =========================================================
       MESH BACKGROUND
    ========================================================= */

.mesh-layer {

    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(at 20% 20%, rgba(150, 109, 57, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 30%, rgba(210, 151, 82, 0.1) 0px, transparent 50%),
        radial-gradient(at 70% 80%, rgba(150, 109, 57, 0.06) 0px, transparent 50%);

    animation: meshMove 15s ease-in-out infinite alternate;

}

@keyframes meshMove {

    from {
        transform: scale(1) translateY(0px);
    }

    to {
        transform: scale(1.1) translateY(-20px);
    }

}

/* =========================================================
       GLOW BLOBS
    ========================================================= */

.glow {

    position: absolute;
    border-radius: 50%;
    filter: blur(80px);

    animation: floatGlow 8s ease-in-out infinite;

}

.glow-one {

    width: 380px;
    height: 380px;

    background: rgba(150, 109, 57, 0.14);

    top: -120px;
    left: -120px;

}

.glow-two {

    width: 450px;
    height: 450px;

    background: rgba(210, 151, 82, 0.1);

    right: -120px;
    top: 20%;

}

.glow-three {

    width: 300px;
    height: 300px;

    background: rgba(150, 109, 57, 0.08);

    bottom: -80px;
    left: 35%;

}

@keyframes floatGlow {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* =========================================================
       GRID
    ========================================================= */

.hero-grid {

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    /* gap: 80px; */

}

/* =========================================================
       PREMIUM LABEL
    ========================================================= */

.premium-label {

    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(150, 109, 57, 0.15);

    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;

    color: #966D39;

    margin-bottom: 30px;

    box-shadow:
        0 10px 30px rgba(150, 109, 57, 0.08);

}

.premium-label span {

    width: 10px;
    height: 10px;

    border-radius: 50%;
    background: #D29752;

    animation: pulseDot 2s infinite;

}

@keyframes pulseDot {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: .5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }

}

/* =========================================================
       BREADCRUMB
    ========================================================= */

.luxury-breadcrumb {

    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;

    margin-bottom: 35px;

    padding: 14px 20px;

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.55);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(150, 109, 57, 0.1);

    box-shadow:
        0 10px 40px rgba(150, 109, 57, 0.08);

}

.luxury-breadcrumb a,
.luxury-breadcrumb span {

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #0d1b2a;

    text-decoration: none;

    transition: .4s ease;

}

.luxury-breadcrumb a:hover {

    color: #D29752;
    transform: translateY(-2px);

}

.crumb-dot {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #D29752;

}

/* =========================================================
       TYPOGRAPHY
    ========================================================= */

.hero-title {

    font-size: clamp(4rem, 9vw, 7rem);

    line-height: .95;
    font-weight: 800;

    letter-spacing: -4px;

    color: #0d1b2a;

    max-width: 750px;

    margin-bottom: 35px;

}

.hero-title span {

    position: relative;

    display: inline-block;

    color: transparent;

    -webkit-text-stroke: 2px #966D39;

}

.hero-title span::after {

    content: "";

    position: absolute;
    left: 0;
    bottom: 12px;

    width: 100%;
    height: 18px;

    background: rgba(150, 109, 57, 0.12);

    z-index: -1;

}

.hero-description {

    font-size: 18px;
    line-height: 1.9;

    color: #667085;

    max-width: 620px;

    margin-bottom: 45px;

}


/* =========================================================
       VISUALS
    ========================================================= */

.hero-visuals {

    position: relative;

    height: 700px;

}

.visual-card {

    position: absolute;

    overflow: hidden;

    border-radius: 34px;

    background: white;

    box-shadow:
        0 30px 80px rgba(150, 109, 57, 0.15);

    transition: .7s ease;

}

.visual-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 1s ease;

}

.visual-card:hover img {

    transform: scale(1.08);

}

.large-card {
    width: 480px;
    height: 620px;
    right: 0;
    top: 20px;

    /* transform: rotate(-4deg); */

}

.small-card {

    width: 260px;
    height: 320px;
    left: 10px;
    bottom: 70px;
    border: 4px solid rgba(255, 255, 255, 0.7);

    transform: rotate(8deg);

}

.visual-card:hover {

    transform: translateY(-10px) rotate(0deg);

}

/* =========================================================
       GLASS CARD
    ========================================================= */

.glass-card {

    position: absolute;

    right: 30px;
    bottom: 40px;

    width: 280px;

    padding: 28px;

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.4);

    backdrop-filter: blur(24px);

    border: 1px solid rgba(255, 255, 255, 0.5);

    box-shadow:
        0 15px 40px rgba(245, 197, 24, 0.12);

    z-index: 4;

}

.glass-card h5 {

    font-size: 20px;
    font-weight: 700;

    color: var(--text);

    margin-bottom: 12px;

}

.glass-card p {

    color: var(--muted);
    line-height: 1.7;

}

/* =========================================================
       DECORATIVE ELEMENTS
    ========================================================= */

.ring-decor {

    position: absolute;

    width: 200px;
    height: 200px;

    border-radius: 50%;

    border: 1px solid rgba(245, 197, 24, 0.15);

    right: -60px;
    top: 50px;

    animation: rotateRing 18s linear infinite;

}

@keyframes rotateRing {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

.particle {

    position: absolute;

    border-radius: 50%;

    background: rgba(245, 197, 24, 0.3);

    animation: floatParticle 5s ease-in-out infinite;

}

.particle-1 {

    width: 14px;
    height: 14px;

    top: 120px;
    left: 80px;

}

.particle-2 {

    width: 10px;
    height: 10px;

    bottom: 200px;
    right: 120px;

    animation-delay: 1s;

}

.particle-3 {

    width: 18px;
    height: 18px;

    top: 300px;
    right: 20px;

    animation-delay: 2s;

}

@keyframes floatParticle {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* =========================================================
       SVG CURVES
    ========================================================= */

.curve-lines {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: .18;

    pointer-events: none;

}

.curve-lines path {

    fill: none;

    stroke: rgba(245, 197, 24, 0.3);

    stroke-width: 2;

    stroke-dasharray: 10;

    animation: dashMove 30s linear infinite;

}

@keyframes dashMove {

    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: 1000;
    }

}

/* =========================================================
       CURVED BOTTOM
    ========================================================= */

.hero-bottom-curve {

    position: absolute;

    left: 0;
    bottom: -2px;

    width: 100%;

    line-height: 0;

}

.hero-bottom-curve svg {

    width: 100%;
    height: 160px;

}

/* =========================================================
       FLOATING SHAPES
    ========================================================= */

.floating-shape {

    position: absolute;

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.4);

    background: rgba(255, 255, 255, 0.18);

    animation: floatShape 7s ease-in-out infinite;

}

.shape-one {

    width: 140px;
    height: 140px;

    border-radius: 30px;

    top: 18%;
    right: 12%;

    transform: rotate(20deg);

}

.shape-two {

    width: 90px;
    height: 90px;

    border-radius: 50%;

    left: 10%;
    bottom: 12%;

}

.shape-three {

    width: 70px;
    height: 70px;

    border-radius: 20px;

    top: 50%;
    left: 46%;

    transform: rotate(45deg);

}

@keyframes floatShape {

    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(6deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }

}

/* =========================================================
   RESPONSIVE FIXES — COMPLETE
========================================================= */

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .hero-grid {
        grid-template-columns: 1fr;
        /* gap: 40px; */
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .editorial-event-hero {
        padding: 90px 0 120px;
    }

    .hero-title {
        font-size: clamp(3rem, 10vw, 4.5rem);
        line-height: 1.05;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.8;
    }

    .hero-visuals {
        height: 540px;
        max-width: 100%;
    }

    .large-card {
        max-width: 400px;
        height: 500px;
        left: 50%;
        transform: translateX(-50%) rotate(-3deg);
    }

    .small-card {
        width: 200px;
        height: 250px;
        left: 50%;
        bottom: 10px;
        transform: translateX(-105%) rotate(5deg);
    }

    .glass-card {
        width: 240px;
        padding: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .glass-card h5 {
        font-size: 18px;
    }

    .glass-card p {
        font-size: 14px;
    }

    .ring-decor {
        width: 160px;
        height: 160px;
        right: -30px;
    }

}

/* =========================================================
   MOBILE LARGE
========================================================= */
/* =========================================================
   PREMIUM MOBILE RESPONSIVE FIX
========================================================= */

@media (max-width: 768px) {

    .hero-visuals {
        height: 450px;
        width: 100%;
        margin-top: 30px;
    }

    /* =========================
       BIG IMAGE
    ========================= */

    .large-card {
        width: 80%;
        height: 300px;
        position: relative;
        margin: 0 auto;
        left: auto;
        transform: none;
    }

    .large-card img {

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;

        display: block;

    }

    /* =========================
       SMALL FLOATING IMAGE
    ========================= */
    .small-card {
        width: 140px;
        height: 180px;
        left: 5%;
        bottom: 20px;
        z-index: 5;
        transform: rotate(-5deg);
    }

    .small-card img {

        width: 100%;
        height: 100%;

        object-fit: cover;

    }

    /* =========================
       GLASS CARD
    ========================= */

    .glass-card {
        width: 70%;
        max-width: 320px;
        bottom: -20px;
        left: 35%;
        transform: translateX(-50%);
    }

}



/* =========================================================
   MOBILE SMALL
========================================================= */

@media (max-width: 576px) {

    .editorial-event-hero {
        padding: 70px 0 90px;
    }

    .premium-label {
        font-size: 11px;
        margin-bottom: 16px;
    }

    .luxury-breadcrumb {
        padding: 10px 14px;
        gap: 8px;
        margin-bottom: 24px;
    }

    .crumb-dot {
        width: 4px;
        height: 4px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-visuals {
        height: 370px;
    }

    .large-card {
        height: 280px;
        border-radius: 20px;
    }

    .small-card {
        width: 120px;
        height: 150px;
        bottom: 0;
        border-radius: 18px;
    }

    .visual-card:hover {
        transform: none;
    }

    .particle {
        transform: scale(0.7);
    }

    .hero-bottom-curve svg {
        height: 70px;
    }

    .visual-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

}


/* =========================================================
   TESTIMONIAL SECTION DARK THEME
========================================================= */

.luxury-testimonials-section {
    position: relative;
    padding: 80px 0;
    background: #0a0a0a;
    overflow-x: hidden;
    overflow-y: visible;
}

/* GLOW EFFECTS */
.testimonial-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
    pointer-events: none;
}

.glow-one {
    width: 320px;
    height: 320px;
    background: #D29752;
    top: -120px;
    left: -120px;
}

.glow-two {
    width: 280px;
    height: 280px;
    background: #966D39;
    bottom: -120px;
    right: -120px;
}

/* HEADER */
.testimonial-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #D29752;
    font-weight: 700;
    margin-bottom: 18px;
}

.testimonial-title {
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 700;
    color: #fff;
   
    letter-spacing: -3px;
}

.testimonial-title span {
    color: #D29752;
}

.testimonial-desc {
    max-width: 700px;
    margin: auto;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
}

/* TESTIMONIAL CARD */
.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 315px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border-radius: 30px;
    padding: 20px;
    overflow: hidden;
    transition: all 0.45s ease;
}


.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(210, 151, 82, 0.12),
            transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    border-color: rgba(210, 151, 82, 0.35);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.45),
        0 0 30px rgba(210, 151, 82, 0.08);
}

/* FEATURED CARD */
/* .featured-card {
    background:
        linear-gradient(135deg,
            rgba(150, 109, 57, 0.95),
            rgba(210, 151, 82, 0.85));
    border: none;
}

.featured-card .testimonial-text,
.featured-card .client-info span,
.featured-card .quote-icon {
    color: rgba(255, 255, 255, 0.92);
}

.featured-card .client-info h5 {
    color: #fff;
} */

/* QUOTE ICON */
.quote-icon {
    font-size: 42px;
    color: #D29752;
    margin-bottom: 15px;
}

/* TEXT */
.testimonial-text {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 15px;
    font-weight: 500;
    flex-grow: 1;

}

/* CLIENT INFO */
.testimonial-bottom {
    display: flex;
    align-items: center;
    gap: 18px;

}

.client-image {
    position: relative;
}

.client-image::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid rgba(210, 151, 82, 0.4);
}

.client-image img {
    width: 72px !important;
    height: 72px !important;
    object-fit: cover;
    border-radius: 50%;
}

.client-info h5 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 6px;
    font-weight: 700;
}

.client-info span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.5px;
}

/* FLOATING BORDER */
.testimonial-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

/* =========================================
   TESTIMONIAL SLIDER
========================================= */

.luxury-testimonial-slider .item {
    padding: 10px;
}

.luxury-testimonial-slider .owl-stage {
    display: flex;
}

.luxury-testimonial-slider .owl-item {
    height: auto;
}

.luxury-testimonial-slider .testimonial-card {
    height: 100%;
}

/* DOTS */
.luxury-testimonial-slider .owl-dots {
    margin-top: 40px;
    text-align: center;
    position: relative;
    z-index: 20;
}

.luxury-testimonial-slider .owl-dot {
    display: inline-block;
}

.luxury-testimonial-slider .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    margin: 5px;
    display: block;
    transition: all .4s ease;
}

.luxury-testimonial-slider .owl-dot.active span {
    width: 36px;
    border-radius: 30px;
    background: #D29752;
}

/* RESPONSIVE */
@media(max-width:991px) {

    .luxury-testimonials-section {
        padding: 90px 0;
    }

    .testimonial-title {
        font-size: 52px;
    }

    .testimonial-card {
        padding: 35px;
    }

}

@media(max-width:576px) {

    .testimonial-title {
        font-size: 38px;
        line-height: 1.1;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .testimonial-card {
        padding: 28px;
        border-radius: 24px;
    }

}

/* =========================================================
   EXPERTISE MARQUEE SECTION
========================================================= */

.expertise-marquee-section {
    position: relative;
/*    min-height: 100vh;*/
    padding: 50px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* background: #000; */
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* BG GLOW */

.expertise-marquee-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle,
            rgba(210, 151, 82, 0.10) 0%,
            transparent 70%);
    pointer-events: none;
}

/* =========================================================
   TRACK
========================================================= */

.expertise-marquee-track {
    position: relative;
    width: 100%;
    overflow: visible;
    white-space: nowrap;
    margin: 18px 0;
    padding: 10px 0;
    background: #000000;
}

/* =========================================================
   CONTENT
========================================================= */

.expertise-marquee-content {
    display: inline-flex;
    align-items: center;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* FIRST ROW */

.marquee-one .expertise-marquee-content {
    animation: marqueeLeft 35s linear infinite;

}

/* SECOND ROW */

.marquee-two .expertise-marquee-content {
    animation: marqueeRight 35s linear infinite;

}

/* =========================================================
   ITEMS
========================================================= */

.expertise-marquee-content span {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;

    margin: 0 18px;
    padding: 20px 34px;

    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.2px;

    color: #fff;

    border-radius: 80px;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.02));

    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);

    transition: all 0.45s ease;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35);
}

/* GOLD DOT */

.expertise-marquee-content span::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;

    background: #D29752;

    box-shadow:
        0 0 12px rgba(210, 151, 82, 0.8);
}

/* HOVER */

.expertise-marquee-content span:hover {
    transform: translateY(-8px);

    background:
        linear-gradient(135deg,
            rgba(210, 151, 82, 0.18),
            rgba(150, 109, 57, 0.10));

    border-color: rgba(210, 151, 82, 0.45);

    color: #D29752;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.45),
        0 0 30px rgba(210, 151, 82, 0.10);
}

/* =========================================================
   ANIMATION
========================================================= */

@keyframes marqueeLeft {

    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }

}

@keyframes marqueeRight {

    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .expertise-marquee-content span {
        font-size: 15px;
        padding: 16px 24px;
        margin: 0 12px;
    }

}

@media (max-width: 576px) {

    .expertise-marquee-section {
        padding: 40px 0;
    }

    .expertise-marquee-content span {
        font-size: 13px;
        padding: 14px 18px;
        margin: 0 10px;
        white-space: nowrap;
    }

}