/* ════════════════════════════════════════════════════════════════════
   PRODUCTION RESPONSIVE BASELINE — must stay at top.
   Guarantees identical rendering on localhost and live hosting,
   across 320px → 4K screens. Do not move or remove.
   ════════════════════════════════════════════════════════════════════ */

/* Universal box-sizing — prevents padding/border from breaking widths */
*, *::before, *::after { box-sizing: border-box; }

/* Block horizontal scroll on every device (two layers because some
   full-bleed sections can push past 100vw on small phones) */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

/* Responsive media — no image/video/iframe ever overflows its parent */
img, picture, video, canvas, svg, iframe, embed, object {
    max-width: 100%;
    height: auto;
    display: block;
}
iframe { border: 0; }
table  { max-width: 100%; }

/* Long words / URLs shouldn't burst out of cards on phones */
p, h1, h2, h3, h4, h5, h6, a, span, li, td, th { overflow-wrap: anywhere; word-wrap: break-word; }

/* Respect iOS notch / Android cutout */
@supports (padding: max(0px)) {
    body {
        padding-left:  env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

/* Honour OS reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ──── End baseline — project styles below ──── */

/* Global variables */
:root {
    --bs-font-sans-serif: 'Poppins', sans-serif;
    --primary-color: #4e54c8;
    --secondary-color: #8f94fb;
    --dark-bg: #1a1a2e;
    --gold: #ffd700;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: var(--bs-font-sans-serif);
    overflow-x: hidden;
    padding-top: 70px;
    /* Account for fixed navbar */
}

/* Typography Polish */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

.text-gold {
    color: var(--gold);
}

.text-gradient-gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ls-1 {
    letter-spacing: 1px;
}

.ls-2 {
    letter-spacing: 2px;
}

/* Navigation - Kerala Emerald Green + Gold */
.glass-nav {
    background: linear-gradient(135deg, rgba(2, 80, 47, 0.96) 0%, rgba(6, 120, 73, 0.92) 50%, rgba(2, 80, 47, 0.96) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(255, 193, 7, 0.4);
    box-shadow: 0 4px 20px rgba(0, 60, 30, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 0;
}

.glass-nav.shadow-sm {
    background: linear-gradient(135deg, rgba(2, 70, 40, 0.98) 0%, rgba(6, 110, 65, 0.95) 50%, rgba(2, 70, 40, 0.98) 100%);
    box-shadow: 0 6px 28px rgba(0, 60, 30, 0.45);
}

/* Navbar Brand */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

/* Header Logo */
.header-logo {
    height: 50px;
    width: auto;
    margin-right: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(255, 193, 7, 0.3));
}

.header-logo:hover {
    transform: scale(1.08) rotate(2deg);
    filter: drop-shadow(0 4px 12px rgba(255, 193, 7, 0.5));
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffc107, #ffaa00);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
    transform: translateY(-2px);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

/* Countdown Timer Glow Animation */
@keyframes glow-pulse {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(255, 193, 7, 0.5), 0 0 20px rgba(255, 193, 7, 0.3);
    }

    50% {
        text-shadow: 0 0 15px rgba(255, 193, 7, 0.7), 0 0 30px rgba(255, 193, 7, 0.5), 0 0 40px rgba(255, 193, 7, 0.3);
    }
}


/* Check Result Button */
.btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ffaa00 100%);
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.65rem 1.75rem;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-warning::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-warning:hover::before {
    width: 300px;
    height: 300px;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #ffaa00 0%, #ffc107 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.6);
}

.btn-warning:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(255, 193, 7, 0.5);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    body {
        padding-top: 60px;
        /* Smaller navbar on tablets */
    }

    .header-logo {
        height: 38px;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    /* Hide ONLY the desktop timer (inside collapse), keep the mobile-timer visible */
    .navbar-collapse .next-draw-timer:not(.mobile-timer) {
        display: none !important;
    }

    /* ============================================
       Mobile/Tablet Navigation Menu Panel
       ============================================ */
    .glass-nav .navbar-collapse {
        position: absolute;
        top: calc(100% + 6px);
        left: 8px;
        right: 8px;
        background:
            radial-gradient(120% 80% at 0% 0%, rgba(255, 193, 7, 0.14) 0%, transparent 55%),
            radial-gradient(120% 80% at 100% 100%, rgba(120, 90, 0, 0.18) 0%, transparent 55%),
            linear-gradient(160deg, rgba(15, 18, 28, 0.96) 0%, rgba(28, 32, 48, 0.94) 100%);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid rgba(255, 215, 0, 0.45);
        border-radius: 18px;
        box-shadow:
            0 22px 50px rgba(0, 0, 0, 0.55),
            0 0 0 1px rgba(255, 255, 255, 0.05) inset,
            0 0 30px rgba(255, 193, 7, 0.08);
        padding: 10px 12px 14px;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
        transform-origin: top right;
        transition: opacity 0.25s ease, transform 0.25s ease;
        pointer-events: none;
    }
    .glass-nav .navbar-collapse.show,
    .glass-nav .navbar-collapse.collapsing {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .glass-nav .navbar-nav {
        gap: 2px;
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-link {
        padding: 12px 14px !important;
        margin: 0 !important;
        font-size: 0.95rem;
        color: #fff !important;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }
    .navbar-nav .nav-link::before {
        display: none; /* hide desktop underline on mobile */
    }
    .navbar-nav .nav-link::after {
        content: '\F285'; /* bi-chevron-right */
        font-family: 'bootstrap-icons';
        font-size: 0.85rem;
        color: rgba(255, 215, 0, 0.55);
        transition: transform 0.2s ease, color 0.2s ease;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus,
    .navbar-nav .nav-link.active {
        background: linear-gradient(90deg, rgba(255, 193, 7, 0.18), rgba(255, 193, 7, 0.04));
        color: #ffd54a !important;
        transform: none;
    }
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        transform: translateX(3px);
        color: #ffd54a;
    }

    .btn-warning {
        width: 100%;
        margin-top: 1rem;
    }

    /* Polished hamburger toggler */
    .navbar-toggler {
        border: 1px solid rgba(255, 215, 0, 0.4);
        padding: 5px 9px;
        border-radius: 10px;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.18);
        transition: background 0.2s ease, border-color 0.2s ease;
    }
    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.25);
    }
    .navbar-toggler[aria-expanded="true"] {
        background: rgba(255, 193, 7, 0.18);
        border-color: rgba(255, 215, 0, 0.7);
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 56px;
        /* Smaller navbar on mobile */
    }
}


/* ========================================
   Hero Section - Responsive Design
   ======================================== */

/* Base Hero Section - natural aspect ratio for designed banners */
#hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: #000;
}

#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Hero Images - show full banner without cropping */
.hero-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
}

