@import "../../fonts/tajawal/stylesheet.css";

* {
    font-family: 'Tajawal', sans-serif;
}


html {
    scroll-padding-top: 100px; /* Adjust the value for your needs */
}


/* ============================================
   NAKHEEL AL-RAFIDAIN - CSS Design System
   Playful Arabic RTL Baby Food Website
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Primary Brand Colors */
    --primary-green: #2D7D6F;
    --primary-green-dark: #236259;
    --secondary-gold: #E9A830;
    --dark-gray: #4A4A4A;

    /* Playful Pastel Palette */
    --soft-mint: #E8F5F2;
    --pastel-yellow: #FFF8E7;
    --baby-pink: #FFE5EC;
    --sky-blue: #E3F4FC;
    --lavender: #F0E8FF;
    --peach: #FFE8D6;
    --cream-white: #FFFDF9;

    /* Accent Colors */
    --bleft-orange: #FF9F43;
    --happy-green: #4CD964;
    --cheerful-blue: #5AC8FA;
    --pink-accent: #FF6B8A;

    /* Typography */
    --font-heading: 'Changa', 'Baloo Bhaijaan 2', sans-serif;
    --font-body: 'Cairo', sans-serif;
    --font-decorative: 'Aref Ruqaa', serif;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 40px;
    --spacing-2xl: 60px;
    --spacing-3xl: 80px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
    --radius-circle: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(45, 125, 111, 0.15);
    --shadow-gold: 0 4px 15px rgba(233, 168, 48, 0.4);
    --shadow-green: 0 8px 25px rgba(45, 125, 111, 0.35);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ============================================
   BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--cream-white);
    color: var(--dark-gray);
    line-height: 1.6;
    direction: ltr;
    text-align: left;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   FONT AWESOME ICON STYLING
   ============================================ */
.nav-link .icon i,
.mobile-nav-link i {
    color: var(--primary-green);
}

.nav-link:hover .icon i,
.cta-button:hover .icon i,
.cta-button:hover {
    color: var(--secondary-gold);
}

.hero-badge i {
    margin-right: var(--spacing-xs);
}

.heart-emoji i {
    color: var(--primary-green);
}

.emoji-pill i {
    margin-right: var(--spacing-xs);
    color: var(--primary-green);
}

.emoji-pill:nth-child(1) i {
    color: var(--primary-green);
}

.emoji-pill:nth-child(2) i {
    color: var(--bleft-orange);
}

.emoji-pill:nth-child(3) i {
    color: var(--cheerful-blue);
}

.emoji-pill:nth-child(4) i {
    color: var(--happy-green);
}

.btn-primary i,
.btn-secondary i {
    margin-right: var(--spacing-xs);
}

.trust-badge .badge-icon i {
    font-size: 1.3rem;
}

.trust-badge:nth-child(1) .badge-icon i {
    color: var(--happy-green);
}

.trust-badge:nth-child(2) .badge-icon i {
    color: var(--cheerful-blue);
}

.trust-badge:nth-child(3) .badge-icon i {
    color: var(--bleft-orange);
}

.trust-badge:nth-child(4) .badge-icon i {
    color: var(--pink-accent);
}

.sparkle i {
    color: var(--secondary-gold);
}

.cta-button i {
    margin-right: var(--spacing-xs);
}

.mobile-nav-close i {
    font-size: 1.2rem;
}

/* ============================================
   HEADER STYLES
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-md) var(--spacing-xl);
    transition: var(--transition-normal);
}

.header.scrolled {
    background: linear-gradient(135deg, var(--soft-mint) 0%, var(--cream-white) 50%, var(--pastel-yellow) 100%);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-sm) var(--spacing-xl);

}

.header.scrolled::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-gold));
    border-radius: 0 0 3px 3px;
}


.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.logo {
    width: 65px;
    height: 65px;

}

.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.company-tagline {
    font-size: 0.75rem;
    color: var(--dark-gray);
    opacity: 0.8;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-list {
    display: flex;
    gap: var(--spacing-sm);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary-green);
    background: var(--soft-mint);
    transform: scale(1.05);
}

.nav-link .icon {
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.nav-link:hover .icon {
    animation: wiggle 0.5s ease;
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    overflow: hidden;
    z-index: 100;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.95rem;
    color: var(--dark-gray);
    border-left: 4px solid transparent;
    transition: var(--transition-fast);
}

.dropdown-item:nth-child(1):hover {
    border-left-color: var(--baby-pink);
}

.dropdown-item:nth-child(2):hover {
    border-left-color: var(--sky-blue);
}

.dropdown-item:nth-child(3):hover {
    border-left-color: var(--lavender);
}

.dropdown-item:hover {
    background: var(--soft-mint);
    color: var(--primary-green);
    padding-left: var(--spacing-lg);
}

/* CTA Button */
.cta-button {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 12px 28px;
    /* background: linear-gradient(135deg, var(--secondary-gold), var(--bleft-orange)); */
    background: var(--primary-green);
    color: white;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: var(--transition-bounce);
}

.cta-button:hover {
    transform: scale(1.08);

}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Language Switch Button */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--soft-mint);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-green);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.lang-switch:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--secondary-gold);
}

.lang-switch i {
    font-size: 1rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-sm);
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-gold));
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--soft-mint), var(--cream-white), var(--pastel-yellow));
    z-index: 999;
    padding: 100px var(--spacing-xl) var(--spacing-xl);
    transition: var(--transition-slow);
    overflow-y: auto;
    margin-top: 50px;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.mobile-nav-item {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-normal);
}

.mobile-nav.active .mobile-nav-item {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav.active .mobile-nav-item:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav.active .mobile-nav-item:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-nav.active .mobile-nav-item:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-nav.active .mobile-nav-item:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-nav.active .mobile-nav-item:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: var(--primary-green);
    color: white;
}

.mobile-nav-link:hover span i,
.mobile-nav-link:active span i {
    color: white;
}

/* Submenu Arrow */
.submenu-arrow {
    margin-left: auto;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--primary-green);
}

.mobile-nav-item.submenu-open .submenu-arrow {
    transform: rotate(180deg);
}

.mobile-nav-link:hover .submenu-arrow,
.mobile-nav-link:active .submenu-arrow {
    color: white;
}

