/* Smart Look AI - Premium Gold-Navy Landing Page */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&display=swap');

:root {
    --bg: #000000;
    --bg-dark: #060814;
    --bg-card: rgba(10, 14, 38, 0.85);
    --primary: #ffd700;
    --primary-glow: rgba(255, 215, 0, 0.2);
    --accent: #d4af37;
    --accent-glow: rgba(212, 175, 55, 0.15);
    --green: #2ecc71;
    --orange: #e67e22;
    --red: #e74c3c;
    --cyan: #3498db;
    --text: #ffffff;
    --text-dim: #cbd5e1;
    --border: rgba(212, 175, 55, 0.15);
    --font: 'Cairo', sans-serif;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    background-image: radial-gradient(circle at 50% 50%, #0d1127 0%, #000000 100%);
    background-attachment: fixed;
    background-size: cover;
    color: var(--text);
    font-family: var(--font);
    direction: rtl;
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 18px;
    transition: background 0.5s ease, color 0.3s ease;
}

/* ===== THEME TOGGLE BUTTON ===== */
.theme-toggle-float {
    position: fixed;
    bottom: 100px;
    left: 20px;
    width: 55px;
    height: 55px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.theme-toggle-float:hover { transform: scale(1.1) rotate(15deg); border-color: var(--primary); }
.theme-toggle-float .light-icon { display: none; }

/* ===== BACKGROUND VIDEO ===== */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

/* ===== PARTICLE CANVAS ===== */
#particle-canvas {
    position: fixed; top:0; left:0; width:100%; height:100%;
    z-index: 0; pointer-events: none;
}

/* ===== GRADIENT ORBS ===== */
.orb {
    position: fixed; border-radius: 50%; z-index: 0;
    pointer-events: none; filter: blur(120px);
}
.orb-1 { width:500px; height:500px; top:-100px; right:-100px; background: var(--accent); opacity:0.12; animation: orbFloat 15s infinite alternate; }
.orb-2 { width:400px; height:400px; bottom:10%; left:-80px; background: #0a1033; opacity:0.2; animation: orbFloat 20s infinite alternate-reverse; }
.orb-3 { width:350px; height:350px; top:50%; right:30%; background: #ffd700; opacity:0.06; animation: orbFloat 18s infinite alternate; }

@keyframes orbFloat {
    0% { transform: translate(0,0) scale(1); }
    50% { transform: translate(30px,-40px) scale(1.15); }
    100% { transform: translate(-20px,30px) scale(0.95); }
}

/* ===== ANIMATIONS ===== */
.animate-slide-down { animation: slideDown 0.8s ease-out forwards; opacity:0; }
.animate-slide-up { animation: slideUp 0.8s ease-out forwards; opacity:0; }
.animate-scale-in { animation: scaleIn 0.8s ease-out forwards; opacity:0; }
.animate-fade-in { animation: fadeIn 1s ease-out forwards; opacity:0; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes slideDown { from{opacity:0;transform:translateY(-40px)} to{opacity:1;transform:translateY(0)} }
@keyframes slideUp { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }
@keyframes scaleIn { from{opacity:0;transform:scale(0.5)} to{opacity:1;transform:scale(1)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ===== HERO SECTION ===== */
#hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center;
    padding: 6rem 1.5rem 2rem;
    position: relative; z-index: 1;
}

.hero-container { max-width: 900px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.75rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 0.5rem 1.5rem; border-radius: 99px;
    font-size: 0.85rem; font-weight: 700;
    color: var(--primary); margin-bottom: 2rem;
}
.badge-dot { width:6px; height:6px; border-radius:50%; background:#2ecc71; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }

.hero-logo { margin-bottom: 1.5rem; }
.hero-logo-img {
    width: 130px; height: 130px; object-fit: contain;
    filter: drop-shadow(0 0 25px var(--primary-glow));
    animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.version-badge {
    background: linear-gradient(90deg, var(--accent), #b89648);
    color: #000;
    padding: 0.45rem 1.4rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 900;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px var(--primary-glow);
}

.hero-title { font-size: 2.8rem; font-weight: 900; line-height: 1.25; margin-bottom: 1.5rem; }
.title-gradient {
    font-size: 3.6rem;
    background: linear-gradient(135deg, var(--primary), var(--accent), #ffffff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}
.title-sub { font-size: 1.8rem; color: var(--text); font-weight: 800; }

.hero-desc { font-size: 1.15rem; color: var(--text-dim); max-width: 700px; margin: 0 auto 2.5rem; }
.hero-desc strong { color: var(--primary); }

.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #000; padding: 0.9rem 2.2rem; border-radius: 99px;
    font-weight: 900; font-size: 1rem; text-decoration: none;
    border: none; cursor: pointer; font-family: var(--font);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.35);
    transition: all 0.3s ease;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(212, 175, 55, 0.5); }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: var(--text);
    padding: 0.9rem 2.2rem; border-radius: 99px;
    border: 1px solid var(--border); font-weight: 700;
    font-size: 1rem; text-decoration: none; cursor: pointer;
    font-family: var(--font); transition: all 0.3s ease;
}
.btn-ghost:hover { border-color: var(--primary); background: rgba(255,215,0,0.05); }

.btn-download {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff; padding: 0.9rem 2.2rem; border-radius: 99px;
    font-weight: 900; font-size: 1rem; text-decoration: none;
    border: none; cursor: pointer; font-family: var(--font);
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.3);
    transition: all 0.3s ease;
}
.btn-download:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(46, 204, 113, 0.45); }

/* ===== TRUST BAR ===== */
.trust-bar {
    display: flex; align-items: center; justify-content: center;
    gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.trust-item { display: flex; align-items: center; gap: 0.5rem; color: var(--text-dim); font-size: 0.9rem; font-weight: 600; }
.trust-item i { color: var(--primary); }
.trust-divider { width:1px; height:20px; background: var(--border); }

/* ===== HERO IMAGE ===== */
.hero-image {
    max-width: 800px; margin: 2rem auto 0; position: relative; z-index: 1;
    padding: 0 15px;
}
.hero-image img {
    width: 100%; border-radius: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 35px rgba(212, 175, 55, 0.15);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); }
.scroll-mouse {
    width: 24px; height: 38px; border: 2px solid var(--text-dim);
    border-radius: 12px; position: relative;
}
.scroll-wheel {
    width: 4px; height: 8px; background: var(--primary);
    border-radius: 2px; position: absolute;
    top: 6px; left: 50%; transform: translateX(-50%);
    animation: scrollAnim 2s infinite;
}
@keyframes scrollAnim { 0%{opacity:1;top:6px} 100%{opacity:0;top:20px} }

/* ===== COUNTDOWN ===== */
#countdown {
    padding: 4rem 1.5rem; position: relative; z-index: 1;
}
.countdown-container {
    max-width: 750px; margin: 0 auto; text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(6, 8, 20, 0.8));
    border: 1px solid var(--border);
    border-radius: 2rem; padding: 3rem 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
.countdown-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(231, 76, 60, 0.15); color: #f19f9f;
    padding: 0.4rem 1.25rem; border-radius: 99px;
    font-size: 0.85rem; font-weight: 800; margin-bottom: 1rem;
}
.countdown-badge i { color: var(--red); animation: pulse 1s infinite; }
.countdown-title { font-size: 1.9rem; font-weight: 900; margin-bottom: 0.5rem; }
.highlight-text { color: var(--primary); }
.countdown-desc { color: var(--text-dim); margin-bottom: 1.5rem; font-weight: 600; }

.countdown-timer { display: flex; justify-content: center; gap: 0.75rem; align-items: center; }
.time-unit { text-align: center; }
.time-value {
    display: block; font-size: 2.5rem; font-weight: 900;
    background: rgba(255,255,255,0.02); border: 1px solid var(--border);
    border-radius: 1rem; padding: 0.5rem 1rem; min-width: 70px;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.time-label { font-size: 0.75rem; color: var(--text-dim); margin-top: 0.3rem; display: block; font-weight: 700; }
.time-sep { font-size: 2rem; font-weight: 900; color: var(--accent); }

/* ===== SECTIONS ===== */
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

#features, #how-it-works, #testimonials, #pricing, #specs, #lead-form { padding: 5rem 1.5rem; position: relative; z-index: 1; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(212, 175, 55, 0.08); color: var(--primary);
    padding: 0.4rem 1.25rem; border-radius: 99px;
    font-size: 0.85rem; font-weight: 800; margin-bottom: 1rem;
    border: 1px solid var(--border);
}
.section-title { font-size: 2.3rem; font-weight: 900; }

/* ===== FEATURE CARDS ===== */
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 2rem;
}
.feature-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 1.25rem; padding: 2.5rem 2rem;
    transition: all 0.4s ease; position: relative; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.feature-card::before {
    content: ''; position: absolute; top:0; left:0; right:0;
    height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover { transform: translateY(-8px); border-color: rgba(212,175,55,0.4); box-shadow: 0 15px 35px rgba(212,175,55,0.08); }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 60px; height: 60px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 1.5rem;
}
.icon-blue { background: rgba(52, 152, 219, 0.12); color: var(--cyan); }
.icon-purple { background: rgba(155, 89, 182, 0.12); color: #9b59b6; }
.icon-green { background: rgba(46, 204, 113, 0.12); color: var(--green); }
.icon-orange { background: rgba(230, 126, 34, 0.12); color: var(--orange); }
.icon-red { background: rgba(231, 76, 60, 0.12); color: var(--red); }
.icon-cyan { background: rgba(26, 188, 156, 0.12); color: #1abc9c; }

.feature-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.75rem; }
.feature-card p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.7; font-weight: 600; }

/* ===== STEPS ===== */
.steps-grid { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }

.step-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 1.5rem; padding: 2.5rem 1.5rem;
    text-align: center; flex: 1; min-width: 250px; max-width: 320px;
    position: relative; transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.step-card:hover { transform: translateY(-5px); border-color: rgba(212, 175, 55, 0.35); }

.step-number {
    font-size: 3rem; font-weight: 900; color: rgba(212, 175, 55, 0.1);
    position: absolute; top: 0.5rem; left: 1rem;
}
.step-icon {
    width: 65px; height: 65px; margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 1.6rem; color: #000;
}
.step-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.5rem; }
.step-card p { color: var(--text-dim); font-size: 0.95rem; font-weight: 600; }

.step-connector { display: flex; align-items: center; width: 60px; position: relative; }
.connector-line { width: 100%; height: 2px; background: linear-gradient(90deg, var(--primary), var(--accent)); opacity: 0.5; }
.connector-dot {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
    width: 10px; height: 10px; background: var(--accent); border-radius: 50%;
}

/* ===== STATS SECTION ===== */
.stats-section { padding: 4.5rem 0; background: rgba(0,0,0,0.5); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; text-align: center; }
.stat-value { font-size: 3.5rem; font-weight: 900; color: var(--primary); text-shadow: 0 0 20px var(--primary-glow); }
.stat-label { font-size: 1.1rem; color: var(--text-dim); font-weight: 700; }

/* ===== PRICING SECTION ===== */
.pricing-section { padding: 6rem 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.price-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 3.5rem 2.2rem;
    position: relative;
    transition: all 0.4s;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
.price-card.featured {
    border-color: var(--primary);
    background: rgba(212, 175, 55, 0.04);
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.08);
}
.popular-tag {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), var(--accent)); color: #000; padding: 0.45rem 1.5rem;
    border-radius: 50px; font-weight: 900; font-size: 0.85rem;
    white-space: nowrap;
}
.price-header h3 { font-size: 1.45rem; margin-bottom: 1.5rem; font-weight: 800; }
.price-amount { font-size: 3rem; font-weight: 900; color: var(--text); margin-bottom: 2rem; }
.price-amount span { font-size: 0.95rem; color: var(--text-dim); display: block; margin-top: -0.5rem; }
.price-features { list-style: none; margin-bottom: 2.5rem; text-align: right; padding-right: 0.5rem; }
.price-features li { margin-bottom: 1.1rem; color: var(--text-dim); display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; font-weight: 600; }
.price-features li i { color: var(--green); }
.btn-price {
    display: block; width: 100%; padding: 1rem; text-align: center;
    border-radius: 1rem; background: transparent;
    border: 1px solid var(--primary); color: var(--primary);
    font-weight: 800; text-decoration: none; transition: all 0.3s;
    cursor: pointer; font-family: var(--font);
}
.btn-price:hover { background: var(--primary); color: #000; }
.btn-price.featured { background: var(--primary); color: #000; }
.btn-price.featured:hover { background: #e5c100; transform: translateY(-3px); }

.price-discount {
    font-size: 0.8rem;
    color: #fff;
    margin: 10px 0 20px;
    font-weight: 800;
    background: rgba(231, 76, 60, 0.2);
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* ===== SPECS SECTION ===== */
.specs-section { padding: 4.5rem 0; background: rgba(0,0,0,0.3); }
.specs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.spec-box { text-align: center; padding: 2rem 1.5rem; border-radius: 1.5rem; background: var(--bg-card); border: 1px solid var(--border); transition: 0.3s; }
.spec-box:hover { border-color: var(--primary); transform: translateY(-5px); }
.spec-box i { font-size: 2.2rem; color: var(--primary); margin-bottom: 1rem; display: block; }
.spec-box h4 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--text); font-weight: 800; }
.spec-box p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.5; font-weight: 600; }

/* ===== TESTIMONIALS SECTION ===== */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.testimonial-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.testimonial-card.featured { border-color: var(--primary); background: rgba(212,175,55,0.02); }

.stars { color: #fbbf24; display: flex; gap: 3px; font-size: 0.85rem; }
.testimonial-text { 
    font-style: italic; 
    color: var(--text-dim); 
    line-height: 1.7; 
    font-size: 0.95rem;
    flex-grow: 1;
    font-weight: 600;
}

.testimonial-author { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
}
.author-avatar { 
    width: 48px; 
    height: 48px; 
    border-radius: 50%; 
    background: var(--bg-dark); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--primary); 
    border: 1px solid var(--border);
    font-size: 1.2rem;
}
.testimonial-author div:last-child { 
    display: flex; 
    flex-direction: column; 
    gap: 4px; 
    text-align: right;
}
.testimonial-author strong { 
    display: block; 
    font-size: 1.05rem; 
    color: var(--text); 
    font-weight: 800;
}
.testimonial-author span { 
    display: block; 
    font-size: 0.85rem; 
    color: var(--text-dim); 
}

/* ===== TESTIMONIALS SLIDER ===== */
.testimonials-slider-container {
    position: relative;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 50px;
}
.testimonials-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem 2rem;
    scrollbar-width: none; /* Firefox */
}
.testimonials-slider::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.testimonials-slider .testimonial-card {
    flex: 0 0 350px;
    max-width: 350px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--primary);
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}
.slider-btn:hover { background: var(--primary); color: #000; border-color: var(--primary); }
.slider-btn.prev { right: 0; }
.slider-btn.next { left: 0; }

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.modal-overlay.show { opacity: 1; visibility: visible; }

.modal-content {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    width: 95%;
    max-width: 500px;
    padding: 2.5rem;
    border-radius: 2rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
.modal-close {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 2rem;
    cursor: pointer;
}

/* Star Rating Input */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}
.star-rating input { display: none; }
.star-rating label {
    font-size: 1.8rem;
    color: #475569;
    cursor: pointer;
    transition: 0.2s;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: #fbbf24; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-slider-container { padding: 0 10px; }
    .slider-btn { display: none; }
    .testimonials-slider .testimonial-card { flex: 0 0 290px; }
}

/* ===== LEAD FORM ===== */
#lead-form { padding: 5rem 1.5rem; position: relative; z-index: 1; }

.form-container {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 3.5rem;
    align-items: center;
}
.form-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(46,204,113,0.15); color: #87e8a9;
    padding: 0.4rem 1.25rem; border-radius: 99px;
    font-size: 0.85rem; font-weight: 800; margin-bottom: 1.5rem;
}

