* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Tajawal', sans-serif;
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
            color: #333;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Loading Animation */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s, visibility 0.5s;
        }
        
        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .loader-ball {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
            border-radius: 50%;
            margin: 0 10px;
            animation: bounce 1s infinite alternate;
        }
        
        .loader-ball:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .loader-ball:nth-child(3) {
            animation-delay: 0.4s;
        }
        
        @keyframes bounce {
            to {
                transform: translateY(-30px);
                box-shadow: 0 15px 20px rgba(0,0,0,0.2);
            }
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 99;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        }
        
  /* ================================
   MODERN HEADER (2025)
================================ */
.modern-header {
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
    max-width: 1250px;
    margin: auto;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}
.logo strong {
    color: #ff6b35;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 25px;
}

.desktop-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.desktop-nav a:hover {
    color: #ff6b35;
}

/* ================================
   PHONE DROPDOWN (DESKTOP)
================================ */
.phone-dropdown {
    position: relative;
}

.phone-btn {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    padding: 10px 25px;
    border-radius: 40px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,107,53,0.4);
}

/* Hidden dropdown menu */
.phone-menu {
    position: absolute;
    top: 50px;
    right: 0;
    width: 180px;
    background: rgba(0,0,0,0.9);
    border-radius: 10px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);

    display: none;
    flex-direction: column;
    gap: 12px;
}

.phone-menu a {
    color: white;
    text-decoration: none;
    padding: 10px 10px;
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    transition: 0.3s;
    text-align: right;
}

.phone-menu a:hover {
    background: rgba(255,107,53,0.3);
}

/* Show dropdown */
.phone-dropdown.active .phone-menu {
    display: flex;
}

/* ================================
   MOBILE MENU BUTTON
================================ */
.menu-btn {
    background: none;
    border: none;
    font-size: 1.9rem;
    color: white;
    cursor: pointer;
    display: none;
}

/* ================================
   MOBILE DRAWER MENU
================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: #111;
    padding: 80px 25px;
    transition: 0.4s;
    z-index: 999999;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-menu nav a {
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    font-weight: 500;
}

.mobile-menu nav a:hover {
    color: #ff6b35;
}

/* Mobile Contact Area */
.mobile-contact {
    margin-top: 45px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-contact a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
}

.mobile-contact i {
    margin-left: 8px;
}

/* Drawer Active */
.mobile-menu.active {
    right: 0;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .desktop-nav,
    .desktop-contact {
        display: none;
    }
    .menu-btn {
        display: block;
    }
}


/* Improved Contact Section Styles */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.contact-section .section-title {
    color: #333;
    margin-bottom: 50px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-info h3 {
    font-size: 1.8em;
    color: #ff6b35;
    margin-bottom: 30px;
    text-align: right;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 20px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 107, 53, 0.05);
}

.contact-icon {
    background: #ff6b35;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
    text-align: right;
}

.contact-details h4 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 8px;
}

.contact-details a, 
.contact-details p {
    display: block;
    color: #555;
    margin-bottom: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: #ff6b35;
}

.business-hours {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
}

.business-hours h4 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 15px;
}

.business-hours p {
    color: #555;
    margin-bottom: 10px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form h3 {
    font-size: 1.8em;
    color: #ff6b35;
    margin-bottom: 30px;
    text-align: right;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    text-align: right;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1em;
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
    text-align: right;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* Responsive Styles - Updated */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-method {
        flex-direction: row-reverse; /* Changed from column to row-reverse */
        align-items: center; /* Changed from flex-end to center */
        justify-content: flex-end; /* Added to push content to the right */
        gap: 15px; /* Increased gap slightly */
        padding: 15px 0; /* Adjusted padding */
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1em;
        margin-left: 10px; /* Added space between icon and text */
    }
    
    .contact-details {
        text-align: right;
    }
    
    .business-hours {
        text-align: right;
    }
}
.nav-link:hover::after {
    width: 70%;
}

.header-actions {
    display: flex;
    align-items: center;
}

.contact-links {
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-link {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link i {
    margin-left: 8px;
    color: #ff6b35;
}

.contact-link:hover {
    color: #ff6b35;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
}

/* Header Scroll Effect */
header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    /* Remove padding change to prevent height shift */
    /* Keep original padding: */
    padding: 15px 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    @media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 70px; /* Matches header height */
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        transition: all 0.5s ease;
        z-index: 999;
        margin: 0;
        padding: 0;
        border-top: 1px solid rgba(255,255,255,0.1); /* Smooth transition */
    }
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .main-nav li {
        margin: 15px 0;
    }
    
    .nav-link {
        display: block;
        padding: 10px;
        font-size: 1.2rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .contact-link span {
        display: none;
    }
}
        
 /* -------------------------------
   FULLSCREEN MODERN HERO SECTION
---------------------------------*/
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: url('/images/230123_TEQBALL_COM_1240x500_0001_SPORT_2.webp')
                center center / cover no-repeat;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0, 0, 0, 0.55), 
        rgba(0, 0, 0, 0.75)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    animation: fadeIn 1.3s ease-out forwards;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    margin-bottom: 45px;
}