/* Mobile Submenu */
.mobile-submenu {
    display: none;
    flex-direction: column;
    gap: 0;
    margin-top: var(--spacing-sm);
    padding-left: var(--spacing-xl);
    animation: slideDown 0.3s ease;
}

.mobile-nav-item.submenu-open .mobile-submenu {
    display: flex;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-submenu li {
    border-left: 3px solid var(--secondary-gold);
}

.mobile-submenu a {
    display: block;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-gray);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    transition: var(--transition-fast);
}

.mobile-submenu a:hover {
    background: var(--soft-mint);
    color: var(--primary-green);
    padding-left: 28px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px var(--spacing-xl) var(--spacing-3xl);
    overflow: hidden;
}

/* Hero Background Layers */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}


/* Floating Shapes */
.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: var(--radius-circle);
    opacity: 0.4;
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--baby-pink);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--sky-blue);
    top: 60%;
    left: 80%;
    animation-delay: -3s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--pastel-yellow);
    top: 70%;
    left: 20%;
    animation-delay: -6s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: var(--lavender);
    top: 20%;
    left: 60%;
    animation-delay: -9s;
}

.shape-5 {
    width: 180px;
    height: 180px;
    background: var(--peach);
    top: 40%;
    left: 10%;
    animation-delay: -12s;
}

/* Decorative Elements */
.decorative-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: twinkle 2s infinite;
}

.sparkle:nth-child(1) {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 30%;
    left: 70%;
    animation-delay: 0.5s;
}

.sparkle:nth-child(3) {
    top: 50%;
    left: 85%;
    animation-delay: 1s;
}

.sparkle:nth-child(4) {
    top: 75%;
    left: 30%;
    animation-delay: 1.5s;
}

.heart {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0.6;
    animation: floatHeart 8s infinite ease-in-out;
}

.heart:nth-child(5) {
    top: 25%;
    left: 40%;
    animation-delay: 0s;
}

.heart:nth-child(6) {
    top: 60%;
    left: 55%;
    animation-delay: 2s;
}

.heart:nth-child(7) {
    top: 80%;
    left: 75%;
    animation-delay: 4s;
}

/* Hero Content */
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

/* Hero Text Content */
.hero-content {
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: linear-gradient(135deg, var(--secondary-gold), var(--bleft-orange));
    color: white;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-lg);
    animation: bounceIn 0.8s ease-out;
    box-shadow: var(--shadow-gold);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.3;
    margin-bottom: var(--spacing-lg);
    text-shadow: 2px 2px 0px var(--soft-mint);
}

.hero-title .heart-emoji {
    display: inline-block;
    animation: pulse 1.5s infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--dark-gray);
    line-height: 1.9;
    margin-bottom: var(--spacing-lg);
    max-width: 480px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 18px 40px;
    background: var(--primary-green);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-green);
    transition: var(--transition-bounce);
}

.btn-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(45, 125, 111, 0.4);
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 18px 40px;
    background: white;
    color: var(--secondary-gold);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    border: 3px solid var(--secondary-gold);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(233, 168, 48, 0.2);
    transition: var(--transition-bounce);
}

.btn-secondary:hover {
    background: var(--secondary-gold);
    color: white;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-gold), var(--bleft-orange));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    padding: 8px;
    animation: morphBlob 10s infinite ease-in-out;
}

.hero-image-inner {
    width: 100%;
    height: 100%;
    background: var(--cream-white);
    border-radius: inherit;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Floating Products */
.floating-product {
    position: absolute;
    animation: floatProduct 6s infinite ease-in-out;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.floating-product-1 {
    width: 80px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.floating-product-2 {
    width: 70px;
    bottom: 15%;
    right: -5%;
    animation-delay: -2s;
}

.floating-product-3 {
    width: 60px;
    top: 50%;
    right: -15%;
    animation-delay: -4s;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 120px;
    display: block;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    padding: var(--spacing-3xl) 0 100px;
    background: linear-gradient(180deg, white 0%, var(--pastel-yellow) 50%, var(--soft-mint) 100%);
    position: relative;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding: 0 var(--spacing-xl);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--secondary-gold);
    color: white;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(50%);
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-gold), transparent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    padding: 0 var(--spacing-xl);
}

.filter-tab {
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    background: transparent;
    border: 2px solid #E0E0E0;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
}

.filter-tab:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.filter-tab.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

/* Swiper Container */
.products-slider {
    padding: 40px 0;
    perspective: 1200px;
}

.swiper {
    overflow: visible !important;
    padding: 20px 0 60px;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-bounce);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(45, 125, 111, 0.2);
}

.product-category-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    padding: 6px 14px;
    background: var(--secondary-gold);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.product-category-badge.food {
    background: var(--happy-green);
}

.product-image-wrapper {
    height: 200px;
    background: radial-gradient(circle at center, var(--sky-blue), var(--soft-mint));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image-wrapper.food-bg {
    background: radial-gradient(circle at center, var(--peach), var(--pastel-yellow));
}

.product-image {
    max-height: 180px;
    object-fit: contain;
    transition: var(--transition-bounce);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.product-card:hover .product-image {
    transform: scale(1.1) rotate(3deg);
}

.product-info {
    padding: var(--spacing-md);
    text-align: center;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: var(--spacing-sm);
}

.product-age {
    display: inline-block;
    padding: 4px 12px;
    background: var(--soft-mint);
    color: var(--primary-green);
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

.product-price {
    display: flex;
    flex-direction: column;
}

.current-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-gold);
}

.old-price {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
}

.add-to-cart {
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    color: white;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(45, 125, 111, 0.3);
    transition: var(--transition-bounce);
}

.add-to-cart:hover {
    transform: scale(1.1);
    background: var(--primary-green-dark);
}

.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: var(--spacing-sm) 0 var(--spacing-md);
}

.star {
    color: #E0E0E0;
    font-size: 1rem;
}

.star.filled {
    color: var(--secondary-gold);
}

.rating-count {
    font-size: 0.8rem;
    color: #999;
    margin-left: var(--spacing-sm);
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    width: 56px !important;
    height: 56px !important;
    background: white !important;
    border: 2px solid var(--soft-mint) !important;
    border-radius: var(--radius-circle) !important;
    box-shadow: var(--shadow-md) !important;
    transition: var(--transition-normal) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: var(--primary-green) !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--primary-green) !important;
    transform: scale(1.1);
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
    color: white !important;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #E0E0E0 !important;
    opacity: 1 !important;
    transition: var(--transition-normal) !important;
}

