/* ============================================
   DESIGN SYSTEM — Luxury Conversion Theme
   ============================================ */
:root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark-surface: #1a1a1a;
    --dark-border: #2a2a2a;
    --gold: #c9a84c;
    --gold-light: #e2c97e;
    --gold-glow: rgba(201, 168, 76, 0.15);
    --white: #ffffff;
    --white-soft: #f5f5f5;
    --gray: #999999;
    --gray-light: #cccccc;
    --green: #25d366;
    --phone-blue: #2563eb;
    --radius: 12px;
    --radius-lg: 20px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   HEADER — Minimal & Clean
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 12px 24px;
    background: rgba(10, 10, 10, 0.95);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.logo-text span {
    color: var(--gold);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.header-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--gold-glow);
}

.header-cta .phone-icon {
    font-size: 16px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 50px;
    font-size: 13px;
    color: var(--gray-light);
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease;
}

.hero-badge .stars {
    color: var(--gold);
    letter-spacing: 2px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title .accent {
    color: var(--gold);
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--gray);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto 44px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Primary CTA — The Big Phone Button */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    text-decoration: none;
    border-radius: 60px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-phone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-phone:hover::before {
    transform: translateX(100%);
}

.cta-phone:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 50px rgba(201, 168, 76, 0.4);
}

.cta-phone:active {
    transform: scale(0.98);
}

.cta-phone .icon {
    font-size: 26px;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0); }
    5% { transform: rotate(15deg); }
    10% { transform: rotate(-13deg); }
    15% { transform: rotate(10deg); }
    20% { transform: rotate(0); }
}

.cta-subtext {
    font-size: 14px;
    color: var(--gray);
    font-weight: 400;
}

.cta-subtext strong {
    color: var(--gold);
    font-weight: 600;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 20px 24px;
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--dark-surface);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--white-soft);
    border: 1px solid var(--dark-border);
}

.trust-item .icon {
    font-size: 16px;
}

/* ============================================
   PRICES SECTION
   ============================================ */
.prices {
    padding: 80px 24px;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 48px;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.price-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.price-card:hover::before {
    opacity: 1;
}

.price-card .route-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.price-card .route-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.price-card .route-detail {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 20px;
}

.price-card .route-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-card .route-price .from {
    font-size: 13px;
    color: var(--gray);
    font-weight: 400;
}

.price-card .route-price .amount {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
}

.price-card .route-price .currency {
    font-size: 20px;
    color: var(--gold);
    font-weight: 600;
}

.price-card .route-features {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--dark-border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-card .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-light);
}

.price-card .feature .check {
    color: var(--gold);
    font-size: 14px;
}

.prices-cta {
    margin-top: 48px;
}

.prices-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 30px rgba(201, 168, 76, 0.25);
}

.prices-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201, 168, 76, 0.35);
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
    padding: 80px 24px;
    background: var(--dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.why-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-2px);
}

.why-card .icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews {
    padding: 80px 24px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.review-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

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

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: var(--black);
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
}

.review-name {
    font-size: 14px;
    font-weight: 600;
}

.review-date {
    font-size: 12px;
    color: var(--gray);
}

.review-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.6;
}

.reviews-link {
    text-align: center;
    margin-top: 36px;
}

.reviews-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1px solid var(--dark-border);
    border-radius: 50px;
    color: var(--white-soft);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.reviews-link a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: 80px 24px;
    background: var(--black);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(201, 168, 76, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--white-soft);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    gap: 16px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question .faq-lang {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--dark-border);
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.faq-question .faq-arrow {
    flex-shrink: 0;
    font-size: 18px;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.7;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    padding: 80px 24px;
    text-align: center;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, var(--gold-glow), transparent);
    pointer-events: none;
}

.final-cta .section-title {
    margin-bottom: 8px;
}

.final-cta .section-subtitle {
    margin-bottom: 40px;
}

.final-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 22px 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    text-decoration: none;
    border-radius: 60px;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.3);
}

.final-cta-phone:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 50px rgba(201, 168, 76, 0.4);
}

.final-cta-phone .icon {
    font-size: 28px;
    animation: ring 2s ease-in-out infinite;
}

.final-cta-info {
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 32px 24px;
    text-align: center;
    border-top: 1px solid var(--dark-border);
    font-size: 13px;
    color: var(--gray);
}

.footer a {
    color: var(--gray-light);
    text-decoration: none;
}

.footer a:hover {
    color: var(--gold);
}

/* ============================================
   FLOATING PHONE BUTTON (Mobile)
   ============================================ */
.floating-phone {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    text-decoration: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
    transition: all 0.3s ease;
    animation: floatPulse 3s ease-in-out infinite;
}

.floating-phone:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.5);
}

.floating-phone .icon {
    font-size: 20px;
    animation: ring 2s ease-in-out infinite;
}

@keyframes floatPulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4); }
    50% { box-shadow: 0 8px 45px rgba(201, 168, 76, 0.6); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .header-cta span.desktop-text {
        display: none;
    }

    .hero {
        min-height: 100svh;
        padding: 100px 20px 60px;
    }

    .cta-phone {
        padding: 18px 36px;
        font-size: 20px;
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    .prices-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .why-card {
        padding: 24px 16px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .floating-phone {
        bottom: 16px;
        left: 16px;
        right: 16px;
        justify-content: center;
        border-radius: 16px;
        padding: 18px;
        font-size: 18px;
    }

    .final-cta-phone {
        padding: 18px 36px;
        font-size: 20px;
    }

    .trust-bar {
        gap: 8px;
        padding: 16px;
    }

    .trust-item {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 380px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scroll offset for fixed header */
[id] {
    scroll-margin-top: 80px;
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 12px;
}

.lang-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray);
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.lang-switcher a:hover {
    color: var(--gold);
    border-color: var(--dark-border);
}

.lang-switcher a.active {
    color: var(--gold);
    background: var(--dark-surface);
    border-color: var(--dark-border);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

/* ============================================
   RTL SUPPORT (Arabic)
   ============================================ */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

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

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

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

[dir="rtl"] .price-card {
    text-align: right;
}

[dir="rtl"] .price-card .route-price {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

[dir="rtl"] .faq-question {
    text-align: right;
    flex-direction: row-reverse;
}

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

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

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

[dir="rtl"] .floating-phone {
    left: 24px;
    right: auto;
}

@media (max-width: 768px) {
    [dir="rtl"] .floating-phone {
        left: 16px;
        right: 16px;
    }
}
