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

:root {
    --primary-orange: #E87722;
    --secondary-yellow: #F4B000;
    --sand: #F5EBDD;
    --dark-bg: #1a1a1a;
    --text-dark: #111827;
    --text-light: #ffffff;
    --border-light: rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(180deg, var(--sand), #fff);
    transition: background 0.3s ease, color 0.3s ease;
    padding-top: 80px;
}

body.dark-mode {
    background: linear-gradient(180deg, #0a0a0a, var(--dark-bg));
    color: var(--text-light);
}

body.dark-mode .nav-container,
body.dark-mode .form-container,
body.dark-mode .offer-left,
body.dark-mode .footer {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

body.dark-mode input,
body.dark-mode select,
body.dark-mode textarea {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

body.dark-mode #navbar {
    background: rgba(26, 26, 26, 0.95);
}

body.dark-mode #navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 0 20px rgba(232, 119, 34, 0.4);
    overflow: hidden;
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { 
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 0 20px rgba(232, 119, 34, 0.4);
    }
    50% { 
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 0 30px rgba(232, 119, 34, 0.6);
    }
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary-orange);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 5px 10px;
}

body.dark-mode .nav-link {
    color: var(--text-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-yellow));
    transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(232, 119, 34, 0.1);
    border-radius: 10px;
    transition: all 0.4s ease;
    z-index: -1;
}

.nav-link:hover {
    color: var(--primary-orange);
    transform: translateY(-3px) scale(1.05);
}

.nav-link:hover::before {
    width: 100%;
    height: 100%;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.icon-btn,
.lang-btn {
    padding: 10px 15px;
    border: 2px solid var(--border-light);
    background: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.icon-btn::before,
.lang-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: var(--primary-orange);
    border-radius: 50%;
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}

.icon-btn:hover::before,
.lang-btn:hover::before {
    width: 200px;
    height: 200px;
}

body.dark-mode .icon-btn,
body.dark-mode .lang-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.2);
}

.icon-btn:hover,
.lang-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 20px rgba(232, 119, 34, 0.3);
    color: white;
    border-color: var(--primary-orange);
}

.icon-btn svg,
.lang-btn svg {
    transition: transform 0.3s ease;
}

.icon-btn:hover svg {
    transform: rotate(180deg);
}

.moon-icon {
    display: none;
}

body.dark-mode .sun-icon {
    display: none;
}

body.dark-mode .moon-icon {
    display: block;
}

/* Hero Section */
.hero-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #FF8C42 0%, #FFB84D 100%);
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 180px;
    height: 180px;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 25px rgba(232, 119, 34, 0.5));
    transition: all 0.3s ease;
    border-radius: 50%;
    background: white;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(232, 119, 34, 0.4);
}

.hero-logo:hover {
    animation: none;
    transform: rotate(360deg) scale(1.15);
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0); 
    }
    25% { 
        transform: translateY(-15px); 
    }
    50% { 
        transform: translateY(-20px); 
    }
    75% { 
        transform: translateY(-15px); 
    }
}

.hero-title {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 50px;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 200, 100, 0.6);
    animation: fadeInDown 1s ease;
    position: relative;
    display: inline-block;
    text-align: center;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, transparent, white, transparent);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
    50% { opacity: 1; box-shadow: 0 0 20px rgba(255, 255, 255, 1); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.sandwich-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.sandwich-card:nth-child(1) {
    animation-delay: 0.1s;
}

.sandwich-card:nth-child(2) {
    animation-delay: 0.2s;
}

.sandwich-card:nth-child(3) {
    animation-delay: 0.3s;
}

.sandwich-card:nth-child(4) {
    animation-delay: 0.4s;
}

.sandwich-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(232, 119, 34, 0.3);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: fadeInUp 1s ease;
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}

.sandwich-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 119, 34, 0.2), rgba(244, 176, 0, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

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

.sandwich-card:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.sandwich-card:hover::before {
    opacity: 1;
}

.sandwich-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.cta-btn {
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    background: white;
    color: var(--primary-orange);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(232, 119, 34, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(232, 119, 34, 0.4);
}

.bounce {
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-25px) scale(1.05);
    }
    60% {
        transform: translateY(-12px) scale(1.02);
    }
}

.limited-offer-text {
    margin-top: 15px;
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.5s ease;
}