/* ════════════════════════════════════════════════
   HERO CAROUSEL — Custom slide effect (Ken Burns + fade-blur)
   ════════════════════════════════════════════════ */
.hero-carousel-fx .carousel-inner { perspective: 1000px; }
.hero-carousel-fx .carousel-item {
    opacity: 0;
    transform: scale(1.08);
    filter: blur(8px);
    transition: opacity 1.2s ease, transform 5.5s linear, filter 1.2s ease;
    display: block !important;
    position: absolute;
    top: 0; left: 0; right: 0;
    pointer-events: none;
}
.hero-carousel-fx .carousel-item:first-child { position: relative; }
.hero-carousel-fx .carousel-item.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    z-index: 2;
    pointer-events: auto;
}
.hero-carousel-fx .carousel-item-next,
.hero-carousel-fx .carousel-item-prev,
.hero-carousel-fx .carousel-item.active.carousel-item-start,
.hero-carousel-fx .carousel-item.active.carousel-item-end {
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
}
/* Ken Burns slow zoom on the active slide */
.hero-carousel-fx .carousel-item.active .hero-img {
    animation: heroKenBurns 6s ease-out forwards;
}
@keyframes heroKenBurns {
    0%   { transform: scale(1)    translate(0, 0); }
    100% { transform: scale(1.06) translate(-1.5%, 1%); }
}

/* Animated bar indicators (replace dots) */
.hero-carousel-fx .carousel-indicators {
    margin-bottom: 18px;
    gap: 6px;
}
.hero-carousel-fx .carousel-indicators [data-bs-target] {
    width: 32px;
    height: 4px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.hero-carousel-fx .carousel-indicators [data-bs-target].active {
    width: 60px;
    background: rgba(255, 255, 255, 0.25);
}
.hero-carousel-fx .carousel-indicators [data-bs-target].active::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #ffd700, #ffa500);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.7);
    animation: heroIndicatorFill 5s linear forwards;
    border-radius: 50px;
}
@keyframes heroIndicatorFill {
    from { transform: translateX(-100%); }
    to   { transform: translateX(0); }
}

/* Polished prev/next arrows */
.hero-carousel-fx .carousel-control-prev,
.hero-carousel-fx .carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.hero-carousel-fx:hover .carousel-control-prev,
.hero-carousel-fx:hover .carousel-control-next { opacity: 0.85; }
.hero-carousel-fx .carousel-control-prev-icon,
.hero-carousel-fx .carousel-control-next-icon {
    width: 48px; height: 48px;
    background-color: rgba(0, 0, 0, 0.45);
    border-radius: 50%;
    background-size: 50% 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}
.hero-carousel-fx .carousel-control-prev-icon:hover,
.hero-carousel-fx .carousel-control-next-icon:hover {
    background-color: rgba(255, 193, 7, 0.85);
    transform: scale(1.1);
}

/* Hero Check Result button (mobile/tablet only) */
.hero-check-result-btn {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 6px 6px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: rgba(20, 20, 30, 0.55);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255, 215, 0, 0.55);
    border-radius: 999px;
    box-shadow:
        0 6px 22px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 0 14px rgba(255, 193, 7, 0.25);
    overflow: hidden;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    animation: hcrFloat 3s ease-in-out infinite;
}

/* Shine sweep overlay */
.hero-check-result-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        100deg,
        transparent 20%,
        rgba(255, 255, 255, 0.55) 50%,
        transparent 80%
    );
    transform: skewX(-20deg);
    animation: hcrShine 3.2s ease-in-out infinite;
    pointer-events: none;
}

.hero-check-result-btn .hcr-icon {
    color: #ffd54a;
    font-size: 0.85rem;
    filter: drop-shadow(0 0 4px rgba(255, 213, 74, 0.7));
    line-height: 1;
}

.hero-check-result-btn .hcr-text {
    line-height: 1;
    background: linear-gradient(90deg, #fff 0%, #ffe79a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-check-result-btn .hcr-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-left: 2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #1a1a1a;
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.hero-check-result-btn:hover,
.hero-check-result-btn:focus {
    color: #fff;
    transform: translateX(-50%) translateY(-2px);
    border-color: rgba(255, 215, 0, 0.9);
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset,
        0 0 22px rgba(255, 193, 7, 0.5);
}
.hero-check-result-btn:hover .hcr-arrow {
    transform: translateX(3px);
}

@keyframes hcrFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(-3px); }
}
@keyframes hcrShine {
    0%   { left: -60%; }
    60%  { left: 130%; }
    100% { left: 130%; }
}

@media (max-width: 575px) {
    .hero-check-result-btn {
        bottom: 10px;
        padding: 5px 5px 5px 12px;
        font-size: 0.7rem;
        gap: 5px;
    }
    .hero-check-result-btn .hcr-icon { font-size: 0.78rem; }
    .hero-check-result-btn .hcr-arrow {
        width: 20px;
        height: 20px;
        font-size: 0.68rem;
    }
}

