/* =====================================================
   🔒 BRAND DESIGN SYSTEM (LOCKED)
===================================================== */

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --bg: #f6f7ff;
    --white: #ffffff;
    --dark: #1a1a1a;
    --fontH: 'Poppins', sans-serif;
    --fontB: 'Open Sans', sans-serif;
}


/* =========================
   SECTION
========================= */

.why-section {
    padding: clamp(60px, 8vw, 120px) 20px;
    background: var(--bg);
}


/* =========================
   HEADING
========================= */

.why-heading {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(30px, 4.5vw, 52px);
    font-weight: 700;
    margin-bottom: clamp(40px, 6vw, 90px);
    background: linear-gradient( 90deg, var(--blue), var(--purple), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =========================
   CONTAINER
========================= */

.container {
    max-width: 1320px;
    margin: auto;
}


/* =========================
   GRID (ROW WISE FIX)
========================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 60px);
    align-items: stretch;
}


/* =========================
   CARD (PREMIUM)
========================= */

.why-card {
    background: var(--white);
    border-radius: 28px;
    padding: 22px;
    position: relative;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08), 0 6px 18px rgba(0, 0, 0, 0.04);
    transition: transform .45s ease, box-shadow .45s ease;
    display: flex;
    flex-direction: column;
}


/* Hover Apple-style lift */

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 45px 100px rgba(0, 0, 0, 0.18), 0 18px 40px rgba(0, 0, 0, 0.08);
}


/* Soft gradient halo */

.why-card::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 36px;
    background: linear-gradient( 135deg, var(--blue), var(--purple), var(--violet));
    opacity: 0.16;
    z-index: -1;
}


/* =========================
   IMAGE
========================= */

.why-card img {
    width: 100%;
    height: clamp(190px, 22vw, 230px);
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 18px;
}


/* =========================
   TITLE
========================= */

.why-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}


/* =========================
   TEXT
========================= */

.why-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}


/* =========================
   RESPONSIVE
========================= */


/* Tablet */

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Mobile */

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    .why-card {
        padding: 20px;
    }
    .why-card img {
        height: 210px;
    }
}


/* =========================
   SQUARE CARD OVERRIDE
========================= */


/* Card ko perfect square banane ke liye */

.why-card {
    aspect-ratio: 1 / 1;
    /* 🔥 SQUARE */
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 22px;
    border-radius: 24px;
}


/* Image bhi square ke hisaab se balanced */

.why-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* 🔥 IMAGE SQUARE */
    height: auto;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 16px;
}


/* Content ko equal spacing */

.why-card h3 {
    margin-top: 6px;
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.35;
}

.why-card p {
    font-size: 14.5px;
    line-height: 1.6;
}


/* =========================
   GRID BALANCE (ROW PERFECT)
========================= */

.why-grid {
    align-items: stretch;
}


/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
    .why-card {
        aspect-ratio: 1 / 1;
    }
}


/* =========================
   MOBILE (NO TALL COLUMN)
========================= */

@media (max-width: 600px) {
    .why-card {
        aspect-ratio: auto;
        /* Mobile me natural height */
        border-radius: 20px;
    }
    .why-card img {
        aspect-ratio: 16 / 10;
        /* Mobile me better visual */
    }
}


/* =========================
   GLASS CARD (PREMIUM)
========================= */

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 26px;
    padding: 32px;
    border: 1px solid rgba(0, 82, 255, 0.08);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
    transition: 0.45s ease;
}

.glass-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 45px 100px rgba(0, 82, 255, 0.2);
}


/* =========================
   ICON STYLE
========================= */

.icon-brand {
    font-size: 26px;
    color: var(--electric-blue);
}


/* =========================
   PREMIUM IMAGE
========================= */

.brand-image {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25);
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.brand-image:hover img {
    transform: scale(1.08);
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --dark: #1a1a1a;
    --light-bg: #f6f8ff;
}


/* SECTION */

