:root {
    --bs-primary: #c9a84c !important;
    --bs-primary-rgb: 201, 168, 76 !important;
}

        /* ═══════════════════════════════════════
           TOPBAR
        ═══════════════════════════════════════ */
        .fixed-top .container { transition: 0.5s; }
        .topbar { padding: 2px 10px 2px 20px; background: #1a1a2e !important; }
        .topbar a, .topbar a i { transition: 0.5s; }
        .topbar a:hover, .topbar a i:hover { color: #c9a84c !important; }

        .topbar-social {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 1px solid rgba(201,168,76,0.5);
            color: #f6f5f2 !important;
            font-size: 0.82rem;
            text-decoration: none;
            transition: background 0.3s, color 0.3s, border-color 0.3s;
        }
        .topbar-social:hover {
            background: #c9a84c;
            color: #1a1200 !important;
            border-color: #c9a84c;
        }

        /* Desktop share button in topbar */
        .topbar-share {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            height: 30px;
            padding: 0 14px;
            border-radius: 20px;
            border: 1px solid rgba(201,168,76,0.5);
            color: #f6f5f2;
            font-size: 0.78rem;
            font-weight: 600;
            background: transparent;
            cursor: pointer;
            font-family: 'Open Sans', sans-serif;
            transition: background 0.3s, color 0.3s, border-color 0.3s;
        }
        .topbar-share:hover {
            background: #c9a84c;
            color: #1a1200;
            border-color: #c9a84c;
        }

        @media (max-width: 576px) { .topbar { display: none; } }

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: #1a1a2e !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: #c9a84c !important;
}
/*** Topbar Social Icons ***/
.topbar-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.5);
    color: #f6f5f2 !important;
    font-size: 0.82rem;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.topbar-social:hover {
    background: #c9a84c;
    color: #1a1200 !important;
    border-color: #c9a84c;
}
@media (max-width: 576px) {
    .topbar {
        display: none;
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-dark) !important;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #c9a84c !important;
}

.navbar-light .navbar-brand img {
    max-height: 50px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: #c9a84c;
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid #c9a84c;
        color: #c9a84c;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #c9a84c;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}


/*** Hero Header Start ***/
.hero-header {
    position: relative;
    width: 100%;
    margin-top: 95px;
}
.hero-header img {
    width: 100%;
    height: 560px;
    display: block;
    object-fit: cover;
}
.hero-header .hero-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 40px 60px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
}
.hero-header .hero-caption-content {
    position: relative;
    width: 60%;
}
@media (max-width: 992px) {
    .hero-header {
        margin-top: 0;
    }
}
@media (max-width: 576px) {
    .hero-header img {
        height: 500px;
    }
    .hero-header .hero-caption {
        padding: 20px;
        align-items: flex-start;
        justify-content: flex-end;
        flex-direction: column;
    }
    .hero-header .hero-caption-content {
        width: 100%;
    }
    .hero-header .hero-caption h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    .hero-header .hero-caption p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    .hero-header .hero-caption .ms-auto {
        margin-left: 0;
        align-self: flex-start;
    }
}
/*** Hero Header End ***/
/*** Page Header Start ***/
.page-header {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(../img/Image\ \ \(1\).jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 160px 0 70px 0;
    border-bottom: 3px solid #c9a84c;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 27, 42, 0.3) 0%, rgba(13, 27, 42, 0.6) 100%);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

/* Gold divider with icon */
.page-header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.page-header-divider span {
    display: block;
    width: 60px;
    height: 1px;
    background: #c9a84c;
    opacity: 0.7;
}

.page-header-divider i {
    color: #c9a84c;
    font-size: 0.7rem;
}

/* Breadcrumb */
.page-header .breadcrumb {
    background: transparent;
    padding: 0;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.page-header .breadcrumb-item a:hover {
    color: #c9a84c;
}

.page-header .breadcrumb-item.active {
    color: #c9a84c;
    font-size: 0.9rem;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .page-header {
        background-attachment: scroll;
        padding: 130px 0 50px 0;
    }
    .page-header-title {
        font-size: 2rem;
    }
}
/*** Page Header End ***/
/*** Service Start ***/

/* Section heading */
.awards-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    display: inline-block;
    background: #1e5dbe;
    color: #fff;
    padding: 6px 20px;
    border-radius: 4px;
}

/* Cards */
.service .service-item {
    box-shadow: 0 2px 20px rgba(0, 0, 0, .10);
    border: 1px solid #e8e8e8;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background: #fff;
}

.service .service-item:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, .15);
    transform: translateY(-4px);
}

/* Image area */
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-img img {
    transition: transform 0.5s ease;
    height: 200px;
    object-fit: cover;
}

.service .service-item .service-img:hover img {
    transform: scale(1.05);
}

/* Remove ALL the teal pseudo-element overlays */
.service .service-item .service-img::before,
.service .service-item .service-content::before {
    display: none !important;
}

/* Card content */
.service .service-item .service-content {
    background: #fff !important;
}

.service .service-item .service-content .service-content-inner h5 {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 1.1rem;
}

.service .service-item .service-content .service-content-inner p {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* On hover */
.service .service-item:hover .service-content .service-content-inner {
    color: inherit !important;
}

.service .service-item:hover .service-content .service-content-inner h5 {
    color: #1a1a2e !important;
}

/* Gold Register button */
.btn-register {
    background-color: #c9a84c;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: background-color 0.3s ease;
}

.btn-register:hover {
    background-color: #b8962e;
    color: #fff;
}

/* Gold border overlay on card images */
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
}

/* Blue tint over the photo */
.service .service-item .service-img .img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 35, 80, 0.45);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    z-index: 2;
}

/* Gold border frame */
.service .service-item .service-img .gold-frame {
    position: absolute;
    inset: 12px;
    border: 2px solid #c9a84c;
    border-radius: 12px;
    z-index: 3;
    pointer-events: none;
}

/* Award badge centered on the image */
.service .service-item .service-img .award-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 35, 90, 0.85);
    border: 2px solid #c9a84c;
    border-radius: 12px;
    padding: 10px 18px;
    min-width: 75%;
    justify-content: center;
}

.service .service-item .service-img .badge-icon {
    font-size: 2rem;
    color: #c9a84c;
    line-height: 1;
}

.service .service-item .service-img .badge-text {
    display: flex;
    flex-direction: column;
    color: #c9a84c;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    line-height: 1.4;
    text-align: left;
}

/*** Service End ***/

/*** About Start ***/
.about-new {
    background: #f7f5f0;
}

.about-new-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
}

.about-new-accent {
    color: #c9a84c;
    font-style: italic;
}

.about-new-content {
    padding-left: 10px;
}

.about-new-para {
    color: #333;
    font-size: 0.97rem;
    line-height: 1.85;
    margin-bottom: 1.3rem;
    text-align: justify;
}

.about-new-para:last-child {
    margin-bottom: 0;
}

/*** About Start ***/
.about-new {
    background: #f7f5f0;
}

.about-new-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    font-family: 'Playfair Display', serif;
}

.about-new-accent {
    color: #c9a84c;
    font-style: italic;
}

/* Eyebrow label above text */
.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: #c9a84c;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 1.2rem;
}

.about-eyebrow i {
    font-size: 0.6rem;
}

.about-new-content {
    padding-left: 10px;
}

.about-new-para {
    color: #333;
    font-size: 0.97rem;
    line-height: 1.85;
    margin-bottom: 1.3rem;
    text-align: justify;
}

.about-new-para:last-child {
    margin-bottom: 0;
}

/* Stats row */
.about-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    background: #1a1a2e;
    border-radius: 12px;
    padding: 18px 24px;
    margin: 28px 0 8px;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.about-stat {
    flex: 1;
    text-align: center;
}

.about-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #c9a84c;
    line-height: 1;
    margin-bottom: 4px;
}

.about-stat-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(201, 168, 76, 0.25);
    flex-shrink: 0;
}

/*** About Image ***/
.about-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: visible;
}

.about-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-main-img:hover {
    transform: scale(1.02);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

/* Gold accent bar on the left edge */
.about-img-accent-bar {
    position: absolute;
    top: 28px;
    left: -8px;
    width: 5px;
    height: 90px;
    background: #c9a84c;
    border-radius: 4px;
}

/* Floating badge bottom-right */
.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: 24px;
    background: #1a1a2e;
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.about-img-badge i {
    color: #c9a84c;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-img-badge .badge-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #c9a84c;
    line-height: 1;
}

.about-img-badge .badge-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 3px;
}

/* Give the image column bottom space so badge doesn't clip */
@media (min-width: 992px) {
    .about-img-wrap {
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .about-main-img {
        height: 340px;
    }
    .about-img-accent-bar {
        display: none;
    }
    .about-img-badge {
        bottom: -14px;
        right: 16px;
    }
    .about-new-content {
        padding-left: 0;
        padding-top: 24px;
    }
    .about-stats-row {
        padding: 14px 16px;
    }
}

@media (max-width: 576px) {
    .about-new-title {
        font-size: 1.7rem;
    }
    .about-stat-number {
        font-size: 1.2rem;
    }
}

/*** About End ***/

/*** Reasons Section Start ***/
.reasons-section {
    background: #0d1b2a;
}

.reasons-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.reasons-accent {
    color: #c9a84c;
    font-style: italic;
}

.reasons-subtitle {
    color: #333;
    font-size: 1rem;
    max-width: 620px;
    margin: 12px auto 0;
    line-height: 1.7;
}

/* Card base */
.reason-card {
    position: relative;
    border-radius: 12px;
    padding: 32px 28px 28px 28px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-4px);
}

/* Gold variant */
.reason-card.reason-gold {
    background: #c9a84c;
}

.reason-card.reason-gold .reason-num {
    color: rgba(255, 255, 255, 0.15);
}

.reason-card.reason-gold .reason-card-title {
    color: #333;
}

.reason-card.reason-gold .reason-card-text {
    color: #3a2e0e;
}

/* Dark navy variant */
.reason-card.reason-dark {
    background: #1b2d42;
}

.reason-card.reason-dark .reason-num {
    color: rgba(255, 255, 255, 0.07);
}

.reason-card.reason-dark .reason-card-title {
    color: #ffffff;
}

.reason-card.reason-dark .reason-card-text {
    color: #ffffff;
}

/* Faded background number */
.reason-num {
    position: absolute;
    top: 12px;
    left: 20px;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -2px;
}

.reason-body {
    position: relative;
    z-index: 2;
    padding-top: 20px;
}

.reason-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.reason-card-text {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* Icons inherit card title color */
.reason-gold .reason-card-title i {
    color: #1a1a2e;
}

.reason-dark .reason-card-title i {
    color: #c9a84c;
}
/*** Reasons Section End ***/


/*** Be Part CTA Start ***/
.be-part-cta {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.60)), url(../img/Image\ \ \(2\).jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 20px;
}

.be-part-overlay {
    display: none;
}

.be-part-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.be-part-heading {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    margin-bottom: 24px;
}

.be-part-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.btn-be-part {
    display: inline-block;
    background: #c9a84c;
    color: #1a1200;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 56px;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-be-part:hover {
    background: #b8962e;
    color: #1a1200;
    transform: translateY(-2px);
    text-decoration: none;
}

@media (max-width: 768px) {
    .be-part-cta {
        background-attachment: scroll;
        padding: 60px 20px;
    }
    .be-part-heading {
        font-size: 2rem;
    }
    .be-part-sub {
        font-size: 1rem;
    }
    .btn-be-part {
        padding: 14px 40px;
    }
}
/*** Be Part CTA End ***/

/*** Don't Miss CTA Start ***/
.dont-miss-cta {
    background: #2a2a2a;
}

.dont-miss-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    margin-bottom: 20px;
}

.dont-miss-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 36px;
}

