/* --- CARTONIA STUDIO DESIGN SYSTEM --- */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&family=Outfit:wght@500;700;800;900&display=swap');

:root {
    --bg-dark: #0B0E14;
    --bg-card: #161B26;
    --bg-card-hover: #1E2638;
    --primary-gold: #FFB800;
    --gold-glow: rgba(255, 184, 0, 0.35);
    --neon-pink: #FF2A85;
    --pink-glow: rgba(255, 42, 133, 0.35);
    --neon-cyan: #00F2FE;
    --cyan-glow: rgba(0, 242, 254, 0.35);
    --text-white: #FFFFFF;
    --text-muted: #94A3B8;
    --font-cairo: 'Cairo', sans-serif;
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-cairo);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
    zoom: 90%;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0b0e14;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 5px;
    border: 2px solid #0b0e14;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gradient Utilities */
.text-gradient-gold {
    background: linear-gradient(135deg, #FFE082 0%, #FFB800 50%, #FF8F00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-cyan {
    background: linear-gradient(135deg, #E0F7FA 0%, #00F2FE 50%, #0099FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Top Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #FF2A85, #FFB800, #00F2FE);
    color: #000;
    font-weight: 800;
    text-align: center;
    padding: 6px 15px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Navigation Header */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 14, 20, 0.92);
    backdrop-filter: blur(16px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 184, 0, 0.15);
}
.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* EPIC BRAND HOME ICON BADGE */
.brand-home-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 22px;
    border-radius: 35px;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.18), rgba(0, 242, 254, 0.12));
    border: 2px solid var(--primary-gold);
    box-shadow: 0 0 25px rgba(255, 184, 0, 0.4), inset 0 0 15px rgba(255, 184, 0, 0.2);
    text-decoration: none;
    transition: var(--transition-bounce);
}
.brand-home-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px rgba(255, 184, 0, 0.7), inset 0 0 25px rgba(255, 184, 0, 0.4);
    border-color: #FFFFFF;
}
.brand-home-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFB800, #FF2A85);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 20px rgba(255, 42, 133, 0.7);
    transition: var(--transition-bounce);
}
.brand-home-badge:hover .brand-home-icon-box {
    transform: scale(1.15) rotate(-10deg);
}
.brand-home-text {
    font-family: var(--font-cairo);
    font-size: 23px;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* LARGER & CRISP TOP MENU ICONS & LINKS */
.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 800;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-bounce);
}
.nav-links a i {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--primary-gold);
    background: rgba(255, 184, 0, 0.08);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 8px;
    transition: var(--transition-bounce);
    filter: drop-shadow(0 0 6px rgba(255, 184, 0, 0.3));
    text-align: center;
    box-sizing: border-box;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--primary-gold);
    background: rgba(255, 184, 0, 0.12);
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px var(--gold-glow);
    transform: translateY(-2px);
}
.nav-links a:hover i, .nav-links a.active i {
    color: var(--neon-cyan);
    background: rgba(0, 242, 254, 0.15);
    border-color: var(--neon-cyan);
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.8));
    transform: scale(1.1) rotate(-4deg);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-bounce);
    border: none;
}
.btn-primary {
    background: linear-gradient(135deg, #FFB800, #FF8F00);
    color: #000;
    box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 184, 0, 0.6);
}
.btn-neon {
    background: linear-gradient(135deg, #FF2A85, #E0005E);
    color: #FFF;
    box-shadow: 0 4px 20px var(--pink-glow);
}
.btn-neon:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 42, 133, 0.6);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

/* Hero Section & Inline Video Player */
.hero-section {
    position: relative;
    padding: 50px 0 40px;
    background: radial-gradient(circle at 70% 20%, rgba(255, 184, 0, 0.12) 0%, rgba(0, 242, 254, 0.05) 50%, transparent 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 30px;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.3);
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 16px;
}
.hero-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 26px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* HERO INLINE VIDEO CARD CONTAINER */
.hero-visual {
    position: relative;
}
.hero-video-inline-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    width: 100%;
    background: #000;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 0 45px rgba(255, 184, 0, 0.45);
    cursor: pointer;
    transition: var(--transition-bounce);
}
.hero-video-inline-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play Badge Center */
.play-badge-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFB800, #FF2A85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 0 35px var(--gold-glow);
    animation: pulseGlow 2s infinite;
    transition: var(--transition-bounce);
    z-index: 10;
}
.play-badge-center:hover {
    transform: translate(-50%, -50%) scale(1.15);
}
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.7); }
    70% { box-shadow: 0 0 0 22px rgba(255, 184, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 184, 0, 0); }
}

