/* Kenya eTA - Safari Inspired Design */
:root {
    --primary: #c45c26;
    --primary-dark: #9a4a1f;
    --secondary: #2d5a27;
    --accent: #d4a853;
    --dark: #1a1a1a;
    --text: #333;
    --text-light: #666;
    --bg-light: #faf8f5;
    --bg-warm: #f5f0e8;
    --white: #fff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', system-ui, sans-serif; color: var(--text); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }

/* Header */
.header { background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,0.08); position: fixed; width: 100%; top: 0; z-index: 1000; }
.header .container { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { font-size: 32px; }
.logo-text { font-size: 20px; font-weight: 700; color: var(--primary); }
.logo-text span { display: block; font-size: 11px; font-weight: 400; color: var(--text-light); letter-spacing: 1px; }
.nav-menu { display: flex; list-style: none; gap: 30px; }
.nav-menu a { color: var(--text); font-weight: 500; transition: color 0.3s; }
.nav-menu a:hover { color: var(--primary); }
.btn { padding: 12px 28px; border-radius: 8px; font-weight: 600; transition: all 0.3s; display: inline-block; cursor: pointer; border: none; font-size: 15px; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: var(--white); }
.mobile-menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }

/* Hero */
.hero { padding: 100px 0 80px; background: linear-gradient(135deg, rgba(196,92,38,0.9), rgba(45,90,39,0.8)), url('../images/hero-kenya.jpg') center/cover; min-height: 100vh; display: flex; align-items: center; color: var(--white); }
.hero-content { max-width: 700px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); padding: 10px 20px; border-radius: 50px; font-size: 14px; margin-bottom: 25px; }
.hero h1 { font-size: 56px; font-weight: 800; line-height: 1.1; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.hero-subtitle { font-size: 20px; opacity: 0.95; margin-bottom: 35px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 15px; margin-bottom: 50px; }
.hero .btn-primary { background: var(--accent); color: var(--dark); }
.hero .btn-primary:hover { background: #e6b963; }
.hero .btn-secondary { border-color: var(--white); color: var(--white); }
.hero .btn-secondary:hover { background: var(--white); color: var(--primary); }
.hero-stats { display: flex; gap: 50px; }
.hero-stat { text-align: center; padding: 20px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border-radius: 12px; min-width: 120px; }
.hero-stat-number { font-size: 32px; font-weight: 700; color: var(--accent); }
.hero-stat-label { font-size: 13px; opacity: 0.9; margin-top: 5px; }

/* Features Bar */
.features-bar { background: var(--dark); padding: 30px 0; }
.features-bar .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.feature-bar-item { display: flex; align-items: center; gap: 12px; color: var(--white); }
.feature-bar-icon { font-size: 28px; color: var(--accent); }
.feature-bar-item span { font-size: 15px; }

/* Steps */
.steps { padding: 100px 0; background: var(--bg-light); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title { font-size: 42px; font-weight: 700; color: var(--dark); margin-bottom: 15px; }
.section-subtitle { color: var(--text-light); font-size: 18px; max-width: 600px; margin: 0 auto; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.step-card { background: var(--white); padding: 40px 30px; border-radius: 16px; text-align: center; position: relative; box-shadow: 0 10px 40px rgba(0,0,0,0.05); transition: transform 0.3s; }
.step-card:hover { transform: translateY(-10px); }
.step-number { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; color: var(--white); margin: 0 auto 25px; }
.step-card h3 { font-size: 18px; color: var(--dark); margin-bottom: 12px; }
.step-card p { color: var(--text-light); font-size: 14px; line-height: 1.7; }

/* About Section */
.about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.15); }
.about-image::before { content: ''; position: absolute; top: -20px; left: -20px; width: 100%; height: 100%; border: 4px solid var(--accent); border-radius: 20px; z-index: -1; }
.about-content h2 { font-size: 38px; color: var(--dark); margin-bottom: 20px; }
.about-content p { color: var(--text-light); font-size: 16px; line-height: 1.8; margin-bottom: 25px; }
.about-list { list-style: none; margin-bottom: 30px; }
.about-list li { padding: 12px 0; padding-left: 35px; position: relative; color: var(--text); font-size: 16px; border-bottom: 1px solid #eee; }
.about-list li:last-child { border-bottom: none; }
.about-list li::before { content: '✓'; position: absolute; left: 0; color: var(--secondary); font-weight: bold; font-size: 18px; }

/* Requirements */
.requirements { padding: 100px 0; background: var(--bg-warm); }
.requirements-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.requirement-card { background: var(--white); padding: 35px; border-radius: 16px; text-align: center; box-shadow: 0 5px 30px rgba(0,0,0,0.05); }
.requirement-icon { font-size: 48px; margin-bottom: 20px; }
.requirement-card h3 { font-size: 18px; color: var(--dark); margin-bottom: 10px; }
.requirement-card p { color: var(--text-light); font-size: 14px; }

/* Destinations */
.destinations { padding: 80px 0; background: var(--white); }
.destinations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.destination-card { position: relative; border-radius: 16px; overflow: hidden; height: 250px; }
.destination-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.destination-card:hover img { transform: scale(1.1); }
.destination-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: var(--white); }
.destination-card h4 { font-size: 18px; margin-bottom: 5px; }
.destination-card p { font-size: 13px; opacity: 0.9; }

/* FAQ */
.faq { padding: 100px 0; background: var(--bg-light); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: 12px; margin-bottom: 15px; overflow: hidden; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
.faq-question { width: 100%; padding: 25px 30px; background: none; border: none; text-align: left; font-size: 17px; font-weight: 600; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question::after { content: '+'; font-size: 24px; color: var(--primary); transition: transform 0.3s; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 30px 25px; display: none; }
.faq-item.active .faq-answer { display: block; }
.faq-answer p { color: var(--text-light); line-height: 1.8; }

/* CTA */
.cta { padding: 100px 0; background: linear-gradient(135deg, var(--primary), var(--secondary)); text-align: center; color: var(--white); }
.cta h2 { font-size: 42px; font-weight: 700; margin-bottom: 15px; }
.cta p { font-size: 18px; opacity: 0.9; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta .btn-primary { background: var(--accent); color: var(--dark); padding: 16px 40px; font-size: 17px; }

/* Footer */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-text { color: var(--accent); }
.footer-brand p { margin-top: 15px; font-size: 14px; line-height: 1.7; }
.footer-section h4 { color: var(--white); font-size: 16px; margin-bottom: 20px; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 12px; }
.footer-section a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color 0.3s; }
.footer-section a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; text-align: center; font-size: 14px; }

/* Application Page */
.application-page { padding: 120px 0 60px; background: var(--bg-light); min-height: 100vh; }
.application-container { max-width: 900px; margin: 0 auto; }
.progress-bar { display: flex; justify-content: space-between; margin-bottom: 40px; background: var(--white); padding: 25px; border-radius: 16px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-light); flex: 1; }
.progress-step.active { color: var(--primary); }
.progress-step.active .step-num { background: var(--primary); color: var(--white); }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: #e0e0e0; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 16px; }
.step-label { font-size: 13px; text-align: center; }
.form-main { background: var(--white); padding: 50px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.form-section-title { font-size: 26px; color: var(--dark); margin-bottom: 30px; padding-bottom: 15px; border-bottom: 3px solid var(--bg-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--dark); font-size: 14px; }
.required { color: var(--primary); }
.form-control { width: 100%; padding: 14px 18px; border: 2px solid #e8e8e8; border-radius: 10px; font-size: 15px; transition: border-color 0.3s; }
.form-control:focus { outline: none; border-color: var(--primary); }
.processing-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.processing-option { border: 2px solid #e8e8e8; border-radius: 16px; padding: 30px 20px; text-align: center; cursor: pointer; transition: all 0.3s; position: relative; }
.processing-option:hover { border-color: var(--primary); }
.processing-option.selected { border-color: var(--primary); background: #fef6f0; }
.processing-option input { display: none; }
.option-title { font-weight: 700; color: var(--dark); font-size: 18px; margin-bottom: 8px; }
.option-time { font-size: 14px; color: var(--text-light); margin-bottom: 12px; }
.option-price { font-size: 28px; font-weight: 700; color: var(--primary); }
.processing-option.popular::before { content: 'Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--secondary); color: var(--white); padding: 5px 15px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.form-buttons { display: flex; justify-content: space-between; margin-top: 35px; }

/* Contact & Legal Pages */
.contact-page, .legal-page { padding: 120px 0 60px; background: var(--bg-light); min-height: 100vh; }
.contact-container { max-width: 600px; margin: 0 auto; }
.contact-form { background: var(--white); padding: 50px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.contact-form h1 { font-size: 32px; color: var(--dark); margin-bottom: 10px; text-align: center; }
.contact-form .subtitle { text-align: center; color: var(--text-light); margin-bottom: 40px; }
.contact-form textarea { min-height: 150px; resize: vertical; }
.legal-container { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.legal-container h1 { font-size: 36px; color: var(--dark); margin-bottom: 10px; }
.legal-container .last-updated { color: var(--text-light); margin-bottom: 40px; font-size: 14px; }
.legal-container h2 { font-size: 22px; color: var(--dark); margin: 35px 0 15px; }
.legal-container p { color: var(--text-light); margin-bottom: 15px; line-height: 1.8; }
.legal-container ul { margin: 15px 0; padding-left: 25px; }
.legal-container li { color: var(--text-light); margin-bottom: 10px; line-height: 1.7; }

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 42px; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .requirements-grid { grid-template-columns: repeat(2, 1fr); }
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .mobile-menu-toggle { display: block; }
    .hero { padding: 100px 0 60px; }
    .hero h1 { font-size: 32px; }
    .hero-stats { flex-wrap: wrap; gap: 15px; }
    .hero-stat { min-width: 100px; }
    .steps-grid, .requirements-grid { grid-template-columns: 1fr; }
    .destinations-grid { grid-template-columns: 1fr; }
    .processing-options { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .progress-bar { flex-wrap: wrap; gap: 15px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .features-bar .container { flex-direction: column; align-items: center; }
}

/* Logo Image Styles */
.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}
