* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
    background-color: #070605;
    color: #faf7de;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(7, 6, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #b7913c;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(7, 6, 5, 0.98);
    box-shadow: 0 2px 20px rgba(183, 145, 60, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    flex-wrap: nowrap;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #b7913c;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(183, 145, 60, 0.3));
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.1);
}

.brand-icon {
    font-size: 2rem;
    display: none; /* Hide emoji icon when logo is present */
}

.brand-text {
    background: linear-gradient(45deg, #b7913c, #faf7de);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
    flex-shrink: 0;
}

.nav-link {
    color: #faf7de;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 12px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    display: block;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #b7913c, #faf7de);
    transition: right 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    right: 0;
}

.nav-link:hover {
    color: #070605;
    transform: translateY(-2px);
}

.nav-cta {
    background: linear-gradient(45deg, #b7913c, #faf7de);
    color: #070605 !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(183, 145, 60, 0.4);
    font-size: 0.9rem;
    padding: 10px 15px;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(183, 145, 60, 0.6);
}

.nav-cta::before {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    flex-shrink: 0;
}

.bar {
    width: 25px;
    height: 3px;
    background: #b7913c;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(7,6,5,0.85) 0%, rgba(183,145,60,0.3) 50%, rgba(7,6,5,0.75) 100%), 
                url('lahsa1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(183,145,60,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(250,247,222,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 160px);
}

.hero-content {
    animation: fadeInRight 1.2s ease-out;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120%;
    height: 120%;
    background: rgba(183,145,60,0.05);
    border-radius: 30px;
    z-index: -1;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #b7913c;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    line-height: 1.2;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #b7913c, #faf7de);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #faf7de;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    line-height: 1.3;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    color: #faf7de;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    line-height: 1.6;
    max-width: 500px;
}

.cta-btn {
    background: linear-gradient(135deg, #b7913c 0%, #faf7de 100%);
    color: #070605;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(183, 145, 60, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #faf7de 0%, #b7913c 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-btn:hover::before {
    left: 0;
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(183, 145, 60, 0.6),
        0 8px 25px rgba(0, 0, 0, 0.3);
    color: #070605;
}

.hero-image {
    text-align: center;
    animation: fadeInLeft 1.2s ease-out;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: 
        radial-gradient(circle, rgba(183,145,60,0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 
        0 20px 50px rgba(183, 145, 60, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 20px rgba(183,145,60,0.3));
}

.product-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 
        0 25px 60px rgba(183, 145, 60, 0.5),
        0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Floating elements for visual interest */
.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: rgba(183,145,60,0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

/* Product Description Section */
.product-description {
    padding: 100px 0;
    background: linear-gradient(135deg, #070605 0%, #0a0908 50%, #070605 100%);
    position: relative;
    overflow: hidden;
}

.product-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(183,145,60,0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(250,247,222,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.product-description::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('decoration2.png') left center / 400px auto no-repeat,
        url('decoration2.png') right center / 400px auto no-repeat;
    transform: translateY(-50%);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.product-content {
    animation: fadeInRight 1s ease-out;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #b7913c, #faf7de);
    color: #070605;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #b7913c;
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
}

.product-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #b7913c, #faf7de);
    border-radius: 2px;
}

.product-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: #faf7de;
    margin-bottom: 40px;
    line-height: 1.4;
    opacity: 0.9;
}

.product-features {
    margin-bottom: 40px;
}

.feature-highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(183,145,60,0.05);
    border-radius: 15px;
    border-left: 4px solid #b7913c;
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(183,145,60,0.1);
    transform: translateX(-5px);
}

.feature-icon {
    font-size: 1.8rem;
    background: linear-gradient(45deg, #b7913c, #faf7de);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h4 {
    color: #b7913c;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.feature-text p {
    color: #faf7de;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.product-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    padding: 25px 0;
    border-top: 2px solid rgba(183,145,60,0.2);
    border-bottom: 2px solid rgba(183,145,60,0.2);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #b7913c;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #faf7de;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.product-description-text {
    margin-bottom: 40px;
}

.product-description-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #faf7de;
    opacity: 0.9;
}

.product-cta-btn {
    background: linear-gradient(135deg, #b7913c 0%, #faf7de 100%);
    color: #070605;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(183, 145, 60, 0.4);
}

.product-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(183, 145, 60, 0.6);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.product-cta-btn:hover .btn-arrow {
    transform: translateX(-5px);
}

.product-visual {
    position: relative;
    animation: fadeInLeft 1s ease-out;
}

.product-image-container {
    position: relative;
    text-align: center;
}

.product-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.main-product {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 30px;
    box-shadow: 
        0 30px 60px rgba(183, 145, 60, 0.5),
        0 20px 40px rgba(0, 0, 0, 0.4);
    animation: productPulse 3s ease-in-out infinite;
    border: 6px solid #b7913c;
    background: #faf7de;
    padding: 15px;
}

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(183,145,60,0.3) 0%, transparent 70%);
    border-radius: 30px;
    z-index: -1;
    animation: glowPulse 2s ease-in-out infinite alternate;
}

.product-label {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #b7913c, #faf7de);
    color: #070605;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(183, 145, 60, 0.5);
}

.main-product-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 25px 60px rgba(183, 145, 60, 0.3),
        0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.main-product-image:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 
        0 30px 70px rgba(183, 145, 60, 0.4),
        0 20px 50px rgba(0, 0, 0, 0.3);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(183,145,60,0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    background: linear-gradient(45deg, #b7913c, #faf7de);
    color: #070605;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(183, 145, 60, 0.4);
    animation: float 4s ease-in-out infinite;
}

.floating-badge-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.floating-badge-2 {
    top: 60%;
    left: 5%;
    animation-delay: 1.5s;
}

.floating-badge-3 {
    bottom: 20%;
    right: 15%;
    animation-delay: 3s;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .product-content {
        order: 2;
    }
    
    .product-visual {
        order: 1;
    }
    
    .product-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-highlight {
        text-align: right;
    }
    
    .floating-badge {
        display: none;
    }

    .product-container {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .product-description {
        padding: 60px 0;
    }
    
    .product-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .product-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #b7913c;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #b7913c, #faf7de);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #0a0908;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: #1a1918;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: #b7913c;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(183, 145, 60, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #b7913c;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Enhanced Benefits Section */
.benefits {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0908 0%, #070605 50%, #0a0908 100%);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(183,145,60,0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(250,247,222,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.benefits-content {
    animation: fadeInRight 1s ease-out;
}

.benefits-content .section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #b7913c, #faf7de);
    color: #070605;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefits-content .section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #b7913c;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: right;
}

.benefits-content .section-title::after {
    right: 0;
    width: 80px;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #faf7de;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0;
}

.benefits-visual {
    position: relative;
    animation: fadeInLeft 1s ease-out;
}

.benefits-image-container {
    position: relative;
    text-align: center;
}

.benefits-image {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 
        0 25px 60px rgba(183, 145, 60, 0.3),
        0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.benefits-image:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 
        0 30px 70px rgba(183, 145, 60, 0.4),
        0 20px 50px rgba(0, 0, 0, 0.3);
}

.image-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: 
        conic-gradient(from 0deg, transparent, rgba(183,145,60,0.2), transparent);
    border-radius: 50%;
    z-index: 1;
    animation: rotate 10s linear infinite;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-item.enhanced {
    background: linear-gradient(135deg, #1a1918 0%, #2a2928 100%);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid rgba(183,145,60,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-item.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(183,145,60,0.1), transparent);
    transition: left 0.6s ease;
}

.benefit-item.enhanced:hover::before {
    left: 100%;
}

.benefit-item.enhanced:hover {
    border-color: #b7913c;
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(183, 145, 60, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    margin-bottom: 20px;
}

.icon-bg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #b7913c, #faf7de);
    border-radius: 50%;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(183, 145, 60, 0.4);
    transition: all 0.3s ease;
}

.benefit-item.enhanced:hover .icon-bg {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(183, 145, 60, 0.6);
}

.benefit-content h3 {
    color: #b7913c;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-content p {
    color: #faf7de;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.benefit-highlight {
    display: inline-block;
    background: rgba(183,145,60,0.2);
    color: #b7913c;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(183,145,60,0.3);
}

.benefits-cta {
    text-align: center;
    margin-top: 40px;
}

.benefits-btn {
    background: linear-gradient(135deg, #b7913c 0%, #faf7de 100%);
    color: #070605;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(183, 145, 60, 0.4);
}

.benefits-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(183, 145, 60, 0.6);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.benefits-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Animations */
@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .benefits-header {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .benefits-content .section-title {
        text-align: center;
    }
    
    .benefits-content .section-title::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item.enhanced {
        padding: 25px;
    }
    
    .benefits-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Ingredients Section */
.ingredients {
    padding: 120px 0;
    background: linear-gradient(135deg, #070605 0%, #0a0908 50%, #070605 100%);
    position: relative;
    overflow: hidden;
}

.ingredients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(183,145,60,0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(250,247,222,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.ingredients-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.ingredients-header .section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #b7913c, #faf7de);
    color: #070605;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ingredients-header .section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #faf7de;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Fixed Showcase Layout - Updated for 6 components */
.ingredients-showcase {
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: repeat(8, 80px);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 60px;
    position: relative;
}

/* Central Product - Fixed Position */
.central-product {
    grid-column: 6 / 10;
    grid-row: 3 / 7;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Component Positioning - Professional 6-component layout */
.component-1 {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
}

.component-2 {
    grid-column: 12 / 15;
    grid-row: 1 / 3;
}

.component-3 {
    grid-column: 1 / 4;
    grid-row: 4 / 6;
}

.component-4 {
    grid-column: 12 / 15;
    grid-row: 7 / 9;
}

.component-5 {
    grid-column: 1 / 4;
    grid-row: 7 / 9;
}

.component-6 {
    grid-column: 12 / 15;
    grid-row: 4 / 6;
}

/* Fixed Component Cards */
.ingredient-component {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: componentFloat 4s ease-in-out infinite;
}

.component-card {
    background: linear-gradient(135deg, #1a1918, #2a2928);
    border: 2px solid rgba(183,145,60,0.3);
    border-radius: 20px;
    padding: 20px;
    width: 100%;
    max-width: 200px;
    transition: all 0.4s ease;
    cursor: pointer;
    text-align: center;
}

.component-card:hover {
    border-color: #b7913c;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(183, 145, 60, 0.4);
}

.component-image {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #b7913c;
}

.component-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.component-info h4 {
    color: #b7913c;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.component-info p {
    color: #faf7de;
    font-size: 0.85rem;
    line-height: 1.4;
    opacity: 0.9;
}

/* Remove connection lines */
.connection-line {
    display: none;
}

/* Benefits Section */
.ingredients-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-point {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(183,145,60,0.1);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(183,145,60,0.3);
    color: #faf7de;
    font-weight: 600;
    transition: all 0.3s ease;
}

.benefit-point:hover {
    background: rgba(183,145,60,0.2);
    border-color: #b7913c;
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .ingredients-showcase {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 30px;
        text-align: center;
    }
    
    .central-product,
    .component-1,
    .component-2,
    .component-3,
    .component-4,
    .component-5,
    .component-6 {
        grid-column: 1;
        grid-row: auto;
    }
    
    .product-container {
        width: 350px;
        height: 350px;
    }
    
    .component-card {
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .product-container {
        width: 300px;
        height: 300px;
    }
    
    .ingredients-benefits {
        gap: 15px;
    }
    
    .benefit-point {
        font-size: 0.9rem;
    }
}

/* Nutrition Section */
.nutrition {
    padding: 80px 0;
    background: #0a0908;
}

.nutrition-table {
    max-width: 600px;
    margin: 0 auto;
    background: #1a1918;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #b7913c;
}

.nutrition-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid #333;
}

.nutrition-row:last-child {
    border-bottom: none;
}

.nutrition-label {
    font-weight: 600;
    color: #b7913c;
}

.nutrition-value {
    font-weight: 700;
    color: #faf7de;
}

/* Usage Section */
.usage {
    padding: 80px 0;
    background: #070605;
}

.usage-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.usage-step {
    background: #1a1918;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    position: relative;
}

.step-number {
    background: linear-gradient(45deg, #b7913c, #faf7de);
    color: #070605;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.usage-step h4 {
    color: #b7913c;
    margin-bottom: 1rem;
}

/* Enhanced Usage Section */
.usage {
    padding: 120px 0;
    background: linear-gradient(135deg, #070605 0%, #0a0908 50%, #070605 100%);
    position: relative;
    overflow: hidden;
}

.usage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(183,145,60,0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(250,247,222,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.usage-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.usage-content {
    animation: fadeInRight 1s ease-out;
}

.usage-content .section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #b7913c, #faf7de);
    color: #070605;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.usage-content .section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #b7913c;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: right;
}

.usage-content .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #b7913c, #faf7de);
}

.usage-content .section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #faf7de;
    line-height: 1.6;
    opacity: 0.9;
}

.usage-visual {
    position: relative;
    animation: fadeInLeft 1s ease-out;
}

.usage-image-container {
    position: relative;
    text-align: center;
}

.usage-image {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 
        0 25px 60px rgba(183, 145, 60, 0.3),
        0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.usage-image:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 
        0 30px 70px rgba(183, 145, 60, 0.4),
        0 20px 50px rgba(0, 0, 0, 0.3);
}

.usage-visual .image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: 
        conic-gradient(from 0deg, transparent, rgba(183,145,60,0.2), transparent);
    border-radius: 50%;
    z-index: 1;
    animation: rotate 10s linear infinite;
}

.usage-steps-container {
    position: relative;
    margin-bottom: 60px;
}

.usage-timeline {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    width: 4px;
    z-index: 1;
}

.timeline-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #b7913c, #faf7de, #b7913c);
    border-radius: 2px;
    animation: timelineGlow 3s ease-in-out infinite alternate;
}

.usage-steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.usage-step.enhanced {
    display: flex;
    justify-content: center;
    animation: stepSlideIn 0.8s ease-out;
}

.usage-step.enhanced:nth-child(2) {
    animation-delay: 0.2s;
}

.usage-step.enhanced:nth-child(3) {
    animation-delay: 0.4s;
}

.step-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 600px;
    width: 100%;
}

.step-number {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #b7913c, #faf7de);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: #070605;
    box-shadow: 0 10px 25px rgba(183, 145, 60, 0.4);
    flex-shrink: 0;
    z-index: 10;
}

.step-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(183, 145, 60, 0.6);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.step-content {
    background: linear-gradient(135deg, #1a1918, #2a2928);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(183,145,60,0.3);
    transition: all 0.4s ease;
    flex: 1;
}

.step-content:hover {
    border-color: #b7913c;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(183, 145, 60, 0.3);
}

.step-content h4 {
    color: #b7913c;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-content p {
    color: #faf7de;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.step-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(183,145,60,0.2);
    color: #b7913c;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(183,145,60,0.3);
}

.highlight-icon {
    font-size: 1rem;
}

.usage-tips {
    text-align: center;
    background: rgba(183,145,60,0.05);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(183,145,60,0.2);
}

.usage-tips h3 {
    color: #b7913c;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.tip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(183,145,60,0.1);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(183,145,60,0.2);
    transition: all 0.3s ease;
}

.tip-item:hover {
    background: rgba(183,145,60,0.2);
    transform: translateY(-3px);
}

.tip-icon {
    font-size: 2rem;
}

.tip-item p {
    color: #faf7de;
    font-weight: 600;
    text-align: center;
}

/* Animations */
@keyframes stepSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes timelineGlow {
    0% {
        box-shadow: 0 0 10px rgba(183, 145, 60, 0.3);
    }
    100% {
        box-shadow: 0 0 20px rgba(183, 145, 60, 0.6);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .usage-header {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .usage-content .section-title {
        text-align: center;
    }
    
    .usage-content .section-title::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .usage-timeline {
        display: none;
    }
    
    .step-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #0a0908;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: #1a1918;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
}

.testimonial-image {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #faf7de;
}

.testimonial h5 {
    color: #b7913c;
    font-weight: 600;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #070605;
}

.price-card {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(45deg, #1a1918, #2a2928);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid #b7913c;
    box-shadow: 0 10px 30px rgba(183, 145, 60, 0.3);
}

.price-card h3 {
    font-size: 2.5rem;
    color: #b7913c;
    margin-bottom: 1rem;
}

.offer {
    font-size: 1.5rem;
    color: #faf7de;
    margin-bottom: 1rem;
    font-weight: 600;
}

.delivery {
    color: #b7913c;
    font-weight: 600;
}

/* Order Form */
.order {
    padding: 80px 0;
    background: #0a0908;
}

.order-summary {
    background: linear-gradient(135deg, #1a1918, #2a2928);
    border: 2px solid #b7913c;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(183, 145, 60, 0.2);
}

.order-summary h3 {
    color: #b7913c;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.product-selection {
    display: grid;
    gap: 25px;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(7, 6, 5, 0.3);
    border-radius: 15px;
}

.product-details h4 {
    color: #b7913c;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.product-weight {
    color: #faf7de;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-description {
    color: #faf7de;
    font-size: 0.9rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(7, 6, 5, 0.3);
    border-radius: 15px;
}

.quantity-selector label {
    color: #b7913c;
    font-weight: 600;
    font-size: 1.1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    background: linear-gradient(45deg, #b7913c, #faf7de);
    color: #070605;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(183, 145, 60, 0.4);
}

#quantity {
    width: 80px;
    height: 40px;
    text-align: center;
    border: 2px solid #b7913c;
    border-radius: 10px;
    background: #070605;
    color: #faf7de;
    font-size: 1.2rem;
    font-weight: 600;
}

.price-breakdown {
    background: rgba(7, 6, 5, 0.3);
    border-radius: 15px;
    padding: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row span:first-child {
    color: #faf7de;
}

.price-row span:last-child {
    color: #faf7de;
    font-weight: 600;
}

.unit-price, .delivery-price {
    color: #b7913c !important;
}

.total-row {
    border-top: 2px solid #b7913c;
    padding-top: 15px;
    margin-top: 10px;
}

.total-row span {
    font-size: 1.3rem;
    font-weight: 700;
    color: #b7913c !important;
}

.special-offer {
    display: none; /* Hide special offer section */
}

.offer-badge {
    background: #070605;
    color: #b7913c;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.special-offer p {
    margin: 5px 0;
    font-weight: 600;
}

.savings {
    font-size: 1.1rem;
    font-weight: 700 !important;
}

.order-form {
    background: #1a1918;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #333;
}

.order-form h3 {
    color: #b7913c;
    font-size: 1.5rem;
    margin-bottom: 25px;
    border-bottom: 2px solid #b7913c;
    padding-bottom: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #b7913c;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #333;
    border-radius: 10px;
    background: #070605;
    color: #faf7de;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b7913c;
    box-shadow: 0 0 10px rgba(183, 145, 60, 0.3);
}

.form-group small {
    color: #999;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.payment-info {
    background: rgba(183, 145, 60, 0.1);
    border: 2px solid #b7913c;
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-icon {
    font-size: 2.5rem;
}

.payment-details h4 {
    color: #b7913c;
    margin-bottom: 10px;
}

.payment-details p {
    margin: 5px 0;
    color: #faf7de;
}

.order-guarantee {
    background: rgba(7, 6, 5, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
}

.guarantee-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #faf7de;
}

.guarantee-icon {
    font-size: 1.2rem;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #b7913c, #faf7de);
    color: #070605;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 20px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(183, 145, 60, 0.4);
}

.btn-total {
    background: rgba(7, 6, 5, 0.3);
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 1.1rem;
}

.order-note {
    color: #999;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.5;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #070605;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1918;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #333;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #2a2928;
}

.faq-question h4 {
    color: #b7913c;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: #b7913c;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 20px;
    max-height: 200px;
}

/* Footer */
.footer {
    background: #0a0908;
    padding: 50px 0 20px;
    border-top: 2px solid #b7913c;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: #b7913c;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: #faf7de;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #b7913c;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #faf7de;
}

/* Animations */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.4;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 40px 20px;
    }
    
    .hero-content::before {
        display: none;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1rem;
    }
    
    .hero-description {
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .cta-btn {
        padding: 15px 35px;
        width: 100%;
        max-width: 300px;
    }
    
    .hero::after {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .ingredients-grid,
    .usage-steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .benefits,
    .ingredients,
    .nutrition,
    .usage,
    .testimonials,
    .pricing,
    .order,
    .faq {
        padding: 50px 0;
    }

    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 20px;
        transition: right 0.3s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 15px 30px;
        width: 80%;
        text-align: center;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-container {
        height: 70px;
        padding: 0 15px;
    }
    
    .nav-brand {
        font-size: 1.3rem;
    }
    
    .brand-icon {
        font-size: 1.8rem;
    }
    
    .hero {
        padding-top: 70px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .guarantee-items {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .quantity-selector {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .submit-btn {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .payment-method {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        padding-top: 60px;
    }
    
    .hero .container {
        padding: 20px 15px;
        gap: 30px;
    }
    
    .cta-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-btn {
        font-size: 1.1rem;
        padding: 12px 30px;
    }
    
    .order-form,
    .price-card {
        padding: 25px;
    }

    .nav-container {
        height: 60px;
    }
    
    .nav-brand {
        font-size: 1.1rem;
    }
    
    .brand-icon {
        font-size: 1.5rem;
    }
    
    .hero {
        padding-top: 60px;
    }
    
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }

    .order-summary,
    .order-form {
        padding: 20px;
    }
    
    .guarantee-items {
        grid-template-columns: 1fr;
    }
}

/* Mobile Navigation */
@media (max-width: 1200px) {
    .nav-container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 8px 10px;
    }
    
    .nav-cta {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 12px;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 8px 8px;
    }
    
    .nav-cta {
        font-size: 0.8rem;
        padding: 8px 10px;
    }
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 20px;
        transition: right 0.3s ease;
        flex-wrap: nowrap;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 15px 30px;
        width: 80%;
        text-align: center;
    }
    
    .nav-cta {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-container {
        min-height: 70px;
        padding: 0 15px;
    }
    
    .nav-brand {
        font-size: 1.3rem;
    }
    
    .brand-icon {
        font-size: 1.8rem;
    }
    
    .hero {
        padding-top: 70px;
    }
    
    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .brand-logo {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        min-height: 60px;
        padding: 0 10px;
    }
    
    .nav-brand {
        font-size: 1.1rem;
    }
    
    .brand-icon {
        font-size: 1.5rem;
    }
    
    .hero {
        padding-top: 60px;
    }
    
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
    
    .nav-cta {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
    
    .brand-logo {
        width: 30px;
        height: 30px;
    }
}

/* Warranty Section */
.warranty {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0908 0%, #070605 50%, #0a0908 100%);
    position: relative;
    overflow: hidden;
}

.warranty::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(183,145,60,0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(250,247,222,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.warranty-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.warranty-content {
    animation: fadeInRight 1s ease-out;
}

.warranty-content .section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #b7913c, #faf7de);
    color: #070605;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.warranty-content .section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #b7913c;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: right;
}

.warranty-content .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #b7913c, #faf7de);
}

.warranty-content .section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #faf7de;
    line-height: 1.6;
    opacity: 0.9;
}

.warranty-visual {
    position: relative;
    animation: fadeInLeft 1s ease-out;
}

.warranty-image-container {
    position: relative;
    text-align: center;
}

.warranty-image {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 
        0 25px 60px rgba(183, 145, 60, 0.3),
        0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.warranty-image:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 
        0 30px 70px rgba(183, 145, 60, 0.4),
        0 20px 50px rgba(0, 0, 0, 0.3);
}

.warranty-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #b7913c, #faf7de);
    color: #070605;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(183, 145, 60, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.warranty-policies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.policy-item {
    background: linear-gradient(135deg, #1a1918, #2a2928);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid rgba(183,145,60,0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.policy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(183,145,60,0.1), transparent);
    transition: left 0.6s ease;
}

.policy-item:hover::before {
    left: 100%;
}

.policy-item:hover {
    border-color: #b7913c;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(183, 145, 60, 0.3);
}

.policy-icon {
    margin-bottom: 25px;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #b7913c, #faf7de);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(183, 145, 60, 0.4);
    transition: all 0.3s ease;
}

.policy-item:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(183, 145, 60, 0.6);
}

.policy-content h3 {
    color: #b7913c;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.policy-content p {
    color: #faf7de;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.policy-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature {
    color: #faf7de;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.warranty-commitment {
    background: linear-gradient(135deg, rgba(183,145,60,0.1), rgba(183,145,60,0.05));
    padding: 50px;
    border-radius: 25px;
    border: 2px solid rgba(183,145,60,0.3);
    text-align: center;
}

.commitment-content h3 {
    color: #b7913c;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.commitment-content p {
    color: #faf7de;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.commitment-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #b7913c;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: #faf7de;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .warranty-header {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .warranty-content .section-title {
        text-align: center;
    }
    
    .warranty-content .section-title::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .warranty-policies {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .policy-item {
        padding: 25px;
    }
    
    .warranty-commitment {
        padding: 30px 20px;
    }
    
    .commitment-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Delivery Information Styles */
.delivery-info {
    margin: 20px 0;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(183,145,60,0.3);
    background: linear-gradient(135deg, rgba(183,145,60,0.1), rgba(183,145,60,0.05));
}

.delivery-options {
    display: flex;
    gap: 20px;
    justify-content: space-around;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(7,6,5,0.3);
    border-radius: 10px;
    color: #faf7de;
    font-weight: 600;
    flex: 1;
    text-align: center;
}

.option-icon {
    font-size: 1.2rem;
}

.tandouf-message {
    text-align: center;
    padding: 20px;
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid rgba(220, 53, 69, 0.3);
    border-radius: 15px;
    color: #dc3545;
}

.warning-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.tandouf-message p {
    margin: 0;
    font-weight: 600;
}

@media (max-width: 768px) {
    .delivery-options {
        flex-direction: column;
        gap: 10px;
    }
}