.btn-dont-miss {
    display: inline-block;
    background: #c9a84c;
    color: #1a1200;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 56px;
    border-radius: 6px;
    border: none;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-dont-miss:hover {
    background: #b8962e;
    color: #1a1200;
    transform: translateY(-2px);
    text-decoration: none;
}

@media (max-width: 768px) {
    .dont-miss-heading {
        font-size: 2rem;
    }
    .dont-miss-sub {
        font-size: 1rem;
    }
    .btn-dont-miss {
        padding: 14px 40px;
    }
}
/*** Don't Miss CTA End ***/
/*** Appointment Start ***/
.appointment {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.appointment .appointment-form {
    background: rgba(239, 162, 134, 0.3);
}

.appointment .appointment-form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.appointment .appointment-form .btn.btn-primary:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Youtube Video start ***/
.video {
    position: relative;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 33px;
    height: 44px;
    border-radius: 50%;
    transition: 0.5s;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 115px;
    height: 115px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    transition: 0.5s;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    transition: all 300ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 33px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    margin-left: 5px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/
/*** Appointment End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.team .team-item .team-img:hover .team-icon {
    margin-bottom: 145px;
}

.team .team-item:hover .team-img::before {
    background: rgba(21, 185, 217, .3);
}

.team .team-item .team-content {
    color: var(--bs-primary);
    transition: 0.5s;
}

.team .team-item .team-content h5 {
    color: var(--bs-secondary);
    transition: 0.5s;
}

.team .team-item:hover .team-content h5 {
    color: var(--bs-dark);
}

.team .team-item:hover .team-content {
    background: var(--bs-primary);
    color: var(--bs-white);
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial {
    background: linear-gradient(rgba(21, 185, 217, 0.9), rgba(21, 185, 217, 0.9)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    background: transparent;
}

.testimonial .testimonial-item .testimonial-inner .testimonial-inner-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--bs-white);
}

.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}


@media (max-width: 900px) {
    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        margin-top: -190px;
        margin-left: 40px;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        margin-top: -190px;
        margin-right: 40px;
    }
    
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid var(--bs-white);
    background: transparent;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    background: var(--bs-secondary) !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
    transition: 0.5s;
}

@media (min-width: 900px) {
    .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
        font-size: 20px;
    }
}


/* Testimonial Section Title Start */
.testimonial .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.testimonial .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Testimonial End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(21, 185, 217, .5);
}

.blog .blog-item .blog-centent {
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
/*** Blog End ***/
/*** Contact Start ***/
.contact-new {
    background: #f8f5f0;
}

.contact-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a2e;
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.contact-heading-gold {
    color: #c9a84c;
}

.contact-sub {
    font-size: 1rem;
    color: #333;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Form Box */
.contact-form-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.contact-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.contact-form-sub {
    font-size: 0.88rem;
    color: #333;
    margin-bottom: 28px;
}

.contact-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #e0dbd0;
    border-radius: 8px;
    background: #fdfcf8;
    padding: 0 16px;
    height: 52px;
    transition: border-color 0.3s;
}

.contact-input-wrap:focus-within {
    border-color: #c9a84c;
    background: #fff;
}

.contact-input-wrap i {
    color: #c9a84c;
    font-size: 0.85rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.contact-input-wrap input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.9rem;
    color: #333;
    width: 100%;
    height: 100%;
}

.contact-input-wrap input::placeholder {
    color: #333;
}

.contact-textarea {
    height: auto !important;
    align-items: flex-start;
    padding-top: 14px;
    padding-bottom: 14px;
}

.contact-textarea textarea {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.9rem;
    color: #333;
    width: 100%;
    resize: none;
}

.contact-textarea textarea::placeholder {
    color: #333;
}

.btn-contact-submit {
    width: 100%;
    background: #c9a84c;
    color: #1a1200;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    padding: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-contact-submit:hover {
    background: #b8962e;
    transform: translateY(-2px);
}

/* Info Cards */
.contact-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.15);
    border-color: #c9a84c;
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    color: #c9a84c;
    font-size: 1rem;
}

.contact-info-body {
    flex: 1;
    min-width: 0;
}

.contact-info-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.contact-info-text {
    font-size: 0.88rem;
    color: #333;
    margin: 0;
    line-height: 1.8;
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* Social card */
.contact-social-card {
    align-items: center;
}

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f5f0;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 6px;
    padding: 8px 16px;
    color: #1a1a2e;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.contact-social-btn i {
    color: #c9a84c;
    font-size: 0.9rem;
}

.contact-social-btn:hover {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #1a1200;
    text-decoration: none;
}

.contact-social-btn:hover i {
    color: #1a1200;
}

@media (max-width: 768px) {
    .contact-form-box {
        padding: 24px 16px;
    }
    .contact-heading {
        font-size: 1.8rem;
    }
}
/*** Contact End ***/


/*** Schedule Start ***/

.schedule-section {
    background: #f8f5f0;
}

.schedule-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a2e;
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.schedule-heading-gold {
    color: #c9a84c;
}

.schedule-sub {
    font-size: 1rem;
    color: #333;
    margin-top: 10px;
}

/* ── Table ── */
.schedule-table {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.schedule-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a2e;
    padding: 14px 24px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c9a84c;
    flex-shrink: 0;
}

.schedule-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #f0ece4;
    gap: 16px;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.schedule-row:last-of-type {
    border-bottom: none;
}

.schedule-row:hover {
    background: #fdf9f1;
}

.schedule-row-highlight {
    background: rgba(201, 168, 76, 0.06);
    border-left: 3px solid #c9a84c;
}

.schedule-row-highlight:hover {
    background: rgba(201, 168, 76, 0.1);
}

.schedule-row-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.schedule-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.schedule-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
}

.schedule-date {
    font-size: 0.82rem;
    color: #333;
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

.schedule-row-highlight .schedule-label {
    color: #1a1a2e;
    font-weight: 700;
}

.schedule-row-highlight .schedule-date {
    color: #c9a84c;
    font-weight: 600;
}

/* ── Countdown ── */
.schedule-countdown {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 32px 24px;
    background: linear-gradient(135deg, #1a1a2e 0%, #22203a 100%);
    min-height: 150px;
}

.schedule-countdown-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.75);
    margin: 0;
}

.countdown-blocks {
    display: flex;
    align-items: center;
    gap: 10px;
}

.countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.28);
    border-radius: 10px;
    padding: 12px 18px;
    min-width: 66px;
    transition: background 0.3s;
}

.countdown-block:hover {
    background: rgba(201, 168, 76, 0.16);
}

.countdown-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #c9a84c;
    line-height: 1;
}

.countdown-unit {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 5px;
}

.countdown-sep {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.45);
    line-height: 1;
    margin-bottom: 18px;
}

/* ── Photo collage ── */
.schedule-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    border-radius: 12px;
    overflow: hidden;
    min-height: 420px;
}

.collage-img {
    overflow: hidden;
    position: relative;
}

.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.collage-img:hover img {
    transform: scale(1.06);
}

.collage-img-1 {
    grid-row: span 2;
}

/* ── Single image fallback (kept for other pages) ── */
.schedule-single-img {
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

.schedule-single-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.schedule-single-img:hover img {
    transform: scale(1.04);
}

/*** Winner Announcement Channels Start ***/

.announce-card {
    background: #1a1a2e;
    border-radius: 12px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    overflow: hidden;
}

.announce-header {
    background: rgba(201, 168, 76, 0.07);
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.announce-header-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #c9a84c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.announce-header-icon i {
    color: #1a1a2e;
    font-size: 1.35rem;
}

.announce-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #c9a84c;
    margin: 0 0 5px;
    letter-spacing: 0.3px;
}

.announce-subtitle {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.6;
}

.announce-channels {
    padding: 24px 36px 28px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.announce-ch {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.announce-ch:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.45);
}

.announce-ch-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(201, 168, 76, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #c9a84c;
    font-size: 0.9rem;
    transition: background 0.25s ease;
}

.announce-ch:hover .announce-ch-icon {
    background: rgba(201, 168, 76, 0.22);
}

.announce-ch-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.announce-ch-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}

.announce-ch-sub {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.3;
}

.announce-ch-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #c9a84c;
    color: #1a1a2e;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
}

/*** Winner Announcement Channels End ***/

/* ── Full width CTA card ── */
.schedule-cta-card-full {
    background: #1a1a2e;
    border-radius: 12px;
    padding: 32px 40px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.schedule-cta-left {
    flex: 1;
}

.schedule-cta-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.schedule-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #c9a84c;
    margin-bottom: 10px;
}

.schedule-cta-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

.schedule-deadline {
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 8px;
    padding: 12px 24px;
    text-align: center;
}

.deadline-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.deadline-date {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #c9a84c;
    white-space: nowrap;
}

.btn-schedule-nominate {
    display: inline-block;
    background: #c9a84c;
    color: #1a1200;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-schedule-nominate:hover {
    background: #b8962e;
    color: #1a1200;
    transform: translateY(-2px);
    text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .schedule-collage {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .schedule-heading {
        font-size: 1.8rem;
    }

    .schedule-date {
        white-space: normal;
        text-align: right;
    }

    .schedule-row {
        padding: 14px 16px;
    }

    .schedule-table-header {
        padding: 12px 16px;
    }

    .schedule-collage {
        min-height: 260px;
        grid-template-rows: 130px 130px;
    }

    .countdown-blocks {
        gap: 6px;
    }

    .countdown-block {
        min-width: 54px;
        padding: 10px 12px;
    }

    .countdown-num {
        font-size: 1.5rem;
    }

    .announce-header {
        padding: 20px;
        gap: 14px;
    }

    .announce-channels {
        padding: 16px 20px 20px;
        grid-template-columns: 1fr;
    }

    .schedule-cta-card-full {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 20px;
    }

    .schedule-cta-right {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .btn-schedule-nominate {
        text-align: center;
    }
}

/*** Schedule End ***/

/*** Participate Section Start ***/
.participate-section {
    background: #f7f5f0;
}

.participate-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.3;
}

.participate-accent {
    color: #c9a84c;
    font-style: italic;
}

.participate-subtitle {
    color: #333;
    font-size: 0.97rem;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
}

.participate-card {
    background: #ffffff;
    border: 1px solid #ece9e0;
    border-radius: 14px;
    padding: 28px 16px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    cursor: default;
}

.participate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(201, 168, 76, 0.18);
    border-color: #c9a84c;
}

.participate-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #c9a84c;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.participate-card:hover .participate-icon {
    background: #1a1a2e;
    transform: scale(1.08);
}

.participate-icon i {
    color: #ffffff;
    font-size: 1.4rem;
}

.participate-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.4;
}

.participate-card:hover .participate-label {
    color: #c9a84c;
}
/*** Participate Section End ***/

/*** Procedure Section Start ***/
.procedure-section {
    background: #fefefd;
}

.procedure-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.procedure-accent {
    color: #c9a84c;
    font-style: italic;
}

.procedure-subtitle {
    color: #333;
    font-size: 0.97rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.procedure-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.procedure-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 0;
}

.procedure-icon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 70px;
}

.procedure-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #c9a84c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.procedure-step:hover .procedure-icon {
    background: #1a1a2e;
    transform: scale(1.08);
}

.procedure-icon i {
    color: #ffffff;
    font-size: 1.3rem;
}

.procedure-line {
    width: 2px;
    flex: 1;
    min-height: 60px;
    background: linear-gradient(to bottom, #c9a84c, rgba(201, 168, 76, 0.2));
    margin: 6px 0;
}

.procedure-card {
    background: #ffffff;
    border: 1px solid #ece9e0;
    border-radius: 14px;
    padding: 28px 32px;
    flex: 1;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.procedure-step:hover .procedure-card {
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.15);
    border-color: #c9a84c;
}

.procedure-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.procedure-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: #c9a84c;
    font-style: italic;
    letter-spacing: 1px;
}

.procedure-card-text {
    color: #333;
    font-size: 0.93rem;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

@media (max-width: 576px) {
    .procedure-step {
        gap: 16px;
    }

    .procedure-icon-col {
        width: 48px;
    }

    .procedure-icon {
        width: 48px;
        height: 48px;
    }

    .procedure-icon i {
        font-size: 1rem;
    }

    .procedure-card {
        padding: 20px 18px;
    }

    .procedure-card-title {
        font-size: 1rem;
    }
}
/*** Procedure Section End ***/

/*** Selection Criteria Start ***/
.criteria-section {
    background: #f7f5f0;
}

.criteria-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.criteria-accent {
    color: #c9a84c;
    font-style: italic;
}

.criteria-subtitle {
    color: #333;
    font-size: 0.97rem;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

.criteria-chart-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.criteria-chart-wrap canvas {
    max-width: 320px;
    max-height: 320px;
}

.criteria-legend-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    margin-top: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #333;
    line-height: 1.4;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Table */
.criteria-table-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #ece9e0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.criteria-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.criteria-table thead tr {
    background: #c9a84c;
}

.criteria-table thead th {
    padding: 16px 24px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.criteria-table thead th:last-child {
    text-align: right;
}

.criteria-table tbody tr {
    border-bottom: 1px solid #f0ece3;
    transition: background 0.2s ease;
}

.criteria-table tbody tr:hover {
    background: #fdf9f0;
}

.criteria-table tbody td {
    padding: 16px 24px;
    font-size: 0.9rem;
    color: #333;
}

.criteria-weight {
    text-align: right;
    font-weight: 600;
    color: #1a1a2e;
}

.criteria-total-row {
    background: #fdf6e3 !important;
    border-top: 2px solid #c9a84c !important;
}

.criteria-total-row td {
    color: #1a1a2e !important;
    font-size: 0.95rem !important;
}
.criteria-table-intro {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-style: italic;
}

.criteria-desc {
    display: block;
    font-size: 0.8rem;
    color: #333;
    font-weight: 400;
    margin-top: 3px;
    line-height: 1.5;
}
@media (max-width: 576px) {
    .criteria-legend-grid {
        grid-template-columns: 1fr;
    }
}
/*** Selection Criteria End ***/

/*** Competition Levels Start ***/
.levels-section {
    background: #fafaf9;
}

.levels-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.levels-accent {
    color: #c9a84c;
    font-style: italic;
}

.levels-subtitle {
    color: #333;
    font-size: 0.97rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Card base */
.levels-card {
    background: #ffffff;
    border: 1px solid #ece9e0;
    border-radius: 16px;
    padding: 36px 28px 30px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.levels-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(201, 168, 76, 0.15);
    border-color: #c9a84c;
}

/* Featured card */
.levels-card--featured {
    border: 2px solid #c9a84c;
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.18);
}

.levels-card--featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(201, 168, 76, 0.25);
}

/* Icon */
.levels-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #c9a84c;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.levels-card:hover .levels-icon {
    background: #1a1a2e;
    transform: scale(1.08);
}

.levels-icon i {
    color: #ffffff;
    font-size: 1.4rem;
}

/* Title & points */
.levels-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.levels-points {
    font-size: 0.85rem;
    font-weight: 700;
    color: #c9a84c;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.levels-card-desc {
    font-size: 0.88rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Divider */
.levels-divider {
    width: 100%;
    height: 1px;
    background: #ece9e0;
    margin: 20px 0 16px;
}

/* Examples */
.levels-examples-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 1.5px;
    text-align: left;
    margin-bottom: 10px;
}

.levels-examples-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.levels-examples-list li {
    font-size: 0.82rem;
    color: #333;
    padding: 4px 0;
    padding-left: 14px;
    position: relative;
    line-height: 1.5;
}