.form-info h2 { font-size: 2.2rem; font-weight: 900; line-height: 1.35; margin-bottom: 1rem; }
.form-info p { color: var(--text-dim); font-size: 1.05rem; margin-bottom: 2rem; font-weight: 600; }

.form-features { display: flex; flex-direction: column; gap: 0.9rem; }
.form-feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; font-weight: 600; }
.form-feature i { color: var(--green); }

.form-card {
    background: rgba(255,255,255,0.01); border: 1px solid var(--border);
    border-radius: 2rem; padding: 3rem 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
.form-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 1.5rem; text-align: center; }

.input-group { margin-bottom: 1.25rem; }
.input-group label {
    display: block; font-size: 0.9rem; font-weight: 700;
    margin-bottom: 0.5rem; color: var(--text-dim);
}
.input-group label i { color: var(--primary); margin-left: 0.3rem; }

.input-group input, .input-group select {
    width: 100%; padding: 0.9rem 1.2rem;
    background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    border-radius: 0.75rem; color: var(--text); font-family: var(--font);
    font-size: 1rem; outline: none; transition: all 0.3s;
}

/* International Phone Input Tweaks */
.iti { width: 100%; display: block; }
.iti__country-list { background-color: #0b0f26; border: 1px solid var(--border); color: #fff; z-index: 1000; }
.iti__country:hover { background-color: var(--primary-glow); }
.iti__selected-flag { background: rgba(255,255,255,0.05); border-radius: 0.75rem 0 0 0.75rem; border-right: 1px solid var(--border); padding: 0 10px; }
.iti--separate-dial-code .iti__selected-dial-code { color: var(--text); font-weight: 700; margin-left: 5px; }

.input-group input:focus, .input-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
    background: rgba(255,255,255,0.06);
}
.input-group select { cursor: pointer; }
.input-group select option { background: #0c0f24; color: #fff; }

.btn-submit {
    width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    background: linear-gradient(135deg, var(--green), #27ae60);
    color: #fff; padding: 1rem; border-radius: 0.75rem;
    font-weight: 900; font-size: 1.1rem; border: none;
    cursor: pointer; font-family: var(--font);
    transition: all 0.3s; margin-top: 0.5rem;
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.3);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(46, 204, 113, 0.45); }

.form-privacy {
    text-align: center; font-size: 0.8rem; color: var(--text-dim);
    margin-top: 1rem; display: flex; align-items: center;
    justify-content: center; gap: 0.3rem;
}

/* ===== FOOTER ===== */
footer {
    padding: 4rem 1.5rem; border-top: 1px solid var(--border);
    position: relative; z-index: 1;
}
.footer-content { max-width: 950px; margin: 0 auto; text-align: center; }
.footer-brand { margin-bottom: 2rem; }
.footer-logo {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 1.4rem; font-weight: 900; margin-bottom: 0.75rem;
}
.footer-logo-img {
    width: 40px; height: 40px; object-fit: contain;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}
.footer-brand p { color: var(--text-dim); font-size: 0.95rem; font-weight: 600; }

.footer-contact {
    display: flex; justify-content: center; gap: 1.5rem;
    flex-wrap: wrap; margin-bottom: 2rem;
}
.footer-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--text-dim); text-decoration: none; font-size: 0.95rem;
    padding: 0.6rem 1.25rem; border-radius: 99px;
    border: 1px solid var(--border); transition: all 0.3s;
    font-weight: 700;
}
.footer-link:hover { border-color: var(--primary); color: var(--primary); }
.footer-link.whatsapp:hover { border-color: #2ecc71; color: #2ecc71; }
.footer-copy p { color: var(--text-dim); font-size: 0.85rem; font-weight: 600; }

/* ===== FLOATING WHATSAPP ===== */
.floating-wa {
    position: fixed; bottom: 2rem; left: 2rem; z-index: 999;
    width: 60px; height: 60px; background: #2ecc71;
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: #fff; font-size: 1.8rem;
    text-decoration: none; box-shadow: 0 5px 25px rgba(46, 204, 113, 0.4);
    transition: all 0.3s;
}
.floating-wa:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(46, 204, 113, 0.55); }
.wa-pulse {
    position: absolute; inset: -5px; border-radius: 50%;
    border: 2px solid #2ecc71; animation: waPulse 2s infinite;
}
@keyframes waPulse { 0%{transform:scale(1);opacity:0.8} 100%{transform:scale(1.4);opacity:0} }

