/* ===== Barakah Landing Page - Light Luxury Honey Theme ===== */
/* Inspired by Golden Hive Honey Figma Design */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Tajawal:wght@300;400;500;700;800;900&family=Almarai:wght@300;400;700;800&display=swap');


:root {
    /* ===== Light Honey Color Palette ===== */

    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #FFF8F0;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FFF5EB;
    --bg-overlay: rgba(255, 255, 255, 0.9);

    /* Orange Accent Colors */
    --gold-primary: #F97316;
    --gold-light: #FB923C;
    --gold-dark: #EA580C;
    --gold-vibrant: #FF8C00;
    --gold-muted: #C2410C;
    --gold-soft: rgba(249, 115, 22, 0.1);

    /* Honey/Amber Tones */
    --amber: #F59E0B;
    --amber-light: #FBBF24;
    --honey: #D97706;

    /* Text Colors */
    --text-primary: #1F2937;
    --text-secondary: #4B5563;
    --text-muted: #9CA3AF;
    --text-gold: #EA580C;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
    --gradient-gold-hover: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-vibrant) 50%, var(--gold-light) 100%);
    --gradient-dark: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 240, 0.98) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.8) 100%);

    /* Borders */
    --border-gold: 1px solid rgba(249, 115, 22, 0.3);
    --border-gold-strong: 2px solid var(--gold-primary);
    --border-subtle: 1px solid rgba(0, 0, 0, 0.08);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 4px 20px rgba(249, 115, 22, 0.15);
    --shadow-gold-strong: 0 8px 30px rgba(249, 115, 22, 0.25);
    --glow-gold: 0 0 20px rgba(249, 115, 22, 0.2);

    /* Hexagon Clip Path */
    --hex-clip: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    direction: rtl;
    text-align: right;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ===== Font Awesome Icon Styling ===== */
.fas,
.fab,
.far {
    color: var(--gold-primary);
}

.feature-icon i,
.benefit-icon i,
.ingredient-icon i,
.contact-icon i {
    color: #FFFFFF;
    font-size: 1.5rem;
}

.logo-icon i {
    color: #FFFFFF;
    font-size: 1.3rem;
}

.badge i {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.hero-feature-icon i {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.btn i {
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--gold-primary);
    margin-left: 6px;
    font-size: 0.85rem;
}

.footer-links li i {
    color: var(--gold-primary);
    margin-left: 8px;
    font-size: 0.8rem;
}

.testimonial-stars i {
    color: var(--gold-primary);
}

.author-avatar i {
    color: #FFFFFF;
    font-size: 1.2rem;
}

.play-button i {
    color: #FFFFFF;
    font-size: 1.6rem;
    margin-right: -4px;
}

.modal-icon i {
    color: #FFFFFF;
    font-size: 2rem;
}

.social-link i {
    color: var(--text-secondary);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.social-link:hover i {
    color: #FFFFFF;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Decorative Hexagon Background ===== */
.hex-bg {
    position: absolute;
    opacity: 0.03;
    pointer-events: none;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: var(--border-subtle);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    width: 50px;
    height: 55px;
    background: var(--gradient-gold);
    clip-path: var(--hex-clip);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: var(--glow-gold);
    transition: var(--transition-normal);
}

.logo:hover .logo-icon {
    box-shadow: var(--shadow-gold-strong);
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold-primary);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: var(--transition-normal);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-normal);
}

.nav-links a:hover {
    color: var(--gold-primary);
}

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

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

.lang-toggle {
    display: none;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-normal);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 80px;
    overflow: hidden;
    background: var(--bg-primary);
}

