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

body {
    font-family: 'Cairo', sans-serif;
    background-color: #222222;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero {
    background-color: #222222;
    padding: 5rem 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

@media (min-width: 640px) {
    .hero-ctas {
        flex-direction: row;
        justify-content: center;
    }
}

/* CTA Buttons */
.cta-btn {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 200px;
}

.cta-btn.primary {
    background-color: #0568a8;
    color: white;
}

.cta-btn.primary:hover {
    background-color: rgba(5, 104, 168, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 104, 168, 0.3);
}

.cta-btn.secondary {
    background-color: transparent;
    color: #0568a8;
    border: 2px solid #0568a8;
}

.cta-btn.secondary:hover {
    background-color: #0568a8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 104, 168, 0.3);
}

.btn-primary {
    background-color: #0568a8;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: rgba(5, 104, 168, 0.9);
    transform: scale(1.05);
}

.btn-secondary {
    border: 2px solid #0568a8;
    color: #0568a8;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #0568a8;
    color: white;
    transform: scale(1.05);
}

/* Order Form Section */
.order-form-section {
    background-color: #1a1a1a;
    padding: 5rem 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 32rem;
    margin: 0 auto;
}

.form-container {
    max-width: 32rem;
    margin: 0 auto;
}

.order-form {
    background-color: #2a2a2a;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #333333;
    border: 1px solid #6b7280;
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0568a8;
}

/* Dropdown Options Styling */
.form-group select option {
    background-color: #2d3748;
    color: white;
    padding: 0.5rem;
}

.form-group select option:hover,
.form-group select option:focus {
    background-color: #0568a8;
    color: white;
}

.form-group select option:checked {
    background-color: #0568a8;
    color: white;
}

.phone-input {
    display: flex;
    gap: 0.75rem;
}

.phone-input select {
    flex: 0 0 auto;
    width: auto;
    min-width: 80px;
    max-width: 90px;
}

.phone-input input {
    flex: 1;
}

.help-text {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.char-counter {
    text-align: right;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.message-container {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

.message-container.success {
    background-color: rgba(34, 197, 94, 0.2);
    border: 1px solid #22c55e;
    color: #4ade80;
}

.message-container.error {
    background-color: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #f87171;
}

.submit-btn {
    width: 100%;
    background-color: #0568a8;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover:not(:disabled) {
    background-color: rgba(5, 104, 168, 0.9);
    transform: scale(1.02);
}

.submit-btn:active {
    transform: scale(0.98);
}

.submit-btn:disabled {
    background-color: #6b7280;
    cursor: not-allowed;
    transform: none;
}

/* Plans Section */
.plans-section {
    background-color: #222222;
    padding: 5rem 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 88rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.plan-card {
    position: relative;
    background-color: #2a2a2a;
    border: 1px solid #6b7280;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.plan-card.popular {
    border-color: #0568a8;
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0568a8;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.plan-header p {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.plan-price {
    margin-bottom: 1.5rem;
}

.price-usd {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0568a8;
    margin-bottom: 0.25rem;
}

.price-dzd {
    font-size: 0.875rem;
    color: #9ca3af;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    font-size: 0.875rem;
    color: #d1d5db;
    margin-bottom: 0.75rem;
}

.plan-features li::before {
    content: "✓";
    color: #0568a8;
    font-weight: 700;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.plan-btn {
    width: 100%;
    padding: 1rem;
    border: 2px solid #0568a8;
    color: #0568a8;
    background-color: transparent;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.plan-btn:hover {
    background-color: #0568a8;
    color: white;
    transform: scale(1.02);
}

.plan-btn:active {
    transform: scale(0.98);
}

.plan-btn.primary {
    background-color: #0568a8;
    color: white;
}

.plan-btn.primary:hover {
    background-color: rgba(5, 104, 168, 0.9);
}

/* Plans CTA Section */
.plans-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background-color: rgba(5, 104, 168, 0.1);
    border-radius: 1rem;
    border: 1px solid rgba(5, 104, 168, 0.2);
}

.plans-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.plans-cta p {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.plans-cta .cta-btn {
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 3rem 0;
    border-top: 1px solid #374151;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-content p {
    color: #d1d5db;
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 3rem;
    height: 3rem;
    background-color: #2a2a2a;
    border: 1px solid #6b7280;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #0568a8;
    border-color: #0568a8;
    transform: scale(1.1) translateY(-2px);
}

.social-icon .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0;
}

.terms-link {
    color: #0568a8;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: rgba(5, 104, 168, 0.8);
    text-decoration: underline;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.lang-btn {
    background-color: #0568a8;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(5, 104, 168, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    background-color: rgba(5, 104, 168, 0.9);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(5, 104, 168, 0.4);
}

.lang-btn:active {
    transform: scale(0.95);
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .language-switcher {
    right: auto;
    left: 20px;
}

/* RTL Hero Section Fixes */
[dir="rtl"] .hero {
    text-align: center;
}

[dir="rtl"] .hero-title {
    text-align: center;
    line-height: 1.2;
}

[dir="rtl"] .hero-subtitle {
    text-align: center;
    line-height: 1.6;
}

[dir="rtl"] .hero-ctas {
    flex-direction: row-reverse;
}

/* RTL Mobile Responsive Fixes */
@media (max-width: 640px) {
    [dir="rtl"] .container {
        padding: 0 1.5rem;
    }
    
    [dir="rtl"] .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    [dir="rtl"] .cta-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

[dir="rtl"] .phone-input {
    flex-direction: row-reverse;
}

[dir="rtl"] .phone-input select {
    order: 2;
}

[dir="rtl"] .phone-input input {
    order: 1;
}

[dir="rtl"] .plan-features li::before {
    margin-right: 0;
    margin-left: 0.75rem;
}

[dir="rtl"] .social-icons {
    flex-direction: row-reverse;
}

[dir="rtl"] .char-counter {
    text-align: left;
}

/* Arabic Font Support */
[dir="rtl"] body {
    font-family: 'Cairo', 'Tajawal', 'Amiri', 'Noto Sans Arabic', Arial, sans-serif;
    font-weight: 400;
}

[dir="rtl"] .hero-title {
    font-family: 'Cairo', 'Tajawal', 'Amiri', 'Noto Sans Arabic', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

[dir="rtl"] .hero-subtitle {
    font-family: 'Cairo', 'Tajawal', 'Noto Sans Arabic', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0;
}

[dir="rtl"] .cta-btn {
    font-family: 'Cairo', 'Tajawal', 'Noto Sans Arabic', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0;
}

/* Smooth transitions for language switching */
* {
    transition: all 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* RTL specific mobile fixes */
    [dir="rtl"] .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    [dir="rtl"] .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.7;
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }
    
    .order-form {
        padding: 1.5rem;
    }
    
    .phone-input {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .phone-input select {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    /* RTL specific fixes for very small screens */
    [dir="rtl"] .hero {
        padding: 2.5rem 0;
    }
    
    [dir="rtl"] .hero-title {
        font-size: 1.875rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    
    [dir="rtl"] .hero-subtitle {
        font-size: 1rem;
        line-height: 1.8;
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }
    
    [dir="rtl"] .cta-btn {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
        min-width: 250px;
    }
    
    .order-form-section,
    .plans-section {
        padding: 3rem 0;
    }
    
    .plan-card {
        padding: 1.5rem;
    }
}

/* ===== TERMS & PRIVACY POLICY PAGE STYLES ===== */

/* Navigation */
.terms-nav {
    background-color: #222222;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

.back-link {
    color: #0568a8;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: rgba(5, 104, 168, 0.8);
    transform: translateX(-5px);
}

/* Header Section */
.terms-header {
    background-color: #222222;
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 2px solid #333;
}

.terms-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.terms-subtitle {
    font-size: 1rem;
    color: #0568a8;
    margin-bottom: 1.5rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.1s forwards;
}

.terms-intro {
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 50rem;
    margin: 0 auto 1rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.terms-description {
    font-size: 1rem;
    color: #9ca3af;
    max-width: 40rem;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

/* Terms Sections */
.terms-section {
    background-color: #222222;
    padding: 4rem 0;
}

.terms-section:nth-child(even) {
    background-color: #1a1a1a;
}

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

.section-header.green h2 {
    color: #16a34a;
}

.section-header.purple h2 {
    color: #9333ea;
}

.section-header.blue h2 {
    color: #0568a8;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

/* Terms Content */
.terms-content {
    max-width: 50rem;
    margin: 0 auto;
}

.terms-subsection {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 1rem;
    border-left: 4px solid #0568a8;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.terms-subsection h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.terms-subsection p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-intro {
    font-size: 1.125rem;
    color: #d1d5db;
    text-align: center;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background-color: rgba(147, 51, 234, 0.1);
    border-radius: 1rem;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

/* Lists */
.workflow-list,
.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.workflow-list li,
.policy-list li {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

.workflow-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #16a34a;
    color: white;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.workflow-list {
    counter-reset: step-counter;
}

.policy-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #0568a8;
    font-size: 1.5rem;
    line-height: 1.2;
}

/* Contact Section */
.contact-info {
    font-size: 1.125rem;
    color: #d1d5db;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-link {
    color: #0568a8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: rgba(5, 104, 168, 0.8);
}

/* Feedback Section */
.feedback-section {
    background-color: #1a1a1a;
    padding: 4rem 0;
}

.feedback-form-container {
    max-width: 40rem;
    margin: 0 auto;
}

.feedback-form {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid #333;
}

/* RTL Support for Terms Page */
[dir="rtl"] .back-link {
    transform: scaleX(-1);
}

[dir="rtl"] .back-link:hover {
    transform: scaleX(-1) translateX(-5px);
}

[dir="rtl"] .terms-subsection {
    border-left: none;
    border-right: 4px solid #0568a8;
}

[dir="rtl"] .workflow-list li,
[dir="rtl"] .policy-list li {
    padding-left: 0;
    padding-right: 2rem;
}

[dir="rtl"] .workflow-list li::before,
[dir="rtl"] .policy-list li::before {
    left: auto;
    right: 0;
}

/* Responsive Design for Terms Page */
@media (max-width: 768px) {
    .terms-header {
        padding: 3rem 0 2rem;
    }
    
    .terms-title {
        font-size: 2rem;
    }
    
    .terms-section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .terms-subsection {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .terms-subsection h3 {
        font-size: 1.25rem;
    }
    
    .feedback-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .terms-header {
        padding: 2rem 0 1.5rem;
    }
    
    .terms-title {
        font-size: 1.75rem;
    }
    
    .terms-intro {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .terms-subsection {
        padding: 1rem;
    }
    
    .feedback-form {
        padding: 1.5rem;
    }
}

/* ===== ORDER PAGE STYLES ===== */

/* Navigation */
.order-nav {
    background-color: #222222;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

/* Header Section */
.order-header {
    background-color: #222222;
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 2px solid #333;
}

.order-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.order-subtitle {
    font-size: 1.5rem;
    color: #0568a8;
    margin-bottom: 1.5rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.1s forwards;
}

.order-intro {
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 50rem;
    margin: 0 auto 1rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.order-description {
    font-size: 1rem;
    color: #9ca3af;
    max-width: 40rem;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

/* Services Overview */
.services-overview {
    background-color: #1a1a1a;
    padding: 4rem 0;
}

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

.service-card {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.service-card:hover {
    transform: translateY(-5px);
    border-color: #0568a8;
    box-shadow: 0 10px 30px rgba(5, 104, 168, 0.2);
}

.service-card.selected {
    border-color: #0568a8;
    background-color: rgba(5, 104, 168, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.social-platforms {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.platform-icon {
    font-size: 1.5rem;
    opacity: 0.8;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.service-card p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-price {
    margin-bottom: 1.5rem;
}

.service-price span {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0568a8;
    display: block;
}

.service-price small {
    color: #9ca3af;
    font-size: 0.875rem;
}

.service-select-btn {
    background-color: #0568a8;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.service-select-btn:hover {
    background-color: rgba(5, 104, 168, 0.9);
    transform: translateY(-2px);
}

/* Service Details */
.service-details {
    background-color: #222222;
    padding: 4rem 0;
}

.service-detail {
    display: none;
    max-width: 50rem;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 1rem;
    padding: 2.5rem;
    border-left: 4px solid #0568a8;
}

.service-detail.active {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.detail-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.detail-header p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.detail-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.included-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.included-list li {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

.included-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #16a34a;
    font-weight: 700;
}

.detail-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 0.5rem;
}

.pricing-info, .delivery-info {
    text-align: center;
}

.pricing-info strong, .delivery-info strong {
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.price {
    color: #0568a8;
    font-weight: 700;
}

.website-types, .video-specs {
    margin-top: 2rem;
}

.type-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.type-tag {
    background-color: rgba(5, 104, 168, 0.2);
    color: #0568a8;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Order Form */
.order-form-section {
    background-color: #1a1a1a;
    padding: 4rem 0;
}

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

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.form-header p {
    color: #d1d5db;
    font-size: 1.125rem;
    max-width: 40rem;
    margin: 0 auto;
}

.order-form {
    max-width: 40rem;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid #333;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.form-step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #333;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0568a8;
    box-shadow: 0 0 0 3px rgba(5, 104, 168, 0.1);
}

/* Dropdown Options Styling */
.form-group select option {
    background-color: #2d3748;
    color: white;
    padding: 0.5rem;
}

.form-group select option:hover,
.form-group select option:focus {
    background-color: #0568a8;
    color: white;
}

.form-group select option:checked {
    background-color: #0568a8;
    color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.service-options {
    margin-top: 1rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 0.5rem;
    border-left: 3px solid #0568a8;
}

.radio-group {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: auto;
    margin: 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #0568a8;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.char-count {
    text-align: right;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.prev-btn, .next-btn, .submit-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.prev-btn {
    background-color: #374151;
    color: white;
}

.prev-btn:hover {
    background-color: #4b5563;
}

.next-btn, .submit-btn {
    background-color: #0568a8;
    color: white;
}

.next-btn:hover, .submit-btn:hover {
    background-color: rgba(5, 104, 168, 0.9);
    transform: translateY(-2px);
}

.submit-btn {
    background-color: #16a34a;
}

.submit-btn:hover {
    background-color: rgba(22, 163, 74, 0.9);
}

/* Next Steps */
.next-steps {
    background-color: #222222;
    padding: 4rem 0;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 60rem;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 1rem;
    border: 1px solid #333;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(2) { animation-delay: 0.2s; }
.step-item:nth-child(3) { animation-delay: 0.3s; }
.step-item:nth-child(4) { animation-delay: 0.4s; }

.step-number {
    width: 3rem;
    height: 3rem;
    background-color: #0568a8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-item p {
    color: #d1d5db;
    line-height: 1.6;
}

/* RTL Support for Order Page */
[dir="rtl"] .service-detail {
    border-left: none;
    border-right: 4px solid #0568a8;
}

[dir="rtl"] .included-list li {
    padding-left: 0;
    padding-right: 2rem;
}

[dir="rtl"] .included-list li::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .service-options {
    border-left: none;
    border-right: 3px solid #0568a8;
}

/* Responsive Design for Order Page */
@media (max-width: 768px) {
    .order-header {
        padding: 3rem 0 2rem;
    }
    
    .order-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-detail {
        padding: 2rem;
    }
    
    .detail-pricing {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .order-form {
        padding: 2rem;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .type-options {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .order-header {
        padding: 2rem 0 1.5rem;
    }
    
    .order-title {
        font-size: 2rem;
    }
    
    .order-intro {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-detail {
        padding: 1.5rem;
    }
    
    .order-form {
        padding: 1.5rem;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .next-steps h2 {
        font-size: 2rem;
    }
    
    .step-item {
        padding: 1.5rem;
    }
}