/* Header variant — compact, sits below mobile countdown */
.hero-check-result-btn.hcr-in-header {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 4px auto 0;
    padding: 3px 3px 3px 9px;
    font-size: 0.6rem;
    letter-spacing: 0.3px;
    gap: 4px;
    animation: hcrShineOnly 3.2s ease-in-out infinite;
    /* Decorative shine is on ::before — keep floating motion off here so layout stays still */
}
.hero-check-result-btn.hcr-in-header .hcr-icon { font-size: 0.65rem; }
.hero-check-result-btn.hcr-in-header .hcr-arrow {
    width: 16px;
    height: 16px;
    font-size: 0.55rem;
    margin-left: 1px;
}
.hero-check-result-btn.hcr-in-header:hover,
.hero-check-result-btn.hcr-in-header:focus {
    transform: translateY(-1px);
}

/* No-op keyframe so animation property is valid (shine is via ::before) */
@keyframes hcrShineOnly {
    0%, 100% { opacity: 1; }
}

@media (max-width: 360px) {
    .hero-check-result-btn.hcr-in-header {
        font-size: 0.55rem;
        padding: 3px 3px 3px 8px;
    }
    .hero-check-result-btn.hcr-in-header .hcr-arrow {
        width: 14px;
        height: 14px;
        font-size: 0.5rem;
    }
}

/* Mobile: hide "Mega Draw" navbar text, keep only "KL" badge */
@media (max-width: 767px) {
    .navbar-brand span {
        display: none;
    }

    .navbar-brand .text-warning {
        display: inline !important;
    }
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glassmorphism Logic */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.backdrop-blur {
    backdrop-filter: blur(5px);
}

/* ════════════════════════════════════════════
   Winners Section — Premium Dark Theme
   ════════════════════════════════════════════ */
.winners-section {
    background: linear-gradient(135deg, #0f1c2e 0%, #1a3a52 35%, #2d1b69 100%);
    position: relative;
    overflow: hidden;
}
.winners-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 193, 7, 0.12) 0%, transparent 35%),
        radial-gradient(circle at 85% 80%, rgba(78, 84, 200, 0.18) 0%, transparent 40%),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><circle cx='30' cy='30' r='1' fill='%23ffd700' opacity='0.18'/></svg>");
    pointer-events: none;
}
.winners-section .container { position: relative; z-index: 1; }

.winner-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
    padding: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}
.winner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.5);
}

