/**
 * JackpotDeck Design Theme
 * Design ref: themeslab.lucidoutsourcing.com/demo/jackpotdeck/
 * Colors: Purple (#b63abb), Gold (#f3c117), Dark (#151515)
 * Fonts: Rubik (body) + Anton (display headings)
 */

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@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); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

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

@keyframes rollDigit {
    0% { transform: translateY(-120%); opacity: 0; }
    50% { transform: translateY(20%); opacity: 0.6; }
    100% { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   HERO — JackpotDeck Style (Background image with dark overlay)
   ========================================================================== */

.hero {
    position: relative;
    overflow: hidden;
    margin-top: calc(var(--header-height) * -1);
    min-height: 857px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
        url('/images/ref/banner.webp') no-repeat top/cover;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 30%, rgba(182, 58, 187, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 50% 35% at 80% 25%, rgba(243, 193, 23, 0.08) 0%, transparent 60%);
}

.hero-bg::after {
    display: none;
}

/* Hero content */
.hero-main {
    position: relative;
    z-index: 3;
    padding: var(--header-height) 0 0;
}

.hero-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content::before {
    display: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(182, 58, 187, 0.2);
    border: 1px solid rgba(182, 58, 187, 0.4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: #cb58cf;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    fill: #f3c117;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    color: #FFFFFF;
    margin-bottom: var(--space-lg);
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-title span {
    color: #f3c117;
    text-shadow: 0 0 30px rgba(243, 193, 23, 0.5), 0 0 60px rgba(243, 193, 23, 0.2);
    position: relative;
    display: inline;
}

.hero-title span::after {
    display: none;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Hero buttons */
.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
    padding: 0;
    background: none;
    border-radius: 0;
    border: none;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero .btn-primary {
    background: linear-gradient(135deg, #b63abb 0%, #cb58cf 100%);
    color: #fff;
    padding: 14px 32px;
    font-size: var(--text-base);
    font-weight: var(--font-bold);
    border: 1px solid #cb58cf;
    border-radius: var(--radius-md);
    box-shadow: 0 0 10px rgba(182, 58, 187, 0.6);
    text-shadow: none;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

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

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

.hero .btn-primary:hover {
    background: linear-gradient(135deg, #cb58cf 0%, #d874dc 100%);
    transform: translateY(-3px);
    box-shadow: 0 0 16px rgba(182, 58, 187, 0.9);
}

.hero .btn-secondary {
    background: transparent;
    color: rgba(255,255,255,0.9);
    padding: 14px 28px;
    font-size: var(--text-base);
    border: 2px solid #f3c117;
    border-radius: var(--radius-md);
    box-shadow: none;
    text-transform: uppercase;
    color: #f3c117;
}

.hero .btn-secondary:hover {
    background: #f3c117;
    border-color: #f3c117;
    color: #151515;
    transform: translateY(-2px);
}

/* Hero decorative images — right side */
.hero-images {
    position: absolute;
    right: -20px;
    top: calc(var(--header-height) + 40px);
    width: 500px;
    height: 500px;
    pointer-events: none;
    z-index: 2;
}

.hero-images img {
    position: absolute;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-images .hero-img-main {
    width: 280px;
    right: 40px;
    top: 30px;
    animation: float 4s ease-in-out infinite;
}

.hero-images .hero-img-secondary {
    width: 200px;
    right: 220px;
    top: 180px;
    animation: float 4s ease-in-out 1s infinite;
    border-radius: 50%;
}

.hero-images .hero-img-accent {
    width: 150px;
    right: 0;
    top: 280px;
    animation: float 4s ease-in-out 2s infinite;
}

/* Hero trust signals */
.hero-divider { display: none; }

.hero-trust {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
    padding: var(--space-md) 0;
    background: none;
    border-radius: 0;
    max-width: none;
    margin: 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: var(--text-sm);
}

.hero-trust-item svg {
    width: 18px;
    height: 18px;
    fill: #f3c117;
}

/* Hero bottom */
.hero-bottom {
    position: relative;
    z-index: 2;
    height: 100px;
    margin-top: var(--space-xl);
    background: linear-gradient(180deg, transparent 0%, var(--color-bg) 100%);
}

.hero-bottom::before { display: none; }

/* Hide old hero decorations */
.hero-decor-left, .hero-decor-right, .hero-decor-accent,
.hero-decor-spade, .hero-decor-heart, .hero-decor-club,
.hero-decor-dice, .hero-decor-chips, .hero-decor-cards,
.hero-decor-extra, .hero-decor-roulette, .hero-decor-roulette2 {
    display: none !important;
}

/* ==========================================================================
   JACKPOT TICKER BAR (below hero — "Win Up To" section)
   ========================================================================== */

.jackpot-ticker {
    background: linear-gradient(135deg, #b63abb, #cb58cf);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 4;
    margin-top: -50px;
    overflow: hidden;
}

.jackpot-ticker-text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jackpot-ticker-amount {
    display: flex;
    gap: 6px;
}

.jackpot-digit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 90px;
    background: #111;
    color: #fff;
    font-size: 3.5rem;
    font-weight: var(--font-bold);
    border-radius: 10px;
    border: 2px solid #f3c117;
    box-shadow: 0 0 10px rgba(182, 58, 187, 0.6);
    transition: 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.jackpot-digit:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 16px rgba(182, 58, 187, 0.9);
}

.jackpot-digit.dollar {
    background: #f3c117;
    color: #151515;
    border-color: #f3c117;
}

.jackpot-digit.roll {
    animation: rollDigit 2s ease-out forwards;
}

/* ==========================================================================
   SERVICES SECTION (3 dark cards with images)
   ========================================================================== */

.jd-services {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-alt);
}

.jd-services .section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(182, 58, 187, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: #b63abb;
    margin-bottom: var(--space-md);
}

.jd-services .section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.jd-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.jd-service-card {
    text-align: center;
    padding: 25px;
    background: #151515;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    border: 1px solid #f3c117;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
    color: #fff;
    min-height: 380px;
    position: relative;
    overflow: hidden;
}

.jd-service-card:nth-child(1) { animation-delay: 0.1s; }
.jd-service-card:nth-child(2) { animation-delay: 0.2s; }
.jd-service-card:nth-child(3) { animation-delay: 0.3s; }

.jd-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.jd-service-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto var(--space-lg);
    overflow: hidden;
    border: 3px solid rgba(243, 193, 23, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.jd-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jd-service-card h3 {
    font-size: var(--text-lg);
    color: #f3c117;
    margin-bottom: var(--space-sm);
    font-weight: var(--font-bold);
}

.jd-service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    line-height: 1.6;
}

/* ==========================================================================
   WINNERS TABLE + JACKPOT CARDS (side by side)
   ========================================================================== */

.jd-jackpot-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-light);
}

.jd-jackpot-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: var(--space-2xl);
}

.jd-jackpot-header .section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(182, 58, 187, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: #b63abb;
    margin-bottom: var(--space-sm);
}

.jd-jackpot-header-right {
    max-width: 350px;
    text-align: right;
}

.jd-jackpot-header-right p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.jd-jackpot-header-right .btn {
    background: linear-gradient(135deg, #b63abb, #cb58cf);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 10px 24px;
    border: 1px solid #cb58cf;
}

.jd-jackpot-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

/* Winners Table */
.jd-winners-table {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
}

.jd-winners-header {
    background: linear-gradient(90deg, #b63abb, #d274ff);
    color: #fff;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: var(--font-bold);
}

.jd-winners-header .refresh-btn {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    cursor: pointer;
}

.jd-winners-list {
    padding: 0;
}

.jd-winner-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px var(--space-lg);
    border-bottom: 1px solid var(--color-bg-dark);
    transition: background 0.2s;
}

.jd-winner-row:hover {
    background: var(--color-bg-dark);
}

.jd-winner-rank {
    width: 30px;
    font-weight: var(--font-bold);
    color: var(--color-text-muted);
}

.jd-winner-name {
    flex: 1;
    font-weight: var(--font-medium);
    color: var(--color-text);
}

.jd-winner-amount {
    font-weight: var(--font-bold);
    color: #b63abb;
}

/* Jackpot Cards */
.jd-jackpot-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.jd-jackpot-cards-title {
    background: linear-gradient(90deg, #b63abb, #d274ff);
    color: #fff;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jd-jackpot-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.jd-jackpot-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    min-height: 120px;
}

.jd-jackpot-card::after {
    content: "Pelaa";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #f3c117;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(1.2);
    transition: all 0.4s ease;
    border-radius: var(--radius-lg);
}

.jd-jackpot-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.jd-jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.jd-jackpot-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.jd-jackpot-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.jd-running-jackpots {
    margin-top: var(--space-md);
}

/* ==========================================================================
   WHY CHOOSE US — 4 feature cards (purple gradient)
   ========================================================================== */

.jd-features {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-alt);
}

.jd-features-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    color: var(--color-secondary);
    margin-bottom: var(--space-2xl);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jd-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.jd-feature-card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: linear-gradient(135deg, #b63abb, #cb58cf);
    border-radius: var(--radius-lg);
    color: #fff;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.jd-feature-card:nth-child(1) { animation-delay: 0.1s; }
.jd-feature-card:nth-child(2) { animation-delay: 0.2s; }
.jd-feature-card:nth-child(3) { animation-delay: 0.3s; }
.jd-feature-card:nth-child(4) { animation-delay: 0.4s; }

.jd-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.jd-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
}

.jd-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jd-feature-card h3 {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    margin-bottom: 4px;
}

.jd-feature-card p {
    font-size: var(--text-sm);
    opacity: 0.85;
    line-height: 1.5;
}

/* ==========================================================================
   GAMES GALLERY (filter tabs + grid with overlay effect)
   ========================================================================== */

.jd-games {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-light);
}

.jd-games .section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(182, 58, 187, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: #b63abb;
    margin-bottom: var(--space-md);
}

.jd-games-tabs {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.jd-tab {
    padding: 8px 20px;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--color-bg-dark);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.jd-tab.active, .jd-tab:hover {
    background: linear-gradient(135deg, #b63abb, #cb58cf);
    color: #fff;
    border-color: transparent;
}

.jd-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.jd-game-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    animation: scaleIn 0.5s ease-out both;
    position: relative;
}

.jd-game-card:nth-child(1) { animation-delay: 0.05s; }
.jd-game-card:nth-child(2) { animation-delay: 0.1s; }
.jd-game-card:nth-child(3) { animation-delay: 0.15s; }
.jd-game-card:nth-child(4) { animation-delay: 0.2s; }
.jd-game-card:nth-child(5) { animation-delay: 0.25s; }
.jd-game-card:nth-child(6) { animation-delay: 0.3s; }

.jd-game-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.jd-game-card a {
    display: block;
    position: relative;
}

.jd-game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.jd-game-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.jd-game-card-body {
    padding: var(--space-md);
    background: var(--color-bg-card);
}

.jd-game-card-title {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--color-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================================================
   HEADER overrides
   ========================================================================== */

.header {
    background: rgba(21, 21, 21, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-link:hover, .nav-link.active {
    background: rgba(182, 58, 187, 0.15);
}

.nav-link {
    text-transform: uppercase;
    font-weight: 500;
}

.nav-dropdown-link.active {
    background: #b63abb;
    color: #fff;
}

.nav-dropdown-link:hover {
    background: rgba(182, 58, 187, 0.1);
    color: #b63abb;
}

/* ==========================================================================
   STATS SECTION override
   ========================================================================== */

.stats-section {
    background: #cb58cf;
    padding: var(--space-2xl) 0;
}

.stat-number {
    color: #f3c117;
    animation: countUp 0.8s ease-out both;
}

.stat-item:nth-child(1) .stat-number { animation-delay: 0.1s; }
.stat-item:nth-child(2) .stat-number { animation-delay: 0.3s; }
.stat-item:nth-child(3) .stat-number { animation-delay: 0.5s; }

/* ==========================================================================
   CATEGORY CARDS override
   ========================================================================== */

.category-card:hover {
    border-color: #b63abb;
    box-shadow: 0 8px 25px rgba(182, 58, 187, 0.15);
}

.category-card-icon {
    background: linear-gradient(135deg, #b63abb, #cb58cf);
}

.category-card-title {
    color: var(--color-secondary);
}

/* ==========================================================================
   BUTTON overrides
   ========================================================================== */

.btn-primary {
    background: linear-gradient(135deg, #b63abb, #cb58cf);
    box-shadow: 0 4px 15px rgba(182, 58, 187, 0.3);
    border: 1px solid #cb58cf;
}

.btn-primary:hover {
    box-shadow: 0 0 16px rgba(182, 58, 187, 0.6);
}

/* ==========================================================================
   TAGS SECTION override
   ========================================================================== */

.tags-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 50%, var(--color-bg) 100%);
}

.tags-section::before {
    background: linear-gradient(90deg, transparent, rgba(182, 58, 187, 0.2), transparent);
}

.tags-section::after {
    background: linear-gradient(90deg, transparent, rgba(182, 58, 187, 0.2), transparent);
}

.tag-card-featured {
    background: linear-gradient(135deg, #151515 0%, #29323c 100%);
}

.tag-card-featured .tag-card-count {
    background: rgba(182, 58, 187, 0.9);
}

.tag-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tag-card::before {
    background: #b63abb;
}

/* ==========================================================================
   CAROUSEL overrides
   ========================================================================== */

.kw-pill {
    color: #151515;
    border-color: var(--color-border);
}

.kw-pill:hover {
    border-color: #b63abb;
    background: rgba(182, 58, 187, 0.1);
    color: #b63abb;
}

/* ==========================================================================
   CASINO CARD overrides
   ========================================================================== */

.casino-card {
    border-color: rgba(182, 58, 187, 0.1);
}

.casino-card:hover {
    border-color: rgba(182, 58, 187, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.casino-card .btn {
    background: linear-gradient(135deg, #b63abb 0%, #cb58cf 100%);
    box-shadow: 0 4px 12px rgba(182, 58, 187, 0.3);
}

.casino-card .btn:hover {
    box-shadow: 0 6px 20px rgba(182, 58, 187, 0.4);
}

.casino-card-rank {
    background: linear-gradient(135deg, #151515 0%, #29323c 100%);
}

.casino-card:nth-child(1) .casino-card-rank {
    background: linear-gradient(135deg, #f3c117 0%, #d9ab10 100%);
}

.casino-card:nth-child(2) .casino-card-rank {
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
}

.casino-card:nth-child(3) .casino-card-rank {
    background: linear-gradient(135deg, #CD7F32 0%, #B87333 100%);
}

/* --- Casino Card New: JackpotDeck Premium Dark Design --- */

.casino-grid-new {
    gap: var(--space-xl);
}

.casino-card-new {
    background: linear-gradient(165deg, #1e1e2a 0%, #151520 50%, #12121c 100%);
    border: 1px solid rgba(182, 58, 187, 0.15);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(182, 58, 187, 0.05);
    border-radius: var(--radius-xl);
}

.casino-card-new::before {
    background: linear-gradient(180deg, rgba(182, 58, 187, 0.06) 0%, transparent 50%);
}

.casino-card-new:hover {
    border-color: rgba(182, 58, 187, 0.35);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(182, 58, 187, 0.15),
        0 0 0 1px rgba(182, 58, 187, 0.2);
}

.casino-card-new-header {
    padding: var(--space-lg) var(--space-lg) var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.casino-card-new-icon {
    background: linear-gradient(135deg, #b63abb 0%, #cb58cf 100%);
    box-shadow: 0 4px 12px rgba(182, 58, 187, 0.4);
}

.casino-card-new-icon svg {
    fill: #fff;
}

.casino-card-new-name {
    color: #f0f0f0;
    font-size: var(--text-base);
    letter-spacing: 0.3px;
}

.casino-card-new-bonus {
    background: linear-gradient(90deg, rgba(243, 193, 23, 0.1) 0%, rgba(243, 193, 23, 0.03) 100%);
    color: var(--color-accent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    letter-spacing: 0.3px;
}

.casino-card-new-rating {
    padding: var(--space-md) var(--space-lg);
}

.casino-card-new-rating svg {
    fill: var(--color-accent);
    filter: drop-shadow(0 0 3px rgba(243, 193, 23, 0.4));
}

.casino-card-new-rating .rating-value {
    color: var(--color-accent);
    background: rgba(243, 193, 23, 0.12);
    border: 1px solid rgba(243, 193, 23, 0.2);
    font-weight: var(--font-bold);
}

.casino-card-new-btn {
    background: linear-gradient(135deg, var(--color-primary) 0%, #9a2e9e 100%);
    color: #fff;
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid rgba(182, 58, 187, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.casino-card-new-btn:hover {
    background: linear-gradient(135deg, #cb58cf 0%, var(--color-primary) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 4px 15px rgba(182, 58, 187, 0.4);
}

/* Alternating icon accents */
.casino-card-new:nth-child(2n) .casino-card-new-icon {
    background: linear-gradient(135deg, var(--color-accent) 0%, #d9ab10 100%);
    box-shadow: 0 4px 12px rgba(243, 193, 23, 0.35);
}

.casino-card-new:nth-child(3n) .casino-card-new-icon {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.35);
}

.casino-card-new:nth-child(5n) .casino-card-new-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.35);
}

/* ==========================================================================
   SECTION TITLES override
   ========================================================================== */

.section-title {
    color: #151515;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   FOOTER override (with background image)
   ========================================================================== */

.footer {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
        url('/images/ref/footer-bg.webp') no-repeat top/cover;
    background-color: #151515;
}

.footer-title {
    color: #f3c117;
}

.footer-links a:hover {
    color: #b63abb;
}

.footer-bottom {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   INNER PAGES — CONTRAST FIXES
   ========================================================================== */

.breadcrumb-item a {
    color: #b63abb;
}

.breadcrumb-item a:hover {
    color: #cb58cf;
}

article header h1 {
    color: #151515;
}

.article-content h2, .article-content h3, .article-content h4 {
    color: #151515;
}

.article-content a {
    color: #b63abb;
}

.article-content a:hover {
    color: #9a2e9e;
}

.article-content th {
    background: #151515;
}

.article-tags-section::before {
    background: linear-gradient(90deg, #151515, #b63abb, #f3c117);
}

.article-tags-icon {
    background: linear-gradient(135deg, #151515 0%, #29323c 100%);
}

.article-tags-title {
    color: #151515;
}

.article-tag {
    color: #151515;
    border-color: rgba(21, 21, 21, 0.15);
}

.article-tag::before {
    color: #b63abb;
}

.article-tag:hover {
    background: linear-gradient(135deg, #151515, #29323c);
    color: #fff;
}

/* SEO Content */
.seo-content h2 {
    color: #151515;
}

/* Sidebar */
.sidebar-title {
    color: #151515;
    border-bottom-color: #b63abb;
}

/* Pagination */
.pagination-current {
    background: #b63abb !important;
    border-color: #b63abb !important;
}

.pagination-list li a:hover {
    border-color: #b63abb;
    color: #b63abb;
}

/* ==========================================================================
   MOBILE MENU override
   ========================================================================== */

.mobile-nav {
    background: #151515;
}

.mobile-nav-link.active {
    color: #b63abb;
}

.mobile-nav-dropdown a:hover {
    color: #b63abb;
}

.mobile-nav-dropdown a.active {
    color: #b63abb;
}

/* ==========================================================================
   CATEGORIES SECTION — Dark premium style
   ========================================================================== */

.jd-categories-section {
    background: #151515;
    position: relative;
    overflow: hidden;
}

.jd-categories-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 50% at 10% 50%, rgba(182, 58, 187, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 90% 50%, rgba(243, 193, 23, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.jd-categories-section .section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(182, 58, 187, 0.15);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: #cb58cf;
    margin-bottom: var(--space-md);
}

.jd-categories-section .section-title {
    color: #fff;
}

.jd-categories-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.jd-categories-section .category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.jd-categories-section .category-card:hover {
    background: rgba(182, 58, 187, 0.1);
    border-color: #b63abb;
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.jd-categories-section .category-card-icon {
    background: linear-gradient(135deg, #b63abb, #cb58cf);
    box-shadow: 0 4px 15px rgba(182, 58, 187, 0.4);
}

.jd-categories-section .category-card-title {
    color: #fff;
}

.jd-categories-section .category-card-count {
    color: #f3c117;
    font-weight: var(--font-semibold);
}

/* ==========================================================================
   SEO CONTENT SECTION — Card-based layout
   ========================================================================== */

.jd-seo-section {
    background: var(--color-bg-alt);
}

.jd-seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.jd-seo-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.jd-seo-header .section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(182, 58, 187, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: #b63abb;
    margin-bottom: var(--space-md);
}

.jd-seo-header h2 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    color: #151515;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
}

.jd-seo-header p {
    font-size: var(--text-lg);
    color: var(--color-text-light);
}

.jd-seo-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.jd-seo-block {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jd-seo-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #b63abb, #f3c117);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.jd-seo-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.jd-seo-block:hover::before {
    opacity: 1;
}

.jd-seo-block h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: #151515;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(182, 58, 187, 0.15);
}

.jd-seo-block p {
    color: var(--color-text-light);
    line-height: 1.8;
}

.jd-seo-block ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.jd-seo-block ul li {
    position: relative;
    padding-left: 28px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.jd-seo-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #b63abb, #cb58cf);
    border-radius: 50%;
    opacity: 0.8;
}

.jd-seo-block ul li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 13px;
    width: 6px;
    height: 3px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

/* ==========================================================================
   RESPONSIVE — JackpotDeck overrides
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-images {
        display: none;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .jd-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jd-jackpot-layout {
        grid-template-columns: 1fr;
    }

    .jd-jackpot-header {
        flex-direction: column;
        gap: var(--space-md);
    }

    .jd-jackpot-header-right {
        text-align: left;
        max-width: none;
    }

    .jd-features-grid {
        grid-template-columns: 1fr;
    }

    .jd-jackpot-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero {
        min-height: auto;
    }
}

@media (max-width: 992px) {
    .jackpot-digit {
        width: 50px;
        height: 65px;
        font-size: 2.2rem;
    }

    .jackpot-ticker-amount {
        gap: 5px;
    }

    .hero {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .jd-services-grid {
        grid-template-columns: 1fr;
    }

    .jd-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jackpot-ticker {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
        margin-top: -30px;
    }

    .jackpot-digit {
        width: 44px;
        height: 56px;
        font-size: 1.8rem;
        border-radius: 8px;
    }

    .jd-feature-card {
        flex-direction: column;
        text-align: center;
    }

    .jd-service-card {
        min-height: auto;
    }

    .jd-seo-block {
        padding: var(--space-lg);
    }

    .hero {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .jackpot-ticker {
        padding: 10px;
        margin-top: -20px;
    }

    .jackpot-ticker-text {
        font-size: var(--text-base);
    }

    .jackpot-ticker-amount {
        gap: 4px;
    }

    .jackpot-digit {
        width: 38px;
        height: 50px;
        font-size: 1.4rem;
        border-radius: 6px;
        border-width: 1px;
    }

    .jd-games-grid {
        grid-template-columns: 1fr;
    }

    .jd-jackpot-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jd-seo-block {
        padding: var(--space-md);
    }

    .jd-seo-header h2 {
        font-size: var(--text-2xl);
    }
}

@media (max-width: 400px) {
    .jackpot-digit {
        width: 32px;
        height: 42px;
        font-size: 1.1rem;
        border-radius: 5px;
    }

    .jackpot-ticker-amount {
        gap: 3px;
    }
}

/* ==========================================================================
   CONTACT PAGE — JackpotDeck Design
   ========================================================================== */

/* --- Hero --- */
.contact-hero {
    position: relative;
    padding: calc(var(--header-height) + var(--space-md)) 0 var(--space-3xl);
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 90%, rgba(182, 58, 187, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 10%, rgba(243, 193, 23, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(182, 58, 187, 0.08) 0%, transparent 70%),
        linear-gradient(135deg, #0e0e0e 0%, #1a0a1e 30%, #151515 60%, #120d15 100%);
    z-index: 0;
}

.contact-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 300px at 15% 60%, rgba(182, 58, 187, 0.18) 0%, transparent 100%),
        radial-gradient(circle 250px at 85% 30%, rgba(243, 193, 23, 0.1) 0%, transparent 100%),
        radial-gradient(circle 200px at 50% 80%, rgba(182, 58, 187, 0.06) 0%, transparent 100%);
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-hero .breadcrumb-item::after {
    color: rgba(255, 255, 255, 0.4);
}

.contact-hero-content {
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: var(--space-md) 0 var(--space-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 500px;
}

/* --- Main Section --- */
.contact-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-alt);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b63abb, #f3c117, #b63abb);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
    gap: var(--space-2xl);
    align-items: start;
}

/* --- Form Card --- */
.contact-form-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.contact-form-header {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 2px solid rgba(182, 58, 187, 0.1);
}

.contact-form-header h2 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: #151515;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-xs);
}

.contact-form-header p {
    color: var(--color-text-light);
    font-size: var(--text-sm);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.contact-form .form-label {
    font-weight: var(--font-semibold);
    font-size: var(--text-sm);
    color: #151515;
    margin-bottom: var(--space-xs);
}

.contact-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-input-wrap svg {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    color: #b63abb;
    pointer-events: none;
    flex-shrink: 0;
    z-index: 1;
}

.contact-input-wrap-textarea svg {
    top: 14px;
    align-self: flex-start;
}

.contact-input-wrap .form-input,
.contact-input-wrap .form-textarea {
    padding-left: 44px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    background: #faf9fb;
    transition: all 0.3s ease;
}

.contact-input-wrap .form-input:focus,
.contact-input-wrap .form-textarea:focus {
    border-color: #b63abb;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(182, 58, 187, 0.08);
}

.contact-submit-btn {
    width: 100%;
    margin-top: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-base);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #b63abb 0%, #cb58cf 100%);
    box-shadow: 0 4px 20px rgba(182, 58, 187, 0.3);
    position: relative;
    overflow: hidden;
    gap: var(--space-sm);
}

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

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

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(182, 58, 187, 0.45);
}

.contact-submit-btn svg {
    flex-shrink: 0;
}

/* --- Info Sidebar --- */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: #151515;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #b63abb, #f3c117);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-card:hover {
    border-color: rgba(182, 58, 187, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.contact-info-card:hover::before {
    opacity: 1;
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #b63abb, #cb58cf);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(182, 58, 187, 0.3);
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.contact-info-text h3 {
    font-size: var(--text-base);
    font-weight: var(--font-bold);
    color: #fff;
    margin-bottom: 4px;
}

.contact-info-text p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.contact-info-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-info-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.5s ease;
}

.contact-info-image:hover img {
    transform: scale(1.05);
}

/* --- FAQ Section --- */
.contact-faq-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
}

.contact-faq-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.contact-faq-header .section-title {
    margin-top: var(--space-sm);
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.contact-faq-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #b63abb, #f3c117);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-faq-card:hover::before {
    opacity: 1;
}

.contact-faq-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: #151515;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: var(--space-sm);
}

.contact-faq-card p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: 1.7;
}

/* --- Contact Responsive --- */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 300px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: calc(var(--header-height) + var(--space-sm)) 0 var(--space-2xl);
    }

    .contact-hero-title {
        font-size: var(--text-3xl);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: var(--space-xl);
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-sidebar {
        order: -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .contact-info-image {
        grid-column: 1 / -1;
    }

    .contact-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-hero-title {
        font-size: var(--text-2xl);
    }

    .contact-form-card {
        padding: var(--space-lg);
    }

    .contact-info-sidebar {
        grid-template-columns: 1fr;
    }

    .contact-faq-card {
        padding: var(--space-lg);
    }
}