.bathroom-brand {
    padding: 120px 0;
    background: linear-gradient( 180deg, #ffffff 0%, var(--light-bg) 100%);
    font-family: 'Open Sans', sans-serif;
}


/* CONTAINER */

.bathroom-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.video-box {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 200px;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a12;
}

.video-box video {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    display: block;
}


/* CONTENT */

.bathroom-badge {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient( 90deg, var(--blue), var(--violet));
    margin-bottom: 20px;
}

.bathroom-title {
    font-family: var(--fontH);
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.bathroom-title span {
    background: linear-gradient( 90deg, var(--blue), var(--purple), var(--violet));
    -webkit-background-clip: text;
    color: transparent;
}

.bathroom-text {
    font-family: var(--fontB);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    color: #444;
    line-height: 1.7;
    margin-bottom: 14px;
}


/* BUTTONS */

.bathroom-actions {
    display: flex;
    gap: 18px;
    margin-top: 28px;
}

.btn-brand-primary {
    padding: 14px 30px;
    border-radius: 14px;
    background: linear-gradient( 90deg, var(--blue), var(--violet));
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.35s ease;
    box-shadow: 0 18px 40px rgba(42, 42, 255, 0.35);
}

.btn-brand-primary:hover {
    transform: translateY(-4px);
}

.btn-brand-outline {
    padding: 14px 30px;
    border-radius: 14px;
    border: 2px solid var(--blue);
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
    transition: 0.35s ease;
}

.btn-brand-outline:hover {
    background: var(--blue);
    color: #fff;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .bathroom-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 16px;
    }
    .bathroom-image {
        order: -1;
    }
    .video-box {
        min-height: 180px;
        border-radius: 16px;
    }
}

@media (max-width: 576px) {
    .video-box {
        min-height: 160px;
        border-radius: 14px;
    }
}

.washroom-expertise {
    padding: 120px 0;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

.washroom-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


/* ===== BRAND HEADING ===== */

.brand-heading {
    font-family: var(--fontH);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.3;
    background: linear-gradient(90deg, var(--blue), var(--purple), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-heading span {
    display: inline-block;
}


/* ===== POINTS ===== */

.washroom-points {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.washroom-points li {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 14px;
    padding-left: 34px;
    position: relative;
}

.washroom-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #D4AF37;
    font-weight: 700;
}


/* ===== TAGLINE ===== */

.washroom-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: #444;
    margin-top: 20px;
}


/* ===== VIDEO GLASS CARD ===== */

.washroom-video {
    display: flex;
    justify-content: center;
}

.video-glass {
    width: 100%;
    max-width: 100%;
    padding: clamp(12px, 2vw, 18px);
    border-radius: clamp(16px, 2.5vw, 24px);
    background: linear-gradient(135deg, rgba(42, 42, 255, 0.08), rgba(138, 43, 226, 0.08));
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(42, 42, 255, 0.2);
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-glass video,
.video-glass iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
    .washroom-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .washroom-video {
        order: -1;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
}


/* SECTION */

.bathroom-benefits {
    padding: 120px 0;
    background: #f2f2f2;
}


/* CONTAINER */

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
}


/* HEADING */

.brand-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.1rem);
    font-weight: 800;
    background: linear-gradient( 90deg, var(--blue), var(--purple), var(--violet));
    -webkit-background-clip: text;
    color: transparent;
}


/* GRID */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}


/* CARD */

.benefit-card {
    padding: 32px;
    border-radius: 18px;
    background: linear-gradient( 135deg, var(--blue) 0%, var(--gold) 100%);
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transition: 0.4s ease;
}

.benefit-card.big {
    grid-column: span 2;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}


/* ICON */

.benefit-card i {
    font-size: 34px;
    margin-bottom: 14px;
    color: #ffffff;
}


/* TEXT */

.benefit-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .container {
        grid-template-columns: 1fr;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefit-card.big {
        grid-column: auto;
    }
}


/* SECTION */

