/* ============================================
   COMPLETE HOME PAGE OVERHAUL - CASINO THEME
   Classic Casino: Deep Dark + Crimson Red + Gold
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --bg-body: #0d0d0d;
    --bg-section: #1a1a1a;
    --bg-section-alt: #141414;
    --bg-card: rgba(26, 26, 26, 0.9);
    --red-primary: #c41e3a;
    --red-light: #e63950;
    --red-dark: #a01830;
    --red-gradient: linear-gradient(135deg, #c41e3a, #e63950);
    --red-gradient-hover: linear-gradient(135deg, #e63950, #c41e3a);
    --gold-primary: #c9a84c;
    --gold-light: #e8cc7a;
    --gold-dark: #a88a3a;
    --text-primary: #f0ece6;
    --text-secondary: #9a9590;
    --glass-bg: rgba(26, 26, 26, 0.7);
    --glass-border: rgba(196, 30, 58, 0.15);
    --glass-border-hover: rgba(196, 30, 58, 0.4);
    --shadow-red: 0 0 30px rgba(196, 30, 58, 0.08);
    --shadow-red-hover: 0 0 40px rgba(196, 30, 58, 0.15);
    --shadow-gold: 0 0 20px rgba(201, 168, 76, 0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Global Overrides --- */
body {
    background-color: var(--bg-body) !important;
    color: var(--text-primary);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
}

a:hover {
    color: var(--red-light) !important;
}

/* --- Section Spacing --- */
.pt-50 { padding-top: 60px; }
.pb-50 { padding-bottom: 60px; }
.pt-100 { padding-top: 80px; }
.pb-100 { padding-bottom: 80px; }

@media (max-width: 767px) {
    .pt-50 { padding-top: 40px; }
    .pb-50 { padding-bottom: 40px; }
    .pt-100 { padding-top: 50px; }
    .pb-100 { padding-bottom: 50px; }
}

/* --- Section Headers --- */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary) !important;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--red-gradient);
    border-radius: 2px;
}

.section-header.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.8rem;
    }
}

/* --- Glassmorphism Card --- */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-red-hover);
    transform: translateY(-5px);
}

/* --- Red Button (Primary CTA) --- */
.btn-red {
    background: var(--red-gradient);
    color: #fff !important;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-red::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-red:hover {
    background: var(--red-gradient-hover);
    box-shadow: 0 5px 25px rgba(196, 30, 58, 0.4);
    transform: translateY(-2px);
    color: #fff !important;
}

.btn-red:hover::before {
    left: 100%;
}

/* --- Gold Button (Accent) --- */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: #0d0d0d !important;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    box-shadow: 0 5px 25px rgba(201, 168, 76, 0.4);
    transform: translateY(-2px);
    color: #0d0d0d !important;
}

.btn-red-outline {
    background: transparent;
    color: var(--red-primary) !important;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 50px;
    border: 2px solid var(--red-primary);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-red-outline:hover {
    background: var(--red-primary);
    color: #fff !important;
    box-shadow: 0 5px 25px rgba(196, 30, 58, 0.3);
}

/* ============================================
   BANNER / HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    background: #0d0d0d;
}

.hero-section .carousel-inner {
    border-radius: 0;
}

.hero-section .carousel-item {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.4);
    transform: scale(1);
    transition: transform 8s ease-out;
}

.carousel-item.active .hero-slide-bg {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.8) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(13, 13, 13, 0.75) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    padding: 0 20px;
    width: 100%;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: none;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-content .btn-red {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    z-index: 10;
    width: auto;
    padding: 0 20px;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    background-color: rgba(196, 30, 58, 0.4);
    border-radius: 50%;
    padding: 15px;
    background-size: 40%;
    transition: background-color 0.3s;
}

.hero-carousel .carousel-control-prev-icon:hover,
.hero-carousel .carousel-control-next-icon:hover {
    background-color: rgba(196, 30, 58, 0.8);
}

.hero-carousel .carousel-indicators {
    z-index: 10;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    background-color: var(--red-primary);
    width: 30px;
    height: 4px;
    border-radius: 2px;
    border: none;
}

/* Floating particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 50%;
    opacity: 0.25;
    animation: float-particle linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-duration: 18s; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-duration: 22s; animation-delay: 2s; }
.particle:nth-child(3) { left: 40%; animation-duration: 20s; animation-delay: 4s; }
.particle:nth-child(4) { left: 55%; animation-duration: 25s; animation-delay: 1s; }
.particle:nth-child(5) { left: 70%; animation-duration: 19s; animation-delay: 3s; }
.particle:nth-child(6) { left: 85%; animation-duration: 21s; animation-delay: 5s; }
.particle:nth-child(7) { left: 15%; animation-duration: 23s; animation-delay: 6s; }
.particle:nth-child(8) { left: 60%; animation-duration: 17s; animation-delay: 7s; }

@keyframes float-particle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.25; }
    90% { opacity: 0.25; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

@media (max-width: 767px) {
    .hero-section, .hero-section .carousel-item, .hero-content-wrapper {
        min-height: 300px;
        height: 300px;
    }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-content p { font-size: 0.95rem; }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-section, .hero-section .carousel-item, .hero-content-wrapper {
        min-height: 360px;
        height: 360px;
    }
}

/* ============================================
   COUNTER / PLAY SECTION
   ============================================ */
.counter-section {
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-section) 100%);
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.counter-main-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.counter-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red-gradient);
}

