/* Royal Play - Optimized Main Stylesheet */
:root {
    --primary-red: #dc2626;
    --secondary-red: #991b1b;
    --gold: #fbbf24;
    --dark-bg: #0a0a0a;
    --darker: #050505;
    --light: #ffffff;
    --gray-light: #d1d5db;
    --gray-dark: #9ca3af;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100% !important;
    max-width: 100vw !important;
    font-size: 16px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 18px;
    }
}

body {
    font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    direction: rtl;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 50%, #0a0a0a 100%);
    background-attachment: fixed;
    color: var(--light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    width: 100% !important;
    max-width: 100vw !important;
}

/* Background Pattern Overlay */
body::before {
    content: '♠♥♦♣';
    position: fixed;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    font-size: 20rem;
    opacity: 0.02;
    color: var(--primary-red);
    z-index: -1;
    pointer-events: none;
}

/* Touch-friendly targets */
.btn, button, a[role="button"] {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(220, 38, 38, 0.3);
}

/* Prevent iOS zoom */
input, textarea, select {
    font-size: 16px !important;
}

/* GPU acceleration for smooth animations */
.btn, .card, .game-card {
    transform: translateZ(0);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   HEADER & NAVBAR STYLES
   ============================================ */

header {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-logo {
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.glow {
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5),
                 0 0 40px rgba(220, 38, 38, 0.3);
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(220, 38, 38, 0.5),
                     0 0 40px rgba(220, 38, 38, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(220, 38, 38, 0.8),
                     0 0 60px rgba(220, 38, 38, 0.5);
    }
}

.highlight {
    color: var(--gold);
    font-weight: 700;
    padding: 2px 8px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 4px;
}

/* Trust Badges in Header */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.trust-badge i {
    font-size: 1rem;
}

/* Header CTA Buttons */
.btn-header-cta-secondary {
    padding: 10px 20px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 25px;
    color: var(--light);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-header-cta-secondary:hover {
    background: rgba(220, 38, 38, 0.2);
    border-color: var(--primary-red);
    color: var(--light);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

/* ============================================
   WHATSAPP BUTTONS - ALL VARIANTS
   ============================================ */

/* WhatsApp Button in Header/Navbar */
.whatsapp-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    border: none;
}

.whatsapp-header-btn:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #128c7e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-header-btn i {
    font-size: 1.2rem;
}

/* WhatsApp CTA Buttons (Large) */
.whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 50%, #128c7e 100%);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 
        0 6px 25px rgba(37, 211, 102, 0.4),
        0 0 40px rgba(37, 211, 102, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
}

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

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

.whatsapp-cta-btn:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #128c7e 50%, #20ba5a 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 35px rgba(37, 211, 102, 0.6),
        0 0 60px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-cta-btn i {
    font-size: 1.4rem;
}

/* Floating WhatsApp Button - Bottom Left */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 50%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 20px rgba(37, 211, 102, 0.5),
        0 0 40px rgba(37, 211, 102, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsappPulse 2s ease-in-out infinite;
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #25d366, #20ba5a, #128c7e, #25d366);
    background-size: 300% 300%;
    border-radius: 50%;
    z-index: -1;
    animation: whatsappShine 3s ease infinite;
    opacity: 0.7;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: whatsappGlow 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 4px 20px rgba(37, 211, 102, 0.5),
            0 0 40px rgba(37, 211, 102, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 
            0 6px 30px rgba(37, 211, 102, 0.7),
            0 0 60px rgba(37, 211, 102, 0.5),
            inset 0 0 25px rgba(255, 255, 255, 0.3);
    }
}

@keyframes whatsappShine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes whatsappGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 
        0 8px 40px rgba(37, 211, 102, 0.8),
        0 0 80px rgba(37, 211, 102, 0.7),
        inset 0 0 30px rgba(255, 255, 255, 0.4);
}

.whatsapp-float:hover::after {
    opacity: 0.8;
}

.whatsapp-float i {
    font-size: 2rem;
    color: white;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.whatsapp-float:hover i {
    animation: whatsappIconBounce 0.6s ease;
}

@keyframes whatsappIconBounce {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        var(--dark-bg);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 30px;
}

.hero-badge .badge {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 50px;
}

.bg-gradient-red {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red)) !important;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.premium-image {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.premium-image:hover {
    transform: scale(1.02);
}

.image-premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 10px;
    z-index: 2;
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

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

.badge-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-label {
    font-size: 0.7rem;
    color: var(--gray-dark);
}

.badge-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
}

/* ============================================
   BUTTONS & CTAs
   ============================================ */

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red)) !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.5) !important;
}

.pulse-btn {
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(220, 38, 38, 0.7);
    }
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 150%;
    }
}