.bathroom-benefits {
    padding: 120px 0;
    background: #f2f3f8;
}


/* LAYOUT */

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 70px;
}


/* HEADING */

.brand-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 28px;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    color: transparent;
}


/* IMAGE UNDER HEADING */

.heading-image {
    width: 100%;
    max-width: 420px;
}

.heading-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(42, 42, 255, 0.25);
    transform: translateZ(0);
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .container {
        grid-template-columns: 1fr;
    }
    .heading-image {
        max-width: 100%;
    }
}

.before-after-section {
    padding: 140px 0;
    background: linear-gradient( 135deg, #f4f6ff, #ffffff);
}

.ba-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    text-align: center;
}


/* HEADING – STRICT BRAND RULE */

.brand-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 80px;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    color: transparent;
}


/* GRID */

.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}


/* CARD */

.ba-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 22px;
    box-shadow: 0 30px 80px rgba(42, 42, 255, 0.15);
    transition: 0.45s ease;
    transform-style: preserve-3d;
}

.ba-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 50px 120px rgba(42, 42, 255, 0.25);
}


/* SLIDER */

.ba-slider {
    position: relative;
    height: 260px;
    border-radius: 18px;
    overflow: hidden;
}

.ba-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-img.after {
    clip-path: inset(0 0 0 50%);
}


/* RANGE */

.ba-range {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    appearance: none;
    height: 4px;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    border-radius: 4px;
    cursor: pointer;
}

.ba-range::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #2A2AFF;
    box-shadow: 0 0 15px rgba(42, 42, 255, 0.6);
}


/* LABEL */

.ba-label {
    margin-top: 22px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .ba-grid {
        grid-template-columns: 1fr;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #ffffff;
    --dark: #1A1A1A;
    --radius-xl: 26px;
    --shadow-1: 0 18px 55px rgba(17, 24, 39, 0.10);
    --shadow-2: 0 28px 90px rgba(42, 42, 255, 0.22);
}


/* SECTION */

.property-types-brand {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
    overflow: hidden;
    font-family: "Open Sans", sans-serif;
}


/* soft 4K-ish background dots */

.property-types-brand::before {
    content: "";
    position: absolute;
    inset: -120px -120px auto -120px;
    height: 420px;
    background: radial-gradient(circle at 20% 30%, rgba(42, 42, 255, .14), transparent 55%), radial-gradient(circle at 65% 40%, rgba(138, 43, 226, .12), transparent 58%), radial-gradient(circle at 80% 30%, rgba(212, 175, 55, .10), transparent 55%);
    filter: blur(18px);
    pointer-events: none;
}

.property-types-brand::after {
    content: "";
    position: absolute;
    right: -120px;
    top: 80px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(42, 42, 255, .10), transparent 60%);
    filter: blur(25px);
    pointer-events: none;
}

.brand-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.brand-heading {
    text-shadow: 0 6px 20px rgba(0, 0, 255, 0.25), 0 12px 40px rgba(132, 2, 253, 0.25);
}

.brand-title {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: clamp(2.1rem, 3.6vw, 3.15rem);
    line-height: 1.15;
    margin-bottom: 12px;
    color: var(--dark);
}

.brand-title span {
    background: linear-gradient(90deg, var(--blue), var(--purple), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-sub {
    color: rgba(26, 26, 26, .72);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}


/* GRID (same feel like your screenshot) */

.pt-grid {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}


/* CARD base (white + corporate) */

.pt-card {
    position: relative;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(42, 42, 255, .16);
    box-shadow: var(--shadow-1);
    padding: 26px 26px 24px;
    min-height: 210px;
    transform: translateZ(0);
    transition: transform .45s cubic-bezier(.2, .9, .2, 1), box-shadow .45s cubic-bezier(.2, .9, .2, 1), background .45s ease, border-color .45s ease;
    overflow: hidden;
}


/* 3D highlight layer */

.pt-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42, 42, 255, .10), rgba(106, 27, 154, .08), rgba(138, 43, 226, .10));
    opacity: 0;
    transition: opacity .45s ease;
}