.levels-examples-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c9a84c;
}

@media (max-width: 576px) {
    .levels-card {
        padding: 28px 20px 24px;
    }
}
/*** Competition Levels End ***/

/*** Award Categories Start ***/
.categories-section {
    background: #f7f5f0;
}

.categories-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.categories-accent {
    color: #c9a84c;
    font-style: italic;
}

.categories-subtitle {
    color: #333;
    font-size: 0.97rem;
    margin-bottom: 28px;
}

.categories-search-wrap {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
}

.categories-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #c9a84c;
    font-size: 0.95rem;
}

.categories-search {
    width: 100%;
    padding: 14px 20px 14px 46px;
    border: 1.5px solid #ece9e0;
    border-radius: 50px;
    background: #ffffff;
    font-size: 0.92rem;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.categories-search:focus {
    border-color: #c9a84c;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.categories-search::placeholder {
    color: #333;
}

/* Category card */
.category-card {
    background: #ffffff;
    border: 1px solid #ece9e0;
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease;
    cursor: default;
    height: 100%;
}

.category-card:hover {
    border-color: #c9a84c;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.14);
    transform: translateY(-2px);
    color: #c9a84c;
}

.category-star {
    color: #c9a84c;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.category-item {
    transition: opacity 0.2s ease;
}

.category-item.hidden {
    display: none !important;
}
/*** Award Categories End ***/

/*** CTA Banner Start ***/
.cta-banner {
    position: relative;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 30, 0.72);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-btn {
    background: #c9a84c;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    border: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
    background: #b8962e;
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 1.8rem;
    }

    .cta-banner {
        padding: 70px 20px;
    }
}
/*** CTA Banner End ***/

/*** Nominees Section Start ***/
.nominees-section {
    background: #ffffff;
}

/* Filters */
.nominees-filters {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.nominees-filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nominees-filter-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nominees-input,
.nominees-select {
    height: 44px;
    padding: 0 16px;
    border: 1.5px solid #e0ddd4;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #333;
    background: #fff;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    min-width: 220px;
}

.nominees-input:focus,
.nominees-select:focus {
    border-color: #c9a84c;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.nominees-reset-btn {
    height: 44px;
    padding: 0 20px;
    background: transparent;
    border: 1.5px solid #e0ddd4;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nominees-reset-btn:hover {
    border-color: #c9a84c;
    color: #c9a84c;
}

/* Table wrapper */
.nominees-table-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ece9e0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.nominees-table {
    width: 100%;
    border-collapse: collapse;
}

/* Header */
.nominees-th {
    background: #1a1a2e;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 16px 18px;
    text-align: left;
    white-space: nowrap;
}

.nominees-th.sortable {
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
}

.nominees-th.sortable:hover {
    background: #2a2a4e;
}

/* Rows */
.nominee-row {
    border-bottom: 1px solid #f0ece3;
    transition: background 0.2s ease;
}

.nominee-row:last-child {
    border-bottom: none;
}

.nominee-row:nth-child(even) {
    background: #fdfaf4;
}

.nominee-row:hover {
    background: #fdf6e3;
}

.nominee-row td {
    padding: 16px 18px;
    font-size: 0.87rem;
    color: #333;
    vertical-align: middle;
}

/* Number badge */
.nominee-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5f0e8;
    color: #1a1a2e;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Year badge */
.nominee-year-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #1a1a2e;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
}

/* Company name */
.nominee-company {
    font-weight: 600;
    color: #1a1a2e;
}

/* Country badge */
.nominee-country {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #edf7f0;
    color: #2a7a4a;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.nominee-country i {
    color: #2a7a4a;
    font-size: 0.75rem;
}

/* Industry badge */
.nominee-industry {
    display: inline-flex;
    align-items: background #fdf6e3;
    color: #b8962e;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
    border: 1px solid rgba(201, 168, 76, 0.25);
}

/* Category */
.nominee-category {
    color: #333;
}

/* No results */
.nominees-no-results {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
}

.nominees-no-results i {
    font-size: 2rem;
    color: #c9a84c;
    display: block;
    margin-bottom: 12px;
}

.nominees-no-results p {
    color: #333;
    font-size: 0.9rem;
    margin: 0;
}
.nominee-sector-badge {
    display: inline;
    font-size: 0.85rem;
    color: #444;
}

.nominee-sector-sep {
    display: inline;
    margin: 0 6px;
    color: #c9a84c;
    font-weight: 700;
    font-size: 0.75rem;
}
@media (max-width: 768px) {
    .nominees-filters {
        justify-content: flex-start;
    }

    .nominees-table-wrap {
        overflow-x: auto;
    }

    .nominees-table {
        min-width: 800px;
    }
}
/*** Nominees Section End ***/

/*** Nomination Plans Start ***/
 
.plans-section {
    background: #f8f5f0;
}
 
/* Cards */
.plans-card {
    position: relative;
    border-radius: 14px;
    padding: 40px 36px 36px;
    overflow: hidden;
}
 
.plans-card-gold {
    background: linear-gradient(145deg, #c9a84c 0%, #b8962e 60%, #9e7f22 100%);
    border: 1px solid rgba(201, 168, 76, 0.4);
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.25);
}
 
.plans-card-gold::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    pointer-events: none;
}
 
.plans-card-gold::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}
 
.plans-card-light {
    background: #ffffff;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}
 
/* Badge */
.plans-card-badge {
    display: inline-block;
    background: #1a1a2e;
    color: #c9a84c;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
}
 
.plans-card-badge-dark {
    background: #c9a84c;
    color: #1a1200;
}
 
/* Title */
.plans-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 20px;
}
 
.plans-card-title span {
    color: #1a1a2e;
}
 
.plans-card-title-dark {
    color: #1a1a2e;
}
 
.plans-card-title-dark span {
    color: #c9a84c;
}
 
/* Divider */
.plans-divider {
    height: 2px;
    width: 60px;
    background: rgba(26, 26, 46, 0.25);
    margin-bottom: 28px;
    border-radius: 2px;
}
 
.plans-divider-gold {
    background: #c9a84c;
}
 
/* List */
.plans-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
 
.plans-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
 
.plans-list li p {
    font-size: 0.88rem;
    color: #1a1a2e;
    line-height: 1.65;
    margin: 0;
}
 
.plans-list-light li p {
    color: #333;
}
 
/* Icons */
.plans-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    flex-shrink: 0;
    margin-top: 1px;
}
 
.plans-icon-dark {
    background: rgba(26, 26, 46, 0.12);
    color: #1a1a2e;
}
 
.plans-icon-gold {
    background: rgba(201, 168, 76, 0.1);
    color: #c9a84c;
}
 
.plans-icon-red {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}
 
/* Sublists */
.plans-sublist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
 
.plans-sublist li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: #1a1a2e;
}
 
.plans-sublist li i {
    font-size: 0.8rem;
    color: #1a1a2e;
    flex-shrink: 0;
}
 
.plans-sublist-light li {
    color: #333;
}
 
.plans-sublist-light li i {
    color: #c9a84c;
}
 
/* CTA Button */
.btn-plans-view {
    display: inline-block;
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #1a1a2e;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    margin-top: 8px;
}
 
.btn-plans-view:hover {
    background: #1a1a2e;
    color: #c9a84c;
    transform: translateY(-2px);
    text-decoration: none;
}
 
/* Info bar */
.plans-info-bar {
    background: #1a1a2e;
    border-radius: 12px;
    padding: 24px 36px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
}
 
.plans-info-icon {
    font-size: 1.4rem;
    color: #c9a84c;
    flex-shrink: 0;
}
 
.plans-info-bar p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0;
    text-align: center;
}
 
/* Responsive */
@media (max-width: 768px) {
    .plans-card {
        padding: 28px 22px;
    }
 
    .plans-card-title {
        font-size: 1.5rem;
    }
 
    .plans-info-bar {
        flex-direction: column;
        padding: 24px 20px;
        text-align: center;
    }
}
 
/*** Nomination Plans End ***/


.pricing-table { width: 100%; border-collapse: collapse; min-width: 700px; background: #fdf6e3; }

thead tr { background: #1a1a2e; }

.pricing-th-label,
.pricing-th { padding: 18px 20px; text-align: center; color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 700; font-family: 'Playfair Display', serif; letter-spacing: 0.5px; border-right: 1px solid rgba(255,255,255,0.08); vertical-align: middle; }
.pricing-th-label { text-align: left; width: 25%; }
.pricing-th-finalist { width: 45%; }
.pricing-th-extras { width: 30%; border-right: none; }
.pricing-th-sub { display: block; font-size: 0.75rem; font-weight: 400; color: #c9a84c; margin-top: 4px; font-style: italic; }

.pricing-td-free,
.pricing-td-finalist,
.pricing-td-extras { padding: 22px 20px; vertical-align: top; border-right: 1px solid #ede9e0; font-size: 0.85rem; color: #333; line-height: 1.7; }
.pricing-td-extras { border-right: none; }

.pricing-free-list { padding-left: 1.2rem; margin: 0; }
.pricing-free-list li { margin-bottom: 6px; }
.pricing-free-list li:last-child { margin-bottom: 0; }

.pricing-opt-title { font-weight: 700; color: #1a1a2e; margin: 0 0 6px; font-size: 0.87rem; }
.pricing-opt-fee { color: #333; font-size: 0.8rem; margin: 0 0 8px; }
.pricing-opt-list { padding-left: 1.4rem; margin: 0 0 0; }
.pricing-opt-list li { margin-bottom: 4px; font-size: 0.83rem; }
.pricing-opt-divider { border: none; border-top: 1px solid #ede9e0; margin: 16px 0; }

.pricing-extras-intro { font-size: 0.8rem; color: #333; margin: 0 0 12px; line-height: 1.6; }
.pricing-extras-list { padding-left: 1rem; margin: 0 0 12px; }
.pricing-extras-list li { margin-bottom: 5px; font-size: 0.82rem; }
.pricing-extras-cta { font-size: 0.8rem; color: #c9a84c; font-weight: 600; margin: 0; }
/* Button row */
.pricing-btn-row td {
  background: #fdf6e3;
  padding: 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.pricing-btn-row td:last-child {
  border-right: none;
}

.btn-pricing-col {
  display: inline-block;
  background: #c9a84c;
  color: #1a1a2e;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 11px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.btn-pricing-col:hover {
  background: #e2c97e;
  color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
  text-decoration: none;
}
.btn-pricing-col i {
  font-size: 0.78rem;
}
/*** Winners Receive Start ***/

.winners-section {
    background: #fffdf8;
    position: relative;
    overflow: hidden;
}

.winners-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.winners-section::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Divider under heading */
.winners-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
    margin: 18px auto 0;
    border-radius: 2px;
}

/* Cards */
.winners-card {
    background: #ffffff;
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.winners-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
    border-radius: 14px 14px 0 0;
}

.winners-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(201,168,76,0.14);
    border-color: rgba(201,168,76,0.4);
}

/* Featured card */
.winners-card-featured {
    background: #fffef5;
    border: 1.5px solid rgba(201,168,76,0.35);
    box-shadow: 0 4px 28px rgba(201,168,76,0.1);
}

.winners-card-featured::before {
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
    height: 3px;
    opacity: 0.7;
}

.winners-card-featured:hover {
    box-shadow: 0 14px 48px rgba(201,168,76,0.2);
    border-color: rgba(201,168,76,0.6);
}

/* Card header row */
.winners-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

/* Icon box */
.winners-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(201,168,76,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #c9a84c;
    transition: background 0.3s ease;
}

.winners-card:hover .winners-icon {
    background: rgba(201,168,76,0.18);
}

.winners-icon-featured {
    background: rgba(201,168,76,0.15);
    color: #b8962e;
}

.winners-card-featured:hover .winners-icon-featured {
    background: rgba(201,168,76,0.25);
}

/* Card title */
.winners-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
}

/* Feature list */
.winners-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.winners-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.86rem;
    color: #333;
    line-height: 1.5;
}

.winners-dot {
    font-size: 0.35rem !important;
    color: #c9a84c;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .winners-card {
        padding: 24px 20px;
    }

    .winners-card-title {
        font-size: 0.95rem;
    }

    .winners-list li {
        font-size: 0.83rem;
    }
}

/*** Winners Receive End ***/
/*** Winner Package Materials Start ***/

.trophy-section {
    background: #ede8df;
    position: relative;
    overflow: hidden;
}

.trophy-section::before {
    content: '';
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.trophy-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Eyebrow */
.trophy-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 16px;
}

.trophy-eyebrow-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a84c;
}

.trophy-eyebrow-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a84c);
}

.trophy-eyebrow-line:last-child {
    background: linear-gradient(90deg, #c9a84c, transparent);
}

/* Heading */
.trophy-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 14px;
    line-height: 1.2;
}

.trophy-heading em {
    color: #c9a84c;
    font-style: italic;
}

.trophy-sub {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.8;
    margin-top: 16px;
}

/* Cards */
.trophy-card {
    background: #ffffff;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.trophy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12), 0 0 0 1px rgba(201,168,76,0.3);
}

.trophy-card-alt {
    background: #fdfaf4;
}

/* Card label row */
.trophy-card-label {
    padding: 18px 28px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    background: rgba(201,168,76,0.05);
}

.trophy-card-label em {
    color: #c9a84c;
    font-style: italic;
}

/* Trophy image */
.trophy-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.trophy-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    filter: brightness(0.92) saturate(1.05);
}

.trophy-card:hover .trophy-img-wrap img {
    transform: scale(1.04);
}

/* Image overlay tag */
.trophy-img-overlay {
    position: absolute;
    bottom: 14px;
    left: 18px;
}

.trophy-img-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(26,26,46,0.75);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(201,168,76,0.4);
    color: #c9a84c;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 6px;
}

