/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #E60000;
    --primary-dark: #B30000;
    --secondary-color: #00A651;
    --secondary-dark: #008841;
    --accent-color: #FFD700;
    --purple-color: #8B4789;
    --orange-color: #FF6B35;
    --blue-color: #4A90E2;
    --teal-color: #00B8A9;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --gray-dark: #666;
    --text-color: #333;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

body {
    font-family: 'Cairo', 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef3 100%);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Header */
.header {
    background: linear-gradient(135deg, #E60000 0%, #B30000 100%);
    color: var(--light-color);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(230, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: var(--transition-fast);
}

.hamburger-menu:hover span {
    background: var(--accent-color);
}

.site-logo {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: center;
}

.logo-icon {
    font-size: 36px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.official-badge {
    background: linear-gradient(135deg, var(--accent-color), #FFC700);
    color: var(--dark-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: badgePulse 2s infinite;
    white-space: nowrap;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #00A651 0%, #008841 100%);
    color: var(--light-color);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: 10%;
    animation-delay: 5s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
}

.circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: -80px;
    animation-delay: 10s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
}

.decorative-shape {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(230, 0, 0, 0.2));
    transform: rotate(45deg);
    animation: rotate360 15s linear infinite;
}

.shape-1 {
    top: 20%;
    left: 10%;
}

.shape-2 {
    bottom: 30%;
    right: 15%;
    animation-delay: 7s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-50px) rotate(180deg); }
}

@keyframes rotate360 {
    from { transform: rotate(45deg); }
    to { transform: rotate(405deg); }
}

.hero > .container {
    position: relative;
    z-index: 1;
}

/* Year Banner */
.year-banner {
    margin-bottom: 40px;
    animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.year-digits {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.digit {
    font-size: 100px;
    font-weight: 900;
    line-height: 1;
    padding: 20px 30px;
    border-radius: 20px;
    animation: digitPop 0.6s ease backwards;
    position: relative;
    overflow: hidden;
}

.digit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to { left: 100%; }
}

.digit-1 {
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    animation-delay: 0.1s;
    text-shadow: 0 5px 15px rgba(255, 20, 147, 0.5);
}

.digit-2 {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    animation-delay: 0.2s;
    text-shadow: 0 5px 15px rgba(255, 107, 53, 0.5);
}

.digit-3 {
    background: linear-gradient(135deg, #8B4789, #A569BD);
    animation-delay: 0.3s;
    text-shadow: 0 5px 15px rgba(139, 71, 137, 0.5);
}

.digit-4 {
    background: linear-gradient(135deg, #4A90E2, #5DADE2);
    animation-delay: 0.4s;
    text-shadow: 0 5px 15px rgba(74, 144, 226, 0.5);
}

@keyframes digitPop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.main-title {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 900;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.subtitle-text {
    font-size: 24px;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 20px;
}

/* Prize Banner */
.prize-banner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    color: var(--dark-color);
    padding: 40px 30px;
    border-radius: 25px;
    margin: 40px auto;
    max-width: 800px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.8s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.banner-header {
    text-align: center;
    margin-bottom: 30px;
}

.banner-ribbon {
    display: inline-block;
    background: linear-gradient(135deg, #FF4444, #CC0000);
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
    animation: ribbonPulse 2s infinite;
}

@keyframes ribbonPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(255, 68, 68, 0.6); }
}

.banner-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.3;
}

.banner-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-dark);
}

/* Smart Cards Container */
.smart-cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
    perspective: 1000px;
}

.smart-card {
    width: 120px;
    height: 75px;
    background: linear-gradient(135deg, #00598C, #003D5C);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 89, 140, 0.4);
    transition: var(--transition);
    cursor: pointer;
    animation: cardFloat 3s ease-in-out infinite;
}

.smart-card:nth-child(1) { animation-delay: 0s; }
.smart-card:nth-child(2) { animation-delay: 0.2s; }
.smart-card:nth-child(3) { animation-delay: 0.4s; }
.smart-card:nth-child(4) { animation-delay: 0.6s; }
.smart-card:nth-child(5) { animation-delay: 0.8s; }
.smart-card:nth-child(6) { animation-delay: 1s; }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.smart-card:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 89, 140, 0.6);
}

.smart-card.featured {
    width: 140px;
    height: 85px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
    transform: scale(1.1);
}

.smart-card.featured:hover {
    transform: translateY(-10px) scale(1.2);
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: cardShine 3s infinite;
}

@keyframes cardShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.card-label {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 9px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 20px;
    animation: rotateStar 4s linear infinite;
}

@keyframes rotateStar {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Cards Counter */
.cards-counter {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 107, 53, 0.15));
    border-radius: 15px;
    margin-top: 30px;
}

.counter-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.counter-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(230, 0, 0, 0.2);
    animation: counterPulse 2s infinite;
}

@keyframes counterPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Offer Box Styles */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: slideDown 0.8s ease;
}