.pt-card::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-xl) + 2px);
    background: linear-gradient(90deg, rgba(212, 175, 55, .0), rgba(212, 175, 55, .22), rgba(212, 175, 55, .0));
    opacity: 0;
    filter: blur(12px);
    transition: opacity .45s ease;
    pointer-events: none;
}

.pt-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 14px;
    /* branded mini-gradient */
    background: linear-gradient(135deg, rgba(42, 42, 255, .14), rgba(138, 43, 226, .12));
    border: 1px solid rgba(42, 42, 255, .18);
    box-shadow: 0 10px 28px rgba(42, 42, 255, .18);
}

.pt-icon i {
    color: var(--blue);
    font-size: 20px;
    animation: iconFloat 5.2s ease-in-out infinite;
}

@keyframes iconFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.pt-card h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 1.18rem;
    margin: 0 0 10px;
    color: var(--dark);
}

.pt-card p {
    margin: 0;
    color: rgba(26, 26, 26, .72);
    line-height: 1.7;
    font-size: .98rem;
}


/* Glass image wrapper */

.pt-glass-img {
    position: relative;
    width: 100%;
    height: 150px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25), 0 15px 40px rgba(42, 42, 255, 0.22);
}


/* Image inside glass */

.pt-glass-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.05);
    transform: scale(1.08);
    transition: transform .6s ease;
}


/* Hover image zoom */

.pt-card:hover .pt-glass-img img {
    transform: scale(1.18);
}


/* Golden glow on hover */

.pt-card:hover .pt-glass-img {
    box-shadow: 0 20px 55px rgba(42, 42, 255, 0.35), 0 0 35px rgba(212, 175, 55, 0.55);
}


/* Card base (same as before, shown only important bits) */

.pt-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 26px;
    padding: 26px;
    border: 1px solid rgba(42, 42, 255, 0.16);
    transition: all .45s cubic-bezier(.2, .9, .2, 1);
}


/* Hover gradient */

.pt-card:hover {
    background: linear-gradient(135deg, #2A2AFF, #6A1B9A, #8A2BE2);
}


/* Text white on hover */

.pt-card:hover h3,
.pt-card:hover p {
    color: #ffffff;
}


/* "active" card look (like your screenshot top-left) */

.pt-card.is-active {
    background: linear-gradient(135deg, rgba(212, 175, 55, .55), rgba(212, 175, 55, .35));
    border-color: rgba(212, 175, 55, .55);
}


/* HOVER = electric blue + purple + violet, text white (your rule) */

.pt-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: var(--shadow-2);
    border-color: rgba(212, 175, 55, .55);
    background: linear-gradient(135deg, var(--blue), var(--purple), var(--violet));
}

.pt-card:hover::before {
    opacity: 1;
}

.pt-card:hover::after {
    opacity: 1;
}

.pt-card:hover h3,
.pt-card:hover p {
    color: #ffffff;
}

.pt-card:hover .pt-icon {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .22);
}

.pt-card:hover .pt-icon i {
    color: #ffffff;
}


/* responsive */

@media (max-width: 992px) {
    .property-types-brand {
        padding: 90px 0;
    }
    .pt-grid {
        max-width: 860px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pt-grid {
        grid-template-columns: 1fr;
    }
    .pt-card {
        min-height: auto;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --bg: #f6f7ff;
    --white: #ffffff;
    --dark: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--bg);
    overflow-x: hidden;
}


/* ===== SECTION ===== */

.why-section {
    padding: clamp(60px, 8vw, 120px) 20px;
}


/* ===== HEADING ===== */

.why-heading {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 700;
    margin-bottom: clamp(40px, 6vw, 90px);
    background: linear-gradient(90deg, var(--blue), var(--purple), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ===== CONTAINER ===== */

.container {
    max-width: 1320px;
    margin: auto;
}


/* ===== GRID ===== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(32px, 5vw, 70px) clamp(24px, 4vw, 50px);
    justify-items: center;
}


/* ===== CARD ===== */

.why-card {
    width: 100%;
    max-width: 360px;
    background: var(--white);
    border-radius: 22px;
    padding: 18px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
    transition: transform .45s ease, box-shadow .45s ease;
}


/* Hover premium */

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 55px 110px rgba(0, 0, 0, 0.18);
}


/* Gradient frame */

.why-card::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 26px;
    background: linear-gradient( 180deg, var(--blue), var(--purple), var(--violet), var(--gold));
    z-index: -1;
}


/* Image */

.why-card img {
    width: 100%;
    height: clamp(170px, 22vw, 210px);
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 18px;
}


/* Title */

.why-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}