/* Result Box */
.result-box {
    background: rgba(196, 30, 58, 0.05);
    border: 1px solid rgba(196, 30, 58, 0.15);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
}

.result-box h3 {
    color: var(--red-primary);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.result-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.result-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.result-badge.up {
    background: var(--red-gradient);
    color: #fff;
}

.result-badge.down {
    background: rgba(196, 30, 58, 0.1);
    color: var(--red-light);
    border: 1px solid rgba(196, 30, 58, 0.25);
}

/* Countdown */
.countdown-wrapper {
    text-align: center;
    padding: 1rem;
}

.countdown-wrapper h3 {
    color: var(--gold-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.countdown-digit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--red-gradient);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 10px;
    min-width: 50px;
    text-align: center;
    font-family: 'Exo 2', sans-serif;
}

.countdown-label {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Game type list */
.game-type-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.game-type-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(196, 30, 58, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.game-type-card:hover {
    border-color: rgba(196, 30, 58, 0.3);
    box-shadow: var(--shadow-red);
}

.game-type-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.game-type-info img {
    height: 40px;
    width: 40px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.game-type-info h6 {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-play {
    background: var(--red-gradient);
    color: #fff !important;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 50px;
    border: none;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-play:hover {
    background: var(--red-gradient-hover);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
    transform: translateY(-2px);
    color: #fff !important;
}

/* ---- RESPONSIVE: Tablet ---- */
@media (max-width: 991px) {
    .counter-main-card {
        padding: 1.5rem;
    }

    .countdown-digit {
        font-size: 1.3rem;
        padding: 7px 12px;
        min-width: 45px;
    }
}

/* ---- RESPONSIVE: Mobile ---- */
@media (max-width: 767px) {
    .counter-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .counter-main-card {
        padding: 1.25rem 1rem;
        border-radius: 14px;
    }

    .result-box {
        padding: 1rem 0.75rem;
    }

    .result-box h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .result-badges {
        gap: 8px;
    }

    .result-badge {
        font-size: 0.8rem;
        padding: 5px 12px;
    }

    .countdown-wrapper {
        padding: 0.75rem 0.5rem;
    }

    .countdown-wrapper h3 {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .countdown {
        gap: 4px;
    }

    .countdown-digit {
        font-size: 1.1rem;
        padding: 6px 10px;
        min-width: 38px;
        border-radius: 8px;
    }

    .countdown-label {
        font-size: 0.6rem;
    }

    .game-type-card {
        padding: 0.85rem 1rem;
        border-radius: 10px;
    }

    .game-type-info {
        gap: 10px;
    }

    .game-type-info img {
        height: 35px;
        width: 35px;
    }

    .game-type-info h6 {
        font-size: 0.85rem;
    }

    .btn-play {
        padding: 7px 18px;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
}

/* ---- RESPONSIVE: Small Mobile ---- */
@media (max-width: 400px) {
    .counter-main-card {
        padding: 1rem 0.75rem;
    }

    .result-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .countdown-digit {
        font-size: 0.95rem;
        padding: 5px 8px;
        min-width: 32px;
    }

    .game-type-card {
        flex-wrap: wrap;
        gap: 10px;
    }

    .game-type-info {
        flex: 1;
        min-width: 0;
    }

    .btn-play {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-work-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    backdrop-filter: blur(10px);
}

.how-work-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-red-hover);
}

.how-work-card__step {
    width: 60px;
    height: 60px;
    background: var(--red-gradient);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.3);
}

.how-work-card .title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
}

.how-work-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (min-width: 992px) {
    .how-work-item { position: relative; }
    .how-work-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 30px;
        right: -20px;
        width: 40px;
        height: 2px;
        background: var(--red-gradient);
        opacity: 0.3;
    }
}

/* ============================================
   FEATURES
   ============================================ */
.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-red-hover);
}

.feature-card__icon {
    width: 70px;
    height: 70px;
    background: rgba(196, 30, 58, 0.08);
    border: 1px solid rgba(196, 30, 58, 0.15);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--red-primary);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-card__icon {
    background: var(--red-gradient);
    color: #fff;
    transform: scale(1.1);
}

.feature-card .title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   STATISTICS
   ============================================ */
.stat-section {
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-body) 100%);
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
    height: 100%;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-red);
    transform: translateY(-5px);
}