/* What We Offer Section */
.what-we-offer-section {
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.section-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

body.dark-mode .section-description {
    color: #ccc;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(232, 119, 34, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

body.dark-mode .offer-card {
    background: rgba(255, 255, 255, 0.05);
}

.offer-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(232, 119, 34, 0.3);
}

.offer-card:hover::before {
    left: 100%;
}

.offer-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: iconBounce 2s infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-5px) rotate(5deg); }
}

.offer-card:hover .offer-icon {
    animation: iconSpin 0.8s ease;
}

@keyframes iconSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

.offer-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

body.dark-mode .offer-card h3 {
    color: var(--text-light);
}

.offer-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-top: 10px;
}

body.dark-mode .offer-description {
    color: #ccc;
}

/* Offer Section */
.offer-section {
    padding: 80px 20px;
    background: var(--sand);
}

body.dark-mode .offer-section {
    background: rgba(255, 255, 255, 0.02);
}

.ticker-wrapper {
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-yellow));
    padding: 12px 0;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(232, 119, 34, 0.3);
    position: relative;
    animation: tickerPulse 2s ease-in-out infinite;
}

@keyframes tickerPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(232, 119, 34, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 25px rgba(232, 119, 34, 0.6), 0 0 30px rgba(255, 200, 0, 0.4);
        transform: scale(1.02);
    }
}

.ticker-wrapper::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: tickerShine 3s infinite;
}

@keyframes tickerShine {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: tickerScroll 12s linear infinite;
}

.ticker span {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0 50px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: tickerTextGlow 1.5s ease-in-out infinite;
}

@keyframes tickerTextGlow {
    0%, 100% {
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    50% {
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 255, 255, 0.8);
    }
}

@keyframes tickerScroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.offer-left {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.offer-title {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { 
        transform: scale(1); 
        text-shadow: 0 0 10px rgba(232, 119, 34, 0.3);
    }
    50% { 
        transform: scale(1.05); 
        text-shadow: 0 0 20px rgba(232, 119, 34, 0.6);
    }
}

.countdown-section {
    margin: 30px 0;
}

.countdown-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.countdown-item {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-yellow));
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(232, 119, 34, 0.3);
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.countdown-item:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 25px rgba(232, 119, 34, 0.5);
}

.countdown-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.countdown-label-small {
    display: block;
    font-size: 0.9rem;
    margin-top: 5px;
}

.voucher-progress {
    margin: 30px 0;
}

.progress-bar {
    width: 100%;
    height: 35px;
    background: #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.15);
    position: relative;
}

body.dark-mode .progress-bar {
    background: rgba(255, 255, 255, 0.1);
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-yellow), var(--primary-orange));
    background-size: 200% 100%;
    animation: progressShine 2s linear infinite;
    transition: width 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    position: relative;
    box-shadow: 0 0 20px rgba(232, 119, 34, 0.5);
}

@keyframes progressShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressSlide 2s infinite;
}

@keyframes progressSlide {
    0% { left: -100%; }
    100% { left: 200%; }
}

.progress-text {
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
    color: var(--primary-orange);
}

.how-to-section {
    margin-top: 40px;
}

.how-to-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(232, 119, 34, 0.05);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 119, 34, 0.1), transparent);
    transition: left 0.6s ease;
}

.step:hover::before {
    left: 100%;
}

.step:hover {
    transform: translateX(-10px) scale(1.02);
    background: rgba(232, 119, 34, 0.15);
    box-shadow: 0 5px 20px rgba(232, 119, 34, 0.2);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-yellow));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(232, 119, 34, 0.3);
}

.step:hover .step-number {
    transform: rotate(360deg) scale(1.2);
    box-shadow: 0 6px 15px rgba(232, 119, 34, 0.5);
}

/* Form Section */
.offer-right {
    position: sticky;
    top: 100px;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    animation: slideInRight 0.8s ease;
}

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

.form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(232, 119, 34, 0.03), transparent);
    animation: formShine 10s linear infinite;
}

@keyframes formShine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body.dark-mode .form-container {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.form-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-logo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(232, 119, 34, 0.3);
    overflow: hidden;
    transition: all 0.4s ease;
}

body.dark-mode .form-logo-circle {
    background: rgba(255, 255, 255, 0.1);
}

.form-logo-circle:hover {
    transform: rotate(360deg) scale(1.2);
    box-shadow: 0 8px 20px rgba(232, 119, 34, 0.5);
}

.form-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(232, 119, 34, 0.2));
}

