/* Global Styles */
:root {
    --primary-color: #0056d6;
    --secondary-color: #ff3a00;
    --accent-color: #00d676;
    --dark-color: #121c24;
    --light-color: #f8f9fa;
    --gray-color: #5c6670;
    --white-color: #ffffff;
    --danger-color: #e50914;
    --warning-color: #ffb700;
    --success-color: #0cce6b;
    --gradient-primary: linear-gradient(135deg, #0056d6, #00a2ff);
    --gradient-secondary: linear-gradient(135deg, #ff3a00, #ff7e00);
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --glow: 0 0 15px rgba(0, 86, 214, 0.5);
    --glow-secondary: 0 0 15px rgba(255, 58, 0, 0.5);
    --border-radius: 10px;
    --border-radius-lg: 20px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    line-height: 1.7;
    background-color: var(--light-color);
    color: var(--dark-color);
    direction: rtl;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

p {
    margin-bottom: 1.5rem;
    color: var(--gray-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    color: var(--dark-color);
    padding: 0 1rem 1rem;
    font-weight: 800;
    width: 100%;
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: -1rem auto 2rem;
    font-size: 1.1rem;
    color: var(--gray-color);
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: var(--white-color);
}

.cta-btn {
    display: block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(to right, var(--secondary-color), #ff7e00);
    color: var(--white-color);
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 15px 25px rgba(255, 58, 0, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.1);
    font-size: 1.25rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 1px;
    margin: 2rem auto;
    max-width: 350px;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.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: 0.5s;
    z-index: -1;
}

.cta-btn:hover {
    background: linear-gradient(to right, #ff7e00, var(--secondary-color));
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 58, 0, 0.5);
    color: var(--white-color);
}

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

.pulse {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0% { box-shadow: 0 0 0 0 rgba(255, 58, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 58, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 58, 0, 0); }
}

/* Emergency Banner */
.emergency-banner {
    background-color: var(--danger-color);
    color: var(--white-color);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    animation: pulse-banner 2s infinite;
}

@keyframes pulse-banner {
    0% {
        background-color: var(--danger-color);
    }
    50% {
        background-color: #ff1f30;
    }
    100% {
        background-color: var(--danger-color);
    }
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
}

.banner-content i {
    font-size: 1.3rem;
    animation: shake 1.5s infinite;
}

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

.banner-text {
    letter-spacing: 0.5px;
}

/* Header/Hero Section */
.hero {
    background: #000000;
    min-height: 100vh;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

/* Video Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

@keyframes rotate-slow {
    100% { transform: rotate(360deg); }
}

.hero-content {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    z-index: 10;
}

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

.main-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.slogan {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.7), 0 0 5px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7), 0 0 5px rgba(0, 0, 0, 0.5);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--secondary-color);
    font-weight: 700;
    background: rgba(255, 58, 0, 0.15);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
    text-shadow: 0 0 10px rgba(255, 58, 0, 0.3);
}

/* Service Stats */
.service-stats {
    display: flex;
    justify-content: center;
    margin: 2.5rem auto;
    width: 100%;
    max-width: 900px;
    gap: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    width: calc(33.33% - 10px);
    min-height: 130px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.8), transparent);
    transform: translateX(-100%);
    animation: stat-border-flow 6s ease-in-out infinite;
}

.stat-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

.stat-prefix {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
    text-align: center;
    line-height: 1.2;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: transparent;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to bottom, #FFFFFF, #D4AF37);
    background-clip: text;
    -webkit-background-clip: text;
    position: relative;
    white-space: nowrap;
    line-height: 1.1;
    padding: 0;
    text-align: center;
}

.countdown {
    font-size: 2.3rem;
    font-weight: 900;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.9rem;
    position: relative;
    z-index: 1;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 0.7rem 0.8rem;
    min-width: 70px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.4);
}

.countdown-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), transparent 80%);
    opacity: 0.5;
}

.countdown-item span:not(.countdown-label) {
    color: transparent;
    background: linear-gradient(to bottom, #FFFFFF 30%, #FFD700);
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 1;
    position: relative;
}

.countdown-label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.3rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 1;
    position: relative;
}