.stat-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(196, 30, 58, 0.08);
}

.stat-card__header .thumb {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(196, 30, 58, 0.15);
}

.stat-card__header .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stat-card__header .title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin: 0;
}

.caption-list-two li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(196, 30, 58, 0.04);
}

.caption-list-two li:last-child { border-bottom: none; }
.caption-list-two .caption { color: var(--text-secondary); font-size: 0.9rem; }
.caption-list-two .value { color: var(--red-light); font-weight: 600; }

/* ============================================
   RECENT WINNERS
   ============================================ */
.recent-winner-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.95) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.recent-winner-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--red-gradient);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.recent-winner-card:hover::before { opacity: 0.3; }
.recent-winner-card:hover { transform: translateY(-5px); }

.recent-winner-card__number {
    width: 50px;
    height: 50px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.recent-winner-card__name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.recent-winner-card .amount {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-thumb {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-thumb::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--red-gradient);
    border-radius: 19px;
    z-index: -1;
}

.about-thumb img {
    border-radius: 16px;
    width: 100%;
    display: block;
}

/* ============================================
   LOTTERY INFO SECTION
   ============================================ */
.lottery-info-section {
    background: linear-gradient(180deg, var(--bg-section-alt) 0%, var(--bg-section) 100%);
}

.lottery-info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.lottery-info-card h1, .lottery-info-card h2, .lottery-info-card h3 {
    color: var(--gold-primary);
    font-weight: 600;
}

.lottery-info-card h1 { font-size: 2rem; }
.lottery-info-card h2 { font-size: 1.6rem; margin-top: 2rem; }
.lottery-info-card h3 { font-size: 1.3rem; margin-top: 1.5rem; }

.lottery-info-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

@media (max-width: 767px) {
    .lottery-info-card { padding: 1.5rem; }
    .lottery-info-card h1 { font-size: 1.5rem; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.testimonial-item:hover { border-color: var(--glass-border-hover); }

.testimonial-item .ratings {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-item .ratings .fa-star { color: var(--gold-primary); }
.testimonial-item .ratings .far-star { color: rgba(201, 168, 76, 0.25); }

.testimonial-item p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
    font-size: 1rem;
}

.client-details .thumb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(196, 30, 58, 0.2);
    margin-right: 12px;
}

.client-details .thumb img { width: 100%; height: 100%; object-fit: cover; }
.client-details .name { font-size: 1rem; font-weight: 600; color: var(--gold-primary); }
.client-details .designation { color: var(--text-secondary); font-size: 0.85rem; }

/* ============================================
   FAQ
   ============================================ */
.custom--accordion .accordion-item {
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.custom--accordion .accordion-item:last-child { margin-bottom: 0; }

.custom--accordion .accordion-button {
    background: transparent !important;
    color: var(--text-primary) !important;
    font-weight: 500;
    padding: 1.25rem 1.5rem;
}

.custom--accordion .accordion-button:not(.collapsed) {
    color: var(--red-light) !important;
    background: rgba(196, 30, 58, 0.04) !important;
}

.custom--accordion .accordion-button::after {
    filter: none;
    background-image: none;
    content: '\f107';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    color: var(--red-primary);
}

.custom--accordion .accordion-body {
    color: var(--text-secondary);
    padding: 0 1.5rem 1.25rem;
    line-height: 1.7;
}

.faq-thumb {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.faq-thumb img { width: 100%; border-radius: 16px; }

/* ============================================
   SUBSCRIBE
   ============================================ */
.subscribe-section {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, rgba(13, 13, 13, 0.95) 50%, rgba(196, 30, 58, 0.03) 100%);
    border-top: 1px solid rgba(196, 30, 58, 0.08);
    border-bottom: 1px solid rgba(196, 30, 58, 0.08);
}

.subscribe-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.subscribe-wrapper .title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold-primary);
}

.subscribe-form .form--control {
    background: rgba(196, 30, 58, 0.04);
    border: 1px solid rgba(196, 30, 58, 0.15);
    border-radius: 50px;
    color: var(--text-primary);
    padding: 14px 25px;
    transition: var(--transition-smooth);
}

.subscribe-form .form--control:focus {
    border-color: var(--red-primary);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.08);
    outline: none;
}