/* Fade animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* -------------------------------
   NEW MODERN ANIMATED BUTTON
---------------------------------*/

.hero-btn {
    position: relative;
    display: inline-block;
    padding: 18px 55px;
    border-radius: 80px;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;

    /* Modern gradient */
    background: linear-gradient(135deg, #ff6b35, #ff8c42);

    /* 3D depth */
    box-shadow:
        0 8px 20px rgba(255, 107, 53, 0.45),
        inset 0 0 12px rgba(255, 255, 255, 0.2);

    /* Smooth transition */
    transition: all 0.35s ease;

    /* Subtle pulsing animation */
    animation: subtlePulse 2.2s infinite ease-in-out;
}

/* Shine swipe animation */
.hero-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    height: 100%;
    width: 120%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-20deg);
}

/* Hover effect */
.hero-btn:hover::before {
    left: 120%;
    transition: 0.8s;
}

/* Hover lift + stronger shadow + slight scale */
.hero-btn:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow:
        0 18px 35px rgba(255, 107, 53, 0.6),
        inset 0 0 15px rgba(255, 255, 255, 0.25);
}

/* Pulsing breathing animation */
@keyframes subtlePulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.025); }
    100% { transform: scale(1); }
}

/* -------------------------------
   RESPONSIVE
---------------------------------*/
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-subtitle {
        font-size: 1.15rem;
    }
    .hero-btn {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
    .hero {
        height: 85vh;
    }
}


        
        /* Products Section */
        .products {
            padding: 100px 0;
            background: white;
            position: relative;
        }
        
        .products h2 {
            text-align: center;
            font-size: 2.8em;
            color: #333;
            position: relative;
            display: inline-block;
            margin-bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .products h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #ff6b35, #ff8c42);
            border-radius: 2px;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
        
        .product-card {
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }

    /* Offer Container Styles */
.offer-container {
    position: relative;
    margin-bottom: 20px;
}

/* Offer Badge Styles */
.offer-badge {
    position: absolute;
    top: 0px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 8px 25px;
    font-weight: bold;
    font-size: 1em;
    z-index: 2;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
    text-align: center;
}

.highlight-offer .offer-badge {
    background: linear-gradient(135deg, #e63946 0%, #ff4757 100%);
    animation: pulseFast 1.5s infinite;
}

.bundle-offer .offer-badge {
    background: linear-gradient(135deg, #2a9d8f 0%, #1a7d6f 100%);
    animation: float 3s ease-in-out infinite;
}

/* Offer Details Styles */
.offer-details {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 35px 20px 20px;
    margin-top: 15px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
}

.offer-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 12px 0;
    color: #2a9d8f;
    font-weight: 600;
    font-size: 1em;
    padding: 8px 15px;
    border-radius: 30px;
    background: rgba(42, 157, 143, 0.1);
}

.highlight-offer .offer-benefit {
    color: #e63946;
    background: rgba(230, 57, 70, 0.1);
}

.bundle-offer .offer-benefit {
    color: #2a9d8f;
    background: rgba(42, 157, 143, 0.1);
}

.offer-benefit i {
    color: inherit;
    font-size: 1.1em;
}


/* Price Styling */
.price {
    font-size: 2em;
    color: #ff6b35;
    font-weight: bold;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.price .icon-saudi_riyal {
    font-family: Arial, sans-serif;
}

.old-price {
    display: flex;
    align-items: center;
    text-decoration: line-through;
    color: #777;
    font-size: 0.7em;
    gap: 3px;
}

/* Highlighted Offers */
.highlight-offer {
    border: 2px solid #ff6b35;
    animation: borderPulse 3s infinite;
}

.bundle-offer {
    border: 2px solid #2a9d8f;
}

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

@keyframes borderPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .price {
        font-size: 1.8em;
    }
    
    .offer-benefit {
        font-size: 0.9em;
    }
}
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #ff6b35, #ff8c42);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }
        
        .product-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
            border-radius: 15px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2em;
            font-weight: bold;
            position: relative;
            overflow: hidden;
        }
        
        .product-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1543357480-c60d400e7ef6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
            opacity: 0.2;
        }
        
        .product-card h3 {
            font-size: 1.8em;
            color: #333;
            margin-bottom: 15px;
        }
        
        .price {
            font-size: 2.5em;
            color: #ff6b35;
            font-weight: bold;
            margin: 20px 0;
            position: relative;
            display: inline-block;
        }
        
        .price::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #ff6b35, #ff8c42);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }
        
        .product-card:hover .price::after {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        .free-delivery {
            background: #28a745;
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9em;
            font-weight: bold;
            margin: 15px 0;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .product-card:hover .free-delivery {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
        }
        
        .order-btn {
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 20px;
            position: relative;
            overflow: hidden;
        }
        
        .bundle-offer .price {
    margin-top: 25px;
}

/* Delivery Badge */
.free-delivery {
    background: #28a745;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: bold;
    margin: 15px 0;
    display: inline-block;
    transition: all 0.3s ease;
}

.product-card:hover .free-delivery {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Order Button Styles */
.order-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.order-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.order-btn:hover::after {
    transform: translateX(100%);
}

/* Highlighted Offers */
.highlight-offer {
    border: 2px solid #ff6b35;
    animation: borderPulse 3s infinite;
}

.bundle-offer {
    border: 2px solid #2a9d8f;
}

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

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

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

@keyframes borderPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .price {
        font-size: 1.8em;
    }
    
    .offer-benefit {
        font-size: 0.9em;
    }
    
    .product-card {
        padding: 30px;
    }
    
    .offer-badge {
        font-size: 0.9em;
        padding: 6px 15px;
        right: 15px;
    }
}

        .order-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
        }
        
        .order-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        
        .order-btn:hover::after {
            transform: translateX(100%);
        }
        
        /* Teqball Features Section */
        .teqball-features {
    padding: 100px 0;
    background: #f8f9fa;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.8em;
            color: #333;
            position: relative;
            display: inline-block;
            margin-bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px; /* Adjust this value to make the line shorter/longer */
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    border-radius: 2px;
}
        
        .features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3em;
    color: #ff6b35;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2);
    color: #ff8c42;
}