.form-logo-text h3 {
    font-size: 1.1rem;
    color: var(--primary-orange);
    margin: 0;
    font-weight: 700;
}

body.dark-mode .form-logo-text h3 {
    color: var(--secondary-yellow);
}

.remaining-count {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-yellow));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    animation: countPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(232, 119, 34, 0.4);
}

@keyframes countPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(232, 119, 34, 0.4);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(232, 119, 34, 0.6);
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

body.dark-mode .form-group label {
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: 'Cairo', sans-serif;
    position: relative;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(232, 119, 34, 0.15);
    transform: translateY(-2px);
}

.form-group {
    position: relative;
}

.form-group label {
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Phone Input Group Styles */
.phone-input-group {
    display: flex;
    gap: 10px;
    flex-direction: row-reverse; /* RTL layout */
    align-items: stretch;
    width: 100%;
}

/* Country Code Select Dropdown */
.country-code-select {
    width: 130px;
    min-width: 130px;
    max-width: 130px;
    padding: 14px 12px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-align: center;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 10px center;
    padding-left: 30px;
}

/* Dark Mode - Country Code */
body.dark-mode .country-code-select {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 10px center;
}

/* Dark Mode - Country Code Options */
body.dark-mode .country-code-select option {
    background-color: #2d2d2d;
    color: var(--text-light);
}

body.dark-mode .country-code-select option:hover,
body.dark-mode .country-code-select option:checked {
    background-color: var(--primary-orange);
    color: white;
}

/* Country Code Focus State */
.country-code-select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(232, 119, 34, 0.15);
    transform: translateY(-2px);
}

.country-code-select:hover {
    border-color: var(--primary-orange);
    transform: translateY(-1px);
}

/* Phone Number Input Field */
.phone-input-group input[type="tel"] {
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    background: white;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

/* Dark Mode - Phone Input */
body.dark-mode .phone-input-group input[type="tel"] {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Phone Input Focus State */
.phone-input-group input[type="tel"]:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(232, 119, 34, 0.15);
    transform: translateY(-2px);
}

.phone-input-group input[type="tel"]::placeholder {
    color: #999;
    font-size: 0.95rem;
}

body.dark-mode .phone-input-group input[type="tel"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.poll-section {
    background: rgba(232, 119, 34, 0.05);
    padding: 20px;
    border-radius: 15px;
    margin: 25px 0;
}

.poll-section h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-orange);
}

.poll-question {
    margin-bottom: 15px;
    font-weight: 600;
}

.poll-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.poll-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.poll-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 119, 34, 0.1), transparent);
    transition: left 0.6s ease;
}

body.dark-mode .poll-option {
    background: rgba(255, 255, 255, 0.05);
}

.poll-option:hover {
    background: rgba(232, 119, 34, 0.15);
    transform: translateX(8px) scale(1.02);
    border-color: var(--primary-orange);
    box-shadow: 0 5px 15px rgba(232, 119, 34, 0.2);
}

.poll-option:hover::before {
    left: 100%;
}

.poll-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-orange);
}

.poll-option input[type="radio"]:checked {
    transform: scale(1.2);
}

.poll-option:has(input[type="radio"]:checked) {
    background: rgba(232, 119, 34, 0.2);
    border-color: var(--primary-orange);
    transform: translateX(10px);
}

.poll-motivation {
    text-align: center;
    font-size: 0.95rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-top: 15px;
    font-style: italic;
}

body.dark-mode .poll-motivation {
    color: var(--secondary-yellow);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 10px;
}

.checkbox-label:hover {
    background: rgba(232, 119, 34, 0.05);
    transform: translateX(5px);
}

.checkbox-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked {
    transform: scale(1.2) rotate(360deg);
}

.checkbox-label span {
    transition: color 0.3s ease;
}

.checkbox-label:has(input[type="checkbox"]:checked) span {
    color: var(--primary-orange);
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-yellow));
    background-size: 200% 100%;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 25px rgba(232, 119, 34, 0.4);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.submit-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(232, 119, 34, 0.6);
    background-position: 100% 0;
}

.submit-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    color: white;
    padding: 60px 20px 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-yellow), var(--primary-orange));
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-center {
    text-align: center;
}

.footer-left h3,
.footer-center h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-orange);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.contact-info a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.contact-info a:hover::after {
    width: 100%;
}

.footer-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-weight: 500;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-orange);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}