/* Applicable section */
.trophy-applicable {
    padding: 26px 28px 30px;
    flex: 1;
}

.trophy-applicable-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.trophy-applicable-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: rgba(201,168,76,0.4);
    border-radius: 2px;
}

.trophy-applicable-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.trophy-applicable-grid div {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.82rem;
    color: #333;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.trophy-applicable-grid div:hover {
    color: #1a1a2e;
}

.trophy-check-icon {
    color: #c9a84c;
    font-size: 0.72rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Responsive */
@media (max-width: 991px) {
    .trophy-applicable-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .trophy-heading {
        font-size: 2rem;
    }

    .trophy-applicable-grid {
        grid-template-columns: 1fr;
    }

    .trophy-card-label {
        padding: 16px 20px;
    }

    .trophy-applicable {
        padding: 20px 20px 24px;
    }
}

/*** Winner Package Materials End ***/

/*** Winner Plaque & Medal Start ***/

.plaque-section {
    background: #fefcf7;
    position: relative;
    overflow: hidden;
}

.plaque-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 10%, rgba(201,168,76,0.35) 50%, transparent 90%);
}

.plaque-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(201,168,76,0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Heading */
.plaque-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 14px;
    line-height: 1.2;
}

.plaque-heading em {
    color: #c9a84c;
    font-style: italic;
}

.plaque-sub {
    font-size: 0.9rem;
    color: #333;
    margin-top: 16px;
    line-height: 1.8;
}

/* Cards */
.plaque-card {
    background: #ffffff;
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 24px rgba(201,168,76,0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.plaque-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(201,168,76,0.15);
}

/* Top label */
.plaque-card-top {
    padding: 18px 26px;
    border-bottom: 1px solid rgba(201,168,76,0.12);
    background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 100%);
}

.plaque-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    text-align: center;
}

.plaque-card-title em {
    color: #c9a84c;
    font-style: italic;
}

/* Image */
.plaque-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    flex: 1;
}

.plaque-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.plaque-card:hover .plaque-img-wrap img {
    transform: scale(1.04);
}

/* Subtle light-sweep shine overlay */
.plaque-img-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0) 40%,
        rgba(255,255,255,0.06) 50%,
        rgba(255,255,255,0) 60%
    );
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.plaque-card:hover .plaque-img-shine {
    opacity: 0;
}

/* Footer spec bar */
.plaque-card-footer {
    padding: 13px 26px;
    border-top: 1px solid rgba(201,168,76,0.12);
    background: rgba(201,168,76,0.03);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #333;
    font-style: italic;
}

.plaque-footer-icon {
    color: #c9a84c;
    font-size: 0.78rem;
    flex-shrink: 0;
}

/* Important Notes */
.plaque-notes {
    background: #fff8ec;
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: 16px;
    padding: 36px 40px;
    position: relative;
    overflow: hidden;
}

.plaque-notes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #c9a84c 0%, rgba(201,168,76,0.2) 60%, transparent 100%);
    border-radius: 16px 16px 0 0;
}

.plaque-notes::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.plaque-notes-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.plaque-notes-icon-wrap {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(220,53,69,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    font-size: 0.95rem;
}

.plaque-notes-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

/* Notes grid */
.plaque-notes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 40px;
}

.plaque-note-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.plaque-note-full {
    grid-column: span 2;
}

.plaque-note-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    font-size: 0.72rem;
    font-weight: 800;
    color: #a07820;
    flex-shrink: 0;
    margin-top: 1px;
}

.plaque-note-item p {
    font-size: 0.86rem;
    color: #333;
    line-height: 1.65;
    margin: 0;
}

.plaque-note-item p strong {
    color: #1a1a2e;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .plaque-heading {
        font-size: 2rem;
    }

    .plaque-notes {
        padding: 26px 22px;
    }

    .plaque-notes-grid {
        grid-template-columns: 1fr;
    }

    .plaque-note-full {
        grid-column: span 1;
    }
}

/*** Winner Plaque & Medal End ***/

/*** Winner Package Pricing Start ***/

.wp-section {
    background: #eee9e0;
    position: relative;
}

.wp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}

/* Table outer */
.wp-table-outer {
    width: 100%;
    overflow-x: auto;
    border-radius: 14px;
    box-shadow: 0 6px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(201,168,76,0.2);
}

.wp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
    background: #ffffff;
}

/* THEAD */
thead tr {
    background: #1a1a2e;
}

.wp-th-label {
    padding: 20px 22px;
    min-width: 210px;
    vertical-align: middle;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.wp-choose-label {
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #c9a84c;
    line-height: 1.5;
}

.wp-th {
    padding: 14px 10px;
    text-align: center;
    vertical-align: bottom;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.wp-th:last-child { border-right: none; }

.wp-tier-name {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.7);
    font-family: 'Playfair Display', serif;
    padding-top: 6px;
}

/* Popular column */
.wp-th-popular {
    background: rgba(201,168,76,0.1);
    border-left: 2px solid rgba(201,168,76,0.35);
    border-right: 2px solid rgba(201,168,76,0.35) !important;
    padding-top: 0;
}

.wp-tier-gold { color: #c9a84c !important; }

/* Limited column */
.wp-th-limited {
    background: rgba(220,53,69,0.08);
    border-left: 2px solid rgba(220,53,69,0.3);
    padding-top: 0;
}

.wp-tier-red { color: #e8796a !important; }

/* Badges */
.wp-badge-popular {
    display: inline-block;
    background: #c9a84c;
    color: #1a1200;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 0 0 8px 8px;
    margin-bottom: 4px;
}

.wp-badge-limited {
    display: inline-block;
    background: #dc3545;
    color: #fff;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 0 0 8px 8px;
    margin-bottom: 4px;
}

/* ROWS */
.wp-row td {
    border-bottom: 1px solid #f0ece4;
}

.wp-row:last-child td { border-bottom: none; }
.wp-row-alt { background: #fdf9f2; }
.wp-row:hover td { background: #fdf5e6; transition: background 0.2s ease; }
.wp-row:hover .wp-td-popular { background: rgba(201,168,76,0.13) !important; }

/* Price row special */
.wp-row-price td {
    border-bottom: 2px solid rgba(201,168,76,0.2) !important;
}

.wp-td-label {
    padding: 16px 22px;
    vertical-align: middle;
    border-right: 1px solid #ede9e0;
    min-width: 210px;
}

.wp-row-title {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
}

.wp-row-note {
    display: block;
    font-size: 0.72rem;
    color: #333;
    margin-top: 2px;
}

.wp-td {
    padding: 16px 10px;
    text-align: center;
    vertical-align: middle;
    font-size: 0.86rem;
    color: #333;
    font-weight: 500;
    border-right: 1px solid #ede9e0;
    line-height: 1.4;
}

.wp-td:last-child { border-right: none; }

/* Popular & Limited cells */
.wp-td-popular {
    background: rgba(201,168,76,0.06) !important;
    border-left: 2px solid rgba(201,168,76,0.25);
    border-right: 2px solid rgba(201,168,76,0.25) !important;
    font-weight: 700;
    color: #1a1a2e;
}

.wp-td-limited {
    background: rgba(220,53,69,0.03) !important;
    border-left: 2px solid rgba(220,53,69,0.15);
}

/* Strike */
.wp-strike {
    display: block;
    font-size: 0.7rem;
    color: #333;
    text-decoration: line-through;
    font-weight: 400;
    margin-bottom: 2px;
}

/* Check / Cross */
.wp-check {
    font-size: 1.15rem;
    color: #198754;
}

.wp-cross {
    font-size: 1.15rem;
    color: #dc3545;
    opacity: 0.55;
}

/*** Winner Package Pricing End ***/


/*** Gala Ceremony Start ***/

.gala-section {
    background: #f4efe6;
    position: relative;
    overflow: hidden;
}

.gala-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.gala-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.gala-heading em {
    color: #c9a84c;
    font-style: italic;
}

/* Cards */
.gala-card {
    background: #ffffff;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 14px;
    padding: 32px 30px;
    height: 100%;
    box-shadow: 0 4px 28px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gala-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(201,168,76,0.12);
}

.gala-card-date {
    border-top: 3px solid #c9a84c;
}

.gala-card-announce {
    border-top: 3px solid rgba(201,168,76,0.4);
}

.gala-card-icon-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(201,168,76,0.12);
}

.gala-card-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 9px;
    background: rgba(201,168,76,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-size: 0.95rem;
}

.gala-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

/* Date/venue detail rows */
.gala-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
}

.gala-detail-item:last-child { margin-bottom: 0; }

.gala-detail-icon {
    color: #c9a84c;
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Announcement card */
.gala-announce-intro {
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 14px;
    line-height: 1.6;
}

.gala-announce-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.gala-announce-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.84rem;
    color: #333;
    line-height: 1.4;
}

.gala-announce-list li i {
    color: #c9a84c;
    font-size: 0.78rem;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .wp-td-label,
    .wp-th-label {
        min-width: 160px;
        padding: 14px 14px;
    }

    .wp-th, .wp-td {
        padding: 14px 8px;
        font-size: 0.78rem;
    }

    .gala-heading { font-size: 2rem; }

    .gala-announce-list {
        grid-template-columns: 1fr;
    }

    .gala-card {
        padding: 24px 20px;
    }
}

/*** Gala Ceremony End ***/

/*** Gala FAQ Section Start ***/
 
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
body {
    font-family: 'DM Sans', sans-serif;
    background: #f8f4ee;
}
 
/* SECTION */
.gfaq-section {
    background: #faf7f2;
    position: relative;
    padding: 90px 0 100px;
    overflow: hidden;
}
 
.gfaq-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 68%);
    pointer-events: none;
}
 
.gfaq-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(26,26,46,0.04) 0%, transparent 70%);
    pointer-events: none;
}
 
/* CONTAINER */
.gfaq-container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
 
/* HEADER */
.gfaq-header {
    text-align: center;
    margin-bottom: 60px;
}
 
.gfaq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 18px;
}
 
.gfaq-eyebrow::before,
.gfaq-eyebrow::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a84c);
}
 
.gfaq-eyebrow::after {
    background: linear-gradient(90deg, #c9a84c, transparent);
}
 
.gfaq-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.18;
    letter-spacing: -0.5px;
}
 
.gfaq-title em {
    color: #c9a84c;
    font-style: italic;
}
 
.gfaq-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px auto 0;
}
 
.gfaq-divider-line {
    width: 60px;
    height: 1px;
    background: rgba(201,168,76,0.35);
}
 
.gfaq-divider-diamond {
    width: 6px;
    height: 6px;
    background: #c9a84c;
    transform: rotate(45deg);
    opacity: 0.7;
}
 
.gfaq-sub {
    font-size: 0.93rem;
    color: #333;
    margin-top: 16px;
    line-height: 1.7;
    font-weight: 300;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    letter-spacing: 0.2px;
}
 
/* ACCORDION LIST */
.gfaq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
 
/* ITEM */
.gfaq-item {
    background: #ffffff;
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(26,26,46,0.04);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
 
.gfaq-item:hover {
    box-shadow: 0 6px 32px rgba(201,168,76,0.1);
    border-color: rgba(201,168,76,0.32);
}
 
.gfaq-item.is-open {
    border-color: rgba(201,168,76,0.38);
    box-shadow: 0 8px 40px rgba(201,168,76,0.12);
}
 
/* TRIGGER */
.gfaq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 26px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}
 
.gfaq-trigger:hover {
    background: rgba(201,168,76,0.03);
}
 
.gfaq-item.is-open .gfaq-trigger {
    border-bottom: 1px solid rgba(201,168,76,0.12);
}
 
/* Number badge */
.gfaq-num {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: #1a1a2e;
    color: #c9a84c;
    font-family: 'Playfair Display', serif;
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
}
 
.gfaq-item.is-open .gfaq-num {
    background: #c9a84c;
    color: #1a1200;
}
 
.gfaq-question {
    flex: 1;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.45;
    letter-spacing: -0.1px;
}
 
/* Chevron icon */
.gfaq-chevron {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-size: 0.75rem;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), background 0.3s ease;
}
 
.gfaq-item.is-open .gfaq-chevron {
    transform: rotate(180deg);
    background: rgba(201,168,76,0.08);
}
 
/* ANSWER PANEL */
.gfaq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1);
}
 
.gfaq-panel-inner {
    padding: 24px 26px 26px;
}
 
.gfaq-answer {
    font-size: 0.91rem;
    color: #333;
    line-height: 1.78;
    font-weight: 400;
    margin-bottom: 18px;
}
 
.gfaq-answer:last-child { margin-bottom: 0; }
 
/* Inline callout blocks */
.gfaq-callout {
    border-radius: 10px;
    padding: 18px 20px;
    margin-top: 16px;
}
 
.gfaq-callout-info {
    background: rgba(201,168,76,0.06);
    border-left: 3px solid #c9a84c;
}
 
.gfaq-callout-warn {
    background: rgba(220,53,69,0.04);
    border-left: 3px solid rgba(220,53,69,0.5);
}
 
.gfaq-callout-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 12px;
}
 
.gfaq-callout-warn .gfaq-callout-label {
    color: #c0473a;
}
 
.gfaq-callout-label i { font-size: 0.82rem; }
 
.gfaq-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
 
.gfaq-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.87rem;
    color: #333;
    line-height: 1.5;
}
 
.gfaq-checklist li i {
    color: #c9a84c;
    font-size: 0.78rem;
    margin-top: 3px;
    flex-shrink: 0;
}
 