.btn-xl {
    font-size: 1.2rem !important;
    padding: 16px 40px !important;
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
    background: rgba(220, 38, 38, 0.05);
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

/* ============================================
   SECTIONS
   ============================================ */

.benefits-section,
.games-section,
.payment-section,
.testimonials-section,
.faq-section,
.trust-section {
    background: rgba(10, 10, 10, 0.5);
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
}

/* ============================================
   CARDS
   ============================================ */

.card {
    background: rgba(20, 20, 20, 0.8) !important;
    border: 1px solid rgba(220, 38, 38, 0.2) !important;
    border-radius: 15px !important;
    transition: all 0.3s ease !important;
}

.card:hover {
    border-color: rgba(220, 38, 38, 0.5) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.card-effect {
    transition: all 0.3s ease;
}

.card-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-wrapper i {
    color: var(--gold);
}

/* ============================================
   GAMES SECTION
   ============================================ */

.game-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.game-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.4);
}

.premium-game-image {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.game-card:hover .premium-game-image {
    transform: scale(1.05);
}

.game-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

/* ============================================
   PAYMENT METHODS
   ============================================ */

.payment-method {
    padding: 30px 20px;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.payment-method i {
    color: var(--gold);
    margin-bottom: 10px;
}

.payment-method p {
    margin-top: 10px;
    font-weight: 600;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-section {
    background: rgba(10, 10, 10, 0.5);
}

.form-header {
    text-align: center;
}

.form-icon-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

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

.form-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold), #fde68a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
}

.form-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gold);
}

.benefit-badge i {
    font-size: 0.9rem;
}

/* Form Controls */
.form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid rgba(220, 38, 38, 0.3) !important;
    color: var(--light) !important;
    border-radius: 10px !important;
    padding: 15px !important;
    transition: all 0.3s ease !important;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3) !important;
    color: var(--light) !important;
}

.form-control::placeholder {
    color: var(--gray-dark) !important;
}

.form-label {
    color: var(--light);
    font-weight: 600;
    margin-bottom: 10px;
}

.input-group-text {
    background: rgba(220, 38, 38, 0.2);
    border: 2px solid rgba(220, 38, 38, 0.3);
    color: var(--gold);
}

.form-text {
    color: var(--gray-dark);
    font-size: 0.85rem;
}

.invalid-feedback {
    color: #ff6b6b;
}

/* Optional Fields */
.optional-fields-toggle {
    text-align: center;
    margin: 20px 0;
}

.optional-fields-toggle .btn-link {
    color: var(--gold);
    text-decoration: none;
}

.optional-fields-toggle .btn-link:hover {
    color: #fde68a;
}

.optional-fields {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-check-input {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(220, 38, 38, 0.3);
}

.form-check-input:checked {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.form-check-label {
    color: var(--gray-light);
}

.form-footer {
    margin-top: 20px;
}

.form-note {
    text-align: center;
    color: var(--gray-dark);
    font-size: 0.9rem;
    margin-top: 15px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
    background: rgba(10, 10, 10, 0.7);
}

.testimonial-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.3);
}

.testimonial-stars {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.author-info strong {
    display: block;
    color: var(--light);
    margin-bottom: 3px;
}

.author-info small {
    color: var(--gold);
    font-size: 0.85rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    background: rgba(10, 10, 10, 0.5);
}

.accordion-item {
    background: rgba(20, 20, 20, 0.8) !important;
    border: 1px solid rgba(220, 38, 38, 0.2) !important;
    border-radius: 10px !important;
    margin-bottom: 15px !important;
}

.accordion-button {
    background: rgba(220, 38, 38, 0.1) !important;
    color: var(--light) !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red)) !important;
    color: white !important;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 38, 38, 0.25) !important;
}

.accordion-body {
    background: rgba(10, 10, 10, 0.5);
    color: var(--gray-light);
}

/* ============================================
   TRUST SECTION
   ============================================ */

.trust-section {
    background: rgba(10, 10, 10, 0.7);
}

.trust-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.trust-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.3);
}

.trust-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 20px 0 15px;
    color: var(--gold);
}

.trust-card p {
    color: var(--gray-light);
}

/* ============================================
   FLOATING CTA BUTTON (Mobile)
   ============================================ */

.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.floating-btn {
    border-radius: 50px !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5) !important;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: rgba(10, 10, 10, 0.95) !important;
    border-top: 1px solid rgba(220, 38, 38, 0.3);
}

.footer-logo {
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

footer a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fde68a;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 80px;
        left: 15px;
    }
    
    .whatsapp-float i {
        font-size: 1.8rem;
    }
    
    .whatsapp-header-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .whatsapp-header-btn i {
        font-size: 1rem;
    }
    
    .trust-badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .floating-badge {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
    }
    
    /* Fix container overflow on mobile */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-gold {
    color: var(--gold) !important;
}

.text-primary-red {
    color: var(--primary-red) !important;
}

.bg-gradient-gold {
    background: linear-gradient(135deg, var(--gold), #f59e0b) !important;
}

/* Loading animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--gold);
    color: var(--darker);
}

::-moz-selection {
    background: var(--gold);
    color: var(--darker);
}