.subscribe-form .form--control::placeholder { color: var(--text-secondary); }

@media (max-width: 767px) {
    .subscribe-wrapper { padding: 2rem 1.5rem; }
    .subscribe-wrapper .title { font-size: 1.4rem; }
}

/* ============================================
   PAYMENTS
   ============================================ */
.brand-item {
    padding: 15px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(196, 30, 58, 0.08);
    border-radius: 10px;
    transition: var(--transition-smooth);
    display: inline-block;
    margin: 5px;
}

.brand-item img {
    filter: grayscale(100%) brightness(0.6);
    transition: var(--transition-smooth);
    opacity: 0.6;
}

.brand-item:hover img { filter: grayscale(0%) brightness(1); opacity: 1; }
.brand-item:hover { border-color: var(--glass-border-hover); background: rgba(196, 30, 58, 0.04); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ============================================
   COPY ANIMATION
   ============================================ */
.base-color { color: var(--red-primary) !important; }

.copied::after {
    position: absolute;
    top: 50%;
    right: 12%;
    width: 100px;
    display: block;
    content: "COPIED";
    font-size: 1em;
    padding: 5px 5px;
    color: #fff;
    background: var(--red-gradient);
    border-radius: 3px;
    opacity: 0;
    animation: showcopied 1.5s ease;
    transform: translateY(-50%);
}

@keyframes showcopied {
    0% { opacity: 0; transform: translateX(100%) translateY(-50%); }
    50% { opacity: 0.7; transform: translateX(40%) translateY(-50%); }
    70% { opacity: 1; transform: translateX(0) translateY(-50%); }
    100% { opacity: 0; }
}

/* ============================================
   COOKIES CARD
   ============================================ */
.cookies-card {
    width: 520px;
    padding: 30px;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 999999;
    transition: all .5s;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
}

.cookies-card.hide { bottom: -500px !important; }

.cookies-card__icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--red-gradient);
    color: #fff;
    font-size: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookies-card__content { margin-bottom: 0; color: var(--text-secondary); }
.cookies-card .policy { background: var(--red-gradient); color: #fff !important; }

@media (max-width: 767px) {
    .cookies-card {
        width: 100%;
        left: 0;
        bottom: 0;
        font-size: 14px;
        padding: 15px;
        border-radius: 0;
    }
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 575px) {
    .section-title { font-size: 1.6rem; }
    .glass-card { padding: 1.5rem; }
}

@media (max-width: 767px) {
    .btn-red, .btn-gold, .btn-red-outline { padding: 10px 25px; font-size: 0.85rem; }
}