.swiper-pagination-bullet-active {
    width: 24px !important;
    background: var(--secondary-gold) !important;
    border-radius: 6px !important;
    box-shadow: 0 0 10px rgba(233, 168, 48, 0.5);
}

/* View All Link */
.view-all-wrapper {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-green);
    transition: var(--transition-normal);
}

.view-all-link:hover {
    color: var(--secondary-gold);
}

.view-all-link:hover .arrow {
    transform: translateX(-5px);
}

.view-all-link .arrow {
    transition: var(--transition-normal);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes floatHeart {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

@keyframes floatProduct {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes morphBlob {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    25% {
        border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
    }

    50% {
        border-radius: 60% 40% 50% 50% / 50% 60% 40% 60%;
    }

    75% {
        border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
    .hero-container {
        gap: var(--spacing-xl);
    }

    .hero-image-frame {
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-subtitle {
        margin: 0 auto var(--spacing-lg);
    }

    .emoji-highlights,
    .hero-buttons {
        justify-content: center;
    }

    .hero-image-frame {
        max-width: 350px;
        margin: 0 auto;
    }

    .floating-product {
        display: none;
    }

}

@media (max-width: 768px) {
    .header {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .logo {
        width: 50px;
        height: 50px;
    }

    .company-name {
        font-size: 1.2rem;
    }

    .hero {
        padding: 100px var(--spacing-md) var(--spacing-xl);
        min-height: 100vh;
        margin-top: 50px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 1rem;
        width: fit-content;
        justify-content: center;
    }


    .hero-image-frame {
        max-width: 280px;
    }

    .products-section {
        padding: var(--spacing-xl) 0 var(--spacing-2xl);
    }

    .section-header {
        padding: 0 var(--spacing-md);
    }

    .filter-tabs {
        padding: 0 var(--spacing-md);
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .filter-tabs::-webkit-scrollbar {
        display: none;
    }

    .filter-tab {
        flex-shrink: 0;
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 50px;
        min-height: 100vh;
    }

    .header {
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .header.scrolled {
        padding: 10px 16px;
    }

    .cta-button {
        padding: 5px 6px;
        font-size: 12px;
        opacity: 0;
        transform: var(--transition-normal);
    }

    .header.scrolled .cta-button {
        opacity: 1;
        padding: 5px 6px;
        font-size: 12px;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: var(--spacing-xs) var(--spacing-md);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .emoji-highlights {
        gap: var(--spacing-xs);
    }

    .emoji-pill {
        font-size: 0.8rem;
    }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-us {
    position: relative;
    padding: 80px 20px;
    background: radial-gradient(ellipse at center, var(--cream-white) 0%, var(--soft-mint) 100%);
    overflow: hidden;
}

/* Background Decorations */
.wcu-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.wcu-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    animation: wcuFloat 25s infinite ease-in-out;
}

.wcu-blob-1 {
    width: 350px;
    height: 350px;
    background: var(--secondary-gold);
    top: 5%;
    right: 10%;
}

.wcu-blob-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-green);
    bottom: 10%;
    left: 5%;
    animation-delay: -10s;
}

.wcu-blob-3 {
    width: 250px;
    height: 250px;
    background: var(--bleft-orange);
    top: 50%;
    left: 30%;
    animation-delay: -5s;
}

/* Section Header */
.wcu-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--primary-green);
    text-shadow: 2px 2px 0px rgba(45, 125, 111, 0.1);
}

/* Main Container - 60/40 Split (Orbital on right, Cards on left) */
.wcu-container {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 2;
    direction: ltr;
    /* Force LTR for grid layout */
}

/* Restore RTL for text content */
.wcu-cards-side {
    direction: rtl;
}

/* right Side - Orbital */
.wcu-orbital-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Orbital System - Enlarged */
.orbital-system {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: 650px;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.conn-line {
    stroke-width: 3;
    stroke-dasharray: 10 5;
    animation: dashFlow 2s linear infinite;
    opacity: 0.7;
}

@keyframes dashFlow {
    to {
        stroke-dashoffset: -24;
    }
}

/* Orbital Rings - Enlarged */
.orbital-ring {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%) !important;
    border-radius: 50%;
    border: 2px dashed;
    pointer-events: none;
}

.orbital-ring-1 {
    width: 420px;
    height: 420px;
    border-color: rgba(233, 168, 48, 0.3);
    animation: rotateRing 60s linear infinite;
}

.orbital-ring-2 {
    width: 520px;
    height: 520px;
    border-color: rgba(45, 125, 111, 0.2);
    border-style: solid;
    animation: rotateRing 80s linear infinite reverse;
}

@keyframes rotateRing {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Central Baby - Adjusted size */
.central-baby {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    z-index: 10;
}

.baby-glow {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(233, 168, 48, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.baby-frame {
    position: relative;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #FFFFFF 0%, var(--pastel-yellow) 100%);
    border-radius: 50%;
    border: 5px solid var(--secondary-gold);
    box-shadow:
        0 0 60px rgba(233, 168, 48, 0.25),
        0 20px 50px rgba(45, 125, 111, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.baby-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Floating elements around baby */
.baby-float-heart,
.baby-float-star {
    position: absolute;
    font-size: 1rem;
    animation: floatAround 4s ease-in-out infinite;
}

.baby-float-heart {
    top: -5px;
    left: 15px;
    color: var(--pink-accent);
}

.baby-float-star {
    bottom: 5px;
    right: -5px;
    color: var(--secondary-gold);
    animation-delay: -2s;
}

@keyframes floatAround {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(10deg);
    }
}

/* Small Orbital Badges - Enlarged */
.orbital-badge {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    z-index: 5;
    animation: badgeFloat 3s ease-in-out infinite;
}

.orbital-badge i {
    font-size: 1.4rem;
    color: var(--primary-green);
}

.orbital-badge-1 {
    top: 65px;
    right: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.orbital-badge-1 i {
    color: #4CD964;
}

.orbital-badge-2 {
    top: 50%;
    left: 65px;
    transform: translateY(-50%);
    animation-delay: -0.75s;
}

.orbital-badge-2 i {
    color: #FF9F43;
}

.orbital-badge-3 {
    bottom: 65px;
    right: 50%;
    transform: translateX(-50%);
    animation-delay: -1.5s;
}

.orbital-badge-3 i {
    color: #5AC8FA;
}

.orbital-badge-4 {
    top: 50%;
    right: 65px;
    transform: translateY(-50%);
    animation-delay: -2.25s;
}

.orbital-badge-4 i {
    color: #E9A830;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Fix transforms for orbital badges */
.orbital-badge-1 {
    animation: badgeFloatX 3s ease-in-out infinite;
}

.orbital-badge-3 {
    animation: badgeFloatX 3s ease-in-out infinite;
    animation-delay: -1.5s;
}

.orbital-badge-2,
.orbital-badge-4 {
    animation: badgeFloatY 3s ease-in-out infinite;
}

@keyframes badgeFloatX {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-6px);
    }
}

@keyframes badgeFloatY {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(-6px);
    }
}

/* left Side - Feature Cards */
.wcu-cards-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wcu-feature-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(45, 125, 111, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.wcu-feature-card:hover {
    transform: translateX(-8px);
    box-shadow: 0 8px 30px rgba(45, 125, 111, 0.12);
    border-color: var(--primary-green);
}

.feature-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.wcu-feature-card:hover .feature-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card-content {
    flex: 1;
}

.feature-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 6px;
}

.feature-card-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* WCU Float Animation */
@keyframes wcuFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(15px, -15px);
    }

    50% {
        transform: translate(-8px, 8px);
    }

    75% {
        transform: translate(-15px, -8px);
    }
}

/* ============================================
   WCU RESPONSIVE DESIGN
   ============================================ */

/* Large Desktop */
@media (max-width: 1200px) {
    .wcu-container {
        gap: 30px;
        padding: 0 20px;
    }

    .orbital-system {
        max-width: 450px;
        height: 450px;
    }

    .orbital-ring-1 {
        width: 280px;
        height: 280px;
    }

    .orbital-ring-2 {
        width: 360px;
        height: 360px;
    }

    .baby-frame {
        width: 180px;
        height: 180px;
    }

    .baby-glow {
        width: 240px;
        height: 240px;
    }

    .orbital-badge {
        width: 44px;
        height: 44px;
    }

    .orbital-badge i {
        font-size: 1rem;
    }

    .orbital-badge-1,
    .orbital-badge-3 {
        transform: translateX(-50%);
    }

    .orbital-badge-2,
    .orbital-badge-4 {
        transform: translateY(-50%);
    }

    .orbital-badge-1 {
        top: 45px;
    }

    .orbital-badge-2 {
        left: 45px;
    }

    .orbital-badge-3 {
        bottom: 45px;
    }

    .orbital-badge-4 {
        right: 45px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .why-choose-us {
        padding: 60px 20px;
    }

    .wcu-container {
        grid-template-columns: 55% 45%;
        gap: 24px;
    }

    .orbital-system {
        max-width: 380px;
        height: 380px;
    }

    .orbital-ring-1 {
        width: 240px;
        height: 240px;
    }

    .orbital-ring-2 {
        width: 300px;
        height: 300px;
    }

    .baby-frame {
        width: 150px;
        height: 150px;
    }

    .baby-glow {
        width: 200px;
        height: 200px;
    }

    .orbital-badge {
        width: 38px;
        height: 38px;
    }

    .orbital-badge i {
        font-size: 0.9rem;
    }

    .orbital-badge-1 {
        top: 35px;
    }

    .orbital-badge-2 {
        left: 35px;
    }

    .orbital-badge-3 {
        bottom: 35px;
    }

    .orbital-badge-4 {
        right: 35px;
    }

    .wcu-feature-card {
        padding: 16px;
    }

    .feature-card-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.2rem;
    }

    .feature-card-title {
        font-size: 0.95rem;
    }

    .feature-card-desc {
        font-size: 0.85rem;
    }
}

/* Small Tablet / Large Mobile */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 50px 16px;
    }

    .wcu-header {
        margin-bottom: 40px;
    }

    .wcu-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wcu-orbital-side {
        order: 1;
    }

    .wcu-cards-side {
        order: 2;
    }

    .orbital-system {
        max-width: 350px;
        height: 350px;
        margin: 0 auto;
    }

    .orbital-ring-1 {
        width: 220px;
        height: 220px;
    }

    .orbital-ring-2 {
        width: 280px;
        height: 280px;
    }

    .baby-frame {
        width: 140px;
        height: 140px;
    }

    .baby-glow {
        width: 180px;
        height: 180px;
    }

    .orbital-badge {
        width: 36px;
        height: 36px;
    }

    .orbital-badge i {
        font-size: 0.85rem;
    }

    .orbital-badge-1 {
        top: 30px;
    }

    .orbital-badge-2 {
        left: 30px;
    }

    .orbital-badge-3 {
        bottom: 30px;
    }

    .orbital-badge-4 {
        right: 30px;
    }

    .wcu-cards-side {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .wcu-feature-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .feature-card-icon {
        margin: 0 auto;
    }

    .wcu-feature-card:hover {
        transform: translateY(-5px);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .why-choose-us {
        padding: 40px 12px;
    }



    .title {
        font-size: 1.5rem;
    }

    .orbital-system {
        max-width: 280px;
        height: 280px;
    }

    .connection-lines {
        display: none;
    }

    .orbital-ring-1 {
        width: 180px;
        height: 180px;
    }

    .orbital-ring-2 {
        width: 230px;
        height: 230px;
    }

    .baby-frame {
        width: 110px;
        height: 110px;
    }

    .baby-glow {
        width: 140px;
        height: 140px;
    }

    .orbital-badge {
        width: 32px;
        height: 32px;
    }

    .orbital-badge i {
        font-size: 0.75rem;
    }

    .orbital-badge-1 {
        top: 20px;
    }

    .orbital-badge-2 {
        left: 20px;
    }

    .orbital-badge-3 {
        bottom: 20px;
    }

    .orbital-badge-4 {
        right: 20px;
    }

    .wcu-cards-side {
        grid-template-columns: 1fr;
    }

    .wcu-feature-card {
        flex-direction: row;
        text-align: left;
    }

    .feature-card-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.1rem;
        margin: 0;
    }

    .feature-card-title {
        font-size: 0.9rem;
    }

    .feature-card-desc {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

/* ============================================
   PRODUCTS SECTION - وكالاتنا المميزة
   ============================================ */
.products-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 20%);
    overflow: hidden;
}

/* Background Decorations */
.products-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.products-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.08;
}

.products-blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-green);
    top: 10%;
    left: -100px;
}

.products-blob-2 {
    width: 350px;
    height: 350px;
    background: var(--secondary-gold);
    bottom: 10%;
    right: -100px;
}

/* Section Header */
.products-header {
    text-align: center;
}



.products-subtitle {
    font-family: var(--font-body);
    font-size: clamp(14px, 2vw, 18px);
    color: #6B7280;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Filter Tabs */
.products-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px auto 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.product-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    min-width: 140px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #F8F9FA;
    border: 2px solid #E5E7EB;
    color: #6B7280;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
}

.product-tab i {
    font-size: 1rem;
}

.product-tab:hover {
    background: #FFFFFF;
    border-color: var(--primary-green);
    color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(45, 125, 111, 0.1);
    transform: translateY(-2px);
}

.product-tab.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #FFFFFF;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(45, 125, 111, 0.3);
    transform: scale(1.02);
}

/* Category-specific active colors */
.product-tab[data-filter="milk"].active {
    background: #5AC8FA;
    border-color: #5AC8FA;
    box-shadow: 0 6px 20px rgba(90, 200, 250, 0.3);
}

.product-tab[data-filter="food"].active {
    background: #4CD964;
    border-color: #4CD964;
    box-shadow: 0 6px 20px rgba(76, 217, 100, 0.3);
}

/* Products Slider Container */
.products-slider-container {
    position: relative;
    max-width: 1400px;
    overflow: hidden;
    margin: 0 auto;
    padding: 20px 0 40px;
    z-index: 2;
}

.products-swiper {
    /* overflow: visible; */
    padding: 10px;
}

/* Product Card */
.product-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45, 125, 111, 0.15);
    border-color: var(--primary-green);
}