/* Honeycomb Pattern Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(249, 115, 22, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-soft);
    border: var(--border-gold);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 1.1rem;
}

.hero-title {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-title .highlight {
    color: var(--gold-primary);
    display: block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.9;
    max-width: 500px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.hero-feature-icon {
    width: 40px;
    height: 44px;
    background: var(--gold-soft);
    border: var(--border-gold);
    clip-path: var(--hex-clip);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.hero-feature:hover .hero-feature-icon {
    background: var(--gradient-gold);
    box-shadow: var(--glow-gold);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 30px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #FFFFFF;
    box-shadow: var(--glow-gold);
}

.btn-primary:hover {
    background: var(--gradient-gold-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    border: var(--border-gold-strong);
}

.btn-secondary:hover {
    background: var(--gold-soft);
    transform: translateY(-3px);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
    filter: blur(30px);
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

.product-image {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    clip-path: var(--hex-clip);
    animation: float-around 12s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 50px;
    height: 55px;
    background: var(--gradient-gold);
    top: 5%;
    left: 5%;
    opacity: 0.6;
}

.floating-element:nth-child(2) {
    width: 35px;
    height: 38px;
    background: var(--gold-muted);
    bottom: 15%;
    right: 0%;
    animation-delay: 2s;
    opacity: 0.5;
}

.floating-element:nth-child(3) {
    width: 25px;
    height: 28px;
    background: var(--gold-primary);
    top: 55%;
    left: -5%;
    animation-delay: 4s;
    opacity: 0.4;
}

@keyframes float-around {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(10px, -15px) rotate(90deg);
    }

    50% {
        transform: translate(0, -25px) rotate(180deg);
    }

    75% {
        transform: translate(-10px, -10px) rotate(270deg);
    }
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
    position: relative;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-badge::before,
.section-badge::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold-primary);
}

.section-title {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-title .highlight {
    color: var(--gold-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== Features Section - Honeycomb Style ===== */
.features {
    background: var(--bg-secondary);
    padding: 100px 0;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    row-gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Honeycomb Card - Light Theme */
.feature-card {
    width: 200px;
    height: 220px;
    background: linear-gradient(145deg, #FFFFFF 0%, #FFF8F0 100%);
    border: 2px solid rgba(249, 115, 22, 0.3);
    clip-path: var(--hex-clip);
    padding: 35px 20px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Honeycomb offset for alternating rows */
.feature-card:nth-child(4),
.feature-card:nth-child(5),
.feature-card:nth-child(6) {
    margin-top: -40px;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(145deg, #FFFFFF 0%, #FFF8F0 100%);
    clip-path: var(--hex-clip);
    z-index: -1;
}

.feature-card:hover {
    transform: scale(1.08);
    border-color: var(--gold-light);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.2);
    background: linear-gradient(145deg, rgba(249, 115, 22, 0.08) 0%, #FFFFFF 100%);
}

.feature-icon {
    width: 55px;
    height: 60px;
    background: var(--gradient-gold);
    clip-path: var(--hex-clip);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 1.4rem;
    transition: var(--transition-normal);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.5);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 0 25px rgba(249, 115, 22, 0.7);
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1F2937;
    line-height: 1.3;
}

.feature-description {
    color: #4B5563;
    font-size: 0.8rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== Benefits Section ===== */
.benefits {
    background: var(--bg-primary);
    position: relative;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-image {
    position: relative;
}

.benefits-image img {
    border-radius: var(--radius-lg);
    border: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

/* Benefits Video Styling */
.benefits-video {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    border: var(--border-gold);
    box-shadow: var(--shadow-gold);
    object-fit: cover;
    max-height: 500px;
    filter: brightness(0.95) saturate(1.1);
    transition: filter 0.5s ease, box-shadow 0.3s ease;
}

.benefits-video:hover {
    filter: brightness(1) saturate(1.2);
    box-shadow: var(--shadow-gold-strong);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.benefit-item:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateX(-8px);
    box-shadow: var(--shadow-gold);
}

.benefit-icon {
    width: 56px;
    height: 62px;
    min-width: 56px;
    background: var(--gradient-gold);
    clip-path: var(--hex-clip);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.benefit-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.benefit-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Ingredients Section - Honeycomb Style ===== */
.ingredients {
    background: var(--bg-secondary);
    padding: 100px 0;
}

.ingredients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    row-gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Ingredient Honeycomb Card */
.ingredient-card {
    width: 160px;
    height: 176px;
    background: linear-gradient(145deg, #FFFFFF 0%, #FFF8F0 100%);
    border: 2px solid rgba(249, 115, 22, 0.3);
    clip-path: var(--hex-clip);
    padding: 25px 15px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Honeycomb offset for alternating rows */
.ingredient-card:nth-child(5),
.ingredient-card:nth-child(6),
.ingredient-card:nth-child(7),
.ingredient-card:nth-child(8) {
    margin-top: -30px;
}

.ingredient-card::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(145deg, #FFFFFF 0%, #FFF8F0 100%);
    clip-path: var(--hex-clip);
    z-index: -1;
}

.ingredient-card:hover {
    transform: scale(1.08);
    border-color: var(--gold-light);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.2);
    background: linear-gradient(145deg, rgba(249, 115, 22, 0.08) 0%, #FFFFFF 100%);
}

.ingredient-icon {
    width: 50px;
    height: 55px;
    background: var(--gradient-gold);
    clip-path: var(--hex-clip);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 1.3rem;
    transition: var(--transition-normal);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.5);
}

.ingredient-card:hover .ingredient-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 0 25px rgba(249, 115, 22, 0.7);
}

.ingredient-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1F2937;
}

/* ===== Gallery Section - Hexagonal Honeycomb Style ===== */
.gallery-section {
    background: var(--bg-primary);
    padding: 100px 0;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    row-gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Hexagonal Gallery Item */
.gallery-item {
    width: 180px;
    height: 198px;
    position: relative;
    overflow: hidden;
    clip-path: var(--hex-clip);
    border: none;
    transition: var(--transition-normal);
    cursor: pointer;
}

/* Featured Large Image - Bigger Hexagon */
.gallery-item.gallery-featured {
    width: 320px;
    height: 352px;
}

/* Honeycomb offset for alternating items */
.gallery-item:nth-child(5),
.gallery-item:nth-child(6),
.gallery-item:nth-child(7),
.gallery-item:nth-child(8),
.gallery-item:nth-child(9) {
    margin-top: -35px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

/* Golden Border Effect using pseudo-element */
.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(249, 115, 22, 0.4) 0%, rgba(249, 115, 22, 0.1) 100%);
    clip-path: var(--hex-clip);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--bg-primary);
    clip-path: var(--hex-clip);
    z-index: -1;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 2;
}

.gallery-overlay i {
    width: 50px;
    height: 55px;
    background: var(--gradient-gold);
    clip-path: var(--hex-clip);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.2rem;
    transform: scale(0.8);
    transition: var(--transition-normal);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
}

.gallery-item:hover {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.5);
    z-index: 10;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ===== Video Section - Horizontal Layout ===== */
.video-section {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.video-section .section-header {
    margin-bottom: 40px;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(249, 115, 22, 0.4);
    box-shadow: var(--shadow-gold);
    max-width: 500px;
}

.video-wrapper video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.4);
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 70px;
    height: 77px;
    background: var(--gradient-gold);
    clip-path: var(--hex-clip);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FFFFFF;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-normal);
}

.play-button:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-gold-strong);
}

/* Video Info Side */
.video-info {
    text-align: right;
}

.video-info h3 {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.video-info h3 .highlight {
    color: var(--gold-primary);
}

.video-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.video-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.video-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.video-feature i {
    width: 36px;
    height: 40px;
    background: var(--gradient-gold);
    clip-path: var(--hex-clip);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 0.9rem;
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition-normal);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: rgba(249, 115, 22, 0.15);
    line-height: 1;
}

.testimonial-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--glow-gold);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 50px;
    height: 55px;
    background: var(--gradient-gold);
    clip-path: var(--hex-clip);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
}