.badge-icon {
    font-size: 18px;
    animation: pulse 2s infinite;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trophy-icon {
    font-size: 100px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
    animation: expandWidth 1s ease forwards;
}

@keyframes expandWidth {
    from { width: 0%; }
    to { width: 60%; }
}

.offer-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    color: var(--primary-color);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.5);
    animation: scaleIn 0.6s ease;
}

.offer-ribbon {
    position: absolute;
    top: 15px;
    left: -35px;
    background: linear-gradient(135deg, #FF4444, #CC0000);
    color: white;
    padding: 5px 45px;
    transform: rotate(-45deg);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.offer-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.offer-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.amount-number {
    font-size: 96px;
    font-weight: 900;
    line-height: 1;
    color: var(--primary-color);
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #E60000, #FF4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.amount-unit {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
}

.offer-subtext {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.offer-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px dashed rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 22px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 35px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description strong {
    color: var(--accent-color);
    font-size: 24px;
}

/* CTA Container */
.cta-container {
    margin-top: 35px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), #FF4444);
    color: var(--light-color);
    padding: 20px 50px;
    font-size: 24px;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(230, 0, 0, 0.4);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-cta::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;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(230, 0, 0, 0.5);
}

.btn-cta .arrow {
    font-size: 28px;
    transition: var(--transition);
}

.btn-cta:hover .arrow {
    transform: translateX(-5px);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(230, 0, 0, 0.4); }
    50% { box-shadow: 0 10px 40px rgba(230, 0, 0, 0.6), 0 0 0 15px rgba(230, 0, 0, 0.1); }
}

.cta-note {
    margin-top: 15px;
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px dashed rgba(0, 0, 0, 0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--dark-color);
}

.check-icon {
    background: var(--secondary-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.hero-description {
    font-size: 22px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 35px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description strong {
    color: var(--accent-color);
    font-size: 24px;
}

.cta-container {
    margin-top: 35px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), #FF4444);
    color: var(--light-color);
    padding: 20px 50px;
    font-size: 24px;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(230, 0, 0, 0.4);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-cta::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;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(230, 0, 0, 0.5);
}

.btn-cta .arrow {
    font-size: 28px;
    transition: var(--transition);
}

.btn-cta:hover .arrow {
    transform: translateX(-5px);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(230, 0, 0, 0.4); }
    50% { box-shadow: 0 10px 40px rgba(230, 0, 0, 0.6), 0 0 0 15px rgba(230, 0, 0, 0.1); }
}

.cta-note {
    margin-top: 15px;
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Registration Section */
.registration-section {
    padding: 60px 20px;
    background-color: var(--light-color);
}

.share-tracking {
    background: #f8f9fa;
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 25px 0;
    text-align: center;
}

.share-counter-text {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.share-counter-text strong {
    color: var(--secondary-color);
    font-size: 24px;
}

.progress-bar-small {
    width: 100%;
    max-width: 400px;
    height: 10px;
    background: rgba(0, 166, 81, 0.2);
    border-radius: 20px;
    overflow: hidden;
    margin: 15px auto;
}

.progress-fill-small {
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), #008841);
    width: 0%;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px var(--secondary-color);
}

.share-hint {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.completion-message {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 25px;
    border: 3px solid var(--secondary-color);
    animation: slideDown 0.5s ease;
}

.completion-icon {
    font-size: 70px;
    margin-bottom: 15px;
}

.completion-message h4 {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 20px;
}

.time-message {
    background: var(--light-color);
    padding: 15px;
    border-radius: 8px;
    font-size: 18px;
    margin: 20px 0;
    border-right: 4px solid var(--accent-color);
}

.confirmation-text {
    font-size: 16px;
    line-height: 1.8;
    margin: 15px 0;
    color: var(--dark-color);
}

.confirmation-text strong {
    color: var(--primary-color);
    font-size: 18px;
}

.thank-you {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 20px;
}

.important-note {
    background: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #856404;
    margin-top: 15px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--light-color);
    border: none;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px auto;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    width: 100%;
    max-width: 500px;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Registration Section */
.registration-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background: var(--light-color);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.trophy-small {
    font-size: 48px;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.section-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 900;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Remove Gender Selection Styles - Not needed for simplified form */

/* Form Styles */
.registration-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.icon {
    font-size: 20px;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    direction: rtl;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 0, 0, 0.1);
}

.input-hint {
    font-size: 13px;
    color: #888;
    margin-top: 5px;
}

.error-message {
    color: var(--primary-color);
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #c90000);
    color: var(--light-color);
    border: none;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 0, 0, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-icon {
    font-size: 24px;
}

/* Loading Message */
.loading-message {
    text-align: center;
    padding: 30px;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
    animation: slideUp 0.3s;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.success-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: scaleIn 0.5s;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.modal-content h3 {
    color: var(--secondary-color);
    font-size: 28px;
    margin-bottom: 15px;
}

.success-message {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.next-steps {
    background: var(--gray-color);
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    text-align: right;
}

.next-steps h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.next-steps ol {
    text-align: right;
    padding-right: 20px;
}

.next-steps li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--light-color);
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px auto;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 24px;
}

.confirmation-section {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.btn-confirm {
    background: var(--secondary-color);
    color: var(--light-color);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 15px;
    transition: var(--transition);
    width: 100%;
}

.btn-confirm:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.btn-confirm:not(:disabled):hover {
    background: #008841;
    transform: translateY(-2px);
}

.btn-close-modal {
    background: var(--secondary-color);
    color: var(--light-color);
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 20px;
    transition: var(--transition);
}

.btn-close-modal:hover {
    background: #008841;
    transform: translateY(-2px);
}

.note {
    font-size: 14px;
    color: #666;
    margin-top: 20px;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 900;
}

.section-description {
    font-size: 18px;
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.feature-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    transform: rotate(360deg);
}

.feature-icon {
    font-size: 50px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2);
}

.feature-card h4 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--gray-dark);
    font-size: 16px;
    line-height: 1.6;
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #FFC700);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    padding: 40px;
    border-radius: var(--border-radius);
    margin-top: 60px;
    text-align: center;
}

.trust-title {
    color: white;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.trust-badge span {
    color: white;
    font-weight: 600;
    font-size: 15px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    position: relative;
    margin: 0 auto 30px;
}

.step-number span {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #FF4444);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 900;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(230, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -40px;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transform: translateY(-50%);
    z-index: 1;
}

.step:last-child .step-connector {
    display: none;
}

.step-content {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    border: 2px solid #e9ecef;
    transition: var(--transition);
}

.step:hover .step-content {
    background: white;
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.step h4 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.step p {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.6;
}

.step-time {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 15px;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 80px;
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--primary-color), #FF4444);
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(230, 0, 0, 0.3);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(135deg, white, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.disclaimer {
    font-size: 14px;
    color: #aaa;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-logo {
        font-size: 24px;
    }

    .logo-icon {
        font-size: 28px;
    }

    .official-badge {
        font-size: 10px;
        padding: 6px 12px;
    }

    .hamburger-menu span {
        width: 22px;
    }

    .year-digits {
        gap: 8px;
    }

    .digit {
        font-size: 60px;
        padding: 15px 20px;
    }

    .main-title {
        font-size: 28px;
    }

    .subtitle-text {
        font-size: 18px;
    }

    .banner-title {
        font-size: 22px;
    }

    .banner-subtitle {
        font-size: 16px;
    }

    .smart-cards-container {
        gap: 10px;
    }

    .smart-card {
        width: 90px;
        height: 60px;
    }

    .smart-card.featured {
        width: 100px;
        height: 65px;
    }

    .card-label {
        font-size: 7px;
    }

    .counter-number {
        font-size: 42px;
    }

    .btn-cta {
        font-size: 18px;
        padding: 16px 32px;
    }

    .btn-icon {
        font-size: 20px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .question-icon {
        font-size: 48px;
    }

    .section-title {
        font-size: 28px;
    }

    .gender-selection {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gender-btn {
        padding: 25px 15px;
    }

    .gender-icon {
        font-size: 40px;
    }

    .gender-text {
        font-size: 20px;
    }

    .prize-banner {
        padding: 30px 20px;
    }

    .hero {
        padding: 40px 20px;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .digit {
        font-size: 50px;
        padding: 12px 16px;
    }

    .year-digits {
        gap: 5px;
    }

    .main-title {
        font-size: 24px;
    }

    .smart-card {
        width: 70px;
        height: 50px;
    }

    .smart-card.featured {
        width: 80px;
        height: 55px;
    }

    .featured-badge {
        font-size: 16px;
    }

    .banner-ribbon {
        font-size: 14px;
        padding: 8px 20px;
    }

    .btn-cta {
        font-size: 16px;
        padding: 14px 28px;
        gap: 10px;
    }

    .section-title {
        font-size: 24px;
    }

    .question-icon {
        font-size: 40px;
    }
}    .hero-description {
        font-size: 18px;
    }

    .btn-cta {
        font-size: 20px;
        padding: 18px 40px;
    }

    .form-container {
        padding: 25px;
    }

    .section-title {
        font-size: 32px;
    }

    .btn-primary {
        font-size: 18px;
        padding: 15px 30px;
    }

    .modal-content {
        padding: 25px;
    }

    .features-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }

    .step-connector {
        display: none;
    }

    .stats-section {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 42px;
    }

    .logo-container h1 {
        font-size: 24px;
    }

    .hero {
        padding: 60px 20px;
    }

    .trophy-icon {
        font-size: 70px;
    }

    .offer-box {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .trophy-icon {
        font-size: 60px;
    }

    .amount-number {
        font-size: 64px;
    }

    .main-title {
        font-size: 28px;
    }

    .offer-features {
        gap: 10px;
    }

    .feature-item {
        font-size: 14px;
    }

    .btn-cta {
        font-size: 18px;
        padding: 16px 35px;
    }
}