/* Category Badge */
.product-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.milk-badge {
    background: linear-gradient(135deg, #5AC8FA, #007AFF);
}

.food-badge {
    background: linear-gradient(135deg, #4CD964, #2D7D6F);
}

.product-category-badge i {
    font-size: 0.75rem;
}

/* Product Image Container */
.product-image-container {
    position: relative;
    height: 200px;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
}

.product-image-bg {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(90, 200, 250, 0.08) 0%, transparent 70%);
    top: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
}

.product-image-bg.food-bg {
    background: radial-gradient(circle, rgba(76, 217, 100, 0.08) 0%, transparent 70%);
}

.product-image {
    max-height: 160px;
    max-width: 80%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.product-card:hover .product-image {
    transform: scale(1.08) rotate(2deg);
}

/* Product Content */
.product-content {
    padding: 24px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.product-card:hover .product-name {
    color: var(--secondary-gold);
}

.product-description {
    font-family: var(--font-body);
    font-size: 14px;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 72px;
}

/* Product Button */
.product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    color: var(--primary-green);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.product-btn i {
    transition: transform 0.3s ease;
}

.product-btn:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(45, 125, 111, 0.2);
}

.product-btn:hover i {
    transform: translateX(-5px);
}

.product-btn:active {
    transform: scale(0.98);
    background: #236259;
}

/* Slider Navigation */
.products-nav-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.products-nav-btn::after {
    display: none;
}

.products-nav-btn i {
    font-size: 18px;
    color: var(--primary-green);
}

.products-nav-btn:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(45, 125, 111, 0.25);
}

.products-nav-btn:hover i {
    color: #FFFFFF;
}

.products-nav-btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.products-nav-btn.swiper-button-disabled:hover {
    background: #FFFFFF;
    border-color: #E5E7EB;
    transform: none;
}

/* Pagination */
.products-pagination {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.products-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #E5E7EB;
    opacity: 1;
    transition: all 0.3s ease;
}

.products-pagination .swiper-pagination-bullet:hover {
    background: var(--primary-green);
    transform: scale(1.2);
}

.products-pagination .swiper-pagination-bullet-active {
    background: var(--secondary-gold);
    width: 32px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(233, 168, 48, 0.4);
}

/* View All Link */
.products-view-all {
    text-align: center;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    color: var(--primary-green);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-link i {
    transition: transform 0.3s ease;
}

.view-all-link:hover {
    background: var(--primary-green);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 125, 111, 0.25);
}

.view-all-link:hover i {
    transform: translateX(-5px);
}

/* ============================================
   PRODUCTS SECTION RESPONSIVE
   ============================================ */

@media (max-width: 1280px) {
    .products-swiper {
        padding: 10px 50px;
    }
}

@media (max-width: 1024px) {
    .products-section {
        padding: 80px 20px;
    }

    .products-swiper {
        padding: 10px 40px;
    }

    .products-nav-btn {
        width: 44px;
        height: 44px;
    }

    .products-nav-btn i {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 60px 16px;
    }

    .products-header {
        margin-bottom: 40px;
    }

    .products-tabs {
        gap: 8px;
        margin: 30px auto 40px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 0 16px 10px;
        -webkit-overflow-scrolling: touch;
    }

    .product-tab {
        padding: 12px 20px;
        min-width: auto;
        white-space: nowrap;
        font-size: 14px;
    }

    .products-swiper {
        padding: 10px 20px;
    }

    .products-nav-btn {
        display: none;
    }

    .product-image-container {
        height: 180px;
    }

    .product-image {
        max-height: 140px;
    }

    .product-content {
        padding: 20px;
    }

    .product-name {
        font-size: 18px;
    }

    .product-description {
        font-size: 13px;
        min-height: 66px;
    }

    .product-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .view-all-link {
        padding: 14px 32px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 50px 12px;
    }


    .products-tabs {
        margin: 24px auto 32px;
    }

    .product-tab {
        padding: 10px 16px;
        font-size: 13px;
    }

    .product-image-container {
        height: 160px;
        padding: 16px;
    }

    .product-image {
        max-height: 120px;
    }

    .product-category-badge {
        padding: 5px 10px;
        font-size: 10px;
    }

    .products-view-all {
        margin-top: 36px;
    }
}

/* ============================================
   MOTHERS TESTIMONIALS SECTION - تجارب الأمهات
   ============================================ */
.testimonials-section {
    padding: 10px 24px 100px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 500px;
    background: var(--pastel-yellow);
    border-radius: 48px;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Background Image */
.testimonials-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background-image: url('/imgtest/testimonials/happy-baby.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Gradient Overlay - transparent on right to show baby image */
.testimonials-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, transparent 0%, var(--pastel-yellow) 40%, var(--pastel-yellow) 100%);
    pointer-events: none;
}

/* Content - positioned on the physical left side */
.testimonials-content {
    position: relative;
    z-index: 10;
    width: 55%;
    margin-right: auto;
    padding: 48px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Badge */
.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--secondary-gold), #F5B83D);
    color: white;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(233, 168, 48, 0.3);
    margin-bottom: 24px;
    width: fit-content;
}