.gfaq-callout-warn .gfaq-checklist li i {
    color: #c0473a;
}
 
/* Highlight text */
.gfaq-hl {
    font-weight: 700;
    color: #1a1a2e;
}
 
/* Link */
.gfaq-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.83rem;
    font-weight: 600;
    color: #c9a84c;
    text-decoration: none;
    letter-spacing: 0.4px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(201,168,76,0.3);
    transition: border-color 0.2s ease, color 0.2s ease;
}
 
.gfaq-link:hover {
    color: #b8943a;
    border-color: #c9a84c;
}
 
/* Responsive */
@media (max-width: 640px) {
    .gfaq-section { padding: 60px 0 70px; }
    .gfaq-title { font-size: 2.1rem; }
    .gfaq-trigger { padding: 18px 18px; gap: 14px; }
    .gfaq-panel-inner { padding: 18px 18px 20px; }
    .gfaq-question { font-size: 0.88rem; }
}
 
/*** Gala FAQ Section End ***/

/*** Gala Photos Section Start ***/
 
.gphotos-section {
    background: #faf7f2;
    position: relative;
    padding: 90px 0 100px;
    overflow: hidden;
}
 
.gphotos-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 68%);
    pointer-events: none;
}
 
.gphotos-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(26,26,46,0.04) 0%, transparent 70%);
    pointer-events: none;
}
 
/* CONTAINER */
.gphotos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
 
/* HEADER */
.gphotos-header {
    text-align: center;
    margin-bottom: 60px;
}
 
.gphotos-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 18px;
}
 
.gphotos-eyebrow::before,
.gphotos-eyebrow::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a84c);
}
 
.gphotos-eyebrow::after {
    background: linear-gradient(90deg, #c9a84c, transparent);
}
 
.gphotos-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.18;
    letter-spacing: -0.5px;
}
 
.gphotos-title em {
    color: #c9a84c;
    font-style: italic;
}
 
.gphotos-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px auto 0;
}
 
.gphotos-divider-line {
    width: 60px;
    height: 1px;
    background: rgba(201,168,76,0.35);
}
 
.gphotos-divider-diamond {
    width: 6px;
    height: 6px;
    background: #c9a84c;
    transform: rotate(45deg);
    opacity: 0.7;
}
 
.gphotos-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #333;
    margin-top: 16px;
    line-height: 1.7;
    letter-spacing: 0.2px;
}
 
/* GRID */
.gphotos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
 
/* CARD */
.gphotos-card {
    background: #ffffff;
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26,26,46,0.06);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease, border-color 0.3s ease;
}
 
.gphotos-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(201,168,76,0.14);
    border-color: rgba(201,168,76,0.36);
}
 
/* IMAGE WRAPPER */
.gphotos-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #1a1a2e;
}
 
.gphotos-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.4,0,0.2,1), filter 0.4s ease;
    filter: brightness(0.96);
}
 
.gphotos-card:hover .gphotos-img-wrap img {
    transform: scale(1.04);
    filter: brightness(1);
}
 
/* Year badge */
.gphotos-year-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(26,26,46,0.82);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(201,168,76,0.4);
    color: #c9a84c;
    font-family: 'Playfair Display', serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 20px;
}
 
/* Overlay shimmer on hover */
.gphotos-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(26,26,46,0.45) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}
 
.gphotos-card:hover .gphotos-img-overlay {
    opacity: 1;
}
 
/* CARD BODY */
.gphotos-card-body {
    padding: 26px 28px 28px;
    border-top: 2px solid rgba(201,168,76,0.15);
}
 
.gphotos-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.22rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.35;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}
 
.gphotos-card-title em {
    color: #c9a84c;
    font-style: italic;
}
 
.gphotos-card-desc {
    font-size: 0.88rem;
    color: #333;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 22px;
}
 
/* BUTTON */
.gphotos-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #1a1a2e;
    color: #c9a84c;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 11px 22px;
    border-radius: 8px;
    border: 1px solid rgba(201,168,76,0.25);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
 
.gphotos-btn:hover {
    background: #c9a84c;
    color: #1a1200;
    border-color: #c9a84c;
    transform: translateX(2px);
}
 
.gphotos-btn i {
    font-size: 0.82rem;
    transition: transform 0.25s ease;
}
 
.gphotos-btn:hover i {
    transform: translateX(3px);
}
 
/* Responsive */
@media (max-width: 768px) {
    .gphotos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
 
    .gphotos-title { font-size: 2.1rem; }
    .gphotos-section { padding: 60px 0 70px; }
    .gphotos-card-body { padding: 20px 20px 22px; }
}
 
/*** Gala Photos Section End ***/
/*** Gala Videos Section Start ***/
 
/* SECTION */
.gvid-section {
    background: #111122;
    position: relative;
    padding: 90px 0 100px;
    overflow: hidden;
}
 
.gvid-section::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -100px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, transparent 65%);
    pointer-events: none;
}
 
.gvid-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.04) 0%, transparent 68%);
    pointer-events: none;
}
 
/* CONTAINER */
.gvid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
 
/* HEADER */
.gvid-header {
    text-align: center;
    margin-bottom: 60px;
}
 
.gvid-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 18px;
}
 
.gvid-eyebrow::before,
.gvid-eyebrow::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a84c);
}
 
.gvid-eyebrow::after {
    background: linear-gradient(90deg, #c9a84c, transparent);
}
 
.gvid-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #f0ece2;
    line-height: 1.18;
    letter-spacing: -0.5px;
}
 
.gvid-title em {
    color: #c9a84c;
    font-style: italic;
}
 
.gvid-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px auto 0;
}
 
.gvid-divider-line {
    width: 60px;
    height: 1px;
    background: rgba(201,168,76,0.3);
}
 
.gvid-divider-diamond {
    width: 6px;
    height: 6px;
    background: #c9a84c;
    transform: rotate(45deg);
    opacity: 0.7;
}
 
.gvid-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(240,236,226,0.55);
    margin-top: 16px;
    line-height: 1.7;
    letter-spacing: 0.2px;
}
 
/* GRID */
.gvid-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
 
.gvid-grid .gvid-card:nth-child(4) {
    grid-column: 1;
}
 
/* CARD */
.gvid-card {
    background: #1c1c30;
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(0,0,0,0.3);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.35s ease,
                border-color 0.3s ease;
}
 
.gvid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 52px rgba(0,0,0,0.45), 0 0 0 1px rgba(201,168,76,0.2);
    border-color: rgba(201,168,76,0.3);
}
 
/* VIDEO EMBED */
.gvid-embed-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0a0a18;
    cursor: pointer;
}
 
.gvid-embed-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
 
/* Play button overlay */
.gvid-thumb {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0a0a18;
    transition: opacity 0.3s ease;
    z-index: 2;
}
 
.gvid-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: opacity 0.35s ease, transform 0.5s ease;
}
 
.gvid-card:hover .gvid-thumb img {
    opacity: 0.65;
    transform: scale(1.04);
}
 
.gvid-play-btn {
    position: relative;
    z-index: 3;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(255,0,0,0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
 
.gvid-card:hover .gvid-play-btn {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(255,0,0,0.5);
}
 
.gvid-play-btn svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
    margin-left: 4px;
}
 
/* "Watch on YouTube" label */
.gvid-yt-label {
    position: relative;
    z-index: 3;
    margin-top: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}
 
.gvid-yt-label svg {
    width: 14px;
    height: 10px;
    fill: #ff0000;
}
 
/* Channel info strip */
.gvid-channel-strip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}
 
.gvid-channel-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(201,168,76,0.2);
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
 
.gvid-channel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1 !important;
    transform: none !important;
    position: static !important;
}
 
.gvid-channel-info {
    flex: 1;
    min-width: 0;
}
 
.gvid-video-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}
 
.gvid-channel-name {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.6);
    margin-top: 1px;
}
 
/* CARD BODY */
.gvid-card-body {
    padding: 22px 22px 24px;
    border-top: 1px solid rgba(201,168,76,0.1);
}
 
.gvid-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f0ece2;
    line-height: 1.35;
    margin-bottom: 9px;
    letter-spacing: -0.1px;
}
 
.gvid-card-title em {
    color: #c9a84c;
    font-style: italic;
}
 
.gvid-card-desc {
    font-size: 0.86rem;
    color: rgba(240,236,226,0.5);
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 16px;
}
 
/* Tags row */
.gvid-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
 
.gvid-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(201,168,76,0.85);
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.18);
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.2px;
}
 
.gvid-tag i {
    font-size: 0.65rem;
    opacity: 0.7;
}
 
/* Responsive */
@media (max-width: 900px) {
    .gvid-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gvid-grid .gvid-card:nth-child(4) {
        grid-column: auto;
    }
}
 
@media (max-width: 580px) {
    .gvid-grid {
        grid-template-columns: 1fr;
    }
    .gvid-title { font-size: 2.1rem; }
    .gvid-section { padding: 60px 0 70px; }
    .gvid-card-body { padding: 18px 18px 20px; }
}
 
/*** Gala Videos Section End ***/

/*** Winners Testimonial Section Start ***/
 
/* SECTION */
.wtest-section {
    background: #111122;
    position: relative;
    padding: 90px 0 100px;
    overflow: hidden;
}
 
.wtest-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 65%);
    pointer-events: none;
}
 
.wtest-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.04) 0%, transparent 68%);
    pointer-events: none;
}
 
/* CONTAINER */
.wtest-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
 
/* HEADER */
.wtest-header {
    text-align: center;
    margin-bottom: 56px;
}
 
.wtest-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 18px;
}
 
.wtest-eyebrow::before,
.wtest-eyebrow::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a84c);
}
 
.wtest-eyebrow::after {
    background: linear-gradient(90deg, #c9a84c, transparent);
}
 
.wtest-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #f0ece2;
    line-height: 1.18;
    letter-spacing: -0.5px;
}
 
.wtest-title em {
    color: #c9a84c;
    font-style: italic;
}
 
.wtest-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px auto 0;
}
 
.wtest-divider-line {
    width: 60px;
    height: 1px;
    background: rgba(201,168,76,0.3);
}
 
.wtest-divider-diamond {
    width: 6px;
    height: 6px;
    background: #c9a84c;
    transform: rotate(45deg);
    opacity: 0.7;
}
 
.wtest-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(240,236,226,0.5);
    margin-top: 16px;
    line-height: 1.7;
}
 
/* GRID */
.wtest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
 
/* CARD */
.wtest-card {
    border-radius: 14px;
    overflow: hidden;
    background: #0e0e1e;
    border: 1px solid rgba(201,168,76,0.1);
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.32s ease,
                border-color 0.28s ease;
    cursor: pointer;
}
 
.wtest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.22);
    border-color: rgba(201,168,76,0.28);
}
 
/* THUMB */
.wtest-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0a0a18;
    overflow: hidden;
}
 
.wtest-thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.35s ease, transform 0.5s ease;
}
 
.wtest-card:hover .wtest-thumb-img {
    opacity: 0.85;
    transform: scale(1.05);
}
 
/* Dark gradient overlay */
.wtest-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.1) 40%,
        rgba(0,0,0,0.55) 100%
    );
    z-index: 1;
}
 
/* Channel strip top */
.wtest-channel-strip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    z-index: 3;
}
 
.wtest-avatar {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.wtest-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
.wtest-channel-meta {
    flex: 1;
    min-width: 0;
}
 
.wtest-video-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}
 
.wtest-channel-name {
    font-size: 0.63rem;
    color: rgba(255,255,255,0.55);
    margin-top: 1px;
}
 
/* Play button */
.wtest-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255,0,0,0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255,0,0,0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease;
}
 
.wtest-card:hover .wtest-play {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 8px 28px rgba(255,0,0,0.55);
    background: rgba(255,0,0,0.98);
}
 
.wtest-play svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    margin-left: 3px;
}
 
/* YouTube label bottom */
.wtest-yt-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    z-index: 3;
}
 
.wtest-yt-bar-inner {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    border-radius: 6px;
    padding: 5px 10px;
}
 
.wtest-yt-bar-inner svg {
    width: 13px;
    height: 9px;
    fill: #ff0000;
    flex-shrink: 0;
}
 
.wtest-yt-bar-inner span {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.3px;
    white-space: nowrap;
}
 
/* Share / clock icons bottom-left */
.wtest-actions {
    position: absolute;
    bottom: 10px;
    left: 12px;
    display: flex;
    gap: 8px;
    z-index: 3;
}
 
.wtest-actions i {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: color 0.2s;
}
 
.wtest-actions i:hover { color: rgba(255,255,255,0.85); }
 
/* iframe overlay */
.wtest-iframe-wrap {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: none;
}
 
.wtest-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}
 
/* LOAD MORE */
.wtest-load-more {
    text-align: center;
    margin-top: 44px;
}
 
.wtest-btn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #c9a84c;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px 32px;
    border-radius: 8px;
    border: 1px solid rgba(201,168,76,0.35);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
 
.wtest-btn-more:hover {
    background: #c9a84c;
    color: #1a1200;
    border-color: #c9a84c;
}
 
/* Responsive */
@media (max-width: 900px) {
    .wtest-grid { grid-template-columns: repeat(2, 1fr); }
    .wtest-title { font-size: 2.3rem; }
}
 
@media (max-width: 560px) {
    .wtest-grid { grid-template-columns: 1fr; }
    .wtest-title { font-size: 2rem; }
    .wtest-section { padding: 60px 0 70px; }
}
 
/*** Winners Testimonial Section End ***/
 

/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.88)), url(../img/Who\ can\ participate.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 3px solid #c9a84c;
}