/* Stats counter */
.stats-section {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(22, 27, 38, 0.4);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-card {
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--primary-gold);
}
.stat-label {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 14px;
    margin-top: 2px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}
.section-subtitle {
    color: var(--neon-cyan);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.section-title {
    font-size: 32px;
    font-weight: 900;
    margin-top: 4px;
}

/* SERVICES ULTRA GRID */
.services-ultra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}
@media (max-width: 1100px) { .services-ultra-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-ultra-grid { grid-template-columns: 1fr; } }

.service-ultra-card {
    position: relative;
    background: linear-gradient(145deg, rgba(22, 27, 38, 0.9), rgba(11, 14, 20, 0.95));
    border-radius: 24px;
    padding: 30px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-ultra-card:hover {
    transform: translateY(-10px) scale(1.03);
    z-index: 2;
}

.card-theme-cyan:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 40px var(--cyan-glow);
}
.card-theme-gold:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px var(--gold-glow);
}
.card-theme-pink:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 20px 40px var(--pink-glow);
}

.service-icon-badge {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
    transition: var(--transition-bounce);
}
.service-ultra-card:hover .service-icon-badge {
    transform: scale(1.15) rotate(6deg);
}

.badge-cyan {
    background: rgba(0, 242, 254, 0.12);
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 242, 254, 0.3);
    box-shadow: 0 0 20px var(--cyan-glow);
}
.badge-gold {
    background: rgba(255, 184, 0, 0.12);
    color: var(--primary-gold);
    border: 1px solid rgba(255, 184, 0, 0.3);
    box-shadow: 0 0 20px var(--gold-glow);
}
.badge-pink {
    background: rgba(255, 42, 133, 0.12);
    color: var(--neon-pink);
    border: 1px solid rgba(255, 42, 133, 0.3);
    box-shadow: 0 0 20px var(--pink-glow);
}

.service-card-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 10px;
    line-height: 1.35;
}
.service-card-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 20px;
}
.service-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    width: fit-content;
}

/* Featured Single-Box Video Showcase Player Container */
.inline-video-showcase-container {
    width: 100%;
    max-width: 1120px; /* ~10% smaller window width */
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(0, 242, 254, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px var(--cyan-glow);
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}
.inline-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}
.inline-video-poster-box {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    z-index: 5;
    cursor: pointer;
    transition: opacity 0.4s ease;
}
.inline-video-poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 14, 20, 0.95) 0%, rgba(11, 14, 20, 0.3) 60%, transparent 100%);
    z-index: 1;
}
.inline-video-title {
    position: relative;
    z-index: 2;
    font-size: 26px;
    font-weight: 900;
    color: #FFF;
    margin-bottom: 8px;
}
.inline-video-meta {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: var(--primary-gold);
    font-weight: 700;
}
.inline-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF2A85, #FFB800);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 0 35px var(--pink-glow);
    transition: var(--transition-bounce);
}
.inline-video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
}

/* Video Thumbnails Strip */
.inline-video-thumbs-strip {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: rgba(11, 14, 20, 0.98);
    overflow-x: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.inline-video-thumb-item {
    flex: 0 0 160px;
    height: 95px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}
.inline-video-thumb-item.active, .inline-video-thumb-item:hover {
    opacity: 1;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px var(--cyan-glow);
    transform: scale(1.04);
}
.inline-video-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inline-video-thumb-title {
    position: absolute;
    bottom: 0;
    inset-x: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #FFF;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* GALLERY SLIDESHOW CONTAINER (مقاس 16:9 للصور) */
.inline-slideshow-container {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid rgba(255, 184, 0, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px var(--gold-glow);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}
.inline-slideshow-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Perfect 16:9 ratio */
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inline-slideshow-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease-in-out;
}
.inline-slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(11, 14, 20, 0.85);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.inline-slideshow-nav:hover {
    background: var(--primary-gold);
    color: #000;
    transform: translateY(-50%) scale(1.15);
}
.inline-slideshow-prev { right: 20px; }
.inline-slideshow-next { left: 20px; }

.inline-slideshow-overlay {
    position: absolute;
    bottom: 0;
    inset-x: 0;
    z-index: 10;
    background: linear-gradient(to top, rgba(11, 14, 20, 0.95) 0%, rgba(11, 14, 20, 0.4) 60%, transparent 100%);
    padding: 30px 25px 20px;
}
.inline-slideshow-title {
    font-size: 24px;
    font-weight: 900;
    color: #FFF;
    margin-bottom: 6px;
}
.inline-slideshow-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--neon-cyan);
    font-weight: 700;
}