.testimonials-badge i {
    font-size: 1rem;
}

/* Speech Bubble Card */
.testimonial-card {
    position: relative;
    background: white;
    padding: 40px;
    border-radius: 32px;
    border-top-right-radius: 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(233, 168, 48, 0.2);
}

/* Speech Bubble Triangle */
.speech-triangle {
    position: absolute;
    top: -18px;
    left: 40px;
    width: 0;
    height: 0;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-bottom: 20px solid rgba(233, 168, 48, 0.2);
}

.speech-triangle-inner {
    position: absolute;
    top: -14px;
    left: 40px;
    width: 0;
    height: 0;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-bottom: 20px solid white;
}

/* Quote Icon */
.quote-icon {
    margin-bottom: 20px;
}

.quote-icon i {
    font-size: 48px;
    color: var(--secondary-gold);
    opacity: 0.8;
}

/* Testimonial Text */
.testimonial-text {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 28px;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary-gold);
    box-shadow: 0 4px 12px rgba(233, 168, 48, 0.2);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 2px;
}

.author-title {
    font-family: var(--font-body);
    font-size: 14px;
    color: #6B7280;
}

/* Star Rating */
.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars i {
    font-size: 16px;
    color: var(--secondary-gold);
}

/* Empty star styling */
.rating-stars i.fa-regular {
    color: #D1D5DB;
}