/* Text */

.why-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: #444;
}


/* =========================
   RESPONSIVE BREAKPOINTS
========================= */


/* Tablet */

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Mobile */

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    .why-card {
        max-width: 100%;
    }
    .why-card img {
        height: 200px;
    }
}


/* ================= PROCESS SECTION ================= */

.process-section {
    padding: 110px 20px;
    background: linear-gradient(180deg, #f6f7ff, #ffffff);
}


/* HEADING */

.process-heading {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    margin-bottom: 90px;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* CONTAINER */

.process-container {
    max-width: 1200px;
    margin: auto;
}


/* GRID */

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    justify-items: center;
}


/* CARD */

.process-card {
    width: 100%;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 22px;
    padding: 36px 26px 34px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(42, 42, 255, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    position: relative;
    transition: all 0.45s ease;
}


/* CARD GLOW FRAME */

.process-card::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 28px;
    background: linear-gradient( 180deg, #2A2AFF, #6A1B9A, #8A2BE2, #D4AF37);
    opacity: 0.25;
    z-index: -1;
}


/* HOVER */

.process-card:hover {
    transform: translateY(-14px) scale(1.03);
    box-shadow: 0 45px 90px rgba(42, 42, 255, 0.25);
}


/* ICON */

.icon-wrap {
    width: 78px;
    height: 78px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient( 135deg, #2A2AFF, #6A1B9A, #8A2BE2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(42, 42, 255, 0.35), inset 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.icon-wrap span {
    font-size: 34px;
    color: #ffffff;
}


/* TITLE */

.process-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}


/* TEXT */

.process-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14.5px;
    line-height: 1.65;
    color: #444;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= FAQ SECTION ================= */

.faq-section {
    padding: 110px 20px;
    background: linear-gradient(180deg, #ffffff, #f6f7ff);
}


/* HEADING */

.faq-heading {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    margin-bottom: 80px;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* CONTAINER */

.faq-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 40px;
}


/* FAQ ITEM */

.faq-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(42, 42, 255, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    overflow: hidden;
    transition: all 0.4s ease;
}


/* QUESTION */

.faq-question {
    width: 100%;
    padding: 22px 26px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* PLUS ICON */

.faq-question .icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: linear-gradient( 135deg, #2A2AFF, #6A1B9A, #8A2BE2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.3s ease;
}


/* ANSWER */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 26px 22px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14.5px;
    line-height: 1.65;
    color: #444;
}


/* ACTIVE STATE */

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --dark: #1A1A1A;
    --radius-xl: 38px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --glass: rgba(255, 255, 255, 0.10);
    --glass-2: rgba(255, 255, 255, 0.14);
    --stroke: rgba(255, 255, 255, 0.22);
    --shadow-1: 0 18px 55px rgba(0, 0, 0, 0.22);
    --shadow-2: 0 32px 90px rgba(0, 0, 0, 0.30);
    --shadow-in: inset 0 1px 0 rgba(255, 255, 255, 0.25);
    --font-h: "Poppins", sans-serif;
    --font-b: "Open Sans", sans-serif;
    --font-ui: "Outfit", sans-serif;
}


/* Footer: same as index (home) — uses new.css .imp-footer styles */

/* ================= STATS — 2026 UPGRADED (compact, not banner) ================= */

.brand-stats-section {
    padding: clamp(48px, 6vw, 72px) clamp(20px, 4vw, 40px);
    background: #f8f9fc;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.brand-stats-full {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 50%, var(--violet) 100%);
    border-radius: 24px;
    padding: clamp(36px, 4vw, 52px) clamp(28px, 3vw, 48px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(24px, 3vw, 40px);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(42, 42, 255, 0.22), 0 0 0 1px rgba(255,255,255,0.08) inset;
}

.brand-stats-full::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255,255,255,0.18), transparent 60%);
    pointer-events: none;
}