/* Rank ribbon (top-right corner) */
.winner-rank-ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    background: linear-gradient(135deg, #ffd700, #ff9800);
    color: #1a1a2e;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(255, 152, 0, 0.55);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}
.winner-rank-2 .winner-rank-ribbon {
    background: linear-gradient(135deg, #e0e0e0, #9e9e9e);
    color: #1a1a2e;
    box-shadow: 0 4px 14px rgba(158, 158, 158, 0.5);
}
.winner-rank-3 .winner-rank-ribbon {
    background: linear-gradient(135deg, #cd7f32, #8b4513);
    color: #fff;
    box-shadow: 0 4px 14px rgba(139, 69, 19, 0.5);
}

.winner-img-wrapper {
    overflow: hidden;
    position: relative;
}

.winner-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.winner-card:hover .winner-img {
    transform: scale(1.1);
}

/* Prize amount overlay on image */
.winner-prize-overlay {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    padding: 16px 16px 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: #ffd700;
    font-weight: 800;
    font-size: 1.4rem;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
.winner-rank-1 .winner-prize-overlay { color: #ffd700; }
.winner-rank-2 .winner-prize-overlay { color: #e8e8e8; }
.winner-rank-3 .winner-prize-overlay { color: #ff9966; }

.winner-card-body {
    padding: 18px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.winner-name-text {
    font-weight: 800;
    font-size: 1.15rem;
    margin: 0 0 4px;
    color: #fff;
    letter-spacing: 0.3px;
}

.winner-location {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
}
.winner-location i { color: #ffd700; margin-right: 4px; }

.winner-meta {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.65);
}
.winner-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.winner-meta i {
    color: #ffd700;
    font-size: 0.85rem;
    width: 14px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .winner-img { height: 180px; }
    .winner-card-body { padding: 16px 16px 18px; }
    .winner-prize-overlay { font-size: 1.2rem; padding: 14px 12px 10px; }
    .winner-rank-ribbon { font-size: 0.65rem; padding: 4px 11px; top: 10px; right: 10px; }
    .winner-name-text { font-size: 1rem; }
    .winner-meta { font-size: 0.7rem; }
}

/* Prize Card Styles */
.prize-card {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.prize-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prize-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.prize-card:hover::before {
    opacity: 1;
}

.prize-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.prize-tier {
    color: #2d3436;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.prize-amount {
    font-weight: bold;
    font-size: 1.5rem;
    color: #0984e3;
    margin-bottom: 5px;
}

.prize-subtitle {
    font-size: 0.9rem;
    color: #636e72;
    font-weight: 500;
}

.prize-winners {
    font-size: 0.95rem;
    color: #636e72;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.prize-winners i {
    color: #00b894;
}

/* Responsive adjustments for prize cards */
@media (max-width: 768px) {
    .prize-card {
        padding: 25px 15px;
    }

    .prize-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .prize-tier {
        font-size: 1.1rem;
    }

    .prize-amount {
        font-size: 1.3rem;
    }

    .prize-subtitle {
        font-size: 0.85rem;
    }

    .prize-winners {
        font-size: 0.9rem;
    }
}


/* Helpers */
.py-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.mw-600 {
    max-width: 600px;
}

.alpha-50 {
    opacity: 0.5;
}

/* Footer */
footer {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/worldmap-footer.svg') no-repeat center;
    background-size: cover;
    color: white;
    padding: 60px 0 20px 0;
    position: relative;
    z-index: 10;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: white;
    border-color: var(--primary-color);
}

footer h6 {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

footer ul li a:hover {
    color: white;
    padding-left: 5px;
}

.hover-white:hover {
    color: white !important;
}

/* Footer Contact Styling */
.footer-contact {
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact strong {
    display: inline-block;
    margin-bottom: 4px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.footer-contact li {
    align-items: flex-start;
}

.footer-contact i {
    margin-top: 2px;
    flex-shrink: 0;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }

    .py-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero-bg {
        background-position: center top;
    }

    .mobile-th {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
}


/* About Section Styles */
.about-img-wrapper {
    perspective: 1000px;
}

.about-backdrop {
    z-index: 1;
    transform: rotate(3deg) scale(0.95);
    background: linear-gradient(135deg, rgba(78, 84, 200, 0.1) 0%, rgba(143, 148, 251, 0.1) 100%);
    transition: all 0.5s ease;
}

.about-img-wrapper:hover .about-backdrop {
    transform: rotate(5deg) scale(1);
    background: linear-gradient(135deg, rgba(78, 84, 200, 0.2) 0%, rgba(143, 148, 251, 0.2) 100%);
}

/* Ensure image appears above the backdrop */
.about-jackpot-img {
    z-index: 2;
    position: relative;
}

.glass-float-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10;
    min-width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* About Content Styling */
.about-content {
    font-size: 16px;
    line-height: 1.7;
}

.about-content p {
    text-align: justify;
    color: #2d3436;
}

.about-jackpot-img {
    object-fit: cover;
    max-height: 500px;
}

@media (max-width: 768px) {
    .about-content {
        font-size: 15px;
        line-height: 1.6;
    }

    .about-jackpot-img {
        max-height: 350px;
    }
}

/* Hover Effects */
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.hover-elevate {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.hover-elevate:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.transition-all {
    transition: all 0.3s ease;
}

/* Custom Shadow */
.shadow-warning {
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

/* Form Styles */
.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
    background-color: #fff;
}

.input-group-text {
    color: var(--primary-color);
}

/* Disclaimer Box Styling */
.disclaimer-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    font-size: 15px;
    color: #2d3436;
    line-height: 1.6;
}

.disclaimer-box h4 {
    font-weight: bold;
    margin-bottom: 15px;
    color: #d63031;
    font-size: 1.1rem;
}

.disclaimer-box p {
    margin-bottom: 10px;
}

.disclaimer-box i {
    color: #d63031;
}

@media (max-width: 768px) {
    .disclaimer-box {
        padding: 15px;
        font-size: 14px;
    }

    .disclaimer-box h4 {
        font-size: 1rem;
    }
}

/* ========================================
   Countdown Timer - Responsive Styles
   ======================================== */

/* Base timer styles */
.next-draw-timer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    min-width: 140px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}


.next-draw-timer:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 193, 7, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.next-draw-timer small {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.95;
    margin-bottom: 2px;
}

.countdown-display {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffc107;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5), 0 0 20px rgba(255, 193, 7, 0.3);
    font-family: 'Courier New', monospace;
    text-align: center;
    animation: glow-pulse 2s ease-in-out infinite;
    display: block !important;
    visibility: visible !important;
}

/* Also style #countdown for compatibility */
#countdown {
    color: #ffc107;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5), 0 0 20px rgba(255, 193, 7, 0.3);
    animation: glow-pulse 2s ease-in-out infinite;
}


/* Desktop styles (>= 992px) */
@media (min-width: 992px) {
    .next-draw-timer {
        padding: 10px 20px;
        min-width: 160px;
    }

    .next-draw-timer small {
        font-size: 0.75rem;
    }

    .countdown-display {
        font-size: 1.25rem;
        text-align: left;
    }
}

/* Tablet styles (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .next-draw-timer {
        padding: 8px 14px;
        min-width: 130px;
    }

    .next-draw-timer small {
        font-size: 0.65rem;
    }

    .countdown-display {
        font-size: 1rem;
    }
}

/* Mobile styles (< 768px) */
@media (max-width: 767px) {
    .next-draw-timer {
        padding: 6px 12px;
        min-width: 120px;
        margin: 0 auto;
    }

    .next-draw-timer small {
        font-size: 0.6rem;
        margin-bottom: 1px;
    }

    .countdown-display {
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }

    /* Ensure timer and button stack nicely on mobile */
    .navbar-nav+div {
        width: 100%;
        margin-top: 0.75rem;
        padding: 0 1rem;
    }

    /* Mobile timer - compact version */
    .mobile-timer {
        padding: 4px 8px !important;
        min-width: 90px !important;
        margin: 0 !important;
    }

    .mobile-timer small {
        font-size: 0.5rem !important;
        margin-bottom: 0 !important;
        line-height: 1.2;
    }

    .mobile-timer .countdown-display {
        font-size: 0.75rem !important;
        letter-spacing: 0.3px !important;
        line-height: 1.2;
    }
}

/* Small mobile (< 576px) */
@media (max-width: 575px) {
    .next-draw-timer {
        padding: 5px 10px;
        min-width: 110px;
    }

    .next-draw-timer small {
        font-size: 0.55rem;
    }

    .countdown-display {
        font-size: 0.85rem;
    }
}

/* Extra small mobile (< 400px) */
@media (max-width: 399px) {
    .next-draw-timer {
        padding: 4px 8px;
        min-width: 100px;
    }

    .next-draw-timer small {
        font-size: 0.5rem;
    }

    .countdown-display {
        font-size: 0.75rem;
        letter-spacing: 0.3px;
    }
}

/* Landscape mobile orientation */
@media (max-width: 767px) and (orientation: landscape) {
    .next-draw-timer {
        padding: 4px 10px;
        min-width: 100px;
    }

    .next-draw-timer small {
        font-size: 0.55rem;
    }

    .countdown-display {
        font-size: 0.8rem;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .countdown-display {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .next-draw-timer {
        transition: none;
    }

    .next-draw-timer:hover {
        transform: none;
    }
}

/* Blinking Live Now */
@keyframes blinker {
  50% { opacity: 0; }
}
.blinking-red {
  color: red;
  font-weight: 800;
  animation: blinker 1s linear infinite;
  text-align: center;
  font-size: 3rem;
}

/* Custom UI Additions */
.bg-gradient-dark {
    background: linear-gradient(135deg, #111 0%, #2a2a4a 100%);
}

.step-hover-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.step-hover-card:hover {
    transform: translateX(10px);
    background-color: #fff !important;
    border-color: rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

.feature-card {
    transition: all 0.4s ease;
}
.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.08) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.2) !important;
}

/* ════════════════════════════════════════════
   TOP UTILITY BAR (Above Navbar)
   ════════════════════════════════════════════ */
.top-utility-bar {
    background: linear-gradient(90deg, #013220 0%, #024f30 50%, #013220 100%);
    color: #fff;
    padding: 8px 0;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255, 193, 7, 0.25);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1031;
}
.utility-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.25s ease;
}
.utility-link:hover {
    color: #ffc107;
}
.utility-social {
    color: rgba(255, 255, 255, 0.6);
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.85rem;
}
.utility-social:hover {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.12);
    transform: translateY(-2px);
}
.utility-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.18);
    display: inline-block;
}

/* Adjust navbar position when utility bar is visible (desktop only) */
@media (min-width: 992px) {
    body { padding-top: 110px; }
    .glass-nav { top: 38px !important; }
}

/* Brand polish */
.brand-text {
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

/* ════════════════════════════════════════════
   STATS STRIP (Below Hero)
   ════════════════════════════════════════════ */
/* ════════════════════════════════════════════
   STATS STRIP — KSAplay-style two-section cards
   (top: info + decorative circles, bottom: label strip)
   ════════════════════════════════════════════ */
.stats-strip {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stat-card {
    --main-bg:      #ec7263;
    --circle-color: #efc745;
    --footer-bg:    #974859;
    --btn-bg:       #a75265;
    height: 180px;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease;
    position: relative;
}
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

/* ── Info section (top 75%) ───────────────── */
.stat-card-info {
    position: relative;
    height: 75%;
    background-color: var(--main-bg);
    overflow: hidden;
    color: #fff;
}

/* Decorative circles in top-right corner */
.stat-card-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.stat-circle {
    position: absolute;
    background-color: var(--circle-color);
    border-radius: 50%;
    pointer-events: none;
}
.stat-circle:nth-child(1) {
    top: -130%;
    right: -45%;
    width: 240px;
    height: 240px;
    opacity: 0.38;
}
.stat-circle:nth-child(2) {
    top: -85%;
    right: -25%;
    width: 165px;
    height: 165px;
    opacity: 0.42;
}
.stat-circle:nth-child(3) {
    top: -38%;
    right: -8%;
    width: 78px;
    height: 78px;
    opacity: 1;
}

/* Smooth circle drift on hover */
.stat-card:hover .stat-circle:nth-child(1) { transform: translate(-6px,  6px); }
.stat-card:hover .stat-circle:nth-child(2) { transform: translate(-10px, 10px); }
.stat-card:hover .stat-circle:nth-child(3) { transform: translate(-14px, 14px) scale(1.08); }
.stat-circle {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Content layout (icon + numbers) */
.stat-card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    gap: 8px;
}

.stat-card-icon {
    font-size: 2.6rem;
    color: #fff;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.stat-card:hover .stat-card-icon {
    transform: scale(1.1) rotate(-6deg);
}

.stat-card-numbers {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.stat-value-wrap {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

.stat-value {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
    letter-spacing: -0.5px;
}

.stat-suffix {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
    margin-left: 0;
}

/* ── Label section (bottom 25%) ───────────── */
.stat-card-label {
    height: 25%;
    background-color: var(--footer-bg);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: stretch;
    justify-content: center;
}
.stat-label-btn {
    flex: 1;
    border: none;
    background-color: var(--btn-bg);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.15);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: background 0.25s ease, transform 0.25s ease, border-radius 0.25s ease;
    padding: 0 10px;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-label-btn span {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.2;
}
.stat-card:hover .stat-label-btn {
    background-color: var(--footer-bg);
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 991px) {
    .stat-card { height: 160px; }
    .stat-card-icon { font-size: 2.2rem; }
    .stat-value     { font-size: 1.65rem; }
    .stat-suffix    { font-size: 0.9rem; }
    .stat-label-btn { font-size: 0.72rem; letter-spacing: 1px; }
}
@media (max-width: 575px) {
    .stat-card { height: 145px; }
    .stat-card-info { padding: 0; }
    .stat-card-content { padding: 0 14px; }
    .stat-card-icon { font-size: 1.8rem; }
    .stat-value     { font-size: 1.35rem; letter-spacing: -0.4px; }
    .stat-suffix    { font-size: 0.78rem; }
    .stat-label-btn { font-size: 0.62rem; letter-spacing: 0.8px; padding: 0 6px; }
    .stat-circle:nth-child(1) { width: 180px; height: 180px; }
    .stat-circle:nth-child(2) { width: 130px; height: 130px; }
    .stat-circle:nth-child(3) { width: 62px;  height: 62px;  }
}

/* ════════════════════════════════════════════
   LOTTERY SCHEDULE CARDS — Expand-on-hover style
   (inspired by Praashoo7's Uiverse weather card)

   Anatomy:
   ┌──────────────────────────┐
   │  .schedule-card-body     │ ← Content area
   │    Day · Icon · Name     │
   │    Price                 │
   │    1st Prize             │
   │    .schedule-extra       │ ← Hidden, slides down on hover
   ├──────────────────────────┤
   │  .schedule-cta (footer)  │ ← Full-width action strip
   └──────────────────────────┘
   ════════════════════════════════════════════ */
.schedule-card {
    --accent: #4e54c8;
    background: #ffffff;
    border-radius: 22px;
    text-align: center;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    isolation: isolate;
}

.schedule-card-body {
    padding: 26px 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.schedule-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 28px 55px rgba(0, 0, 0, 0.12),
        0 0 0 1px color-mix(in srgb, var(--accent) 25%, transparent),
        0 18px 40px color-mix(in srgb, var(--accent) 22%, transparent);
}

/* ── Day badge ───────────────────────── */
.schedule-day {
    display: inline-block;
    align-self: center;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    padding: 5px 16px;
    background: color-mix(in srgb, var(--accent) 12%, white);
    color: var(--accent);
    border-radius: 50px;
    margin-bottom: 16px;
}

/* ── Icon — soft squircle ──────────────── */
.schedule-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--accent) 18%, white),
        color-mix(in srgb, var(--accent) 6%, white));
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin: 0 auto 14px;
    box-shadow:
        inset 0 0 0 1px color-mix(in srgb, var(--accent) 20%, transparent),
        0 8px 20px color-mix(in srgb, var(--accent) 18%, transparent);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                border-radius 0.5s ease,
                box-shadow 0.4s ease;
}
.schedule-card:hover .schedule-icon {
    transform: scale(1.1) rotate(-6deg);
    border-radius: 50%;
}

/* ── Name + price ─────────────────────── */
.schedule-name {
    font-weight: 800;
    font-size: 1.18rem;
    margin-bottom: 4px;
    color: #111827;
    letter-spacing: -0.3px;
}
.schedule-price {
    color: #6b7280;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.schedule-price small { font-size: 0.7rem; font-weight: 500; color: #9ca3af; }

/* ── Prize box — dashed stamp style ──── */
.schedule-prize {
    width: 100%;
    padding: 12px 10px;
    margin-bottom: 0;
    background: transparent;
    border-top: 2px dashed color-mix(in srgb, var(--accent) 28%, #e5e7eb);
    border-bottom: 2px dashed color-mix(in srgb, var(--accent) 28%, #e5e7eb);
    border-radius: 0;
    transition: border-color 0.4s ease;
}
.schedule-card:hover .schedule-prize {
    border-top-color: color-mix(in srgb, var(--accent) 55%, transparent);
    border-bottom-color: color-mix(in srgb, var(--accent) 55%, transparent);
}
.schedule-prize .text-muted {
    font-weight: 700 !important;
    font-size: 0.66rem !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6b7280 !important;
    margin-bottom: 2px !important;
}
.schedule-prize strong {
    display: block;
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: -0.6px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--accent),
        color-mix(in srgb, var(--accent) 65%, black));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ── EXPAND-ON-HOVER extra info section ── */
.schedule-extra {
    width: 100%;
    max-height: 0;
    opacity: 0;
    padding: 0 12px;
    margin-top: 0;
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--accent) 7%, white),
        color-mix(in srgb, var(--accent) 2%, white));
    border-radius: 12px;
    overflow: hidden;
    transition: max-height 0.55s cubic-bezier(0.16, 1, 0.3, 1),
                opacity   0.35s ease 0.1s,
                padding   0.55s cubic-bezier(0.16, 1, 0.3, 1),
                margin    0.55s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.schedule-card:hover .schedule-extra {
    max-height: 220px;
    opacity: 1;
    padding: 14px 12px;
    margin-top: 14px;
}
.schedule-extra .extra-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #4b5563;
    text-align: left;
}
.schedule-extra .extra-row i {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}
.schedule-extra .extra-row strong {
    color: var(--accent);
    font-weight: 800;
}

/* ── CTA — full-width strip at bottom (card3 equivalent) ── */
.schedule-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    background: var(--accent);
    color: #fff !important;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-top: auto;
    border-radius: 0;
    transition: background 0.4s ease,
                letter-spacing 0.4s ease,
                padding 0.4s ease;
    overflow: hidden;
    position: relative;
    isolation: isolate;
}
.schedule-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg,
        transparent 35%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 65%);
    transform: translateX(-130%) skewX(-18deg);
    transition: transform 0.7s ease;
    z-index: -1;
}
.schedule-card:hover .schedule-cta {
    background: color-mix(in srgb, var(--accent) 88%, black);
    letter-spacing: 1.5px;
}
.schedule-card:hover .schedule-cta::before {
    transform: translateX(130%) skewX(-18deg);
}
.schedule-cta i {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.schedule-card:hover .schedule-cta i {
    transform: translateX(5px);
}

/* ════════════════════════════════════════════
   SPECIAL / BUMPER card variant (dark premium)
   ════════════════════════════════════════════ */
.schedule-bumper {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #0f0f23 100%);
    border: 1px solid rgba(255, 215, 0, 0.28);
    color: #fff;
}

/* Subtle gold + pink radial atmosphere */
.schedule-bumper::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.16) 0%, transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 157, 0.10) 0%, transparent 55%);
    z-index: 0;
    pointer-events: none;
}