.author-info h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== Contact Section ===== */
.contact {
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    padding: 40px;
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
}

.contact-info h3 {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.contact-info>p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(249, 115, 22, 0.05);
    border: var(--border-gold);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.contact-item:hover {
    background: rgba(249, 115, 22, 0.1);
    box-shadow: var(--glow-gold);
}

.contact-icon {
    width: 48px;
    height: 53px;
    background: var(--gradient-gold);
    clip-path: var(--hex-clip);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-item div:last-child strong {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.contact-item div:last-child span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
}

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

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

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

.form-control {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control.error {
    border-color: #e74c3c;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 8px;
}

.form-submit .btn {
    width: 100%;
    padding: 18px 40px;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-primary);
    border-top: var(--border-subtle);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 20px 0 28px;
    max-width: 320px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 48px;
    background: var(--bg-card);
    border: var(--border-subtle);
    clip-path: var(--hex-clip);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--gradient-gold);
    color: #FFFFFF;
    box-shadow: var(--glow-gold);
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--gold-primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a,
.footer-links span {
    color: var(--text-secondary);
    transition: var(--transition-normal);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-right: 8px;
}

/* Footer Gallery */
.footer-gallery h4 {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.footer-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.footer-images img {
    width: 100%;
    height: 55px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: var(--border-gold);
    transition: var(--transition-normal);
    cursor: pointer;
}

.footer-images img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slower);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition-slower);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-slower);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: var(--transition-slower);
}

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

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

.stagger-7 {
    transition-delay: 0.7s;
}

.stagger-8 {
    transition-delay: 0.8s;
}

