:root {
    --primary: #0B5ED7;
    --primary-dark: #0947A8;
    --dark: #0A2540;
    --orange: #FF6B00;
    --orange-hover: #E65C00;
    --text: #1A1A1A;
    --text-light: #6B7280;
    --bg: #F8FAFC;
    --white: #FFFFFF;
    --border: #E5E7EB;
    --light-blue: #E7F1FF;
    --success: #10B981;
    --radius: 12px;
    --shadow: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); line-height: 1.6; background: var(--bg); }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow); }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { background: var(--orange); color: white; padding: 8px 14px; border-radius: 8px; font-weight: 800; font-size: 18px; font-family: var(--font-heading); }
.logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 20px; color: var(--dark); }
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link { padding: 8px 16px; font-weight: 500; font-size: 15px; color: var(--text); border-radius: 8px; }
.nav-link:hover { color: var(--primary); background: var(--light-blue); }
.btn-nav { background: var(--orange) !important; color: white !important; font-weight: 600; }
.btn-nav:hover { background: var(--orange-hover) !important; }

/* DROPDOWN */
.nav-dropdown { position: relative; }
.dropdown-content { display: none; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 220px; padding: 8px 0; z-index: 50; }
.dropdown-content a { display: block; padding: 10px 20px; font-size: 14px; white-space: nowrap; }
.dropdown-content a:hover { background: var(--light-blue); color: var(--primary); }
.nav-dropdown:hover .dropdown-content { display: block; }

/* MOBILE */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { width: 24px; height: 3px; background: var(--dark); border-radius: 2px; }

/* HERO */
.hero { background: linear-gradient(135deg, rgba(10,37,64,0.92) 0%, rgba(11,94,215,0.85) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%230A2540" width="1200" height="600"/></svg>'); background-size: cover; background-position: center; padding: 100px 0 80px; text-align: center; color: white; }
.hero h1 { font-family: var(--font-heading); font-size: 56px; font-weight: 800; margin-bottom: 20px; line-height: 1.1; }
.hero h1 span { color: var(--orange); }
.hero p { font-size: 20px; opacity: 0.9; max-width: 700px; margin: 0 auto 40px; }

/* SEARCH */
.hero-search { max-width: 800px; margin: 0 auto; background: rgba(255,255,255,0.12); backdrop-filter: blur(10px); border-radius: 16px; padding: 24px; border: 1px solid rgba(255,255,255,0.2); }
.search-grid { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; }
.search-input, .search-select { padding: 14px 18px; border: 1px solid rgba(255,255,255,0.3); border-radius: 10px; background: rgba(255,255,255,0.95); font-size: 15px; font-family: var(--font-body); color: var(--text); outline: none; }
.search-select { cursor: pointer; }
.search-btn { padding: 14px 32px; background: var(--orange); color: white; border: none; border-radius: 10px; font-weight: 700; font-size: 15px; cursor: pointer; font-family: var(--font-heading); transition: 0.3s; }
.search-btn:hover { background: var(--orange-hover); transform: translateY(-2px); }

/* SECTIONS */
.section { padding: 80px 0; }
.section-title { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--dark); margin-bottom: 12px; text-align: center; }
.section-subtitle { text-align: center; color: var(--text-light); font-size: 18px; margin-bottom: 50px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* STATS */
.stats-section { background: var(--dark); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; color: white; }
.stat-item h3 { font-family: var(--font-heading); font-size: 48px; font-weight: 800; color: var(--orange); }
.stat-item p { font-size: 16px; opacity: 0.8; margin-top: 8px; }

/* CARDS */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: 0.3s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { height: 200px; background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%); display: flex; align-items: center; justify-content: center; color: white; font-size: 48px; }
.card-body { padding: 24px; }
.card-body h3 { font-family: var(--font-heading); font-size: 20px; margin-bottom: 8px; }
.card-body p { color: var(--text-light); font-size: 14px; margin-bottom: 16px; }
.card-flag { font-size: 28px; }

/* HOW IT WORKS */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.step { text-align: center; position: relative; }
.step-num { width: 60px; height: 60px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 800; font-size: 24px; margin: 0 auto 20px; }
.step h4 { font-family: var(--font-heading); font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--text-light); font-size: 14px; }