.footer-about {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-edition {
    color: #c9a84c;
    font-size: 0.88rem;
    font-weight: 600;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.3s;
}

.footer-socials a:hover {
    border-color: #c9a84c;
    color: #c9a84c;
}

.footer-col-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.footer-link {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    text-decoration: none;
    line-height: 2.2;
    display: block;
    transition: 0.3s;
}

.footer-link:hover {
    color: #c9a84c;
    padding-left: 5px;
    text-decoration: none;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact-item i {
    color: #c9a84c;
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    line-height: 1.7;
}

/*** Disclaimer + Copyright ***/
.footer-bottom {
    background: #111114;
    padding: 24px 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-disclaimer {
    margin-bottom: 16px;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.78rem;
    line-height: 1.8;
    margin: 0;
    text-align: center;
}

.disclaimer-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}
.footer-disclaimer a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.footer-disclaimer a:hover {
    color: rgba(255, 255, 255, 0.85);
}
.footer-copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 14px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    margin: 0;
}
/*** Footer End ***/

        
        /* ═══════════════════════════════════════
           BACK TO TOP
        ═══════════════════════════════════════ */
        .back-to-top-btn {
            position: fixed;
            right: 20px;
            bottom: 80px; /* lifted above mobile bar */
            z-index: 998;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #c9a84c;
            color: #fff;
            font-size: 16px;
            text-decoration: none;
            transition: background 0.3s, transform 0.2s;
            box-shadow: 0 2px 12px rgba(201,168,76,0.35);
        }
        .back-to-top-btn:hover {
            background: #b8933a;
            color: #fff;
            transform: translateY(-3px);
        }
        @media (min-width: 992px) {
            .back-to-top-btn { bottom: 30px; }
        }

        /* ═══════════════════════════════════════
           MOBILE BOTTOM CTA BAR
        ═══════════════════════════════════════ */
        .mobile-cta-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 997;
            background: #1a1a2e;
            border-top: 1px solid rgba(201,168,76,0.3);
            padding: 10px 16px;
            gap: 10px;
            align-items: center;
        }
        .mobile-cta-bar .btn-share-bar {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            background: transparent;
            color: #f6f5f2;
            font-size: 0.82rem;
            font-weight: 600;
            padding: 11px 0;
            border-radius: 8px;
            border: 1.5px solid rgba(201,168,76,0.5);
            cursor: pointer;
            font-family: 'Open Sans', sans-serif;
            transition: background 0.3s, color 0.3s, border-color 0.3s;
        }
        .mobile-cta-bar .btn-share-bar:hover {
            background: rgba(201,168,76,0.12);
            border-color: #c9a84c;
            color: #c9a84c;
        }
        .mobile-cta-bar .btn-register-bar {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            background: #c9a84c;
            color: #1a1200;
            font-size: 0.82rem;
            font-weight: 700;
            padding: 11px 0;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-family: 'Open Sans', sans-serif;
            letter-spacing: 0.3px;
            transition: background 0.3s;
        }
        .mobile-cta-bar .btn-register-bar:hover { background: #b8933a; }

        @media (max-width: 991.98px) {
            .mobile-cta-bar { display: flex; }
            body { padding-bottom: 72px; }
        }
        @media (min-width: 992px) {
            .mobile-cta-bar { display: none !important; }
        }

     

/*** Nomination Modal Start ***/
.nomination-modal {
    border-radius: 12px;
    border: none;
    background: #fffdf8;
    padding: 40px;
    position: relative;
}

.nomination-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.15);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #333;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.nomination-close:hover {
    border-color: #c9a84c;
    color: #c9a84c;
}

.nomination-header {
    margin-bottom: 28px;
}

.nomination-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #c9a84c;
    margin-bottom: 6px;
}

.nomination-sub {
    font-size: 0.9rem;
    color: #333;
    margin: 0;
}

.nomination-body {
    padding: 0;
}

.nom-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: block;
}

.nom-label span {
    color: #c9a84c;
}

.nom-conditional-star {
    color: #c9a84c;
}

.nom-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    padding: 0 14px;
    height: 48px;
    transition: border-color 0.3s;
}

.nom-input-wrap:focus-within {
    border-color: #c9a84c;
}

.nom-input-wrap i {
    color: #333;
    font-size: 0.85rem;
    margin-right: 10px;
    flex-shrink: 0;
}

.nom-input-wrap input,
.nom-input-wrap select {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.9rem;
    color: #333;
    width: 100%;
    height: 100%;
}

.nom-phone-wrap {
    display: flex;
    gap: 8px;
}

.nom-isd {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    padding: 0 10px;
    height: 48px;
    gap: 6px;
    min-width: 90px;
    transition: border-color 0.3s;
}

.nom-isd:focus-within {
    border-color: #c9a84c;
}

.nom-isd i {
    color: #333;
    font-size: 0.85rem;
}

.nom-isd select {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.9rem;
    color: #333;
}

.nom-agree {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #333;
}

.nom-agree input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #c9a84c;
    flex-shrink: 0;
}

.nom-agree a {
    color: #c9a84c;
    text-decoration: underline;
}

.nom-agree a:hover {
    color: #b8962e;
}

.btn-submit-nomination {
    background: #c9a84c;
    color: #1a1200;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    padding: 14px 60px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 8px;
}

.btn-submit-nomination:hover {
    background: #b8962e;
    transform: translateY(-2px);
}

/* Nomination Checkbox Grid */
.nom-checkbox-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 6px;
}

.nom-checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 7px 10px;
    border-radius: 6px;
    transition: background 0.2s;
    margin: 0;
    user-select: none;
}

.nom-checkbox-item:hover {
    background: rgba(201,168,76,0.07);
}

.nom-checkbox-item input[type="checkbox"] {
    display: none;
}

.nom-checkbox-box {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(201,168,76,0.4);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition: background 0.2s, border-color 0.2s;
    background: transparent;
}

.nom-checkbox-box i {
    font-size: 11px;
    color: #1a1000;
    opacity: 0;
    transition: opacity 0.15s;
}

.nom-checkbox-item input[type="checkbox"]:checked ~ .nom-checkbox-box {
    background: #c9a84c;
    border-color: #c9a84c;
}

.nom-checkbox-item input[type="checkbox"]:checked ~ .nom-checkbox-box i {
    opacity: 1;
}

.nom-checkbox-label {
    font-size: 0.88rem;
    color: #333;
    line-height: 1.5;
}

.nom-checkbox-item input[type="checkbox"]:checked ~ .nom-checkbox-label {
    color: #e8dfc8;
}

/* Highlight border when at least one is checked */
.nom-checkbox-grid.has-selection {
    border-color: rgba(201,168,76,0.45);
}

/* Others expandable input */
.nom-others-wrap {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}

.nom-others-wrap.open {
    max-height: 60px;
    opacity: 1;
    margin-top: 4px;
    margin-bottom: 2px;
}

.nom-others-wrap .nom-input-wrap {
    margin-left: 44px;
}

@media (max-width: 576px) {
    .nomination-modal {
        padding: 24px 16px;
    }
    .nomination-title {
        font-size: 1.5rem;
    }
    .nom-phone-wrap {
        flex-direction: column;
    }
    .btn-submit-nomination {
        padding: 14px 40px;
    }
    .nom-others-wrap .nom-input-wrap {
        margin-left: 0;
    }
}

/* Sector Dropdown Trigger */
.nom-sector-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    padding: 0 14px;
    height: 48px;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
    user-select: none;
}

.nom-sector-trigger:hover {
    border-color: #c9a84c;
}

.nom-sector-trigger.open {
    border-color: #c9a84c;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 -2px 0 0 rgba(201, 168, 76, 0.15);
}

.nom-sector-trigger.has-selection {
    border-color: rgba(201, 168, 76, 0.6);
}

.nom-sector-trigger-left {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.nom-sector-trigger-left > i {
    color: #333;
    font-size: 0.85rem;
    flex-shrink: 0;
}

#sectorTriggerText {
    font-size: 0.9rem;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#sectorTriggerText.selected {
    color: #333;
}

.nom-sector-chevron {
    color: #333;
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s;
}

.nom-sector-trigger.open .nom-sector-chevron {
    transform: rotate(180deg);
    color: #c9a84c;
}

/* Sector Collapsible Panel */
.nom-sector-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, border-color 0.3s;
    border: 1px solid transparent;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.nom-sector-panel.open {
    max-height: 700px;
    border-color: #c9a84c;
}

.nom-sector-panel .nom-checkbox-grid {
    border: none;
    border-radius: 0 0 8px 8px;
    margin-top: 0;
    background: #fff;
}

/* Searchable ISD Dropdown */
.nom-isd-dropdown {
    position: relative;
    flex-shrink: 0;
}

.nom-isd-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    padding: 0 10px;
    height: 48px;
    min-width: 100px;
    cursor: pointer;
    transition: border-color 0.3s;
    user-select: none;
    white-space: nowrap;
}

.nom-isd-trigger:hover,
.nom-isd-trigger.open {
    border-color: #c9a84c;
}

.nom-isd-trigger.open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.nom-isd-flag {
    font-size: 1.15rem;
    line-height: 1;
}

.nom-isd-code {
    font-size: 0.88rem;
    color: #333;
    font-weight: 600;
    min-width: 36px;
}

.nom-isd-chevron {
    font-size: 0.72rem;
    color: #333;
    transition: transform 0.3s ease, color 0.3s;
    margin-left: 2px;
}

.nom-isd-trigger.open .nom-isd-chevron {
    transform: rotate(180deg);
    color: #c9a84c;
}

/* Panel */
.nom-isd-panel {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    width: 300px;
    background: #fff;
    border: 1px solid #c9a84c;
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
}

.nom-isd-panel.open {
    display: flex;
}

/* Search input inside panel */
.nom-isd-search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}

.nom-isd-search-wrap i {
    color: #333;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.nom-isd-search-wrap input {
    border: none;
    outline: none;
    font-size: 0.88rem;
    color: #333;
    width: 100%;
    background: transparent;
}

.nom-isd-search-wrap input::placeholder {
    color: #333;
}

/* List */
.nom-isd-list {
    list-style: none;
    margin: 0;
    padding: 4px 0;
    max-height: 240px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

.nom-isd-list::-webkit-scrollbar {
    width: 4px;
}
.nom-isd-list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

.nom-isd-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    cursor: pointer;
    font-size: 0.87rem;
    color: #333;
    transition: background 0.15s;
}

.nom-isd-list li:hover,
.nom-isd-list li.active {
    background: rgba(201, 168, 76, 0.1);
}

.nom-isd-list li .isd-item-flag {
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
}

.nom-isd-list li .isd-item-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nom-isd-list li .isd-item-code {
    font-size: 0.8rem;
    color: #333;
    font-weight: 600;
    flex-shrink: 0;
}

.nom-isd-list .nom-isd-empty {
    color: #333;
    font-size: 0.85rem;
    text-align: center;
    padding: 16px;
    pointer-events: none;
}

/* highlight matched text */
.nom-isd-list li mark {
    background: rgba(201, 168, 76, 0.3);
    color: inherit;
    border-radius: 2px;
    padding: 0 1px;
}

@media (max-width: 576px) {
    .nom-isd-panel {
        width: 260px;
    }
}

/* How It Works Steps */
.nom-how-it-works {
    margin-top: 20px;
    margin-bottom: 8px;
}

.nom-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}

.nom-step {
    background: rgba(201, 168, 76, 0.07);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 10px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.nom-step-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #c9a84c;
    color: #1a1200;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nom-step-text {
    font-size: 0.8rem;
    color: #444;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.nom-disclaimer {
    background: rgba(201, 168, 76, 0.08);
    border-left: 3px solid #c9a84c;
    border-radius: 0 6px 6px 0;
    padding: 10px 14px;
    font-size: 0.78rem;
    color: #555;
    text-align: left;
    margin: 0;
    line-height: 1.5;
}

.nom-disclaimer i {
    color: #c9a84c;
    margin-right: 6px;
    font-size: 0.82rem;
}

@media (max-width: 768px) {
    .nom-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .nom-steps {
        grid-template-columns: 1fr;
    }
}

/*** Nomination Modal End ***/

/*** 404 Page Start ***/
 
.error-404-section {
    background: #f8f5f0;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}
 
.error-404-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, transparent 68%);
    pointer-events: none;
}
 
.error-404-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(26,26,46,0.04) 0%, transparent 70%);
    pointer-events: none;
}
 
/* NUMBER */
.error-404-number {
    font-family: 'Playfair Display', serif;
    font-size: 10rem;
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgba(201,168,76,0.35);
    letter-spacing: -4px;
    margin-bottom: 0;
    user-select: none;
    position: relative;
    display: inline-block;
}
 
.error-404-number::after {
    content: '404';
    position: absolute;
    inset: 0;
    color: transparent;
    -webkit-text-stroke: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.04) 60%, transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    pointer-events: none;
}
 
/* ICON BADGE */
.error-404-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(201,168,76,0.1);
    border: 2px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #c9a84c;
    font-size: 1.8rem;
}
 
/* DIVIDER */
.error-404-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px auto 28px;
}
 
.error-404-divider-line {
    width: 50px;
    height: 1px;
    background: rgba(201,168,76,0.35);
}
 
.error-404-divider-diamond {
    width: 6px;
    height: 6px;
    background: #c9a84c;
    transform: rotate(45deg);
    opacity: 0.7;
}
 
/* TEXT */
.error-404-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 16px;
}
 
.error-404-title em {
    color: #c9a84c;
    font-style: italic;
}
 
.error-404-desc {
    font-size: 0.97rem;
    color: #333;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto 36px;
}
 
/* BUTTONS */
.error-404-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
 