.stat-label {
    font-size: 1.4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    padding: 0 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@keyframes stat-border-flow {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Flash Offer Styles */
.flash-offer {
    margin: 2.5rem auto 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: offer-attention 5s infinite ease-in-out;
    max-width: 750px;
}

.flash-offer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), transparent 70%);
    z-index: 0;
    animation: rotate-gradient 8s infinite linear;
}

.flash-offer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: conic-gradient(transparent, rgba(212, 175, 55, 0.5), transparent 30%);
    opacity: 0.2;
    animation: spin-glow 15s infinite linear;
    z-index: -1;
}

@keyframes offer-attention {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(212, 175, 55, 0.3);
    }
    25% {
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(212, 175, 55, 0.5);
    }
    50% {
        transform: translateY(-5px);
        box-shadow: 0 25px 40px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.2);
    }
    75% {
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(212, 175, 55, 0.5);
    }
}

@keyframes rotate-gradient {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

@keyframes spin-glow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.flash-offer h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: transparent;
    background: linear-gradient(to bottom, #FFFFFF, #D4AF37 90%);
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    font-weight: 800;
    letter-spacing: 0.8px;
    animation: text-shimmer 3s infinite;
}

@keyframes text-shimmer {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    50% {
        opacity: 0.95;
        text-shadow: 0 2px 12px rgba(212, 175, 55, 0.5), 0 0 20px rgba(212, 175, 55, 0.2);
    }
}

.flash-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3), 0 0 0 2px rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    animation: flash-pulse 2s infinite;
    transform-style: preserve-3d;
    transform: perspective(500px);
}



@keyframes flash-pulse {
    0%, 100% {
        transform: scale(1) perspective(500px) rotateX(0deg);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }
    25% {
        transform: scale(1.03) perspective(500px) rotateX(2deg);
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
    }
    50% {
        transform: scale(1.06) perspective(500px) rotateX(-1deg);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6), 0 0 30px rgba(255, 215, 0, 0.3);
    }
    75% {
        transform: scale(1.03) perspective(500px) rotateX(1deg);
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
    }
}

