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

:root {
    --primary-color: #C5A059; /* Gold */
    --primary-hover: #a88747;
    --secondary-color: #3E2723; /* Dark Brown */
    --text-color: #333333;
    --bg-color: #F8F5F0; /* Soft Desert Sand */
    --white: #ffffff;
    --success: #2E7D32;
    --font-main: 'Tajawal', sans-serif;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl; /* Arabic support */
}

a {
    text-decoration: none;
}

h1, h2, h3, h4 {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.6);
}

.btn-large {
    width: 100%;
    max-width: 400px;
    font-size: 1.5rem;
    padding: 18px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(197, 160, 89, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 10px 0;
}

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

.logo img {
    height: 80px;
    object-fit: contain;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(248, 245, 240, 0.9), rgba(248, 245, 240, 0.7)), url('../images/desert.png') center/cover;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1 1 500px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #555;
}

.hero-images {
    flex: 1 1 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-images img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pack-container {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.pack-item {
    text-align: center;
}

.pack-item img {
    width: 250px;
    height: auto;
    object-fit: cover;
    background: #fff;
    padding: 10px;
    border-radius: 20px;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background-color: var(--white);
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.problem-image {
    flex: 1 1 400px;
}

.problem-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.problem-text {
    flex: 1 1 500px;
}

.problem-list {
    list-style: none;
    margin-top: 20px;
}

.problem-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-right: 35px;
    position: relative;
}

.problem-list li::before {
    content: '⚠️';
    position: absolute;
    right: 0;
    top: 2px;
}

/* Solution / Ingredients Section */
.solution {
    padding: 80px 0;
    background: linear-gradient(rgba(62, 39, 35, 0.95), rgba(62, 39, 35, 0.95)), url('../images/herbs.png') center/cover fixed;
    color: var(--white);
}

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

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

.benefit-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    backdrop-filter: blur(5px);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.reviewer-name {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.stars {
    color: #FFD700;
}

.review-text {
    color: #555;
    font-style: italic;
    font-size: 1.1rem;
}

/* Pricing & Form Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
    border-top: 5px solid var(--primary-color);
}

.pricing-box {
    margin: 0 auto 30px;
}

.price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.price span {
    font-size: 2rem;
    color: var(--text-color);
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.order-form {
    max-width: 500px;
    margin: 30px auto 0;
    background-color: var(--bg-color);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(197, 160, 89, 0.3);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--secondary-color);
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: var(--font-main);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.2);
}

/* Sticky Footer */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.sticky-cta.show {
    transform: translateY(0);
}

.sticky-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--success);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero { text-align: center; padding: 40px 0; }
    .hero-text, .hero-images { flex: 1 1 100%; }
    .pack-container { flex-direction: column; }
    .problem-text, .problem-image { flex: 1 1 100%; }
    .section-title { font-size: 2rem; }
    .price { font-size: 3rem; }
    .sticky-cta { flex-direction: column; gap: 10px; }
}
