/* ========================================
   Court Marriage Nepal - Main Stylesheet
   Color Palette:
   - Navy Blue: #1e3a5f
   - Royal Blue: #2563eb
   - Crimson/Simrik: #dc2626
   - Gold: #d4a574
   - White: #ffffff
   - Light Gray: #f8fafc
   ======================================== */

/* CSS Variables */
:root {
    --navy: #1e3a5f;
    --navy-dark: #152a45;
    --royal-blue: #2563eb;
    --royal-blue-dark: #1d4ed8;
    --crimson: #dc2626;
    --gold: #d4a574;
    --gold-light: #e8c9a8;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --success: #22c55e;
    --whatsapp: #25d366;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* App-like: Prevent overscroll bounce */
    overscroll-behavior-y: contain;
    /* Prevent horizontal scroll */
    overflow-x: hidden;
}

/* App-like: Remove tap highlight and add custom active states */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Minimum touch target size for accessibility */
button, 
a, 
input[type="submit"], 
input[type="button"],
.btn,
.mobile-nav-item,
.faq-question,
.nav-links a,
.lang-btn {
    min-height: 44px;
    min-width: 44px;
}

/* Smooth transitions with cubic-bezier for premium feel */
:root {
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Glassmorphism variables */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-bg-dark: rgba(30, 58, 95, 0.9);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-border-light: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glass-blur: blur(20px);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--navy);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
}

.logo-text .highlight {
    color: var(--crimson);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-600);
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--royal-blue);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--royal-blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-toggle {
    display: flex;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    overflow: hidden;
}

.lang-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    background: var(--white);
    color: var(--gray-600);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--navy);
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--royal-blue);
    color: var(--white);
    border-color: var(--royal-blue);
}

.btn-primary:hover {
    background: var(--royal-blue-dark);
    border-color: var(--royal-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-secondary:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--royal-blue);
    border-color: var(--royal-blue);
}

.btn-outline:hover {
    background: var(--royal-blue);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    border-color: #20bd5a;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-cta {
    margin-top: 30px;
}

.cta-label {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    text-align: center;
    animation: bounce 2s infinite;
}

.hero-scroll span {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========================================
   Trust Signals
   ======================================== */
.trust-signals {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 20px;
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.trust-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.trust-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.trust-item p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--navy) 100%);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-500);
}

/* ========================================
   Why Choose Us
   ======================================== */
.why-choose {
    padding: 100px 0;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 58, 95, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--royal-blue);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* ========================================
   Process Overview
   ======================================== */
.process-overview {
    padding: 100px 0;
    background: var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: var(--gray-200);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    box-shadow: var(--shadow-lg);
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.service-card.featured {
    border: 2px solid var(--royal-blue);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--crimson);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.service-image {
    height: 200px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%);
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-content > p {
    color: var(--gray-500);
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--success);
    font-size: 0.9rem;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-wrapper {
    position: relative;
}

.testimonial-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 20px;
    scroll-behavior: smooth;
}

.testimonial-grid::-webkit-scrollbar {
    height: 6px;
}

.testimonial-grid::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 3px;
}

.testimonial-grid::-webkit-scrollbar-thumb {
    background: var(--royal-blue);
    border-radius: 3px;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 16px;
    transition: var(--transition);
    min-width: calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
    flex-shrink: 0;
    scroll-snap-align: start;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.testimonial-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--royal-blue);
    background: var(--white);
    color: var(--royal-blue);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.testimonial-nav button:hover {
    background: var(--royal-blue);
    color: var(--white);
}

.testimonial-nav button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 20px;
}

.testimonial-stars i {
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.author-info h4 {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-section .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-col > p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--royal-blue);
    color: var(--white);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--gray-400);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-info li i {
    color: var(--royal-blue);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

/* ========================================
   WhatsApp Float Button
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--whatsapp);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-text {
    font-weight: 600;
    font-size: 0.95rem;
}

/* ========================================
   Page Hero (Inner Pages)
   ======================================== */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 30px 30px;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb i {
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
}

.breadcrumb span {
    color: var(--gold);
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Content Section & Intro Box
   ======================================== */
.content-section {
    padding: 80px 0;
}

.intro-box {
    display: flex;
    gap: 40px;
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--royal-blue);
}

.intro-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-icon i {
    font-size: 2rem;
    color: var(--white);
}

.intro-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.intro-content p {
    color: var(--gray-600);
    margin-bottom: 15px;
    line-height: 1.7;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Eligibility Section
   ======================================== */
.eligibility-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.eligibility-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.eligibility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.eligibility-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--navy) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.eligibility-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.eligibility-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.eligibility-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 15px;
}

