/* ========== RESET & BASE ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, Roboto, 'Helvetica Neue', sans-serif;
            background: #ffffff;
            color: #1e1e2f;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        .container {
            width: 90%;
            max-width: 1280px;
            margin: 0 auto;
        }

        .container-fluid {
            width: 94%;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* ========== TYPOGRAPHY ========== */
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        h1 {
            font-size: 2.2rem;
            color: #0a0a1a;
            margin-bottom: 0.5rem;
        }

        h2 {
            font-size: 1.75rem;
            color: #111827;
            margin-top: 0.25rem;
            margin-bottom: 1rem;
        }

        h3 {
            font-size: 1.3rem;
            color: #1f2937;
        }

        p {
            margin-bottom: 1rem;
            font-size: 1rem;
            color: #374151;
        }

        a {
            text-decoration: none;
            transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .text-center {
            text-align: center;
        }

        .sec-title {
            margin-bottom: 2.5rem;
            position: relative;
        }

        .sec-title h2 {
            font-size: 2rem;
            background: linear-gradient(135deg, #1a1a2e 0%, #2d2a5e 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            display: inline-block;
        }

        .divider {
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #e91e63, #ff8a5c);
            margin: 0.75rem auto 0;
            border-radius: 4px;
        }

        /* ========== HEADER / NAV ========== */
        .bannerBox {
            background: #0f0f1c;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(0px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .menu-bg {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 0.75rem 0;
        }

        .mob-logo h3 {
            color: #ffdfe8;
            font-size: 1.9rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, #ffb6c7, #ff90b0);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin: 0;
        }

        .menu {
            display: flex;
            list-style: none;
            gap: 2.2rem;
            margin: 0;
        }

        .menu li a {
            color: #f0eef7;
            font-weight: 500;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
            font-size: 0.95rem;
        }

        .menu li a:hover {
            border-bottom-color: #e91e63;
            color: #ffbcd3;
        }

        .menu-btn, .menu-icon {
            display: none;
        }

        /* ========== VIDEO SECTION ========== */
        .bannerBox2 {
            width: 100%;
            background: #05050f;
        }

        .video-ply {
            position: relative;
            background: #000;
        }

        .video-ply video {
            width: 100%;
            height: auto;
            max-height: 580px;
            object-fit: cover;
            display: block;
        }

        /* ========== SECTIONS ========== */
        .section {
            padding: 4rem 0;
        }

        .bg-dark {
            background: #fafaff;
        }

        /* ========== ADVANCED GRID (equal height images) ========== */
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -12px;
        }

        .col-xs-3 {
            width: 25%;
            padding: 0 12px;
            margin-bottom: 2rem;
        }

        /* Image card with equal height constraint */
        .image-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
            transition: all 0.35s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .image-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 22px 40px rgba(0, 0, 0, 0.12);
        }

        /* FIXED ASPECT / EQUAL HEIGHT LOGIC: using object-fit and uniform container height */
        .image-wrapper {
            position: relative;
            background: #f2f2f5;
            overflow: hidden;
            /* Critical for equal height: all image containers same height ratio */
            height: 260px;
            /* Desktop base */
        }

        .full-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .image-card:hover .full-img {
            transform: scale(1.04);
        }

        .verified {
            position: absolute;
            top: 14px;
            right: 14px;
            background: rgba(76, 175, 80, 0.92);
            backdrop-filter: blur(2px);
            color: white;
            font-weight: 700;
            font-size: 0.7rem;
            padding: 5px 10px;
            border-radius: 30px;
            z-index: 3;
            letter-spacing: 0.3px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        .list-info-pop {
            background: white;
            padding: 1rem 0.9rem 1.1rem;
            text-align: center;
            border-top: 1px solid #f0eef5;
        }

        .list-info-pop h4 {
            font-size: 1rem;
            margin: 0 0 12px 0;
            font-weight: 700;
            color: #1f1a36;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .badge-name {
            background: #f0eef9;
            padding: 0.2rem 0.6rem;
            border-radius: 40px;
            font-size: 0.7rem;
            font-weight: 600;
            color: #e91e63;
        }

        .btn-group {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .lcol, .rcol {
            border: none;
            padding: 8px 18px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .lcol {
            background: #25d366;
        }

        .lcol a, .rcol a {
            color: white;
        }

        .rcol {
            background: #e91e63;
        }

        .lcol:hover, .rcol:hover {
            opacity: 0.85;
            transform: scale(0.97);
        }

        /* ========== FAQ MODERN ========== */
        .faq-container {
            max-width: 880px;
            margin: 2rem auto 1rem;
        }

        .faq-item {
            background: #ffffff;
            border-radius: 20px;
            margin-bottom: 1rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            border: 1px solid #edeef2;
            transition: all 0.2s;
        }

        .faq-question {
            width: 100%;
            background: transparent;
            border: none;
            padding: 1.2rem 1.6rem;
            text-align: left;
            font-weight: 700;
            font-size: 1.05rem;
            color: #111827;
            cursor: pointer;
            transition: background 0.2s;
            position: relative;
        }

        .faq-question::after {
            content: '+';
            float: right;
            font-size: 1.5rem;
            font-weight: 500;
            color: #e91e63;
        }

        .faq-question.active::after {
            content: '−';
        }

        .faq-question:hover {
            background: #fdf2f6;
        }

        .faq-answer {
            display: none;
            padding: 0 1.6rem 1.4rem 1.6rem;
            background: white;
            border-top: 1px solid #f3e8ed;
        }

        .faq-answer p {
            margin: 0.5rem 0 0;
            color: #4b5563;
        }

        /* ========== FOOTER ========== */
        footer {
            background: #0b0b16;
            padding: 2.5rem 0 1rem;
            color: #d1d5db;
        }

        .disclaimer {
            font-size: 0.75rem;
            color: #9ca3af;
            max-width: 800px;
            margin: 1rem auto 0;
            line-height: 1.4;
        }

        .contact {
            margin-bottom: 1rem;
        }

        .flex {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .flex img {
            width: 28px;
            filter: brightness(0) invert(1);
            transition: opacity 0.2s;
        }

        .media ul {
            display: flex;
            justify-content: center;
            gap: 28px;
            margin-top: 1rem;
            list-style: none;
            padding: 0;
        }

        .media li a {
            opacity: 0.7;
            font-weight: 500;
            color: #e2e8f0;
        }

        .media li a:hover {
            opacity: 1;
            color: #ff80a5;
        }

        .copyright {
            background: #04040c;
            text-align: center;
            padding: 1rem;
            font-size: 0.7rem;
            color: #8b8ca3;
            border-top: 1px solid #1e1e2a;
            margin-top: 2rem;
        }

        /* ========== STICKY ACTION BUTTONS (MOBILE) ========== */
        .nowcalling {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            display: none;
            z-index: 1000;
            background: #000000cc;
            backdrop-filter: blur(12px);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
        }

        .nowcalling .lcol,
        .nowcalling .rcol {
            flex: 1;
            text-align: center;
            border-radius: 0;
            margin: 0;
            padding: 14px 0;
            font-size: 1rem;
            font-weight: 700;
        }

        /* ========== RESPONSIVE - PROFESSIONAL SCALING ========== */
        @media screen and (max-width: 1200px) {
            .image-wrapper {
                height: 250px;
            }
        }

        @media screen and (max-width: 992px) {
            .col-xs-3 {
                width: 33.33%;
            }
            .image-wrapper {
                height: 230px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
        }

        @media screen and (max-width: 768px) {
            .col-xs-3 {
                width: 50%;
            }
            .image-wrapper {
                height: 220px;
            }
            .menu {
                display: none;
                flex-direction: column;
                background: #10101f;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                padding: 1.2rem 0;
                gap: 0;
                border-top: 1px solid #2a2a44;
                box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
            }
            .menu-btn:checked ~ .menu {
                display: flex;
            }
            .menu li {
                text-align: center;
                padding: 0.8rem 0;
            }
            .menu-icon {
                display: block;
                position: relative;
                width: 30px;
                height: 24px;
                cursor: pointer;
                z-index: 10;
            }
            .menu-icon span,
            .menu-icon::before,
            .menu-icon::after {
                content: '';
                display: block;
                height: 3px;
                background: #ffd0de;
                margin: 5px 0;
                transition: 0.25s;
                border-radius: 3px;
            }
            .menu-btn:checked ~ .menu-icon span {
                opacity: 0;
            }
            .menu-btn:checked ~ .menu-icon::before {
                transform: rotate(45deg) translate(6px, 7px);
            }
            .menu-btn:checked ~ .menu-icon::after {
                transform: rotate(-45deg) translate(6px, -7px);
            }
            .nowcalling {
                display: flex;
            }
            .btn-group .lcol, 
            .btn-group .rcol {
                padding: 6px 14px;
                font-size: 0.75rem;
            }
            .footer .col-xs-3 {
                width: 50%;
                margin-bottom: 1.8rem;
            }
            .sec-title h2 {
                font-size: 1.7rem;
            }
        }

        @media screen and (max-width: 640px) {
            .image-wrapper {
                height: 260px;
            }
            .col-xs-3 {
                width: 100%;
            }
            .section {
                padding: 2.5rem 0;
            }
        }

        @media screen and (min-width: 1600px) {
            .container-fluid {
                max-width: 1800px;
                padding: 0 24px;
            }
            .image-wrapper {
                height: 320px;  /* Big screens get bigger, but equal across all cards */
            }
            .full-img {
                height: 420px;
                object-fit: cover;
            }
            .col-xs-3 {
                padding: 0 15px;
            }
            .list-info-pop h4 {
                font-size: 1.1rem;
            }
        }

        @media screen and (min-width: 2000px) {
            .image-wrapper {
                height: 380px;
            }
        }

        /* extra polish */
        .btn-group a {
            text-decoration: none;
            display: inline-block;
        }

        .btn-icon {
            font-size: 1.1rem;
            vertical-align: middle;
        }
    