/* ===== Modal ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-card);
    border: var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    max-width: 420px;
    transform: scale(0.85);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-gold);
}

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

.modal-icon {
    width: 90px;
    height: 100px;
    background: var(--gradient-gold);
    clip-path: var(--hex-clip);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
}

.modal h3 {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.modal p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
}

/* ===== Loader ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    padding: 20px;
}

.loader-spinner {
    width: 60px;
    height: 66px;
    background: var(--gradient-gold);
    clip-path: var(--hex-clip);
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: hex-spin 1.5s ease-in-out infinite;
    -webkit-animation: hex-spin 1.5s ease-in-out infinite;
    margin: 0 auto 24px;
    box-shadow: var(--glow-gold);
}

@keyframes hex-spin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(0.9);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

@-webkit-keyframes hex-spin {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
    }

    50% {
        -webkit-transform: rotate(180deg) scale(0.9);
    }

    100% {
        -webkit-transform: rotate(360deg) scale(1);
    }
}

.loader-text {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 0;
    }

    .hero-subtitle {
        margin: 0 auto 36px;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .benefit-item:hover {
        transform: translateY(-5px);
    }

    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-header {
        margin-bottom: 30px;
    }

    /* Features - 3 per row, compact style on mobile */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        row-gap: 15px;
    }

    .feature-card {
        width: 100%;
        height: auto;
        min-height: 90px;
        clip-path: none;
        border-radius: 12px;
        padding: 12px 8px;
        border: 1px solid rgba(249, 115, 22, 0.2);
    }

    .feature-card:nth-child(n) {
        margin-top: 0;
    }

    .feature-card::before {
        clip-path: none;
        border-radius: 12px;
    }

    .feature-icon {
        width: 40px;
        height: 44px;
        margin-bottom: 8px;
        font-size: 1rem;
    }

    .feature-title {
        font-size: 0.75rem;
        font-weight: 700;
    }

    .feature-description {
        display: none;
    }

    /* Ingredients - 3 per row compact */
    .ingredients-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        row-gap: 15px;
    }

    .ingredient-card {
        width: 100%;
        height: auto;
        min-height: 80px;
        clip-path: none;
        border-radius: 12px;
        padding: 10px 6px;
        border: 1px solid rgba(249, 115, 22, 0.2);
    }

    .ingredient-card:nth-child(n) {
        margin-top: 0;
    }

    .ingredient-card::before {
        clip-path: none;
        border-radius: 12px;
    }

    .ingredient-icon {
        width: 36px;
        height: 40px;
        margin-bottom: 6px;
        font-size: 1rem;
    }

    .ingredient-name {
        font-size: 0.7rem;
    }

    /* Testimonials - 1 per row but compact */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    /* Gallery - 3 per row on mobile */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        row-gap: 8px;
    }

    .gallery-item {
        width: 100%;
        height: 100px;
        max-width: none;
        margin: 0;
        clip-path: none;
        border-radius: 8px;
    }

    .gallery-item.gallery-featured {
        width: 100%;
        height: 100px;
        max-width: none;
        margin: 0;
        grid-column: span 1;
    }

    .gallery-item:nth-child(n) {
        margin-top: 0;
    }

    .gallery-item::after {
        clip-path: none;
        border-radius: 8px;
    }

    .video-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-wrapper {
        max-width: 100%;
    }

    .video-info h3 {
        font-size: 1.4rem;
    }

    .video-info p {
        font-size: 0.95rem;
    }

    /* Benefits compact */
    .benefits-content {
        gap: 30px;
    }

    .benefit-item {
        padding: 16px;
        gap: 12px;
    }

    .benefit-icon {
        width: 45px;
        height: 50px;
        min-width: 45px;
    }

    .benefit-content h4 {
        font-size: 1rem;
    }

    .benefit-content p {
        font-size: 0.85rem;
    }

    /* Contact compact */
    .contact-content {
        gap: 20px;
    }

    .contact-info,
    .contact-form {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer compact */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .social-links {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .btn {
        width: 100%;
        padding: 14px 24px;
    }

    section {
        padding: 50px 0;
    }

    /* Hero features compact */
    .hero-features {
        gap: 12px;
        margin-bottom: 25px;
    }

    .hero-feature {
        font-size: 0.85rem;
    }

    .hero-feature-icon {
        width: 32px;
        height: 35px;
    }

    .product-image-wrapper {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 12px;
    }

    section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Feature cards even more compact */
    .feature-card {
        min-height: 80px;
        padding: 10px 6px;
    }

    .feature-icon {
        width: 35px;
        height: 38px;
    }

    .feature-title {
        font-size: 0.7rem;
    }

    /* Ingredients even more compact */
    .ingredient-card {
        min-height: 70px;
        padding: 8px 5px;
    }

    .ingredient-icon {
        width: 32px;
        height: 35px;
    }

    .ingredient-name {
        font-size: 0.65rem;
    }

    /* Gallery smaller */
    .gallery-item,
    .gallery-item.gallery-featured {
        height: 80px;
    }

    /* Contact compact */
    .contact-form,
    .contact-info {
        padding: 20px;
    }

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

    .form-control {
        padding: 12px 14px;
    }

    /* Benefits compact */
    .benefit-item {
        padding: 14px;
    }

    .benefit-icon {
        width: 40px;
        height: 44px;
        min-width: 40px;
    }

    .product-image-wrapper {
        max-width: 200px;
    }

    /* Hero compact */
    .hero {
        padding-top: 70px;
        padding-bottom: 30px;
    }

    .badge {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .hero-features {
        gap: 8px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Testimonials compact */
    .testimonial-card {
        padding: 16px;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }

    /* Mobile Loader Improvements */
    .loader-spinner {
        width: 45px;
        height: 50px;
        margin-bottom: 16px;
    }

    .loader-text {
        font-size: 0.9rem;
    }

    .loader-content {
        padding: 16px;
    }
}

/* ===== Additional Animation Effects ===== */

/* Pulse Animation for CTA Buttons */
.btn-pulse {
    animation: btn-pulse 2s infinite;
}

@keyframes btn-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.6);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(249, 115, 22, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

/* Heart Beat Animation */
.heart-beat {
    display: inline-block;
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.2);
    }

    45% {
        transform: scale(1);
    }

    60% {
        transform: scale(1.15);
    }
}

/* Particles Background */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: particle-float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 25%;
    top: 60%;
    animation-delay: 2s;
    animation-duration: 18s;
    width: 6px;
    height: 6px;
}