/* WHY US */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature { background: var(--white); padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); text-align: center; }
.feature-icon { font-size: 40px; margin-bottom: 16px; }
.feature h4 { font-family: var(--font-heading); font-size: 18px; margin-bottom: 8px; }
.feature p { color: var(--text-light); font-size: 14px; }

/* TESTIMONIALS */
.testimonials { background: var(--light-blue); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { background: var(--white); padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow); }
.testimonial-text { font-style: italic; color: var(--text); margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 48px; height: 48px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.testimonial-name { font-weight: 600; }
.testimonial-country { font-size: 13px; color: var(--text-light); }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%); padding: 80px 0; text-align: center; color: white; }
.cta-section h2 { font-family: var(--font-heading); font-size: 36px; margin-bottom: 16px; }
.cta-section p { font-size: 18px; opacity: 0.9; margin-bottom: 30px; }
.btn-cta { padding: 16px 40px; background: var(--orange); color: white; border: none; border-radius: 10px; font-weight: 700; font-size: 18px; cursor: pointer; font-family: var(--font-heading); transition: 0.3s; display: inline-block; }
.btn-cta:hover { background: var(--orange-hover); transform: translateY(-3px); }

/* BUTTONS */
.btn { display: inline-block; padding: 12px 28px; border-radius: 10px; font-weight: 600; font-size: 15px; cursor: pointer; transition: 0.3s; border: none; font-family: var(--font-body); }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-orange { background: var(--orange); color: white; }
.btn-orange:hover { background: var(--orange-hover); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); }

/* FOOTER */
.site-footer { background: var(--dark); color: white; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-col h4 { font-family: var(--font-heading); font-size: 16px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-col a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; }
.footer-social a:hover { background: var(--orange); }
.footer-contact li { font-size: 14px; opacity: 0.8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.6); font-size: 13px; }
.footer-legal a:hover { color: var(--orange); }

/* PAGES */
.page-header { background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%); padding: 80px 0; text-align: center; color: white; }
.page-header h1 { font-family: var(--font-heading); font-size: 42px; margin-bottom: 12px; }
.page-header p { font-size: 18px; opacity: 0.8; }
.page-content { padding: 60px 0; }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.content-card { background: var(--white); padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 24px; }
.content-card h2 { font-family: var(--font-heading); font-size: 24px; margin-bottom: 16px; color: var(--dark); }
.content-card p { color: var(--text-light); margin-bottom: 12px; line-height: 1.8; }
.content-card ul { margin-left: 20px; color: var(--text-light); }
.content-card li { margin-bottom: 8px; }
.sidebar-card { background: var(--white); padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 24px; }
.sidebar-card h3 { font-family: var(--font-heading); font-size: 18px; margin-bottom: 16px; color: var(--dark); }
.sidebar-card ul { list-style: none; }
.sidebar-card li { margin-bottom: 10px; }
.sidebar-card a { color: var(--primary); font-size: 14px; }
.sidebar-card a:hover { color: var(--orange); }

/* FORMS */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 14px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px; font-size: 15px; font-family: var(--font-body); outline: none; transition: 0.3s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(11,94,215,0.1); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .card-grid, .testimonial-grid, .features { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .content-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; box-shadow: var(--shadow-lg); border-top: 1px solid var(--border); }
    .nav-menu.active { display: flex; }
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 16px; }
    .search-grid { grid-template-columns: 1fr; }
    .stats-grid, .steps { grid-template-columns: repeat(2, 1fr); }
    .card-grid, .testimonial-grid, .features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .section { padding: 50px 0; }
    .section-title { font-size: 28px; }
}
@media (max-width: 480px) {
    .stats-grid, .steps { grid-template-columns: 1fr; }
    .hero { padding: 60px 0 50px; }
    .hero h1 { font-size: 28px; }
}