/* ============================================
   TESTIMONIALS CAROUSEL ANIMATIONS
   ============================================ */
.testimonials-carousel {
    position: relative;
}

/* Card fade animation */
.testimonial-card {
    cursor: pointer;
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-card.fading {
    opacity: 0;
    transform: translateY(10px);
}

.testimonial-card.paused {
    box-shadow: 0 0 0 3px var(--secondary-gold), 0 15px 50px rgba(0, 0, 0, 0.1);
}

/* Pause Indicator */
.pause-indicator {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: var(--secondary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.pause-indicator i {
    color: white;
    font-size: 14px;
}

.pause-indicator.visible {
    opacity: 1;
    transform: scale(1);
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(233, 168, 48, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .indicator:hover {
    background: rgba(233, 168, 48, 0.6);
    transform: scale(1.2);
}

.carousel-indicators .indicator.active {
    background: var(--secondary-gold);
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(233, 168, 48, 0.4);
}

/* ============================================
   TESTIMONIALS RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .testimonials-section {
        padding: 80px 20px;
    }

    .testimonials-container {
        min-height: 450px;
        border-radius: 36px;
    }

    .testimonials-content {
        width: 60%;
        padding: 40px;
    }

    .testimonial-card {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 16px;
    }

    .testimonials-container {
        flex-direction: column;
        min-height: auto;
        border-radius: 28px;
    }

    .testimonials-bg-image {
        position: relative;
        width: 100%;
        height: 250px;
        opacity: 0.8;
    }

    .testimonials-gradient {
        background: linear-gradient(to top, var(--pastel-yellow) 30%, transparent 100%);
    }

    .testimonials-content {
        width: 100%;
        padding: 32px 24px 40px;
        margin: -40px auto 0;
    }

    .testimonials-badge {
        font-size: 13px;
        padding: 6px 16px;
        margin: 0 auto 12px;

    }

    .testimonial-card {
        padding: 28px;
        border-radius: 24px;
        border-top-right-radius: 0;
    }

    .quote-icon i {
        font-size: 36px;
    }

    .speech-triangle,
    .speech-triangle-inner {
        left: calc(50vw - 50px);
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 50px 12px;
    }

    .testimonials-container {
        border-radius: 24px;
    }

    .testimonials-bg-image {
        height: 200px;
    }

    .testimonials-content {
        padding: 24px 16px 32px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonial-text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .author-avatar {
        width: 48px;
        height: 48px;
    }

    .author-name {
        font-size: 16px;
    }

    .rating-stars {
        width: 100%;
        justify-content: flex-start;
        margin-top: 8px;
    }
}

/* ============================================
   CONTACT US SECTION - تواصل معنا
   ============================================ */
.contact-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--light-bg) 100%);
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}



/* Content - Two Columns */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Form Wrapper */
.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Form Groups */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.form-group label i {
    color: var(--primary-green);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--dark-gray);
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: white;
    box-shadow: 0 0 0 4px rgba(45, 125, 111, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA3AF;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 26px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 125, 111, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 125, 111, 0.4);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(-5px);
}

/* Info Wrapper */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Info Cards */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 12px;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
    color: white;
}

.info-content h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 6px;
}

.info-content p {
    font-family: var(--font-body);
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

/* Social Media */
.social-media {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.social-media h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 16px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F4F6;
    border-radius: 12px;
    color: #6B7280;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    color: white;
}

.social-link.facebook:hover {
    background: #1877F2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
}

.social-link.whatsapp:hover {
    background: #25D366;
}

.social-link.telegram:hover {
    background: #0088CC;
}

.social-link.tiktok:hover {
    background: #000000;
}

/* Map */
.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ============================================
   CONTACT RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .contact-content {
        gap: 32px;
    }

    .contact-form-wrapper {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 16px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        order: 2;
    }

    .contact-info-wrapper {
        order: 1;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .social-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 24px;
        border-radius: 16px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
    }

    .submit-btn {
        padding: 16px 24px;
        font-size: 16px;
    }

    .info-card {
        padding: 16px;
    }

    .info-icon {
        width: 44px;
        height: 44px;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }
}

/* ============================================
   MEDIA GALLERY SECTION - الوسائط
   ============================================ */
.media-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, var(--cream-white) 0%, var(--soft-mint) 50%, var(--cream-white) 100%);
    position: relative;
    overflow: hidden;
}