.brand-stat {
    position: relative;
    z-index: 2;
}

.brand-count {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.brand-stat p {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(13px, 1.2vw, 15px);
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (max-width: 900px) {
    .brand-stats-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        padding: 40px 28px;
    }
}

@media (max-width: 480px) {
    .brand-stats-full {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        border-radius: 20px;
        gap: 24px;
    }
    .brand-count { font-size: clamp(26px, 8vw, 34px); }
    .brand-stat p { font-size: 13px; }
}


/* Responsive */

@media (max-width: 992px) {
    .stats-simple-box {
        flex-wrap: wrap;
        padding: 45px 20px;
    }
    .stat-simple-item {
        width: 45%;
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .stats-simple-box {
        padding: 35px 15px;
        border-radius: 35px;
    }
    .stat-simple-item {
        width: 100%;
    }
    .stat-simple-item h2 {
        font-size: 2.4rem;
    }
}


/* ================= TESTIMONIAL MASTER ================= */

.testimonial-master {
    padding: 120px 20px;
    background: radial-gradient( circle at top, rgba(42, 42, 255, 0.12), #ffffff 60%);
    text-align: center;
    position: relative;
    overflow: hidden;
}


/* Soft brand glow */

.testimonial-master::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient( circle, rgba(42, 42, 255, 0.18), transparent 65%);
    filter: blur(120px);
    z-index: 0;
}


/* ================= TOP TITLE ================= */

.testi-main-title {
    position: relative;
    z-index: 2;
    font-family: "Poppins", sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    margin-bottom: 70px;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ================= VIDEOS ================= */

.testi-videos {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.testi-video-box {
    width: 100%;
    max-width: 380px;
    border-radius: 20px;
    padding: 12px;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 20px 50px rgba(42, 42, 255, 0.25);
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.testi-video-box video {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    object-fit: cover;
    display: block;
    background: #000;
}


/* ================= HEADING BLOCK ================= */

.testi-heading-wrap {
    max-width: 820px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 2;
}

.testi-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    border-radius: 50px;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    box-shadow: 0 10px 25px rgba(42, 42, 255, 0.4);
}

.testi-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

.testi-title .highlight {
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testi-subtitle {
    font-family: "Open Sans", sans-serif;
    font-size: 16.5px;
    line-height: 1.7;
    color: #555;
}


/* ================= SLIDER ================= */

.testimonial-slider {
    position: relative;
    max-width: 820px;
    margin: auto;
    min-height: 220px;
    z-index: 2;
}


/* SLIDE CARD */

.testi-slide {
    position: absolute;
    inset: 0;
    padding: 46px 44px;
    border-radius: 30px;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    color: #ffffff;
    box-shadow: 0 40px 90px rgba(42, 42, 255, 0.45);
    opacity: 0;
    transform: translateY(30px);
}


/* TEXT */

.testi-text {
    font-family: "Open Sans", sans-serif;
    font-size: 16.5px;
    line-height: 1.75;
    margin-bottom: 26px;
    color: #ffffff;
}


/* NAME */

.testi-name {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .testi-videos {
        gap: 28px;
    }
    .testi-video-box {
        width: 100%;
    }
    .testimonial-slider {
        min-height: 260px;
    }
    .testi-slide {
        padding: 36px 28px;
    }
}

@media (max-width: 480px) {
    .testi-main-title {
        margin-bottom: 50px;
    }
    .testi-slide {
        padding: 30px 22px;
    }
    .testi-text {
        font-size: 15px;
    }
}

:root {
    --blue: #2A2AFF;
    /* Electric Blue */
    --purple: #6A1B9A;
    /* Purple */
    --violet: #8A2BE2;
    /* Violet */
    --white: #ffffff;
    --dark: #111;
}


/* =====================
   CONTAINER
===================== */

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}


/* =====================
   HERO SECTION
===================== */

.hero-impeccable {
    position: relative;
    height: 520px;
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* BRAND GRADIENT */
    background: linear-gradient( 135deg, var(--violet) 0%, var(--violet) 30%, var(--blue) 30%, var(--blue) 60%, var(--purple) 60%, var(--purple) 100%);
    background-size: 200% 200%;
    animation: heroGradient 10s ease-in-out infinite;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    /* 🔥 ALL TEXT WHITE */
}


/* Animated gradient */

@keyframes heroGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* PARTICLES */

.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}


/* CONTENT WRAPPER */

.hero-inner {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    gap: 30px;
}


/* =====================
   LEFT CONTENT
===================== */

.hero-content {
    flex: 1;
    max-width: 540px;
    opacity: 0;
    transform: translateY(15px);
    transition: 0.7s ease;
}

.hero-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Eyebrow */

.hero-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    margin-bottom: 14px;
    color: #ffffff;
}


/* Heading */

.hero-content h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}


/* Paragraph */

.hero-content p {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.7;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95);
}