.particle:nth-child(3) {
    left: 70%;
    top: 30%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.particle:nth-child(4) {
    left: 85%;
    top: 70%;
    animation-delay: 6s;
    animation-duration: 16s;
    width: 5px;
    height: 5px;
}

.particle:nth-child(5) {
    left: 50%;
    top: 80%;
    animation-delay: 8s;
    animation-duration: 20s;
}

@keyframes particle-float {

    0%,
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-60px) translateX(-10px) rotate(180deg);
        opacity: 0.3;
    }

    75% {
        transform: translateY(-30px) translateX(-30px) rotate(270deg);
        opacity: 0.6;
    }
}

/* Shimmer Effect */
.shimmer {
    position: relative;
    overflow: hidden;
}

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

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

    100% {
        left: 100%;
    }
}

/* Benefits Image Animation */
.benefits-img-animate {
    animation: gentle-float 4s ease-in-out infinite;
}

@keyframes gentle-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Feature Card Hover Glow */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.5s ease;
    background: radial-gradient(circle at center, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.feature-card:hover::after {
    opacity: 1;
}

/* Icon Bounce on Hover */
.feature-icon:hover i,
.benefit-icon:hover i,
.ingredient-icon:hover i {
    animation: icon-bounce 0.5s ease;
}

@keyframes icon-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-3px);
    }
}

/* Section Badge Glow */
.section-badge {
    position: relative;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 100%;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 30px;
    transition: width 0.4s ease;
    z-index: -1;
}

.section-badge:hover::before {
    width: calc(100% + 20px);
}

/* Testimonial Quote Animation */
.testimonial-card:hover::before {
    transform: scale(1.1);
    opacity: 0.25;
}

.testimonial-card::before {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Social Link Rotation */
.social-link:hover {
    animation: social-pop 0.3s ease;
}

@keyframes social-pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2) rotate(10deg);
    }

    100% {
        transform: scale(1);
    }
}

/* Form Input Focus Animation */
.form-control:focus {
    animation: input-glow 0.5s ease forwards;
}

@keyframes input-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }

    100% {
        box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
    }
}

/* Typing Indicator Animation */
.typing-indicator {
    display: inline-flex;
    gap: 4px;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: typing-bounce 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-bounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-8px);
    }
}

/* Gradient Text Animation */
.animate-gradient-text {
    background: linear-gradient(90deg,
            var(--gold-dark),
            var(--gold-vibrant),
            var(--gold-dark));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-text 3s linear infinite;
}

@keyframes gradient-text {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