/* Gallery Thumbnails Strip (16:9 Aspect Ratio Thumbs) */
.inline-thumbnails-strip {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: rgba(11, 14, 20, 0.98);
    overflow-x: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.inline-thumb-item {
    flex: 0 0 140px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}
.inline-thumb-item.active, .inline-thumb-item:hover {
    opacity: 1;
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px var(--gold-glow);
    transform: scale(1.05);
}
.inline-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Social Hub Container */
.social-hub-container {
    background: linear-gradient(135deg, rgba(22, 27, 38, 0.95), rgba(11, 14, 20, 0.98));
    border: 1px solid rgba(255, 184, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px var(--gold-glow);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.social-hub-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 8px;
}
.social-hub-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 30px;
}
.social-grid-cards {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    overflow-x: auto;
    padding: 10px 4px 15px;
}
.social-grid-cards::-webkit-scrollbar {
    height: 4px;
}
.social-grid-cards::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 10px;
}
.social-platform-card {
    flex: 1 1 0px;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}
.social-platform-card:hover {
    transform: translateY(-8px) scale(1.04);
    z-index: 2;
}
.social-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 14px;
    transition: var(--transition-bounce);
}
.social-platform-card:hover .social-icon-box {
    transform: scale(1.15) rotate(5deg);
}
.social-platform-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 4px;
}
.social-platform-handle {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 14px;
}
.social-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    transition: var(--transition-fast);
}