/* ===== SUCCESS MODAL ===== */
.modal-card {
    background: linear-gradient(135deg, #090e24, #040612);
    border: 1px solid var(--border); border-radius: 2rem;
    padding: 3.5rem 2.5rem; text-align: center; max-width: 450px; width: 100%;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}
.modal-icon { font-size: 3.8rem; color: var(--green); margin-bottom: 1.25rem; }
.modal-card h3 { font-size: 1.6rem; font-weight: 900; margin-bottom: 0.75rem; }
.modal-card p { color: var(--text-dim); margin-bottom: 2rem; font-weight: 600; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .title-gradient { font-size: 2.3rem; }
    .title-sub { font-size: 1.35rem; }
    .hero-title { font-size: 2.1rem; }
    .section-title { font-size: 1.7rem; }
    .form-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .steps-grid { flex-direction: column; }
    .step-connector { transform: rotate(90deg); width: 40px; margin: 10px 0; }
    .trust-divider { display: none; }
    .trust-bar { gap: 1rem; }
    .countdown-timer { gap: 0.4rem; }
    .time-value { font-size: 1.9rem; min-width: 55px; padding: 0.4rem 0.75rem; }
    .form-card { padding: 2rem 1.5rem; }
    .features-grid { grid-template-columns: 1fr; }
}

/* ===== LIGHT THEME OVERRIDES (Amber/Bronze Gold) ===== */
.light-theme {
    --bg: #ffffff;
    --bg-dark: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.92);
    --text: #0f172a;
    --text-dim: #475569;
    --border: rgba(217, 119, 6, 0.22);
    --primary: #d97706;
    --primary-glow: rgba(217, 119, 6, 0.1);
    --accent: #b45309;
    --accent-glow: rgba(180, 83, 9, 0.08);
}
body.light-theme { 
    background: radial-gradient(circle at top right, #fef3c7, #f8fafc 100%);
    color: var(--text);
}
.light-theme .theme-toggle-float .dark-icon { display: block; color: var(--primary); }
.light-theme .theme-toggle-float .light-icon { display: none; }

.light-theme .orb-1 { background: #fde68a; opacity: 0.3; }
.light-theme .orb-2 { background: #bfdbfe; opacity: 0.2; }
.light-theme .orb-3 { background: #fbcfe8; opacity: 0.2; }

.light-theme .hero-badge { 
    background: rgba(217, 119, 6, 0.06); 
    color: var(--accent); 
    border: 1px solid rgba(217, 119, 6, 0.2);
}
.light-theme .title-sub { color: #1e293b; text-shadow: none; }
.light-theme .hero-desc { color: #334155; }
.light-theme .trust-item span { color: #475569; }
.light-theme .trust-divider { background: rgba(217, 119, 6, 0.15); }
.light-theme .section-title { color: #0f172a; }
.light-theme .countdown-title { color: #0f172a; }
.light-theme .countdown-desc { color: #334155; }

.light-theme .feature-card, 
.light-theme .price-card, 
.light-theme .step-card,
.light-theme .testimonial-card,
.light-theme .form-card,
.light-theme .spec-box { 
    background: rgba(255, 255, 255, 0.85); 
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06); 
    border: 1px solid rgba(217, 119, 6, 0.15);
    backdrop-filter: blur(15px);
}

.light-theme .feature-card:hover {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.1);
}

.light-theme .feature-card h3,
.light-theme .step-card h3,
.light-theme .testimonial-author strong,
.light-theme .price-header h3,
.light-theme .price-amount { color: #0f172a; }

.light-theme .feature-card p,
.light-theme .step-card p,
.light-theme .price-features li,
.light-theme .testimonial-text { color: #475569; }

.light-theme .input-group input, 
.light-theme .input-group select { 
    background: #ffffff; 
    color: #0f172a; 
    border: 1px solid rgba(217, 119, 6, 0.25); 
}
.light-theme .input-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(217, 119, 6, 0.15);
}
.light-theme .input-group label { color: #334155; }
.light-theme footer { background: #f1f5f9; border-top: 1px solid rgba(217, 119, 6, 0.15); }
.light-theme footer .footer-logo span, .light-theme footer .footer-brand p { color: #0f172a; }
.light-theme footer .footer-link { background: rgba(255, 255, 255, 0.7); border-color: rgba(217, 119, 6, 0.15); color: #334155; }
.light-theme .modal-card { background: #ffffff; color: #0f172a; border: 1px solid rgba(217, 119, 6, 0.2); }
.light-theme .stats-section { background: rgba(241, 245, 249, 0.75); border-color: rgba(217, 119, 6, 0.12); }
.light-theme .stat-value { color: var(--primary); text-shadow: none; }
.light-theme .stat-label { color: #475569; }

.light-theme .price-discount {
    background: rgba(231, 76, 60, 0.1);
    color: var(--red);
    border-color: rgba(231, 76, 60, 0.2);
}

body.light-theme header {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(217, 119, 6, 0.15);
}

/* Mobile Responsiveness Additions */
@media (max-width: 768px) {
    .pricing-grid .price-card.featured {
        transform: none !important;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.75rem 1rem !important;
    }
    .header-brand-name {
        font-size: 1.1rem !important;
    }
    .header-logo-img {
        width: 35px !important;
        height: 35px !important;
    }
    .header-btn {
        padding: 0.45rem 1.1rem !important;
        font-size: 0.8rem !important;
    }
}