.schedule-bumper > * { position: relative; z-index: 1; }

.schedule-bumper:hover {
    box-shadow:
        0 30px 55px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 215, 0, 0.5),
        0 0 45px rgba(255, 215, 0, 0.28);
}

.schedule-bumper .schedule-day {
    background: rgba(255, 215, 0, 0.18);
    color: #ffd700 !important;
}
.schedule-bumper .schedule-icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.22), rgba(255, 170, 0, 0.10));
    color: #ffd700;
    box-shadow:
        inset 0 0 0 1px rgba(255, 215, 0, 0.4),
        0 10px 22px rgba(255, 215, 0, 0.28);
}
.schedule-bumper:hover .schedule-icon {
    box-shadow:
        inset 0 0 0 1px rgba(255, 215, 0, 0.6),
        0 14px 30px rgba(255, 215, 0, 0.42);
}
.schedule-bumper .schedule-name { color: #ffffff; }
.schedule-bumper .schedule-price { color: rgba(255, 255, 255, 0.78); }
.schedule-bumper .schedule-price small { color: rgba(255, 255, 255, 0.5); }

.schedule-bumper .schedule-prize {
    border-top-color: rgba(255, 215, 0, 0.32) !important;
    border-bottom-color: rgba(255, 215, 0, 0.32) !important;
}
.schedule-bumper:hover .schedule-prize {
    border-top-color: rgba(255, 215, 0, 0.7) !important;
    border-bottom-color: rgba(255, 215, 0, 0.7) !important;
}
.schedule-bumper .schedule-prize .text-muted,
.schedule-bumper .schedule-prize .text-white-50 {
    color: rgba(255, 215, 0, 0.75) !important;
}
.schedule-bumper .schedule-prize strong {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.schedule-bumper .schedule-extra {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 255, 255, 0.04));
}
.schedule-bumper .schedule-extra .extra-row {
    color: rgba(255, 255, 255, 0.85);
}
.schedule-bumper .schedule-extra .extra-row i,
.schedule-bumper .schedule-extra .extra-row strong {
    color: #ffd700;
}