.eligibility-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(37, 99, 235, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--royal-blue);
}

.eligibility-note i {
    margin-top: 2px;
}

/* ========================================
   Process Section (Foreigners Page)
   ======================================== */
.process-section {
    padding: 80px 0;
    background: var(--white);
}

.process-visual {
    display: flex;
    align-items: stretch;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
}

.process-card {
    flex: 1;
    min-width: 250px;
    background: var(--light-gray);
    padding: 30px;
    border-radius: 16px;
    position: relative;
}

.process-card.highlight {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--navy) 100%);
    color: var(--white);
}

.process-card.highlight h3,
.process-card.highlight p,
.process-card.highlight li {
    color: var(--white);
}

.process-card.highlight .process-icon {
    background: rgba(255,255,255,0.2);
}

.process-day {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-card.highlight .process-day {
    background: var(--gold);
    color: var(--navy);
}

.process-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
}

.process-icon i {
    font-size: 1.3rem;
    color: var(--royal-blue);
}

.process-card.highlight .process-icon i {
    color: var(--white);
}

.process-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 15px;
}

.process-card ul {
    list-style: none;
}

.process-card ul li {
    font-size: 0.85rem;
    color: var(--gray-600);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.process-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.process-card.highlight ul li::before {
    color: var(--gold);
}

.process-arrow {
    display: flex;
    align-items: center;
    color: var(--gray-300);
    font-size: 1.5rem;
}

/* ========================================
   Documents Section
   ======================================== */
.documents-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.document-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.document-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 58, 95, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.document-icon i {
    font-size: 1.8rem;
    color: var(--royal-blue);
}

.document-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.document-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.documents-cta {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
   Translation Section
   ======================================== */
.translation-section {
    padding: 80px 0;
    background: var(--white);
}

.translation-box {
    display: flex;
    gap: 40px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 50px;
    border-radius: 20px;
    color: var(--white);
}

.translation-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.translation-icon i {
    font-size: 2.5rem;
    color: var(--gold);
}

.translation-content h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.translation-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
    line-height: 1.7;
}

.translation-content ul {
    margin-bottom: 20px;
}

.translation-content ul li {
    color: rgba(255,255,255,0.9);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.translation-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.translation-note {
    background: rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.translation-note i {
    color: var(--success);
    font-size: 1.2rem;
}

/* ========================================
   Embassy Section
   ======================================== */
.embassy-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.embassy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.embassy-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.embassy-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.embassy-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.embassy-card h3 i {
    color: var(--royal-blue);
}

.embassy-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 15px;
}

.embassy-card a {
    font-size: 0.85rem;
    color: var(--royal-blue);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.embassy-card a:hover {
    text-decoration: underline;
}

.embassy-note {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.embassy-note i {
    color: var(--royal-blue);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.faq-cat-btn {
    padding: 10px 25px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.faq-cat-btn:hover {
    border-color: var(--royal-blue);
    color: var(--royal-blue);
}

.faq-cat-btn.active {
    background: var(--royal-blue);
    border-color: var(--royal-blue);
    color: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-gray);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
}

.faq-question:hover {
    background: rgba(0, 51, 102, 0.03);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--dark);
    padding-right: 20px;
    margin: 0;
    pointer-events: none;
}

.faq-question i {
    color: var(--royal-blue);
    transition: var(--transition);
    flex-shrink: 0;
    pointer-events: none;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    background: rgba(0, 51, 102, 0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-top: 15px;
}

.faq-answer p,
.faq-answer ul {
    padding: 0 30px 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-answer ul {
    padding-left: 50px;
}

.faq-answer ul li {
    list-style: disc;
    margin-bottom: 8px;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

.faq-preview {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-preview .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-preview .faq-item {
    background: var(--white);
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: var(--gray-500);
    margin-bottom: 30px;
}

.contact-form {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group label .required {
    color: var(--crimson);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--royal-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-text {
    color: var(--crimson);
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.alert-error {
    background: rgba(220, 38, 38, 0.1);
    color: var(--crimson);
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 20px;
}

.contact-info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.contact-info-card > p {
    color: var(--gray-500);
    margin-bottom: 25px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
}

.contact-info-item .info-icon {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .info-icon i {
    font-size: 1.1rem;
    color: var(--royal-blue);
}

.contact-info-item .info-icon.whatsapp {
    background: rgba(37, 211, 102, 0.1);
}

.contact-info-item .info-icon.whatsapp i {
    color: var(--whatsapp);
}

.info-content h4 {
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 3px;
}

.info-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--whatsapp);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 5px;
}

.whatsapp-link:hover {
    text-decoration: underline;
}

.quick-contact-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.quick-contact-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.quick-contact-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

/* ========================================
   Map Section
   ======================================== */
.map-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

.map-wrapper iframe {
    display: block;
    width: 100% !important;
    height: 450px;
}

.map-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.map-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.map-info-item i {
    color: var(--royal-blue);
}

/* ========================================
   Documents Tabs Section
   ======================================== */
.documents-tabs-section {
    padding: 80px 0;
    background: var(--white);
}

.tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--light-gray);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: var(--royal-blue);
    color: var(--royal-blue);
}

.tab-btn.active {
    background: var(--royal-blue);
    border-color: var(--royal-blue);
    color: var(--white);
}

.tab-btn i {
    font-size: 1.2rem;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.checklist-header {
    text-align: center;
    margin-bottom: 40px;
}

.checklist-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.checklist-header h2 i {
    color: var(--royal-blue);
}

.checklist-header p {
    color: var(--gray-500);
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.checklist-card {
    display: flex;
    gap: 20px;
    background: var(--light-gray);
    padding: 25px;
    border-radius: 16px;
    transition: var(--transition);
}

.checklist-card:hover {
    box-shadow: var(--shadow-md);
}

.checklist-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checklist-icon.essential {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--navy) 100%);
}

.checklist-icon.conditional {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.checklist-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.checklist-content {
    flex: 1;
}

.checklist-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.checklist-content .badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.badge.essential {
    background: rgba(37, 99, 235, 0.1);
    color: var(--royal-blue);
}

.badge.conditional {
    background: rgba(212, 165, 116, 0.2);
    color: #b8860b;
}

.checklist-content ul {
    list-style: none;
}

.checklist-content ul li {
    font-size: 0.9rem;
    color: var(--gray-600);
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
}

.checklist-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--royal-blue);
}

.checklist-check {
    display: flex;
    align-items: flex-start;
    padding-top: 5px;
}

.checklist-check input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: var(--royal-blue);
}

/* ========================================
   Download Section
   ======================================== */
.download-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.download-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 40px 50px;
    border-radius: 20px;
    gap: 40px;
}

.download-content {
    display: flex;
    align-items: center;
    gap: 25px;
    color: var(--white);
}

.download-content i {
    font-size: 3rem;
    color: var(--crimson);
}

.download-content h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.download-content p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.download-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* ========================================
   Notes Section
   ======================================== */
.notes-section {
    padding: 80px 0;
    background: var(--white);
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.note-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

.note-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
}

.note-icon i {
    font-size: 1.5rem;
    color: var(--royal-blue);
}

.note-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.note-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ========================================
   Pricing Section (Nepalis Page)
   ======================================== */
.pricing-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 2px solid var(--royal-blue);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--crimson);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.pricing-header p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.pricing-price {
    padding: 25px 0;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 25px;
}

.pricing-price .currency {
    font-size: 1rem;
    color: var(--gray-500);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.pricing-features li i {
    font-size: 0.9rem;
}

.pricing-features li .fa-check {
    color: var(--success);
}

.pricing-features li .fa-times {
    color: var(--gray-400);
}

.pricing-features li.disabled {
    color: var(--gray-400);
}

.pricing-note {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ========================================
   Process Steps Vertical (Nepalis Page)
   ======================================== */
.process-section-alt {
    background: var(--light-gray);
}

.process-steps-vertical {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.process-steps-vertical::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gray-200);
}

.process-step-v {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-step-v:last-child {
    margin-bottom: 0;
}

.step-marker {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 3px solid var(--royal-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-marker span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--royal-blue);
    font-family: 'Playfair Display', serif;
}

.step-marker.highlight {
    background: var(--royal-blue);
}

.step-marker.highlight span {
    color: var(--white);
}

.step-content-v {
    background: var(--white);
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    flex: 1;
}

.step-content-v h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-content-v p {
    color: var(--gray-600);
    margin-bottom: 15px;
    line-height: 1.7;
}

.step-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--royal-blue);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ========================================
   Info Section (Nepalis Page)
   ======================================== */
.info-section {
    padding: 80px 0;
    background: var(--white);
}

.info-box {
    display: flex;
    gap: 40px;
    background: var(--light-gray);
    padding: 50px;
    border-radius: 20px;
}

.info-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 2rem;
    color: var(--white);
}

.info-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.info-content > p {
    color: var(--gray-600);
    margin-bottom: 25px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 20px;
}

.info-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--navy);
}

.info-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.info-note {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 99, 235, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    color: var(--royal-blue);
    font-size: 0.95rem;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .embassy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .notes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar .container {
        height: 60px;
        justify-content: center;
        position: relative;
    }
    
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.2rem;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 0;
    }
    
    .language-toggle {
        display: none;
    }
    
    .hero {
        padding-top: 60px;
        min-height: auto;
        padding-bottom: 80px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .trust-item {
        padding: 15px;
    }
    
    .trust-icon {
        width: 50px;
        height: 50px;
    }
    
    .trust-icon i {
        font-size: 1.3rem;
    }
    
    .trust-item h3 {
        font-size: 0.95rem;
    }
    
    .trust-item p {
        font-size: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .intro-box {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .intro-content {
        text-align: justify;
    }
    
    .intro-icon {
        margin: 0 auto;
    }
    
    .eligibility-grid {
        grid-template-columns: 1fr;
    }
    
    .process-visual {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        justify-content: center;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .translation-box {
        flex-direction: column;
        text-align: center;
    }
    
    .translation-icon {
        margin: 0 auto;
    }
    
    .embassy-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-preview .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .map-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: center;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
    }
    
    .download-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .download-content {
        flex-direction: column;
    }
    
    .download-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .download-buttons .btn {
        width: 100%;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps-vertical::before {
        left: 23px;
    }
    
    .step-marker {
        width: 46px;
        height: 46px;
    }
    
    .step-content-v {
        padding: 20px;
    }
    
    .info-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Enhanced Homepage Styles
   ======================================== */
.hero-enhanced {
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 2px, transparent 2px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: float-particles 20s linear infinite;
}

@keyframes float-particles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, #f5d89a 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    padding: 25px 40px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.3);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Preview Home */
.faq-preview-home {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-grid-home {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-preview-home .faq-item {
    background: var(--white);
}

.faq-preview-home .faq-cta {
    text-align: center;
    margin-top: 40px;
}

/* Enhanced CTA */
.cta-enhanced .cta-content {
    position: relative;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: pulse-heart 2s infinite;
}

.cta-icon i {
    font-size: 2rem;
    color: var(--crimson);
}

@keyframes pulse-heart {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.cta-features i {
    color: var(--success);
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: row;
        gap: 15px;
        padding: 20px 15px;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .stat-item {
        flex-shrink: 0;
    }
    
    .stat-divider {
        width: 1px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .faq-grid-home {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .feature-card,
    .eligibility-card,
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    .testimonial-grid {
        gap: 15px;
    }
    
    .checklist-card {
        flex-direction: column;
        text-align: center;
    }
    
    .checklist-icon {
        margin: 0 auto;
    }
    
    .checklist-check {
        justify-content: center;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p,
    .faq-answer ul {
        padding: 0 20px 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-price .amount {
        font-size: 2.5rem;
    }
}

/* ========================================
   Mobile Bottom Navigation - Glassmorphism
   ======================================== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    /* Glassmorphism effect */
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 6px 0;
    /* Safe area for iPhone notch/home indicator */
    padding-bottom: calc(6px + env(safe-area-inset-bottom));
    justify-content: space-around;
    align-items: center;
}

/* Dark mode glassmorphism variant */
@media (prefers-color-scheme: dark) {
    .mobile-bottom-nav {
        background: rgba(30, 41, 59, 0.92);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--gray-500);
    font-size: 0.65rem;
    padding: 8px 12px;
    transition: var(--transition-smooth);
    min-width: 56px;
    min-height: 48px;
    border-radius: 12px;
    position: relative;
}

.mobile-nav-item i {
    font-size: 1.25rem;
    margin-bottom: 4px;
    transition: var(--transition-bounce);
}

.mobile-nav-item span {
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Active state with indicator */
.mobile-nav-item.active {
    color: var(--royal-blue);
}

.mobile-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: var(--royal-blue);
    border-radius: 0 0 3px 3px;
}

.mobile-nav-item.active i {
    transform: scale(1.1);
    color: var(--royal-blue);
}

/* Tap/active state - subtle scale down */
.mobile-nav-item:active {
    transform: scale(0.92);
    opacity: 0.8;
}

.mobile-nav-item:hover {
    color: var(--royal-blue);
    background: rgba(37, 99, 235, 0.08);
}

/* Nepali Language Support */
.lang-np {
    font-family: 'Noto Sans Devanagari', 'Inter', sans-serif;
}

.lang-np h1, .lang-np h2, .lang-np h3, .lang-np h4, .lang-np h5, .lang-np h6 {
    font-family: 'Noto Sans Devanagari', 'Playfair Display', serif;
}

.lang-np .nav-links a,
.lang-np .mobile-nav-item span,
.lang-np .btn,
.lang-np .footer-col h4 {
    font-family: 'Noto Sans Devanagari', 'Inter', sans-serif;
}

/* ========================================
   Mobile-First Responsive Styles
   ======================================== */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    /* Account for bottom nav */
    .footer {
        padding-bottom: calc(90px + env(safe-area-inset-bottom));
    }
    
    .whatsapp-float {
        bottom: calc(75px + env(safe-area-inset-bottom));
    }
    
    body {
        padding-bottom: calc(65px + env(safe-area-inset-bottom));
    }
    
    /* Thumb zone: Move CTAs to bottom of sections */
    .hero-cta {
        margin-top: auto;
    }
    
    /* Stack buttons vertically on mobile for thumb reach */
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Larger touch targets for mobile */
    .btn {
        padding: 14px 24px;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .btn-lg {
        padding: 16px 28px;
        min-height: 52px;
    }
    
    /* Cards stack vertically */
    .features-grid,
    .services-grid,
    .testimonial-grid,
    .eligibility-grid,
    .documents-grid,
    .embassy-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Form inputs - larger for touch */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px;
        font-size: 16px; /* Prevents iOS zoom on focus */
        min-height: 48px;
    }
    
    /* FAQ items - larger touch area */
    .faq-question {
        padding: 18px 20px;
        min-height: 56px;
    }
    
    /* Hide desktop nav, show mobile */
    .nav-links {
        display: none;
    }
    
    /* Container padding for mobile */
    .container {
        padding: 0 16px;
    }
    
    /* Section padding adjustments */
    section {
        padding: 50px 0;
    }
    
    .page-hero {
        padding: 100px 0 60px;
    }
}

/* ========================================
   App-Like Interactive States
   ======================================== */
/* Button active/tap states */
.btn:active {
    transform: scale(0.97);
    opacity: 0.9;
}

/* Card tap states */
.feature-card:active,
.service-card:active,
.testimonial-card:active,
.eligibility-card:active,
.document-card:active,
.faq-item:active {
    transform: scale(0.98);
    opacity: 0.95;
}

/* Smooth hover transitions */
.btn {
    transition: var(--transition-smooth);
}

.btn:hover {
    transform: translateY(-2px);
}

/* FAQ question tap state */
.faq-question:active {
    background: rgba(0, 51, 102, 0.08);
}

/* Language toggle tap states */
.lang-btn:active {
    transform: scale(0.95);
}

/* ========================================
   Horizontal Scroll Snap for Sliders
   ======================================== */
.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 16px;
    padding: 8px 0;
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.horizontal-scroll > * {
    scroll-snap-align: start;
    flex-shrink: 0;
}

/* ========================================
   Glassmorphism Components
   ======================================== */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.glass-card-dark {
    background: rgba(30, 58, 95, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

/* Floating action button with glass effect */
.whatsapp-float {
    background: rgba(37, 211, 102, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

/* ========================================
   Safe Area Utilities
   ======================================== */
.safe-area-bottom {
    padding-bottom: env(safe-area-inset-bottom);
}

.safe-area-top {
    padding-top: env(safe-area-inset-top);
}

/* ========================================
   Additional Mobile Optimizations
   ======================================== */
@media (max-width: 480px) {
    /* Even larger touch targets on small screens */
    .btn {
        padding: 16px 20px;
        min-height: 52px;
        font-size: 0.95rem;
    }
    
    /* Full-width buttons in thumb zone */
    .hero-cta .btn {
        width: 100%;
    }
    
    /* Reduce section padding */
    section {
        padding: 40px 0;
    }
    
    /* Typography scaling */
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.125rem;
    }
    
    /* Process timeline vertical on mobile */
    .process-timeline {
        flex-direction: column;
    }
    
    .process-visual {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    /* Trust grid - 2 columns on small mobile */
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .trust-item {
        padding: 16px 12px;
    }
    
    /* Mobile nav items slightly smaller */
    .mobile-nav-item {
        min-width: 50px;
        padding: 6px 8px;
        font-size: 0.6rem;
    }
    
    .mobile-nav-item i {
        font-size: 1.1rem;
    }
}