.btn-404-home {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #c9a84c;
    color: #1a1200;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}
 
.btn-404-home:hover {
    background: #b8962e;
    color: #1a1200;
    transform: translateY(-2px);
    text-decoration: none;
}
 
.btn-404-back {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: #1a1a2e;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 14px 28px;
    border-radius: 8px;
    border: 1.5px solid rgba(26,26,46,0.2);
    text-decoration: none;
    transition: border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
 
.btn-404-back:hover {
    border-color: #c9a84c;
    color: #c9a84c;
    transform: translateY(-2px);
    text-decoration: none;
}
 
/* QUICK LINKS */
.error-404-links-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
    margin-top: 48px;
    margin-bottom: 16px;
}
 
.error-404-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
 
.error-404-link-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 20px;
    padding: 7px 18px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
 
.error-404-link-pill i {
    color: #c9a84c;
    font-size: 0.75rem;
}
 
.error-404-link-pill:hover {
    border-color: #c9a84c;
    color: #1a1a2e;
    box-shadow: 0 4px 16px rgba(201,168,76,0.12);
    text-decoration: none;
}
 
/* RESPONSIVE */
@media (max-width: 768px) {
    .error-404-number {
        font-size: 7rem;
    }
 
    .error-404-title {
        font-size: 1.8rem;
    }
 
    .error-404-section {
        min-height: auto;
        padding: 80px 0 60px;
    }
 
    .btn-404-home,
    .btn-404-back {
        width: 100%;
        justify-content: center;
    }
 
    .error-404-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 280px;
        margin: 0 auto;
    }
}
 
/*** 404 Page End ***/
 
            /*** Participate Section Start ***/
.participate-section {
    background: #fdfdfc;
}
 
.participate-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.3;
}
 
.participate-accent {
    color: #c9a84c;
    font-style: italic;
}
 
.participate-subtitle {
    color: #666;
    font-size: 0.97rem;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
}
 
.participate-card {
    background: #ffffff;
    border: 1px solid #ece9e0;
    border-radius: 14px;
    padding: 28px 16px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    cursor: default;
}
 
.participate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(201, 168, 76, 0.18);
    border-color: #c9a84c;
}
 
.participate-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #c9a84c;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: background 0.3s ease, transform 0.3s ease;
}
 
.participate-card:hover .participate-icon {
    background: #1a1a2e;
    transform: scale(1.08);
}
 
.participate-icon i {
    color: #ffffff;
    font-size: 1.4rem;
}
 
.participate-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 6px;
    line-height: 1.4;
}
 
.participate-card:hover .participate-label {
    color: #c9a84c;
}
 
.participate-detail {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
    line-height: 1.5;
}
 
.participate-card:hover .participate-detail {
    color: #9a7530;
}

/*** Participate Section End ***/

/* Toast Overlay */
.nom-toast-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.nom-toast-overlay.show {
    opacity: 1;
    pointer-events: all;
}

/* Toast */
.nom-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) scale(0.9);
    min-width: 340px;
    max-width: 480px;
    padding: 36px 40px 28px;
    border-radius: 16px;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}
.nom-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) scale(1);
    pointer-events: all;
}
.nom-toast.toast-success {
    background: rgba(76, 175, 80, 0.3);
}
.nom-toast.toast-error {
    background: rgba(239, 83, 80, 0.3);
}

/* Icon */
.nom-toast-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
    display: block;
    animation: toastIconPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}
@keyframes toastIconPop {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* Title */
.nom-toast-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    display: block;
}

/* Subtitle */
.nom-toast-sub {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 6px;
}

/* Ref badge */
.nom-toast-ref {
    display: inline-block;
    margin: 8px 0 16px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* Close button */
.nom-toast-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s;
}
.nom-toast-close:hover {
    color: #fff;
}

/* Progress bar */
.nom-toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}
.nom-toast-progress-bar {
    height: 100%;
    width: 100%;
    transform-origin: left;
    transform: scaleX(1);
    transition: transform linear;
}
.toast-success .nom-toast-progress-bar { background: rgba(255, 255, 255, 0.5); }
.toast-error   .nom-toast-progress-bar { background: rgba(255, 255, 255, 0.5); }


/*** Shop Page Start ***/

/* ── Trust Strip ── */
.shop-trust-strip {
    background: #1a1a2e;
    padding: 18px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.shop-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.shop-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.shop-trust-item i {
    color: #c9a84c;
    font-size: 0.9rem;
}

.shop-trust-divider {
    width: 1px;
    height: 16px;
    background: rgba(201, 168, 76, 0.25);
}

@media (max-width: 768px) {
    .shop-trust-row {
        gap: 16px;
    }
    .shop-trust-divider {
        display: none;
    }
    .shop-trust-item {
        font-size: 0.74rem;
    }
}

/* ── Shop Section ── */
.shop-section {
    background: #fefdfb;
}

.shop-eyebrow {
    display: inline-flex;
    align-items: center;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: #c9a84c;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
}

.shop-eyebrow-dark {
    background: rgba(201, 168, 76, 0.14);
}

.shop-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a2e;
}

.shop-heading-dark {
    color: #ffffff;
}

.shop-heading-accent {
    color: #c9a84c;
    font-style: italic;
}

.shop-subtitle {
    font-size: 0.97rem;
    color: #333;
    max-width: 640px;
    margin: 14px auto 0;
    line-height: 1.8;
}

/* ── Product Cards ── */
.shop-card {
    background: #ffffff;
    border: 1px solid #ece9e0;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.shop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 44px rgba(201, 168, 76, 0.16);
    border-color: rgba(201, 168, 76, 0.35);
}

.shop-card-featured {
    border: 2px solid #c9a84c;
    box-shadow: 0 8px 36px rgba(201, 168, 76, 0.18);
}

.shop-card-featured:hover {
    box-shadow: 0 18px 50px rgba(201, 168, 76, 0.26);
}

.shop-card-ribbon {
    position: absolute;
    top: 18px;
    right: -34px;
    background: #c9a84c;
    color: #1a1200;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 40px;
    transform: rotate(45deg);
    z-index: 5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.shop-card-media {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #22203a 100%);
    padding: 38px 28px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.shop-card-media-featured {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2548 100%);
}

.shop-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
}

.shop-card-badge-gold {
    background: rgba(201, 168, 76, 0.18);
    color: #c9a84c;
}

.shop-card-icon-wrap {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.12);
    border: 2px solid rgba(201, 168, 76, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.shop-card:hover .shop-card-icon-wrap {
    transform: scale(1.07);
}

.shop-card-icon-wrap i {
    font-size: 2.1rem;
    color: #c9a84c;
}

.shop-card-icon-wrap-gold {
    background: rgba(201, 168, 76, 0.22);
    border-color: #c9a84c;
}

.shop-card-body {
    padding: 30px 32px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shop-card-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    background: #f0ece3;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 14px;
    width: fit-content;
}

.shop-card-tag-gold {
    color: #b8962e;
    background: rgba(201, 168, 76, 0.14);
}

.shop-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.shop-card-desc {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 22px;
}

.shop-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.shop-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1;
}

.shop-price-gold {
    color: #c9a84c;
}

.shop-price-unit {
    font-size: 0.85rem;
    color: #333;
}

.shop-moq {
    display: block;
    font-size: 0.78rem;
    color: #333;
    margin-bottom: 22px;
}

.shop-moq i {
    color: #c9a84c;
}

.shop-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.shop-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #333;
    line-height: 1.5;
}

.shop-feature-list li i {
    color: #c9a84c;
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.btn-shop-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a2e;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-shop-cta:hover {
    background: #2a2a4e;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-shop-cta-gold {
    background: #c9a84c;
    color: #1a1200;
}

.btn-shop-cta-gold:hover {
    background: #b8962e;
    color: #1a1200;
}

.shop-card-footnote {
    font-size: 0.74rem;
    color: #333;
    text-align: center;
    margin: 12px 0 0;
    line-height: 1.5;
    opacity: 0.75;
}

@media (max-width: 768px) {
    .shop-card-body {
        padding: 26px 22px 28px;
    }
    .shop-card-ribbon {
        right: -38px;
        top: 14px;
    }
}

/* ── Compare Section ── */
.shop-compare-section {
    background: #1a1a2e;
}

.shop-compare-wrap {
    border-radius: 14px;
    overflow-x: auto;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.shop-compare-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    background: #ffffff;
}

.shop-compare-th-label {
    background: #22203a;
    padding: 20px 24px;
    text-align: left;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: 38%;
}

.shop-compare-th {
    background: #22203a;
    padding: 20px 24px;
    text-align: center;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-compare-th-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
}

.shop-compare-th-price-gold {
    color: #c9a84c;
}

.shop-compare-th-popular {
    background: #2d2a4f;
    position: relative;
}

.shop-compare-td-label {
    padding: 16px 24px;
    font-size: 0.88rem;
    color: #1a1a2e;
    font-weight: 500;
    border-bottom: 1px solid #f0ece3;
}

.shop-compare-td {
    padding: 16px 24px;
    text-align: center;
    border-bottom: 1px solid #f0ece3;
    border-left: 1px solid #f0ece3;
}

.shop-compare-td-popular {
    background: rgba(201, 168, 76, 0.05);
}

.shop-check {
    color: #198754;
    font-size: 1.05rem;
}

.shop-cross {
    color: #dc3545;
    font-size: 1.05rem;
    opacity: 0.55;
}

.shop-compare-row-cta td {
    border-bottom: none;
    padding: 22px 24px;
}

.btn-shop-cta-sm {
    display: inline-block;
    background: #1a1a2e;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    padding: 10px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-shop-cta-sm:hover {
    background: #2a2a4e;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-shop-cta-sm-gold {
    background: #c9a84c;
    color: #1a1200;
}

.btn-shop-cta-sm-gold:hover {
    background: #b8962e;
    color: #1a1200;
}

.shop-compare-note {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 26px;
}

.shop-compare-note i {
    color: #c9a84c;
}

@media (max-width: 768px) {
    .shop-compare-th-label,
    .shop-compare-td-label {
        padding: 14px 16px;
    }
    .shop-compare-th,
    .shop-compare-td {
        padding: 14px 12px;
        font-size: 0.82rem;
    }
}

/*** Shop Page Start ***/

/* ── Trust Strip ── */
.shop-trust-strip {
    background: #1a1a2e;
    padding: 18px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.shop-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.shop-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.shop-trust-item i {
    color: #c9a84c;
    font-size: 0.9rem;
}

.shop-trust-divider {
    width: 1px;
    height: 16px;
    background: rgba(201, 168, 76, 0.25);
}

@media (max-width: 768px) {
    .shop-trust-row {
        gap: 16px;
    }
    .shop-trust-divider {
        display: none;
    }
    .shop-trust-item {
        font-size: 0.74rem;
    }
}

/* ── Shop Section ── */
.shop-section {
    background: #fefdfb;
}

.shop-eyebrow {
    display: inline-flex;
    align-items: center;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: #c9a84c;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
}

.shop-eyebrow-dark {
    background: rgba(201, 168, 76, 0.14);
}

.shop-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a2e;
}

.shop-heading-dark {
    color: #ffffff;
}

.shop-heading-accent {
    color: #c9a84c;
    font-style: italic;
}

.shop-subtitle {
    font-size: 0.97rem;
    color: #333;
    max-width: 640px;
    margin: 14px auto 0;
    line-height: 1.8;
}

/* ── Product Cards ── */
.shop-card {
    background: #ffffff;
    border: 1px solid #ece9e0;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.shop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 44px rgba(201, 168, 76, 0.16);
    border-color: rgba(201, 168, 76, 0.35);
}

.shop-card-featured {
    border: 2px solid #c9a84c;
    box-shadow: 0 8px 36px rgba(201, 168, 76, 0.18);
}

.shop-card-featured:hover {
    box-shadow: 0 18px 50px rgba(201, 168, 76, 0.26);
}

.shop-card-ribbon {
    position: absolute;
    top: 18px;
    right: -34px;
    background: #c9a84c;
    color: #1a1200;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 40px;
    transform: rotate(45deg);
    z-index: 5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.shop-card-media {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #22203a 100%);
    padding: 38px 28px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.shop-card-media-featured {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2548 100%);
}

.shop-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
}

.shop-card-badge-gold {
    background: rgba(201, 168, 76, 0.18);
    color: #c9a84c;
}

.shop-card-icon-wrap {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.12);
    border: 2px solid rgba(201, 168, 76, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.shop-card:hover .shop-card-icon-wrap {
    transform: scale(1.07);
}

.shop-card-icon-wrap i {
    font-size: 2.1rem;
    color: #c9a84c;
}

.shop-card-icon-wrap-gold {
    background: rgba(201, 168, 76, 0.22);
    border-color: #c9a84c;
}

.shop-card-body {
    padding: 30px 32px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shop-card-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    background: #f0ece3;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 14px;
    width: fit-content;
}

.shop-card-tag-gold {
    color: #b8962e;
    background: rgba(201, 168, 76, 0.14);
}

.shop-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.shop-card-desc {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 22px;
}

.shop-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.shop-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1;
}

.shop-price-gold {
    color: #c9a84c;
}

.shop-price-unit {
    font-size: 0.85rem;
    color: #333;
}

.shop-moq {
    display: block;
    font-size: 0.78rem;
    color: #333;
    margin-bottom: 22px;
}

.shop-moq i {
    color: #c9a84c;
}

.shop-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.shop-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #333;
    line-height: 1.5;
}