.feature-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    max-width: 300px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .features-container {
        padding: 0 15px;
    }
}
        
        /* Teqball Rules Section - Enhanced */
.teqball-rules {
    padding: 100px 0;
    background: white;
}

.rules-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.rules-intro {
    text-align: center;
    margin-bottom: 40px;
}

.rules-intro h3 {
    font-size: 2em;
    color: #ff6b35;
    margin-bottom: 15px;
}

.rules-intro p {
    color: #666;
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Video Embed Styles */
.video-container {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-link {
    margin-top: 20px;
}

.video-button {
    display: inline-flex;
    align-items: center;
    background: #FF0000;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    gap: 10px;
}

.video-button i {
    font-size: 1.5em;
}

.video-button:hover {
    background: #CC0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .video-container {
        margin: 30px auto;
    }
    
    .video-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.rule-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 5px solid #ff6b35;
}

.rule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.rule-number {
    background: #ff6b35;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
    margin-left: 15px;
    flex-shrink: 0;
}

.rule-content {
    flex: 1;
}

.rule-content h4 {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 10px;
}

.rule-content p {
    color: #666;
    line-height: 1.6;
}

.rules-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.rules-link {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.rules-link i {
    margin-left: 10px;
}

.rules-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .rules-container {
        padding: 30px 20px;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .rule-card {
        padding: 20px;
    }
    
    .rules-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .rules-link {
        width: 100%;
        justify-content: center;
    }
}
        
        /* Testimonials Section - Carousel Version */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Testimonials Header */
.testimonials .section-title {
    color: white;
    position: relative;
    padding-bottom: 15px; /* Space for underline */
}

.testimonials .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: white;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.testimonials-carousel {
    display: flex;
    transition: transform 0.5s ease;
    margin-top: 50px;
    position: relative;
    min-height: 300px;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.1em;
    position: relative;
    padding-left: 30px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3em;
    opacity: 0.3;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    margin-left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.5em;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.3em;
    margin-bottom: 5px;
}

.author-info p {
    opacity: 0.8;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.rating {
    color: #FFD700;
    font-size: 0.9em;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.carousel-prev, .carousel-next {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2em;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover, .carousel-next:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: white;
    transform: scale(1.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px;
    }
    
    .testimonial-text {
        font-size: 1em;
        padding-left: 20px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.3em;
    }
    
    .carousel-prev, .carousel-next {
        width: 40px;
        height: 40px;
    }
}
        
        /* Stats Section */
        .stats {
            padding: 80px 0;
            background: white;
        }
        
        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-top: 50px;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
            width: 200px;
        }
        
        .stat-number {
            font-size: 3.5em;
            font-weight: bold;
            color: #ff6b35;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1.2em;
            color: #666;
        }
        
        /* Order Form Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 1000;
            animation: fadeIn 0.3s ease-out;
            overflow-y: auto;
        }
        
        .modal-content {
            background: white;
            margin: 5% auto;
            padding: 40px;
            border-radius: 20px;
            max-width: 500px;
            position: relative;
            animation: slideIn 0.3s ease-out;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }
        
        .close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 30px;
            cursor: pointer;
            color: #999;
            transition: all 0.3s ease;
        }
        
        .close:hover {
            color: #ff6b35;
            transform: rotate(90deg);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #333;
        }
        
        .form-group input {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1em;
            transition: all 0.3s ease;
            font-family: 'Tajawal', sans-serif;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: #ff6b35;
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
        }
        
        .submit-btn {
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1em;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            font-family: 'Tajawal', sans-serif;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
        }
        
        /* ================================
   MODERN FOOTER (2025)
================================ */
.modern-footer {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    padding: 50px 0 20px 0;
    margin-top: 80px;
    color: white;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-container {
    max-width: 1250px;
    margin: auto;
    padding: 0 25px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ff6b35;
}

.footer-col p {
    line-height: 1.9;
    opacity: 0.9;
}

.footer-link {
    display: block;
    color: white;
    text-decoration: none;
    opacity: 0.85;
    margin-bottom: 12px;
    font-size: 1.05rem;
    transition: 0.3s;
}

.footer-link:hover {
    opacity: 1;
    color: #ff6b35;
}

.footer-link i {
    margin-left: 8px;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    font-size: 1.4rem;
    color: white;
    opacity: 0.8;
    transition: 0.3s;
}

.footer-social a:hover {
    opacity: 1;
    color: #ff6b35;
}

/* Bottom section */
.footer-bottom {
    text-align: center;
    padding: 18px 0 5px;
    margin-top: 40px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    border-top: 1px solid rgba(255,255,255,0.08);
}


/* Product Image Styles */
.product-image {
    background-size: cover;
    background-position: center;
    color: transparent;
}

/* Sold Out Styles */
.sold-out {
    position: relative;
    opacity: 0.8;
}

.sold-out-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff4757;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
}

/* Centered Titles */
.section-title, .products h2 {
    text-align: center;
    width: 100%;
    left: 0;
    transform: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        max-width: 100%;
    }
}

/* Disabled Button Styles */
.order-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.order-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

.order-btn:disabled::after {
    display: none;
}

/* Active Nav Link Styling */
.nav-link.active {
    color: #ff6b35 !important;
}

.nav-link.active::after {
    width: 70% !important;
    background: #ff6b35 !important;
}

/* Mobile active link styling */
@media (max-width: 992px) {
    .nav-link.active {
        background: rgba(255, 107, 53, 0.1);
    }
}

/* Add to your existing CSS */
.fa-spinner {
    margin-left: 8px;
}

.submit-btn[disabled] {
    opacity: 0.8;
    cursor: not-allowed;
}