/* Highlights */

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: clamp(13px, 2vw, 14px);
    color: #ffffff;
}

.hero-highlights i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}


/* =====================
   RIGHT FORM CARD
===================== */

.hero-card {
    flex: 1;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(16px);
    padding: 22px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(15px);
    transition: 0.7s ease 0.2s;
    color: #ffffff;
}

.hero-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-card h3 {
    font-size: clamp(18px, 3vw, 20px);
    font-weight: 700;
    color: #ffffff;
}

.hero-card-sub {
    font-size: clamp(12px, 2vw, 14px);
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}


/* FORM */

.form-group {
    margin-bottom: 14px;
}

.hero-booking-form label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 3px;
    display: block;
    color: #ffffff;
}

.hero-booking-form select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #d6d6d6;
    color: #111;
    /* readable */
    background: #ffffff;
}


/* BUTTON */

.hero-submit {
    width: 100%;
    padding: 11px;
    border-radius: 999px;
    background: var(--white);
    color: var(--purple);
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: 0.25s;
}

.hero-submit:hover {
    background: var(--violet);
    color: var(--white);
}

.hero-small-note {
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.9);
}


/* =====================
   RESPONSIVE
===================== */


/* TABLET */

@media (max-width: 992px) {
    .hero-impeccable {
        height: auto;
        padding: 40px 0;
    }
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .hero-card {
        max-width: 420px;
        width: 100%;
    }
}


/* MOBILE */