.media-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Media Header */
.media-header {
    text-align: center;
    margin-bottom: 48px;
}

.subtitle-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-gold));
    color: white;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(45, 125, 111, 0.3);
}

.subtitle-badge i {
    font-size: 1.1rem;
}

/* Media Tabs */
.media-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.media-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: white;
    border: 3px solid var(--soft-mint);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.media-tab i {
    font-size: 1.2rem;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.media-tab:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 125, 111, 0.15);
}

.media-tab.active {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-color: var(--primary-green);
    color: white;
}

.media-tab.active i {
    color: white;
}

/* Media Content */
.media-content {
    position: relative;
}

.media-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.media-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Grid - 5 columns, 2 rows */
.media-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Media Item */
.media-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.media-item-inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.media-item-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-gold) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.media-item:hover .media-item-inner::before {
    opacity: 0.2;
}

.media-item:hover .media-item-inner {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(45, 125, 111, 0.25);
}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.media-item:hover img {
    transform: scale(1.1);
}

/* Media Overlay */
.media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 16px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.media-item:hover .media-overlay {
    opacity: 1;
}

.media-item-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 8px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.media-item:hover .media-item-title {
    transform: translateY(0);
}

.media-zoom {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1rem;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s ease;
    opacity: 0;
}

.media-item:hover .media-zoom {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.media-zoom:hover {
    background: var(--secondary-gold);
    color: white;
    transform: scale(1.1) !important;
}

/* Video Overlay Specific */
.video-overlay {
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

.video-overlay .media-item-title {
    position: absolute;
    bottom: 16px;
    transform: translateY(0);
}

.play-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-gold), var(--bleft-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 6px 25px rgba(233, 168, 48, 0.5);
    transition: all 0.4s ease;
}

.play-btn i {
    margin-left: -3px;
}

.video-item:hover .play-btn {
    transform: scale(1.15);
    box-shadow: 0 10px 35px rgba(233, 168, 48, 0.6);
}

/* ============================================
   MEDIA GALLERY RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .media-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .media-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .media-tab {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .media-section {
        padding: 60px 16px;
    }

    .media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .media-tabs {
        gap: 12px;
    }

    .media-tab {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .media-section {
        padding: 50px 12px;
    }

    .media-grid {
        gap: 10px;
    }

    .media-tab {
        padding: 10px 18px;
        font-size: 0.9rem;
        gap: 6px;
    }

    .media-tab i {
        font-size: 1rem;
    }

    .media-item-title {
        font-size: 0.85rem;
    }

    .play-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .media-zoom {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.main-footer {
    position: relative;
    background: linear-gradient(135deg, #1a3a34 0%, #0d1f1c 100%);
    color: white;
    overflow: hidden;
}

/* Footer Container */
.footer-container {
    position: relative;
}

/* Footer Content */
.footer-content {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Grid - 4 Columns */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
    gap: 40px;
}

/* Footer Column */
.footer-column {
    padding: 0 10px;
}

/* Footer Logo Section */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: bleftness(1.1);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-company-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-gold);
}

.footer-company-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-social-link:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-gold);
}

.footer-social-link:nth-child(1):hover {
    background: #1877F2;
}

.footer-social-link:nth-child(2):hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
}

.footer-social-link:nth-child(3):hover {
    background: #25D366;
}

.footer-social-link:nth-child(4):hover {
    background: #0088CC;
}

.footer-social-link:nth-child(5):hover {
    background: #000;
}

/* Footer Titles */
.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-gold), transparent);
    border-radius: 3px;
}

.footer-title i {
    color: var(--secondary-gold);
    font-size: 1rem;
}

/* Footer Links List */
.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.footer-list a i {
    font-size: 0.7rem;
    color: var(--secondary-gold);
    transition: transform 0.3s ease;
}

.footer-list a:hover {
    color: var(--secondary-gold);
    padding-left: 10px;
}

.footer-list a:hover i {
    transform: translateX(-5px);
}

/* Footer Contact List */
.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-contact-list .contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.footer-contact-list .contact-text {
    flex: 1;
}

.footer-contact-list .contact-text span {
    display: block;
    font-size: 0.85rem;
    color: var(--secondary-gold);
    font-weight: 600;
    margin-bottom: 4px;
}

.footer-contact-list .contact-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