/* Responsive styles for service stats and countdown */
@media (max-width: 768px) {
    .service-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .stat-item {
        width: 45%;
        min-height: 100px;
        padding: 1.2rem 0.8rem;
    }
    
    .stat-prefix {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 8px;
        padding: 0;
    }
    
    .stat-label {
        font-size: 1.2rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 0.7rem;
        justify-content: center;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.5rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .service-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .stat-item {
        width: 100%;
        min-height: 100px;
        flex-direction: column;
        justify-content: center;
        padding: 1.2rem 1rem;
    }
    
    .stat-prefix {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 6px;
        padding: 0;
    }
    
    .stat-label {
        font-size: 1.3rem;
    }
    
    .countdown {
        font-size: 1.8rem;
    }
    
    .countdown-item {
        min-width: 55px;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .flash-badge {
        font-size: 1rem;
        padding: 0.4rem 1rem;
    }
    
    .flash-offer h3 {
        font-size: 1.3rem;
    }
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
}

.testimonials::before {
    content: '"';
    position: absolute;
    font-size: 400px;
    opacity: 0.03;
    top: -100px;
    right: 10%;
    font-family: serif;
    color: var(--primary-color);
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-item {
    flex: 0 0 30%;
    min-width: 320px;
    margin-bottom: 2rem;
    perspective: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-content {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 60px;
    line-height: 1;
    font-family: serif;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.15;
    font-weight: 900;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.testimonial-content:hover {
    transform: translateY(-10px) rotateY(-3deg);
    box-shadow: var(--shadow-lg);
}

.testimonial-content:hover::after {
    transform: scaleX(1);
}

.testimonial-content p {
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--dark-color);
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.testimonial-author {
    margin-top: auto;
    text-align: center;
    position: relative;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 0.5rem;
}

.stars i {
    color: #FFD700;
    font-size: 1rem;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.author-info p {
    margin: 5px 0 0;
    font-size: 0.95rem;
    color: var(--text-light-color);
    font-weight: 500;
}

/* Premium 4K ULTRA HD Text - Original Design */
.quality-badge {
    display: inline-flex;
    align-items: center;
    position: relative;
    font-size: 1.3em;
    margin: 0 0.4rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 900;
    letter-spacing: 1.2px;
    padding: 0;
    color: transparent;
    vertical-align: middle;
    text-transform: uppercase;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(
        115deg,
        #B8860B 0%, 
        #D4AF37 40%, 
        #FFD700 80%,
        #D4AF37 100%
    );
    background-size: 200% 100%;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    animation: premium-text-flow 8s ease infinite;
}

/* Glow effects for premium text */
.quality-badge::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, rgba(255, 8, 68, 0.6), transparent 70%);
    z-index: -1;
    opacity: 0;
    border-radius: 50%;
    filter: blur(12px);
    animation: text-glow 3s infinite alternate;
}

.quality-badge::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255, 255, 255, 0.4);
    z-index: -1;
    filter: blur(4px);
    opacity: 0;
    animation: text-blur 5s infinite alternate;
}

/* Premium animations */
@keyframes premium-text-flow {
    0% {
        background-position: 0% 50%;
        text-shadow: 0 0 10px rgba(184, 134, 11, 0.2);
    }
    25% {
        text-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
    }
    50% {
        background-position: 100% 50%;
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
    }
    75% {
        text-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
    }
    100% {
        background-position: 0% 50%;
        text-shadow: 0 0 10px rgba(184, 134, 11, 0.2);
    }
}

@keyframes text-glow {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

@keyframes text-blur {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
}

/* Responsive styles for premium text */
@media (max-width: 768px) {
    .quality-badge {
        font-size: 1.2em;
        margin: 0 0.3rem;
    }
}

@media (max-width: 480px) {
    .quality-badge {
        font-size: 1em;
        letter-spacing: 0.5px;
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .quality-badge {
        animation: none;
        background-image: linear-gradient(
            to right,
            #B8860B 0%,
            #FFD700 100%
        );
    }
    
    .quality-badge::before {
        display: none;
    }
    
    .quality-badge::after {
        display: none;
    }
}

/* FAQ Section */
.faq {
    background: linear-gradient(to bottom, var(--light-color), white);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '?';
    position: absolute;
    font-size: 300px;
    opacity: 0.03;
    top: 0;
    left: 10%;
    color: var(--secondary-color);
    font-weight: 900;
}

.faq-list {
    margin-top: 3.5rem;
    position: relative;
    z-index: 1;
}

.faq-item {
    margin-bottom: 1.5rem;
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
    border-right: 5px solid var(--primary-color);
}

.faq-question {
    padding: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--white-color);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    transition: color 0.3s;
}

.faq-item:hover .faq-question h3 {
    color: var(--primary-color);
}

.toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 86, 214, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.toggle-icon i {
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.toggle-icon.active {
    background-color: var(--primary-color);
    color: white;
}

.toggle-icon.active i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.8rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s, padding 0.4s;
    line-height: 1.7;
    color: var(--text-color);
}

.faq-answer p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.faq-item.active .faq-answer {
    padding: 0 1.8rem 1.8rem;
    max-height: 500px;
}

/* Footer */
.footer {
    background: linear-gradient(to top, #0a1e3c, var(--dark-color));
    color: var(--white-color);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/pattern.png');
    opacity: 0.02;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo h2 {
    color: var(--white-color);
    margin-bottom: 1.2rem;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--white-color), rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--white-color);
    margin-bottom: 1.8rem;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.05rem;
    display: inline-block;
    padding: 5px 0;
}

.footer-links ul li a:hover {
    color: var(--white-color);
    transform: translateX(-5px);
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.footer-contact i {
    margin-left: 12px;
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    background: rgba(255, 58, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--white-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

/* WhatsApp Float Button */
.whatsapp-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 100;
}

.whatsapp-text {
    background-color: #1a1a1a;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-float {
    background-color: #25d366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover::before {
    transform: scale(1.2);
    opacity: 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white-color);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    max-width: 550px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    border-top: 5px solid var(--primary-color);
}

.modal.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.close-modal {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    width: 35px;
    height: 35px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: var(--danger-color);
    color: white;
    transform: rotate(90deg);
}

.modal h2 {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.modal h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

#order-details {
    margin-top: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

#order-details p {
    margin-bottom: 0.5rem;
}
/* Features Section */
.features {
    background: linear-gradient(to bottom, var(--light-color) 50%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/pattern.png');
    opacity: 0.05;
    z-index: -1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    position: relative;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        gap: 1.5rem;
    }
}

/* Improve touch experience on mobile */
@media (hover: none) {
    .feature-card .feature-badge {
        opacity: 1;
        transform: translateY(0);
    }
    
    .feature-card i::after {
        background-color: rgba(0, 86, 214, 0.05);
    }
    
    .feature-card:nth-child(3) i::after,
    .feature-card:nth-child(4) i::after {
        background-color: rgba(255, 58, 0, 0.05);
    }
    
    .feature-card:nth-child(7) i::after {
        background-color: rgba(0, 162, 255, 0.05);
    }
    
    .feature-card:nth-child(8) i::after {
        background-color: rgba(125, 0, 179, 0.05);
    }
    
    .feature-card:nth-child(9) i::after {
        background-color: rgba(0, 200, 151, 0.05);
    }
    
    .package-card:hover {
        transform: translateY(-5px);
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
    }
    
    .feature-card::before {
        transform: scaleX(0.2);
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
.feature-card:nth-child(7) { animation-delay: 0.7s; }
.feature-card:nth-child(8) { animation-delay: 0.8s; }
.feature-card:nth-child(9) { animation-delay: 0.9s; }

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    z-index: 1;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
    z-index: -1;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent 50%, rgba(0, 86, 214, 0.05) 50%);
    border-radius: 0 var(--border-radius-lg) 0 var(--border-radius-lg);
    z-index: -1;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 86, 214, 0.1);
}

.feature-card:hover::after {
    background: linear-gradient(135deg, transparent 50%, rgba(0, 86, 214, 0.1) 50%);
}

.feature-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.feature-card i {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.2rem;
    display: inline-block;
    position: relative;
    transition: transform 0.5s ease;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Ensure better browser compatibility */

/* Fix flexbox in IE11 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .features-grid {
        display: -ms-grid;
        -ms-grid-columns: 1fr 1fr 1fr;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .package-cards {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: center;
        justify-content: center;
    }
    
    .package-card {
        -ms-flex: 0 0 320px;
        flex: 0 0 320px;
        margin: 1rem;
    }
}

/* Safari-specific fixes */
@media not all and (min-resolution:.001dpcm) { 
    @supports (-webkit-appearance:none) {
        .feature-card i, 
        .section-title .highlight,
        .gradient-text {
            -webkit-text-fill-color: transparent;
        }
        
        .package-card:hover {
            -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
        }
    }
}

@supports not ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
    .modal-content, .header-nav.scrolled {
        background-color: rgba(255, 255, 255, 0.95);
    }
}

@supports not (clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%)) {
    .package-header {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}

/* Special styling for different feature icons */
.feature-card:nth-child(3) i,
.feature-card:nth-child(4) i {
    /* Sports and Events */
    background: linear-gradient(45deg, #ff3a00, #ff7e00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card:nth-child(7) i {
    /* Global channels */
    background: linear-gradient(45deg, #00a2ff, #0056d6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card:nth-child(8) i {
    /* Speed and quality */
    background: linear-gradient(45deg, #7d00b3, #ff00c8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card:nth-child(9) i {
    /* Exclusive content */
    background: linear-gradient(45deg, #CF121F, #FF5500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.feature-card i::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(0, 86, 214, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.3s ease;
}

/* Special styling for icon backgrounds */
.feature-card:nth-child(3) i::after,
.feature-card:nth-child(4) i::after {
    background: rgba(255, 58, 0, 0.1);
}

.feature-card:nth-child(7) i::after {
    background: rgba(0, 162, 255, 0.1);
}

.feature-card:nth-child(8) i::after {
    background: rgba(125, 0, 179, 0.1);
}

.feature-card:nth-child(9) i::after {
    background: rgba(207, 18, 31, 0.1);
    box-shadow: 0 0 30px rgba(207, 18, 31, 0.15);
}

.feature-card:hover i {
    transform: rotateY(360deg);
}

.feature-card:hover i::after {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.5;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 800;
    position: relative;
    display: inline-block;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.feature-card:hover h3::after {
    width: 100%;
}

.feature-card p {
    color: var(--gray-color);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Feature category badge */
.feature-card .feature-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.7rem;
    text-transform: uppercase;
    background: rgba(0, 86, 214, 0.1);
    color: var(--primary-color);
    padding: 3px 8px;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Sports badge */
.feature-card:nth-child(3) .feature-badge {
    background: rgba(255, 58, 0, 0.1);
    color: var(--secondary-color);
}

/* Events badge */
.feature-card:nth-child(4) .feature-badge {
    background: rgba(255, 126, 0, 0.1);
    color: #ff7e00;
}

/* Global badge */
.feature-card:nth-child(7) .feature-badge {
    background: rgba(0, 162, 255, 0.1);
    color: #00a2ff;
}

/* Premium badge */
.feature-card:nth-child(8) .feature-badge {
    background: rgba(125, 0, 179, 0.1);
    color: #7d00b3;
}

/* Exclusive content badge */
.feature-card:nth-child(9) .feature-badge {
    background: linear-gradient(90deg, rgba(207, 18, 31, 0.15), rgba(255, 85, 0, 0.15));
    color: #CF121F;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Packages Section */
.packages {
    background: linear-gradient(to bottom, #f0f4ff 0%, var(--white-color) 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 100px 0;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/pattern.png');
    opacity: 0.05;
    z-index: -1;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    perspective: 1000px;
}

.package-card {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
    transform: translateZ(0);
}

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

.package-card:nth-child(1) { animation-delay: 0.2s; }
.package-card:nth-child(2) { animation-delay: 0.4s; }
.package-card:nth-child(3) { animation-delay: 0.6s; }

.popular {
    transform: translateY(-20px) scale(1.05);
    border: none;
    box-shadow: 0 20px 50px rgba(0, 86, 214, 0.25);
    z-index: 2;
    background: linear-gradient(to bottom, #ffffff, #f8faff);
}

.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 0 3px var(--primary-color);
    border-radius: var(--border-radius-lg);
    opacity: 0.1;
    z-index: -1;
}

.popular-badge {
    position: absolute;
    top: 20px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 0 50px 50px 0;
    box-shadow: 0 5px 15px rgba(0, 86, 214, 0.3);
    z-index: 10;
}

.package-header {
    padding: 2.5rem 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 86, 214, 0.08), rgba(0, 162, 255, 0.05));
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

.package-header::after {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.package-card:hover .package-header::after {
    opacity: 0.5;
}

.package-header h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 800;
}

.popular .package-header {
    background: linear-gradient(135deg, rgba(0, 86, 214, 0.15), rgba(0, 162, 255, 0.1));
    padding-top: 3.5rem;
    position: relative;
    overflow: hidden;
}

.popular .package-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%230056d6" opacity="0.05" d="M0 0 L50 50 L100 0 L100 100 L0 100 Z"/></svg>');
    background-size: 20px 20px;
    opacity: 0.5;
}

.package-price {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 1.3rem;
    color: var(--gray-color);
    font-weight: 600;
    margin-right: 5px;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-right: 5px;
}

.popular .price-value {
    color: var(--secondary-color);
}

.price-period {
    width: 100%;
    color: var(--gray-color);
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.package-features {
    padding: 2rem;
    flex-grow: 1;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.package-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.package-card:hover .package-features::before {
    transform-origin: left;
    transform: scaleX(1);
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: var(--dark-color);
    position: relative;
    padding-right: 1.5rem;
}

.package-features li:last-child {
    margin-bottom: 0;
}

.package-features li i {
    position: absolute;
    right: 0;
    top: 5px;
    color: #ffffff;
    font-size: 0.9rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 86, 214, 0.2);
    transition: transform 0.3s ease;
}

.package-features li:hover i {
    transform: scale(1.2) rotate(10deg);
}

.popular .package-features li i {
    background: linear-gradient(45deg, var(--secondary-color), #ff7600);
    box-shadow: 0 3px 8px rgba(255, 58, 0, 0.2);
}

.package-footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background-color: rgba(247, 250, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.package-footer::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 86, 214, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: 0;
}

.order-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 86, 214, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.order-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: 0.5s ease;
    z-index: -1;
}

.package-card:hover .order-btn::before {
    animation: shine-effect 1.5s infinite;
}

@keyframes shine-effect {
    0% { left: -100%; }
    100% { left: 100%; }
}

.order-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 86, 214, 0.3);
    background: linear-gradient(45deg, var(--primary-color), #0085ff);
}

.popular .order-btn {
    background: var(--gradient-secondary);
    box-shadow: 0 5px 15px rgba(255, 58, 0, 0.2);
}

.popular .order-btn:hover {
    box-shadow: 0 10px 25px rgba(255, 58, 0, 0.3);
}

/* Order Form Section */
.order-form {
    background: linear-gradient(to bottom, var(--white-color) 0%, var(--light-color) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    z-index: 1;
}

.order-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/pattern.png');
    opacity: 0.05;
    z-index: -1;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 1;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 86, 214, 0.1) 0%, rgba(0, 86, 214, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.form-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 58, 0, 0.1) 0%, rgba(255, 58, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.form-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.form-description::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

#checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.05rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    font-size: 1rem;
    color: var(--dark-color);
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 86, 214, 0.15);
    outline: none;
}

.form-group input::placeholder {
    color: var(--gray-color);
    opacity: 0.7;
}

.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%230056d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: left 1rem center;
    background-size: 1rem;
}

.submit-btn {
    display: inline-block;
    padding: 1rem 1.5rem;
    background: #25d366; /* WhatsApp green color */
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    text-align: center;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    background: #128C7E; /* WhatsApp darker green on hover */
}

.submit-btn:hover::before {
    left: 100%;
    animation: shineEffect 1.5s infinite;
}

@keyframes shineEffect {
    0% { left: -100%; }
    100% { left: 100%; }
}

.submit-btn i {
    margin-left: 8px;
    font-size: 1.2rem;
    vertical-align: middle;
}

/* Form validation styles */
.form-group.error input,
.form-group.error select {
    border-color: var(--danger-color);
}

.form-group.success input,
.form-group.success select {
    border-color: var(--success-color);
}

.error-message {
    color: var(--danger-color);
    font-size: 0.9rem;
    margin-top: 0.3rem;
    display: none;
}

.form-group.error .error-message {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .main-title {
        font-size: 4rem;
    }
    
    .slogan {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
    }
    
    .service-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .stat-item {
        width: calc(50% - 10px);
        min-height: 130px;
    }
    
    .flash-offer {
        padding: 1.8rem;
    }
    
    .popular {
        transform: none;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
        padding: 0 1rem 0.8rem;
    }
    
    .hero {
        padding: 3.5rem 0;
    }
    
    .main-title {
        font-size: 3.2rem;
    }
    
    .slogan {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
        line-height: 1.7;
    }
    
    .quality-badge {
        font-size: 2.2rem;
    }
    
    .service-stats {
        margin: 2rem auto;
    }
    
    .stat-item {
        padding: 1.3rem 0.8rem;
    }
    
    .flash-offer {
        padding: 1.5rem;
        margin: 2rem auto;
    }
    
    .flash-offer h3 {
        font-size: 1.4rem;
    }
    
    .feature-card {
        min-height: 240px;
        padding: 2rem 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        min-height: 3rem;
    }
    
    .feature-card i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card i::after {
        width: 50px;
        height: 50px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 3rem 0;
        min-height: 85vh;
    }
    
    .main-title {
        font-size: 2.6rem;
    }
    
    .slogan {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0 0.5rem;
        margin-bottom: 2rem;
    }
    
    .quality-badge {
        font-size: 1.8rem;
    }
    
    .service-stats {
        gap: 10px;
        margin: 1.5rem auto;
    }
    
    .stat-item {
        width: 100%;
        min-height: 120px;
        margin-bottom: 10px;
    }
    
    .stat-prefix {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.7rem;
    }
    
    .flash-offer {
        padding: 1.2rem;
        margin: 1.5rem auto;
    }
    
    .flash-badge {
        font-size: 0.9rem;
        padding: 0.4rem 1.2rem;
    }
    
    .flash-offer h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .countdown {
        font-size: 1.2rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        right: 20px;
        bottom: 20px;
    }
}