.social-btn:hover::before {
    width: 300px;
    height: 300px;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(232, 119, 34, 0.4);
}

.social-btn svg {
    transition: transform 0.3s ease;
}

.social-btn:hover svg {
    transform: rotate(360deg) scale(1.2);
}

/* Snapchat Button - Keep same background as others, but with yellow icon */
.social-btn.snapchat-btn svg {
    fill: #eeeee3;
}

.footer-right {
    text-align: center;
}

.footer-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    transition: all 0.5s ease;
    filter: drop-shadow(0 5px 20px rgba(232, 119, 34, 0.5));
    border-radius: 50%;
    background: white;
    padding: 10px;
    box-shadow: 0 5px 20px rgba(232, 119, 34, 0.4);
}

body.dark-mode .footer-logo {
    background: rgba(255, 255, 255, 0.1);
}

.footer-logo:hover {
    transform: rotate(360deg) scale(1.2);
    filter: drop-shadow(0 10px 30px rgba(232, 119, 34, 0.8));
    box-shadow: 0 10px 30px rgba(232, 119, 34, 0.6);
}

.footer-right h2 {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-logo {
        gap: 8px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .hero-section {
        padding: 60px 15px;
        min-height: auto;
    }
    
    .hero-logo {
        width: 130px;
        height: 130px;
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .sandwich-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 25px 0;
    }
    
    .cta-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .limited-offer-text {
        font-size: 0.85rem;
    }
    
    /* What We Offer Section */
    .what-we-offer-section {
        padding: 60px 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offer-card {
        padding: 30px 20px;
    }
    
    .offer-icon {
        font-size: 3rem;
    }
    
    /* Offer Section */
    .offer-section {
        padding: 60px 15px;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .offer-left {
        padding: 30px 20px;
    }
    
    .offer-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .countdown-label {
        font-size: 1rem;
    }
    
    .countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .countdown-item {
        padding: 15px 10px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .countdown-label-small {
        font-size: 0.8rem;
    }
    
    .how-to-section h3 {
        font-size: 1.2rem;
    }
    
    .step {
        padding: 15px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* Form Section */
    .offer-right {
        position: static;
    }
    
    .form-container {
        padding: 25px 20px;
    }
    
    .form-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .form-logo-section {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .form-logo-circle {
        width: 50px;
        height: 50px;
    }
    
    .form-logo-text h3 {
        font-size: 1rem;
    }
    
    .remaining-count {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .phone-input-group {
        flex-direction: row-reverse;
        gap: 8px;
    }
    
    .country-code-select {
        width: 115px;
        min-width: 115px;
        max-width: 115px;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 10px;
        padding-left: 28px;
        background-position: left 8px center;
    }
    
    .phone-input-group input[type="tel"] {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 14px;
    }
    
    .poll-section {
        padding: 15px;
        margin: 20px 0;
    }
    
    .poll-section h4 {
        font-size: 1rem;
    }
    
    .poll-options {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .poll-option {
        padding: 10px 12px;
    }
    
    .submit-btn {
        padding: 14px;
        font-size: 1.1rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 15px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-left h3,
    .footer-center h3 {
        font-size: 1.3rem;
    }
    
    .footer-subtitle {
        font-size: 0.9rem;
    }
    
    .social-links {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .social-btn {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
    
    .footer-logo {
        width: 70px;
        height: 70px;
    }
    
    .footer-right h2 {
        font-size: 1.5rem;
    }
    
    /* Ticker */
    .ticker span {
        font-size: 1rem;
        padding: 0 30px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .sandwich-gallery {
        gap: 10px;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .offer-title {
        font-size: 1.3rem;
    }
    
    .countdown {
        gap: 8px;
    }
    
    .countdown-value {
        font-size: 1.8rem;
    }
    
    .form-container {
        padding: 20px 15px;
    }
    
    .country-code-select {
        width: 100px;
        min-width: 100px;
        max-width: 100px;
        font-size: 14px;
        padding: 10px 8px;
        padding-left: 26px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover,
    .icon-btn:hover,
    .lang-btn:hover,
    .cta-btn:hover,
    .offer-card:hover,
    .sandwich-card:hover,
    .step:hover,
    .poll-option:hover,
    .social-btn:hover {
        transform: none;
    }
    
    .nav-link:active,
    .icon-btn:active,
    .lang-btn:active,
    .cta-btn:active {
        transform: scale(0.95);
    }
}

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

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}