.schedule-cta-light {
    background: linear-gradient(135deg, #ffd700, #ffaa00) !important;
    color: #1a1a3e !important;
}
.schedule-card.schedule-bumper:hover .schedule-cta-light {
    background: linear-gradient(135deg, #ffe066, #ffb84d) !important;
}
.schedule-cta-light::before {
    background: linear-gradient(115deg,
        transparent 35%,
        rgba(255, 255, 255, 0.55) 50%,
        transparent 65%) !important;
}

/* ── Touch devices — keep extra info always visible (no hover) ── */
@media (hover: none) {
    .schedule-card:hover {
        transform: translateY(-4px);
    }
    .schedule-extra {
        max-height: 220px;
        opacity: 1;
        padding: 14px 12px;
        margin-top: 14px;
    }
}

/* ── Browser fallbacks (color-mix needs Chrome 111+/Safari 16.2+) ── */
@supports not (color: color-mix(in srgb, red, blue)) {
    .schedule-day           { background: rgba(78, 84, 200, 0.10); color: var(--accent); }
    .schedule-icon          { background: linear-gradient(135deg, #eef2ff, #f5f5fa); color: var(--accent); }
    .schedule-prize         { border-top-color: #e5e7eb; border-bottom-color: #e5e7eb; }
    .schedule-prize strong  { background: none; -webkit-text-fill-color: var(--accent); color: var(--accent); }
    .schedule-extra         { background: #f8fafc; }
    .schedule-cta           { background: var(--accent); }
    .schedule-card:hover .schedule-cta { background: var(--accent); filter: brightness(0.9); }
}

/* ════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════ */
.testimonials-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,193,7,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 32px 28px;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
}
.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.testimonial-quote {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    line-height: 1;
    color: rgba(255, 193, 7, 0.15);
}
.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-rating {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ════════════════════════════════════════════
   FAQ ACCORDION
   ════════════════════════════════════════════ */
.faq-accordion .accordion-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-accordion .accordion-item:hover {
    border-color: rgba(78, 84, 200, 0.25);
    box-shadow: 0 6px 20px rgba(78, 84, 200, 0.08);
}
.faq-accordion .accordion-button {
    background: #fff;
    color: #1f2937;
    font-weight: 600;
    font-size: 1rem;
    padding: 18px 22px;
    box-shadow: none !important;
    border-radius: 14px !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(78, 84, 200, 0.05), rgba(143, 148, 251, 0.05));
    color: #4e54c8;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: hue-rotate(220deg);
}
.faq-num {
    display: inline-block;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    line-height: 36px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    margin-right: 14px;
    flex-shrink: 0;
}
.faq-accordion .accordion-body {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 0 22px 20px 72px;
}
.faq-help-card {
    background: linear-gradient(135deg, rgba(78,84,200,0.05), rgba(143,148,251,0.08));
    border: 1px solid rgba(78,84,200,0.15);
    border-radius: 16px;
    padding: 24px;
    margin-top: 20px;
}
.faq-help-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* ════════════════════════════════════════════
   NEWSLETTER STRIP (Above Footer)
   ════════════════════════════════════════════ */
.newsletter-strip {
    background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}
.newsletter-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'><path d='M0 0 L50 50 L0 100 Z' fill='%23ffffff' opacity='0.04'/></svg>");
}
.newsletter-form .form-control {
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.newsletter-form .btn {
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ════════════════════════════════════════════
   FOOTER REDESIGN
   ════════════════════════════════════════════ */
.site-footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f23 100%);
    background-image: linear-gradient(rgba(15, 15, 35, 0.92), rgba(15, 15, 35, 0.95)), url('../images/worldmap-footer.svg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 70px 0 24px;
    position: relative;
    z-index: 10;
}
.site-footer h6 {
    color: #ffc107;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.site-footer ul li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
}
.site-footer ul li a:hover {
    color: #ffc107;
    padding-left: 6px;
}
.footer-trust-badges .footer-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.payment-methods .payment-method {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.payment-methods .payment-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
    filter: brightness(1.08);
}

/* ── Brand-coloured payment badges ───────────────────────────────── */
.payment-methods .payment-method.pm-upi {
    background: linear-gradient(135deg, #fc6e3a 0%, #ed752e 100%);
    border-color: #ed752e;
    color: #fff;
}
.payment-methods .payment-method.pm-gpay {
    background: #ffffff;
    border-color: #dadce0;
    color: #1a73e8;
    padding: 5px 13px;
}
.payment-methods .payment-method.pm-gpay::before {
    content: 'G';
    display: inline-block;
    margin-right: 4px;
    font-weight: 800;
    background: linear-gradient(135deg, #4285F4 0%, #EA4335 33%, #FBBC04 66%, #34A853 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.payment-methods .payment-method.pm-phonepe {
    background: linear-gradient(135deg, #5f259f 0%, #4a1d7d 100%);
    border-color: #5f259f;
    color: #fff;
}
.payment-methods .payment-method.pm-paytm {
    background: linear-gradient(135deg, #00baf2 0%, #002e6e 100%);
    border-color: #00baf2;
    color: #fff;
}
.payment-methods .payment-method.pm-visa {
    background: #1a1f71;
    border-color: #1a1f71;
    color: #f7b600;     /* Visa gold */
    font-style: italic;
    letter-spacing: 1px;
}
.payment-methods .payment-method.pm-mastercard {
    background: #ffffff;
    border-color: #dadce0;
    color: #1a1f36;
    padding: 5px 13px;
    position: relative;
    padding-left: 28px;
}
.payment-methods .payment-method.pm-mastercard::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 9px;
    background:
        radial-gradient(circle at 4px 50%, #EB001B 4px, transparent 4.5px),
        radial-gradient(circle at 10px 50%, #F79E1B 4px, transparent 4.5px);
}
.payment-methods .payment-method.pm-rupay {
    background: linear-gradient(135deg, #097c39 0%, #097c39 55%, #e87722 55%, #e87722 100%);
    border-color: #097c39;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.footer-disclaimer {
    background: rgba(255, 193, 7, 0.05);
    border-left: 3px solid #ffc107;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 0.82rem;
    line-height: 1.6;
}
.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-legal-links a:hover { color: #ffc107; }
.footer-print-link {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.15);
    text-decoration: none;
}
.footer-print-link:hover { color: rgba(255, 193, 7, 0.6); }

/* Override the old footer block to avoid double padding */
footer.site-footer { padding: 70px 0 24px; }

/* ════════════════════════════════════════════
   FLOATING BUTTONS (Back to top + WhatsApp)
   ════════════════════════════════════════════ */
.back-to-top, .whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-decoration: none;
    z-index: 999;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}
.back-to-top {
    right: 24px;
    bottom: 24px;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(78, 84, 200, 0.5);
}
.whatsapp-float {
    right: 24px;
    bottom: 86px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    animation: pulseWA 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}
@keyframes pulseWA {
    0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 20px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}

/* ════════════════════════════════════════════
   AUTHORIZED PARTNER AGENCIES SECTION
   ════════════════════════════════════════════ */
.partners-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.partners-section::before,
.partners-section::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}
.partners-section::before {
    top: -80px;
    left: -80px;
    background: radial-gradient(circle, #667eea, transparent 70%);
}
.partners-section::after {
    bottom: -80px;
    right: -80px;
    background: radial-gradient(circle, #f093fb, transparent 70%);
}
.partners-section > .container { position: relative; z-index: 1; }

.partner-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 16px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}
.partner-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.06);
}

.partner-badge {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.25),
        0 8px 20px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                border-radius 0.5s ease;
}
.partner-card:hover .partner-badge {
    transform: scale(1.08) rotate(-6deg);
    border-radius: 50%;
}

.partner-initials {
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* Shine sweep that crosses the badge on hover */
.partner-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg,
        transparent 35%,
        rgba(255, 255, 255, 0.45) 50%,
        transparent 65%);
    transform: translateX(-130%) skewX(-18deg);
    transition: transform 0.7s ease;
    z-index: 0;
}
.partner-card:hover .partner-shine {
    transform: translateX(130%) skewX(-18deg);
}

.partner-info {
    width: 100%;
}
.partner-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: #1f2937;
    margin: 0 0 4px 0;
    letter-spacing: -0.2px;
    line-height: 1.3;
    min-height: 2.3em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.10);
    padding: 3px 10px;
    border-radius: 50px;
}
.partner-tag i { font-size: 0.78rem; }

/* Responsive — cards stay readable from 6-col grid down to 2-col */
@media (max-width: 767px) {
    .partner-badge { width: 60px; height: 60px; font-size: 1.15rem; border-radius: 18px; }
    .partner-name  { font-size: 0.82rem; min-height: 0; }
    .partner-card  { padding: 18px 12px; gap: 10px; }
}
@media (max-width: 380px) {
    .partner-badge { width: 54px; height: 54px; font-size: 1rem; }
    .partner-tag   { font-size: 0.66rem; padding: 2px 8px; }
}

/* ════════════════════════════════════════════
   RESPONSIVE TWEAKS FOR NEW SECTIONS
   ════════════════════════════════════════════ */
@media (max-width: 991px) {
    body { padding-top: 70px; }
    .site-footer { padding: 50px 0 20px; }
    .testimonial-text { font-size: 0.95rem; }
    .stats-strip { padding: 35px 0; }
    .schedule-card { padding: 20px 16px; }
}
@media (max-width: 575px) {
    .back-to-top, .whatsapp-float {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    .whatsapp-float { bottom: 78px; right: 18px; }
    .back-to-top { bottom: 18px; right: 18px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form .btn { width: 100%; }
}