/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    direction: rtl;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6B46C1 0%, #7C3AED 25%, #8B5CF6 50%, #9333EA 75%, #7C2D12 100%);
    color: white;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.logo {
    display: inline-block;
}

.logo-image {
    max-height: 120px;
    width: auto;
    border-radius: 15px;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #F8F9FA;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 15px 40px;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

.product-showcase {
    width: 100%;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    border: 2px dashed rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-image {
    text-align: center;
    margin-bottom: 3rem;
}

.features-showcase-image {
    max-width: 700px;
    width: 100%;
    height: auto;
    border-radius: 15px;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Use Cases Section */
.use-cases {
    padding: 80px 0;
    background: #f8f9fa;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.use-case {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.use-case:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.use-case-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.use-case p {
    color: #2c3e50;
    font-weight: 500;
}

/* What's Included Section */
.whats-included {
    padding: 80px 0;
    background: white;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.included-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-right: 5px solid #3498db;
}

.included-item h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.included-item p {
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.included-item ul {
    list-style: none;
    padding-right: 1rem;
}

.included-item li {
    color: #34495e;
    margin-bottom: 0.5rem;
    position: relative;
}

.included-item li::before {
    content: '✓';
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    right: -1rem;
}

/* Specifications Section */
.specifications {
    padding: 80px 0;
    background: #f8f9fa;
}

.specs-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.spec-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid #ecf0f1;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    background: #34495e;
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 600;
}

.spec-value {
    padding: 1rem 1.5rem;
    background: white;
    color: #2c3e50;
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.guarantee .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.guarantee-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #ecf0f1;
}

.guarantee-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guarantee-badge {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.badge-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.guarantee-badge h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.guarantee-badge p {
    color: #bdc3c7;
}

/* CTA Order Form Section */
.cta-order-form {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #ecf0f1;
    max-width: 600px;
    margin: 0 auto;
}

.simple-price {
    text-align: center;
    margin-bottom: 2rem;
}

.current-price {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.old-price-display {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f39c12;
}

.delivery-pricing {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.old-price {
    text-decoration: line-through;
    color: #bdc3c7;
}

.free-delivery {
    color: #2ecc71;
    font-weight: 600;
}

.cta-offers {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.offer-card {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.offer-card:hover,
.offer-card.selected {
    background: rgba(255,255,255,0.2);
    border-color: #f39c12;
}

.popular-offer {
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.offer-card label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    width: 100%;
}

.offer-card input[type="radio"] {
    width: 20px;
    height: 20px;
}

.offer-title {
    font-weight: 500;
}

.cta-fields {
    display: grid;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.field-group {
    display: flex;
    flex-direction: column;
}

.field-label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ecf0f1;
}

.field-group input {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
    color: #2c3e50;
}

.field-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.3);
}

#submitBtn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 1.2rem 2rem;
    font-size: 1.3rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

#submitBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq .section-title {
    color: #2c3e50;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #e74c3c;
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background: #f8f9fa;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 1.5rem;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* FAQ Mobile Styles */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 0.5rem;
    }
    
    .faq-toggle {
        font-size: 1.3rem;
        min-width: 25px;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .logo-image {
        max-height: 89px;
    }
    
    .features-showcase-image {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .product-image {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-badges {
        grid-template-columns: 1fr;
    }
    
    .spec-row {
        grid-template-columns: 1fr 2fr;
        background: white;
    }
    
    .spec-label {
        border-bottom: none;
        background: white;
        color: #2c3e50;
        font-weight: 600;
    }
    
    .spec-value {
        background: white;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .features,
    .use-cases,
    .whats-included,
    .specifications,
    .guarantee,
    .cta-order-form {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-header h2 {
        font-size: 2rem;
    }
    
    .price-value {
        font-size: 2rem;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.use-case,
.included-item,
.guarantee-badge {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Thank You Page Styles */
.thank-you-page {
    background: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Tajawal', sans-serif;
}

.thankyou-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 2rem;
    font-weight: bold;
}

.thankyou-container h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.phone-display {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    border: 2px solid #e9ecef;
}

.important-notice {
    background: #fff3cd;
    border: 2px solid #ffeaa7;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.important-notice h3 {
    color: #856404;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.important-notice p {
    color: #856404;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.call-times {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
    color: #155724;
    font-weight: 600;
}

/* Mobile Responsive for Thank You Page */
@media (max-width: 768px) {
    .thankyou-container {
        padding: 2rem;
        margin: 1rem;
    }
    
    .thankyou-container h1 {
        font-size: 2rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .important-notice {
        padding: 1.5rem;
    }
    
    .important-notice h3 {
        font-size: 1.3rem;
    }
}