/* Footer Map */
.footer-map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.footer-map-container iframe {
    display: block;
    border-radius: 13px;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 24px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.copyright i {
    color: var(--secondary-gold);
}

.developer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.developer a {
    color: var(--secondary-gold);
    font-weight: 600;
    transition: all 0.3s ease;
}

.developer a:hover {
    color: var(--bleft-orange);
    text-decoration: underline;
}

/* ============================================
   FOOTER RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 32px;
    }

    .footer-map {
        grid-column: span 3;
    }

    .footer-map-container {
        max-width: 500px;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-about {
        grid-column: span 2;
    }

    .footer-map {
        grid-column: span 2;
    }

    .footer-content {
        padding: 100px 24px 50px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-about,
    .footer-map {
        grid-column: span 1;
    }

    .footer-content {
        padding: 90px 20px 40px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-description {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-title {
        justify-content: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(50%);
    }

    .footer-list {
        text-align: center;
    }

    .footer-list a {
        justify-content: center;
    }

    .footer-contact-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-map-container {
        max-width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

}

@media (max-width: 480px) {
    .footer-content {
        padding: 70px 16px 32px;
    }

    .footer-logo img {
        width: 55px;
        height: 55px;
    }

    .footer-company-name {
        font-size: 1.3rem;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-bottom {
        padding: 20px 16px;
    }

    .copyright,
    .developer {
        font-size: 0.8rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}



/* ============================================
   LTR (Left-to-Right) Overrides
   For English Version
   ============================================ */

/* Body Direction */
.ltr-mode {
    direction: ltr;
    text-align: left;
}

/* Font Family Override for English */
.ltr-mode {
    font-family: 'Outfit', 'Poppins', sans-serif;
}

.ltr-mode h1,
.ltr-mode h2,
.ltr-mode h3,
.ltr-mode h4,
.ltr-mode h5,
.ltr-mode h6,
.ltr-mode .title,
.ltr-mode .hero-title,
.ltr-mode .feature-card-title,
.ltr-mode .product-name,
.ltr-mode .footer-title {
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   HEADER LTR
   ============================================ */
.ltr-mode .header-container {
    flex-direction: row;
}

.ltr-mode .logo-container {
    flex-direction: row;
}

.ltr-mode .logo-text {
    text-align: left;
}

.ltr-mode .nav-link {
    flex-direction: row;
}

.ltr-mode .dropdown {
    left: 0;
    right: auto;
}

.ltr-mode .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ltr-mode .lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--soft-mint);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.ltr-mode .lang-switch:hover {
    background: var(--primary-green);
    color: white;
}

/* ============================================
   MOBILE NAVIGATION LTR
   ============================================ */
.ltr-mode .mobile-nav {
    right: auto;
    left: -100%;
}

.ltr-mode .mobile-nav.active {
    left: 0;
    right: auto;
}

.ltr-mode .mobile-nav-item {
    transform: translateX(-50px);
}

.ltr-mode .mobile-nav.active .mobile-nav-item {
    transform: translateX(0);
}

.ltr-mode .mobile-nav-link {
    flex-direction: row;
}

.ltr-mode .submenu-arrow {
    margin-left: auto;
    margin-right: 0;
}

.ltr-mode .mobile-submenu {
    padding-left: var(--spacing-xl);
    padding-right: 0;
}

.ltr-mode .mobile-submenu li {
    border-left: 3px solid var(--secondary-gold);
    border-right: none;
}

.ltr-mode .mobile-submenu a {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.ltr-mode .mobile-submenu a:hover {
    padding-left: 28px;
    padding-right: 20px;
}

/* ============================================
   HERO SECTION LTR
   ============================================ */
.ltr-mode .hero-container {
    flex-direction: row;
}

.ltr-mode .hero-content {
    text-align: left;
}

.ltr-mode .hero-badge {
    margin-left: 0;
    margin-right: auto;
}

.ltr-mode .hero-buttons {
    justify-content: flex-start;
}

/* ============================================
   WHY CHOOSE US LTR
   ============================================ */
.ltr-mode .wcu-container {
    flex-direction: row;
}

.ltr-mode .wcu-feature-card {
    flex-direction: row;
}

.ltr-mode .feature-card-content {
    text-align: left;
}

/* ============================================
   PRODUCTS SECTION LTR
   ============================================ */
.ltr-mode .product-card {
    text-align: left;
}

.ltr-mode .product-btn i {
    transform: rotate(0deg);
}

.ltr-mode .swiper-button-prev {
    left: 10px;
    right: auto;
}

.ltr-mode .swiper-button-next {
    right: 10px;
    left: auto;
}

.ltr-mode .swiper-button-prev i,
.ltr-mode .swiper-button-next i {
    transform: rotate(0deg);
}

.ltr-mode .view-all-link i {
    transform: rotate(0deg);
}

.ltr-mode .view-all-link:hover i {
    transform: translateX(8px);
}

/* ============================================
   TESTIMONIALS LTR
   ============================================ */
.ltr-mode .testimonial-card {
    text-align: left;
}

.ltr-mode .speech-triangle,
.ltr-mode .speech-triangle-inner {
    left: 30px;
    right: auto;
}

.ltr-mode .testimonial-author {
    flex-direction: row;
}

/* ============================================
   CONTACT SECTION LTR
   ============================================ */
.ltr-mode .contact-content {
    flex-direction: row;
}

.ltr-mode .form-group label {
    text-align: left;
}

.ltr-mode .submit-btn {
    flex-direction: row;
}

.ltr-mode .info-card {
    flex-direction: row;
    text-align: left;
}

/* ============================================
   MEDIA SECTION LTR
   ============================================ */
.ltr-mode .media-header {
    text-align: center;
}

/* ============================================
   FOOTER LTR
   ============================================ */
.ltr-mode .footer-grid {
    direction: ltr;
}

.ltr-mode .footer-logo {
    flex-direction: row;
}

.ltr-mode .footer-logo-text {
    text-align: left;
}

.ltr-mode .footer-description {
    text-align: left;
}

.ltr-mode .footer-title {
    flex-direction: row;
}

.ltr-mode .footer-title::after {
    left: 0;
    right: auto;
    background: linear-gradient(90deg, transparent, var(--secondary-gold));
}

.ltr-mode .footer-list a {
    flex-direction: row;
}

.ltr-mode .footer-list a i {
    transform: rotate(0deg);
}

.ltr-mode .footer-list a:hover {
    padding-left: 10px;
    padding-right: 0;
}

.ltr-mode .footer-list a:hover i {
    transform: translateX(5px);
}

.ltr-mode .footer-contact-list li {
    flex-direction: row;
}

.ltr-mode .footer-contact-list .contact-text {
    text-align: left;
}

/* ============================================
   ANIMATIONS LTR
   ============================================ */
@media (min-width: 769px) {
    .ltr-mode .fade-left {
        transform: translateX(-60px);
    }

    .ltr-mode .fade-right {
        transform: translateX(60px);
    }
}

/* ============================================
   RESPONSIVE LTR
   ============================================ */
@media (max-width: 768px) {
    .ltr-mode .hero-content {
        text-align: center;
    }

    .ltr-mode .hero-badge {
        margin: 0 auto;
    }

    .ltr-mode .hero-buttons {
        justify-content: center;
    }

    .ltr-mode .wcu-header,
    .ltr-mode .products-header,
    .ltr-mode .contact-header {
        text-align: center;
    }

    .ltr-mode .feature-card-content {
        text-align: center;
    }

    .ltr-mode .footer-logo {
        justify-content: center;
    }

    .ltr-mode .footer-description {
        text-align: center;
    }

    .ltr-mode .footer-title {
        justify-content: center;
    }

    .ltr-mode .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .ltr-mode .footer-list {
        text-align: center;
    }

    .ltr-mode .footer-list a {
        justify-content: center;
    }

    .ltr-mode .footer-contact-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ltr-mode .footer-contact-list .contact-text {
        text-align: center;
    }

    .ltr-mode .speech-triangle,
    .ltr-mode .speech-triangle-inner {
        left: calc(50vw - 50px);
        right: auto;
    }
}

@media (max-width: 992px) {
    .ltr-mode .lang-switch span {
        display: none;
    }

    .ltr-mode .lang-switch {
        padding: 10px;
    }
}