/* Individual Platform Themes */
.card-youtube { border-color: rgba(255, 71, 87, 0.3); }
.card-youtube .social-icon-box { background: rgba(255, 71, 87, 0.15); color: #FF4757; border: 1px solid rgba(255, 71, 87, 0.4); box-shadow: 0 0 20px rgba(255, 71, 87, 0.3); }
.card-youtube .social-action-btn { background: #FF4757; color: #FFF; }
.card-youtube:hover { border-color: #FF4757; box-shadow: 0 15px 35px rgba(255, 71, 87, 0.4); }

.card-tiktok { border-color: rgba(0, 242, 254, 0.3); }
.card-tiktok .social-icon-box { background: rgba(0, 242, 254, 0.15); color: #00F2FE; border: 1px solid rgba(0, 242, 254, 0.4); box-shadow: 0 0 20px rgba(0, 242, 254, 0.3); }
.card-tiktok .social-action-btn { background: #00F2FE; color: #000; }
.card-tiktok:hover { border-color: #00F2FE; box-shadow: 0 15px 35px rgba(0, 242, 254, 0.4); }

.card-facebook { border-color: rgba(24, 119, 242, 0.3); }
.card-facebook .social-icon-box { background: rgba(24, 119, 242, 0.15); color: #1877F2; border: 1px solid rgba(24, 119, 242, 0.4); box-shadow: 0 0 20px rgba(24, 119, 242, 0.3); }
.card-facebook .social-action-btn { background: #1877F2; color: #FFF; }
.card-facebook:hover { border-color: #1877F2; box-shadow: 0 15px 35px rgba(24, 119, 242, 0.4); }

.card-instagram { border-color: rgba(228, 64, 95, 0.3); }
.card-instagram .social-icon-box { background: rgba(228, 64, 95, 0.15); color: #E4405F; border: 1px solid rgba(228, 64, 95, 0.4); box-shadow: 0 0 20px rgba(228, 64, 95, 0.3); }
.card-instagram .social-action-btn { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #FFF; }
.card-instagram:hover { border-color: #E4405F; box-shadow: 0 15px 35px rgba(228, 64, 95, 0.4); }

/* 5-Item Shorts Slider */
.shorts-carousel-container {
    position: relative;
    padding: 10px 0;
}
.shorts-slider-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 12px;
    scroll-behavior: smooth;
    padding: 10px 5px 20px 5px;
}
.shorts-slider-track::-webkit-scrollbar { height: 5px; }
.shorts-slider-track::-webkit-scrollbar-thumb { background: var(--neon-pink); border-radius: 10px; }

.short-slide-item {
    flex: 0 0 calc(20% - 13px);
    min-width: 210px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
@media (max-width: 1200px) { .short-slide-item { flex: 0 0 calc(25% - 12px); } }
@media (max-width: 900px) { .short-slide-item { flex: 0 0 calc(33.333% - 11px); } }
@media (max-width: 600px) { .short-slide-item { flex: 0 0 calc(50% - 8px); } }

.short-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(255, 42, 133, 0.3);
    height: 360px;
    cursor: pointer;
    transition: var(--transition-bounce);
}
.short-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 35px var(--pink-glow);
    border-color: var(--neon-pink);
}
.short-card img { width: 100%; height: 100%; object-fit: cover; }
.short-badge-tag {
    position: absolute; top: 12px; right: 12px;
    background: rgba(255, 42, 133, 0.85); color: #FFF;
    padding: 4px 10px; border-radius: 12px; font-size: 12px; font-weight: 800;
}
.short-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,14,20,0.95) 0%, rgba(11,14,20,0.3) 50%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 16px;
}
.short-card-title { font-size: 15px; font-weight: 800; color: #FFF; margin-bottom: 6px; }
.short-card-meta { display: flex; gap: 12px; font-size: 12px; color: var(--primary-gold); font-weight: 700; }

.shorts-slider-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(22, 27, 38, 0.9); border: 1px solid var(--neon-pink); color: #FFF;
    display: flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer; transition: var(--transition-fast);
}
.shorts-slider-nav-btn:hover { background: var(--neon-pink); transform: translateY(-50%) scale(1.1); }
.shorts-slider-prev { right: -12px; }
.shorts-slider-next { left: -12px; }

/* Lightbox Modal */
.modal-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(5, 7, 10, 0.95); backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: var(--transition-fast);
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-content { position: relative; background: var(--bg-card); border: 1px solid var(--primary-gold); border-radius: 20px; padding: 30px; }
.modal-close {
    position: absolute; top: 14px; left: 14px; z-index: 30;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255, 71, 87, 0.85); color: #FFF; font-size: 20px;
    display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition-fast);
}
.modal-close:hover { transform: scale(1.15); }

/* Games Section */
.games-showcase-container {
    background: radial-gradient(circle at center, rgba(255, 184, 0, 0.08) 0%, rgba(22, 27, 38, 0.6) 100%);
    border: 1px dashed rgba(255, 184, 0, 0.3); border-radius: 24px; padding: 40px 24px; text-align: center;
}
.games-empty-box { max-width: 600px; margin: 0 auto; }

/* Quote Calculator */
.quote-section {
    background: linear-gradient(135deg, #161B26, #0D111A);
    border: 1px solid rgba(255, 184, 0, 0.3); border-radius: 24px; padding: 35px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}
.quote-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 16px; }
@media (max-width: 768px) { .quote-form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-weight: 700; font-size: 14px; color: var(--text-white); }
.form-input, .form-select, .form-textarea {
    width: 100%; background: rgba(11, 14, 20, 0.8); border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px; padding: 12px 16px; color: #fff; font-size: 15px; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--primary-gold); box-shadow: 0 0 15px var(--gold-glow); }
.form-select option { background: #161b26; color: #fff; }

/* Footer */
.footer { background: #07090D; padding: 50px 0 25px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1fr; gap: 30px; margin-bottom: 30px; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.05); color: var(--text-muted); font-size: 14px; }

/* Admin Login & Control Panel */
.admin-login-box { max-width: 420px; margin: 60px auto; padding: 35px; background: var(--bg-card); border: 1px solid var(--primary-gold); border-radius: 24px; }
.admin-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 25px; }
.admin-tab-btn { padding: 10px 18px; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--text-muted); font-weight: 700; cursor: pointer; }
.admin-tab-btn.active, .admin-tab-btn:hover { background: var(--primary-gold); color: #000; border-color: var(--primary-gold); }
.admin-tab-content { display: none; }
.admin-tab-content.active { display: block; }
.admin-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 25px; }
@media (max-width: 900px) { .admin-grid { grid-template-columns: 1fr; } }
.admin-card { background: var(--bg-card); padding: 24px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.08); }

/* Floating WhatsApp Direct Chat Widget 💬✨ */
.floating-whatsapp-badge {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #FFFFFF !important;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 0 15px rgba(37, 211, 102, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    direction: ltr;
}
.floating-whatsapp-badge:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6), 0 0 25px rgba(37, 211, 102, 0.8);
    color: #FFFFFF !important;
}
.whatsapp-icon-pulse {
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.card-whatsapp {
    border-color: rgba(37, 211, 102, 0.4) !important;
}
.card-whatsapp .social-icon-box {
    color: #25D366 !important;
}
.card-whatsapp:hover {
    background: rgba(37, 211, 102, 0.12) !important;
    border-color: #25D366 !important;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4) !important;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { justify-content: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
}
@media (max-width: 576px) {
    .stats-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 30px; }
}