@media (max-width: 576px) {
    .hero-impeccable {
        padding: 60px 0;
    }
    .hero-content h1 {
        font-size: 30px;
    }
    .hero-card {
        padding: 18px 18px;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --white: #ffffff;
    --text: #f5f5f5;
    --font: 'Poppins', sans-serif;
}


/* RESET */

*/
/* {margin:0;padding:0;box-sizing:border-box;}
body{
  font-family:var(--font);
  
  color:#fff;
} */


/* ================= TOP INFO BAR ================= */

.top-info-bar {
    background: #fff;
    color: rgb(63, 6, 251)2f6;
    position: relative;
    z-index: 1000;
}

.top-info-inner {
    max-width: 1400px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-logo img {
    height: 100px;
}

.top-info-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.info-item {
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    color: rgb(41, 4, 252)4fa;
    font-size: 14px;
}

.info-item img {
    width: 28px;
}

@media(max-width:768px) {
    .top-info-inner {
        flex-direction: column;
        text-align: center;
    }
    .top-info-right {
        flex-direction: column;
        gap: 12px;
    }
}


/* ================= FLOATING BUTTONS ================= */

.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.fab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 10px 30px rgba(42, 42, 255, .45);
}

.fab-whatsapp {
    background: linear-gradient(135deg, var(--purple), var(--violet));
}

.fab .label {
    display: none;
}

@media(max-width:992px) {
    .fab .label {
        display: inline;
    }
}


/* ================= NAVBAR ================= */

.premium-navbar {
    position: sticky;
    top: 0;
    z-index: 900;
    background: linear-gradient( 90deg, var(--blue), var(--purple), var(--violet));
}

.nav-container {
    max-width: 1400px;
    margin: auto;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* HAMBURGER */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 32px;
    height: 3px;
    background: #fff;
    transition: .3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


/* MENU */

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: .3s;
}

.nav-link:hover::after {
    width: 100%;
}


/* DROPDOWN */

.dropdown {
    position: relative;
}

.caret {
    margin-left: 6px;
    font-weight: 700;
}

.dropdown-content {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 260px;
    background: linear-gradient( 135deg, #6A1B9A 0%, #8A2BE2 45%, #D4AF37 100%);
    border-radius: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .35s;
    overflow: hidden;
}

.dropdown-content a {
    display: block;
    padding: 14px 18px;
    color: #fff;
    text-decoration: none;
}

.dropdown-content a:hover {
    background: #f800e7;
}

@media(min-width:901px) {
    .dropdown:hover .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}


/* SOCIAL ICONS */

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons img {
    width: 20px;
    filter: invert(1);
}


/* ==============================
   🌐 SOCIAL ICONS
============================== */

.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, .25), rgba(255, 255, 255, .1));
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .3);
    transition: .35s;
}

.social-icons a:hover {
    transform: translateY(-8px) scale(1.1);
    background: linear-gradient(135deg, var(--blue), var(--violet));
}


/* ================= MOBILE ================= */

@media (max-width: 900px) {
    html.nav-open, body.nav-open {
        overflow: hidden !important;
        height: 100%;
        position: fixed;
        left: 0;
        right: 0;
    }
    body.nav-open .header-sticky-wrapper,
    body.nav-open .premium-navbar,
    body.nav-open .nav-container { overflow: visible !important; }
    .premium-navbar { overflow: visible; }
    .nav-container { overflow: visible; }
    .hamburger {
        display: flex;
        position: relative;
        z-index: 100002;
    }
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 100%;
        height: 100vh !important;
        height: 100dvh !important;
        min-height: 100vh;
        min-height: 100dvh;
        margin: 0 !important;
        padding: clamp(80px, 18vw, 100px) clamp(20px, 5vw, 24px) 40px;
        background: linear-gradient(180deg, var(--blue), var(--purple), var(--violet));
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100001;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .nav-menu::-webkit-scrollbar {
        display: none;
    }
    .nav-menu.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
    }
    .nav-list > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .nav-link {
        display: block;
        padding: 16px 0;
        font-size: clamp(16px, 4vw, 17px);
    }
    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .dropdown.active .dropdown-toggle .caret {
        transform: rotate(180deg);
    }
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: linear-gradient(180deg, #6A1B9A 0%, #8A2BE2 45%, #D4AF37 100%);
        border-radius: 14px;
        margin: 8px 0 12px 16px;
        padding: 8px 0;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .dropdown.active .dropdown-content {
        display: block;
    }
    .dropdown-content a {
        color: #fff;
        padding: 12px 20px;
        font-weight: 600;
        font-size: clamp(14px, 3.5vw, 15px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .dropdown-content a:last-child {
        border-bottom: none;
    }
    .dropdown-content a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
        padding-left: 24px;
    }
    .social-icons {
        display: none;
    }
}