.shop-feature-list li i {
    color: #c9a84c;
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.btn-shop-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a2e;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-shop-cta:hover {
    background: #2a2a4e;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-shop-cta-gold {
    background: #c9a84c;
    color: #1a1200;
}

.btn-shop-cta-gold:hover {
    background: #b8962e;
    color: #1a1200;
}

.shop-card-footnote {
    font-size: 0.74rem;
    color: #333;
    text-align: center;
    margin: 12px 0 0;
    line-height: 1.5;
    opacity: 0.75;
}

@media (max-width: 768px) {
    .shop-card-body {
        padding: 26px 22px 28px;
    }
    .shop-card-ribbon {
        right: -38px;
        top: 14px;
    }
}

/* ── Compare Section ── */
.shop-compare-section {
    background: #1a1a2e;
}

.shop-compare-wrap {
    border-radius: 14px;
    overflow-x: auto;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.shop-compare-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    background: #ffffff;
}

.shop-compare-th-label {
    background: #22203a;
    padding: 20px 24px;
    text-align: left;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: 38%;
}

.shop-compare-th {
    background: #22203a;
    padding: 20px 24px;
    text-align: center;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-compare-th-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
}

.shop-compare-th-price-gold {
    color: #c9a84c;
}

.shop-compare-th-popular {
    background: #2d2a4f;
    position: relative;
}

.shop-compare-td-label {
    padding: 16px 24px;
    font-size: 0.88rem;
    color: #1a1a2e;
    font-weight: 500;
    border-bottom: 1px solid #f0ece3;
}

.shop-compare-td {
    padding: 16px 24px;
    text-align: center;
    border-bottom: 1px solid #f0ece3;
    border-left: 1px solid #f0ece3;
}

.shop-compare-td-popular {
    background: rgba(201, 168, 76, 0.05);
}

.shop-check {
    color: #198754;
    font-size: 1.05rem;
}

.shop-cross {
    color: #dc3545;
    font-size: 1.05rem;
    opacity: 0.55;
}

.shop-compare-row-cta td {
    border-bottom: none;
    padding: 22px 24px;
}

.btn-shop-cta-sm {
    display: inline-block;
    background: #1a1a2e;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    padding: 10px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-shop-cta-sm:hover {
    background: #2a2a4e;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-shop-cta-sm-gold {
    background: #c9a84c;
    color: #1a1200;
}

.btn-shop-cta-sm-gold:hover {
    background: #b8962e;
    color: #1a1200;
}

.shop-compare-note {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 26px;
}

.shop-compare-note i {
    color: #c9a84c;
}

@media (max-width: 768px) {
    .shop-compare-th-label,
    .shop-compare-td-label {
        padding: 14px 16px;
    }
    .shop-compare-th,
    .shop-compare-td {
        padding: 14px 12px;
        font-size: 0.82rem;
    }
}

/* ── Listing Rows (Alibaba-style) ── */
.shop-listing-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
}

.shop-listing {
    background: #ffffff;
    border: 1px solid #ece9e0;
    border-radius: 14px;
    padding: 24px;
    display: grid;
    grid-template-columns: 220px 1fr 180px;
    gap: 28px;
    align-items: center;
    position: relative;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.shop-listing:hover {
    box-shadow: 0 10px 36px rgba(201, 168, 76, 0.14);
    border-color: rgba(201, 168, 76, 0.3);
}

.shop-listing-featured {
    border: 2px solid #c9a84c;
    box-shadow: 0 6px 28px rgba(201, 168, 76, 0.16);
}

.shop-listing-flag {
    position: absolute;
    top: -1px;
    left: 24px;
    background: #c9a84c;
    color: #1a1200;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 0 0 6px 6px;
}

/* Media / carousel */
.shop-listing-media {
    position: relative;
    width: 220px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #22203a 100%);
    flex-shrink: 0;
}

.shop-listing-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.shop-listing-slide {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 3.4rem;
    color: #c9a84c;
}

.shop-listing-slide.active {
    display: flex;
}

.shop-slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #1a1a2e;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 2;
}

.shop-slide-nav:hover {
    background: #c9a84c;
    color: #1a1200;
}

.shop-slide-prev {
    left: 8px;
}

.shop-slide-next {
    right: 8px;
}

.shop-slide-dots {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 2;
}

.shop-slide-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.shop-slide-dot.active {
    background: #c9a84c;
    transform: scale(1.2);
}

/* Info column */
.shop-listing-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.shop-listing-title {
    font-size: 1.02rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.45;
    margin-bottom: 4px;
}

.shop-listing-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.shop-listing-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1;
}

.shop-listing-price-gold {
    color: #c9a84c;
}

.shop-listing-order {
    font-size: 0.85rem;
    color: #333;
    margin: 0;
}

.shop-listing-supplier {
    font-size: 0.85rem;
    color: #1a1a2e;
    text-decoration: underline;
    text-underline-offset: 2px;
    width: fit-content;
}

.shop-listing-supplier:hover {
    color: #c9a84c;
}

.shop-listing-trust {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #333;
}

.shop-listing-trust i {
    color: #c9a84c;
}

.shop-listing-trust-sep {
    color: #c9a84c;
}

/* Actions column */
.shop-listing-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
}

.btn-shop-chatnow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a2e;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 13px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-shop-chatnow:hover {
    background: #2a2a4e;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-shop-chatnow-gold {
    background: #c9a84c;
    color: #1a1200;
}

.btn-shop-chatnow-gold:hover {
    background: #b8962e;
    color: #1a1200;
}

.shop-listing-select {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #333;
    cursor: pointer;
    user-select: none;
}

.shop-listing-select input[type="checkbox"] {
    display: none;
}

.shop-listing-checkbox {
    width: 18px;
    height: 18px;
    border: 1.5px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
}

.shop-listing-checkbox i {
    font-size: 10px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.shop-listing-select input[type="checkbox"]:checked ~ .shop-listing-checkbox {
    background: #c9a84c;
    border-color: #c9a84c;
}

.shop-listing-select input[type="checkbox"]:checked ~ .shop-listing-checkbox i {
    opacity: 1;
}

/* Prominent button-style select toggle (replaces Chat now / Select pair) */
.shop-listing-select-btn {
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
    border: 1.5px solid #1a1a2e;
    border-radius: 8px;
    background: transparent;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}

.shop-listing-select-btn .shop-listing-checkbox {
    width: 22px;
    height: 22px;
    border-color: #1a1a2e;
}

.shop-listing-select-btn .shop-listing-checkbox i {
    font-size: 12px;
}

.shop-listing-select-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    color: #1a1a2e;
}

.shop-listing-select-active {
    display: none;
}

.shop-listing-select-btn:has(input:checked),
.shop-listing-select-btn.is-checked {
    background: #1a1a2e;
    border-color: #1a1a2e;
}

.shop-listing-select-btn:has(input:checked) .shop-listing-select-default,
.shop-listing-select-btn.is-checked .shop-listing-select-default {
    display: none;
}

.shop-listing-select-btn:has(input:checked) .shop-listing-select-active,
.shop-listing-select-btn.is-checked .shop-listing-select-active {
    display: block;
}

.shop-listing-select-btn:has(input:checked) .shop-listing-select-text,
.shop-listing-select-btn.is-checked .shop-listing-select-text {
    color: #ffffff;
}

.shop-listing-select-btn:has(input:checked) .shop-listing-checkbox,
.shop-listing-select-btn.is-checked .shop-listing-checkbox {
    background: #c9a84c;
    border-color: #c9a84c;
}

.shop-listing-select-btn-gold {
    border-color: #c9a84c;
}

.shop-listing-select-btn-gold .shop-listing-checkbox {
    border-color: #c9a84c;
}

.shop-listing-select-btn-gold:has(input:checked),
.shop-listing-select-btn-gold.is-checked {
    background: #c9a84c;
    border-color: #c9a84c;
}

.shop-listing-select-btn-gold:has(input:checked) .shop-listing-select-text,
.shop-listing-select-btn-gold.is-checked .shop-listing-select-text {
    color: #1a1200;
}

.shop-listing-select-btn-gold:has(input:checked) .shop-listing-checkbox,
.shop-listing-select-btn-gold.is-checked .shop-listing-checkbox {
    background: #1a1a2e;
    border-color: #1a1a2e;
}

.shop-listing-select-btn-gold:has(input:checked) .shop-listing-checkbox i,
.shop-listing-select-btn-gold.is-checked .shop-listing-checkbox i {
    color: #c9a84c;
}

.shop-listing-select-btn:hover {
    transform: translateY(-1px);
}

.shop-listing-note {
    font-size: 0.85rem;
    color: #333;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.shop-listing-note i {
    color: #c9a84c;
}

@media (max-width: 900px) {
    .shop-listing {
        grid-template-columns: 1fr;
    }
    .shop-listing-media {
        width: 100%;
        height: 220px;
    }
    .shop-listing-actions {
        flex-direction: row;
    }
    .shop-listing-actions .btn-shop-chatnow {
        flex: 1;
    }
    .shop-listing-select {
        flex: 0 0 auto;
        padding: 0 6px;
    }
}

/* ── Sticky Selection Bar ── */
.shop-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a1a2e;
    border-top: 2px solid #c9a84c;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
    z-index: 996;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.shop-sticky-bar.show {
    transform: translateY(0);
}

.shop-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    flex-wrap: wrap;
}

.shop-sticky-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.shop-sticky-count {
    background: #c9a84c;
    color: #1a1200;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.shop-sticky-items {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.shop-sticky-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.shop-sticky-total {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.shop-sticky-total strong {
    color: #c9a84c;
    font-size: 1.1rem;
}

@media (max-width: 991.98px) {
    .shop-sticky-bar {
        bottom: 64px;
    }
}

@media (max-width: 576px) {
    .shop-sticky-inner {
        justify-content: center;
        text-align: center;
    }
    .shop-sticky-items {
        display: none;
    }
}

/*** Checkout Page Start ***/

.checkout-back-link {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.2s ease;
}

.checkout-back-link:hover {
    color: #c9a84c;
}

.checkout-section {
    background: #fefdfb;
    min-height: 60vh;
}

.checkout-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
    align-items: start;
}

/* Order Summary */
.checkout-summary {
    background: #ffffff;
    border: 1px solid #ece9e0;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.checkout-summary-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.checkout-item-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0ece3;
}

.checkout-item-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.checkout-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-size: 1.1rem;
}

.checkout-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.checkout-item-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: #1a1a2e;
}

.checkout-item-note {
    font-size: 0.76rem;
    color: #333;
    margin-top: 2px;
}

.checkout-item-price {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #1a1a2e;
    font-size: 1.1rem;
}

.checkout-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid rgba(201, 168, 76, 0.25);
    padding-top: 18px;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
}

.checkout-total-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #c9a84c;
}

.checkout-empty-state {
    text-align: center;
    padding: 30px 10px;
}

.checkout-empty-state i {
    font-size: 2rem;
    color: #c9a84c;
    margin-bottom: 14px;
    display: block;
}

.checkout-empty-state p {
    color: #333;
    margin-bottom: 18px;
}

/* Payment Form */
.checkout-form-box {
    background: #ffffff;
    border: 1px solid #ece9e0;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.checkout-field {
    margin-bottom: 18px;
}

.checkout-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.4px;
    margin-bottom: 6px;
}

.checkout-input-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    padding: 0 14px;
    height: 46px;
    transition: border-color 0.3s ease;
}

.checkout-input-wrap:focus-within {
    border-color: #c9a84c;
}

.checkout-input-wrap i {
    color: #333;
    font-size: 0.85rem;
    margin-right: 10px;
    flex-shrink: 0;
}

.checkout-input-wrap input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.9rem;
    color: #333;
    width: 100%;
    height: 100%;
}

.checkout-payment-title {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #f0ece3;
}

.checkout-payment-placeholder {
    background: #f7f5f0;
    border: 1.5px dashed rgba(201, 168, 76, 0.4);
    border-radius: 10px;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.checkout-payment-placeholder i {
    font-size: 1.6rem;
    color: #c9a84c;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkout-payment-placeholder p {
    font-size: 0.86rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.btn-checkout-pay {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a2e;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-checkout-pay:hover {
    background: #2a2a4e;
    transform: translateY(-2px);
}

.btn-checkout-pay-placeholder {
    background: #555;
}

.btn-checkout-pay-placeholder:hover {
    background: #444;
}

.checkout-disclaimer {
    font-size: 0.76rem;
    color: #333;
    text-align: center;
    margin: 14px 0 0;
    opacity: 0.75;
}

@media (max-width: 860px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .checkout-summary,
    .checkout-form-box {
        padding: 22px 18px;
    }
}

/* ── Checkout Result Page ── */
.checkout-result-box {
    max-width: 520px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #ece9e0;
    border-radius: 16px;
    padding: 56px 40px;
    text-align: center;
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.06);
}

.checkout-result-icon {
    font-size: 3.2rem;
    margin-bottom: 22px;
    display: block;
}

.checkout-result-icon-pending {
    color: #c9a84c;
}

.checkout-result-icon-success {
    color: #198754;
}

.checkout-result-icon-failed {
    color: #dc3545;
}

.checkout-result-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.checkout-result-text {
    font-size: 0.92rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 0;
}

.checkout-result-ref {
    display: inline-block;
    margin-top: 18px;
    background: #f7f5f0;
    border: 1px solid #ece9e0;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
}

@media (max-width: 576px) {
    .checkout-result-box {
        padding: 40px 22px;
    }
}

@media (max-width: 576px) {
    .shop-trust-strip {
        padding: 20px 0;
    }
    .shop-trust-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px 10px;
        justify-items: center;
    }
    .shop-trust-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        font-size: 0.7rem;
        white-space: normal;
        line-height: 1.3;
    }
    .shop-trust-item i {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(201, 168, 76, 0.14);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }
}

/*** Checkout Page End ***/
/*** Back to Top End ***/