/* 
   Flyro Visa Services - Premium Styles
   Using CSS variables for easy theming and dark mode integration.
*/

:root {
    /* Color Palette - Premium Dark Theme */
    --bg-main: #0a0a0c;
    --bg-secondary: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(20, 20, 22, 0.6);
    --border-glass: rgba(255, 255, 255, 0.08);

    /* Accents */
    --accent-primary: #00a3ff;
    --accent-primary-glow: rgba(0, 163, 255, 0.4);
    --accent-secondary: #008beb;
    --accent-secondary-glow: rgba(5, 150, 105, 0.4);
    --accent-green: #00a3ff;
    --accent-orange: #f59e0b;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Values */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

/* Background Animated Orbs for Premium Feel */
.background-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1436491865332-7a615009cb05?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: -1;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out alternate;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent-primary-glow), transparent 70%);
}

.orb-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--accent-secondary-glow), transparent 70%);
    animation-delay: -5s;
}

.orb-3 {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(0, 163, 255, 0.15), transparent 70%);
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(10%, 10%) scale(1.1);
    }
}

/* Cinematic Flight Open Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    overflow: hidden;
    background: transparent;
}

.preloader-panel {
    width: 100%;
    height: 50vh;
    background: #050505;
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.top-panel {
    align-items: center;
}

.preloader-logo {
    width: 180px;
    margin-top: 10vh;
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(0, 163, 255, 0.4));
}

.preloader-plane-line {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, transparent, #00a3ff, #00f0ff);
    box-shadow: 0 0 15px #00a3ff, 0 0 30px #00a3ff;
    z-index: 3;
    transform: translateY(-50%);
}

.flying-plane-wrapper {
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    font-size: 3.5rem;
    color: #00f0ff;
    z-index: 5;
    filter: drop-shadow(0 0 20px #00a3ff);
}

/* Ensure the main content stays below the preloader */
.main-content-wrapper {
    position: relative;
    z-index: 10;
    background-color: var(--bg-main);
}

/* Typography elements */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.highlight {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    box-shadow: 0 4px 15px var(--accent-primary-glow);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px var(--accent-primary-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo i {
    color: var(--accent-primary);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--accent-primary);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-main);
    border-bottom: 1px solid var(--border-glass);
    padding: 1rem 2rem;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-glass);
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Main Content */
main {
    padding-top: 80px;
    /* Offset for navbar */
}

/* Block padding for standard sections */
section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Glass panel utility */
.glass-panel {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    z-index: 2;
}

.badge {
    padding: 0.5rem 1rem;
    background: rgba(0, 163, 255, 0.1);
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary-glow);
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    letter-spacing: -1px;
}

.hero-title span {
    display: block;
    background: linear-gradient(135deg, #ffffff, #a1a1aa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.stats-container {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.hero-visual {
    position: relative;
    height: 600px;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.abstract-globe {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--accent-primary), var(--accent-secondary), var(--accent-green), var(--accent-primary));
    filter: blur(40px);
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.glass-card {
    position: absolute;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.passport-card {
    top: 15%;
    left: 0;
    animation: floatCard 6s ease-in-out infinite alternate;
}

.document-card {
    bottom: 20%;
    right: 0;
    animation: floatCard 8s ease-in-out infinite alternate-reverse;
}

.passport-icon {
    margin-right: 0;
    font-size: 2.5rem;
    color: var(--accent-primary);
}

.doc-icon {
    margin-right: 0;
    font-size: 2.5rem;
    color: var(--accent-secondary);
}

.card-info h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.card-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.status-pill {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 1rem;
}

.status-pill.success {
    background: rgba(0, 163, 255, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(0, 163, 255, 0.2);
}

@keyframes floatCard {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}

@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        margin-top: 2rem;
    }

    .hero-content {
        align-items: center;
    }

    .hero-description {
        margin: 0 auto;
    }

    .stats-container {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        height: auto;
        min-height: 400px;
        flex-direction: column;
        gap: 2rem;
        padding-top: 2rem;
    }

    .glass-card {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        animation: none !important;
    }

    .abstract-globe {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 0;
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.card-icon-wrapper.blue {
    background: rgba(0, 163, 255, 0.1);
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary-glow);
}

.card-icon-wrapper.purple {
    background: rgba(5, 150, 105, 0.1);
    color: var(--accent-secondary);
    border: 1px solid var(--accent-secondary-glow);
}

.card-icon-wrapper.green {
    background: rgba(0, 163, 255, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(0, 163, 255, 0.3);
}

.card-icon-wrapper.orange {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-orange);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.features-list i {
    color: var(--accent-primary);
}

.card-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    transition: var(--transition-smooth);
}

.card-link i {
    transition: var(--transition-smooth);
}

.card-link:hover {
    color: var(--accent-primary);
}

.card-link:hover i {
    transform: translateX(5px);
}

/* Destinations Carousel Section */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.destinations-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0 3rem 0;
    /* extra bottom padding for shadow */
    width: 100%;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.destinations-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

@media (max-width: 1250px) {
    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
}

.destination-card {
    min-width: 280px;
    flex: 0 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 380px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dest-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    pointer-events: none;
}

.dest-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.dest-info h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.dest-info p {
    color: var(--accent-primary);
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.8;
}

.destination-card:hover .dest-image {
    transform: scale(1.08);
}

.destination-card:hover .dest-info {
    transform: translateY(0);
}

.destination-card:hover .dest-info p {
    opacity: 1;
}

/* China Expert Section */
.china-expert {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.china-expert::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 163, 255, 0.08), transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.china-expert-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.china-expert-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.china-expert-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin: 1.5rem 0;
}

.china-expert-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.stat-highlight {
    display: inline-flex;
    align-items: center;
    text-align: left;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    background: rgba(0, 163, 255, 0.05);
    border: 1px solid rgba(0, 163, 255, 0.2);
}

.stat-highlight h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.stat-highlight p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.why-card {
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 163, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.china-testimonial {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 163, 255, 0.2);
}

.china-testimonial blockquote {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.china-testimonial .author {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--accent-primary);
}

.china-cta {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .stat-highlight {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Process Section */
.flight-path-container {
    position: relative;
    width: 75%;
    margin: 0 auto 3rem auto;
    height: 40px;
    display: flex;
    align-items: center;
}

.flight-line {
    width: 100%;
    height: 3px;
    background-image: linear-gradient(to right, var(--accent-primary) 50%, transparent 50%);
    background-size: 20px 3px;
    background-repeat: repeat-x;
    opacity: 0.3;
}

.flight-plane {
    position: absolute;
    left: 0;
    font-size: 2.5rem;
    color: var(--accent-primary);
    transform: translateX(-50%) rotate(90deg);
    filter: drop-shadow(0 4px 10px var(--accent-primary-glow));
    z-index: 5;
}

@media (max-width: 992px) {
    .flight-path-container {
        display: none; /* Hide complex path on mobile grid wrap */
    }
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: background-color 0.4s, transform 0.4s; /* Specific transitions prevent GSAP flashing */
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px var(--border-glass);
    margin-bottom: 0;
    opacity: 0.15;
    transition: all 0.4s;
    pointer-events: none;
}

.process-step:hover .step-number {
    -webkit-text-stroke: 1px var(--accent-primary);
    opacity: 0.5;
    transform: scale(1.1) translate(-5px, 5px);
}

/* Infographic Icons */
.step-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(0, 163, 255, 0.1);
    border: 1px solid var(--accent-primary-glow);
    border-radius: var(--radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-icon {
    font-size: 2.2rem;
    color: var(--accent-primary);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-step:hover .step-icon-wrapper,
.hover-icon-container:hover .step-icon-wrapper {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 20px var(--accent-primary-glow);
    background: rgba(0, 163, 255, 0.2);
}

.process-step:hover .step-icon,
.hover-icon-container:hover .step-icon {
    transform: scale(1.15) rotate(8deg);
    color: #fff;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials .section-header {
    margin-bottom: 5rem;
}

.subtitle-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 0.5rem;
}

.text-strike {
    text-decoration: line-through;
    opacity: 0.4;
    margin-right: -0.25rem;
    padding-right: 0.5rem;
}

.text-cursive {
    font-family: 'Caveat', cursive;
    color: var(--accent-primary);
    font-size: 2.5rem;
    position: absolute;
    top: -2rem;
    right: -4.5rem;
    transform: rotate(-6deg);
    text-shadow: 0 4px 10px var(--accent-primary-glow);
}

.testimonial-card {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.testimonial-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stars {
    display: flex;
    gap: 0.35rem;
    color: #facc15;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.testimonial-quote {
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-secondary);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.4s ease;
}

.dot.active {
    background: var(--accent-primary);
    opacity: 1;
    width: 24px;
    border-radius: var(--radius-pill);
}

.testimonial-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 850px) {
    .testimonial-card {
        flex-direction: column-reverse;
    }
    .testimonial-image {
        height: 350px;
    }
    .testimonial-content {
        padding: 3rem 2rem;
    }
    .text-cursive {
        position: relative;
        display: inline-block;
        top: 0;
        right: 0;
        margin-left: -5px;
        transform: translateY(0.2rem) rotate(-6deg);
        font-size: 1.8rem;
    }
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.method i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    background: rgba(0, 163, 255, 0.1);
    padding: 0.75rem;
    border-radius: 50%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 1.2rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

.contact-form select {
    appearance: none;
    color: var(--text-secondary);
}

.contact-form select option {
    background: var(--bg-main);
    color: var(--text-primary);
}

.contact-form input:focus,
.contact-form select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.contact-form label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
    transition: var(--transition-smooth);
    background: transparent;
    padding: 0 0.25rem;
}

.contact-form input:focus~label,
.contact-form input:not(:placeholder-shown)~label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.8rem;
    color: var(--accent-primary);
    background: var(--bg-main);
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

.form-success-msg {
    margin-top: 1rem;
    color: var(--accent-green);
    text-align: center;
    background: rgba(0, 163, 255, 0.1);
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 163, 255, 0.2);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--border-glass);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.link-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: var(--transition-smooth);
}

.link-column a:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    color: var(--accent-primary);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    padding: 3rem;
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--accent-primary);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-form input {
    width: 100%;
    padding: 1.2rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

.modal-form input:focus {
    border-color: var(--accent-primary);
}

.modal-form label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
    transition: var(--transition-smooth);
    padding: 0 0.25rem;
}

.modal-form input:focus~label,
.modal-form input:not(:placeholder-shown)~label {
    top: 0;
    font-size: 0.8rem;
    color: var(--accent-primary);
    background: var(--bg-secondary);
}

.modal-plane {
    position: fixed;
    font-size: 1.35rem; /* Match button icon size exactly */
    color: #fff;
    z-index: 1001;
    pointer-events: none;
    opacity: 0;
}

/* Comparison Section */
.comparison {
    padding: 6rem 5%;
    position: relative;
    z-index: 2;
}

.comparison-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-glass);
    background: rgba(10, 10, 10, 0.4);
}

.compare-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.compare-row:last-child {
    border-bottom: none;
}

.compare-row:not(.header-row):hover {
    background: rgba(255, 255, 255, 0.02);
}

.header-row {
    background: rgba(16, 185, 129, 0.1);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

.compare-cell {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.flyro-col {
    justify-content: center;
    text-align: center;
}

.others-col {
    justify-content: center;
    text-align: center;
    color: var(--text-secondary);
}

.highlight-col {
    background: rgba(16, 185, 129, 0.05);
    border-left: 1px solid rgba(16, 185, 129, 0.2);
    border-right: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--accent-primary);
}

.icon-success { color: var(--accent-primary); font-size: 1.75rem; }
.icon-danger { color: #ef4444; font-size: 1.75rem; }
.icon-warning { color: #f59e0b; font-size: 1.75rem; }

/* Continuous Animations */
.anim-pulse {
    animation: icon-pulse 2s infinite ease-in-out;
}
@keyframes icon-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 2px var(--accent-primary-glow)); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 12px var(--accent-primary)); }
}

.anim-shake {
    animation: icon-shake 2.5s infinite ease-in-out;
}
@keyframes icon-shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
    20%, 40%, 60%, 80% { transform: translateX(4px); filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.6)); }
}

.anim-flash {
    animation: icon-flash 3s infinite;
}
@keyframes icon-flash {
    0%, 100% { transform: rotate(0); opacity: 1; filter: drop-shadow(0 0 2px rgba(245, 158, 11, 0.4)); }
    10% { transform: rotate(-15deg) scale(1.2); filter: drop-shadow(0 0 12px #f59e0b); }
    20% { transform: rotate(15deg) scale(1.2); }
    30% { transform: rotate(-5deg) scale(1.1); }
    40% { transform: rotate(0); }
}

@media (max-width: 768px) {
    /* Typographic & Hero Scaling */
    .hero-title { font-size: clamp(2rem, 10vw, 3rem); }
    .hero-description { font-size: 1rem; }
    .hero-actions { flex-direction: column; width: 100%; gap: 1rem; }

    /* Stats Grid Wrap */
    .stats-grid { 
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        gap: 1.5rem; 
        justify-content: center;
    }
    
    /* Global Button Mobile Fixes */
    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        white-space: normal;
        padding: 0.85rem 1.25rem !important;
        font-size: 1rem !important;
    }

    /* China Visa Section spacing */
    .china-expert { padding: 3rem 0; }
    .stat-highlight { padding: 1.5rem; flex-direction: column; text-align: center; gap: 0.5rem; }
    .china-cta .btn {
        flex-direction: column;
        padding: 1.25rem !important;
        font-size: 1.05rem !important;
        gap: 0.5rem;
    }

    /* Comparison Table bounds */
    .comparison-container { margin: 0 0.25rem; }
    .compare-cell { padding: 0.75rem 0.25rem; font-size: 0.85rem; text-align: center; }
    .compare-row { grid-template-columns: 1.5fr 1fr 1fr; }
    .compare-cell.feature-name { text-align: left; }
    
    /* Testimonials sizing */
    .testimonial-image { height: 200px; }
    .testimonial-content { padding: 2rem 1.5rem; }
    .testimonial-quote { font-size: 1.1rem; margin-bottom: 1rem; }
    
    /* FAQ Section */
    .faq-question { padding: 1.25rem 1rem; font-size: 0.95rem; }
    
    /* Footer Overrides & Safe Area */
    .footer-content { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; gap: 2rem; margin-top: 1.5rem; }
    .footer-bottom { 
        flex-direction: column; 
        gap: 1rem; 
        text-align: center; 
        padding-bottom: 6rem; /* Prevent WhatsApp overlap */
    }
    
    /* Modal Bounds */
    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    /* Destinations Carousel Mobile Fixes */
    .carousel-btn { display: none; } /* Native swipe is better on touch devices */
    .destinations-carousel { gap: 1rem; padding: 0.5rem 1rem 2rem 1rem; scroll-padding-left: 1rem; }
    .destination-card { min-width: 250px; height: 320px; }
}

/* WhatsApp Chatbot UI */
.whatsapp-container {
    position: fixed;
    bottom: 2rem;
    right: 2.5rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-float-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #1daf54);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.tooltip-text {
    position: absolute;
    right: 85px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    pointer-events: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    font-weight: 500;
}

.whatsapp-float-btn:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    right: 90px;
}

.whatsapp-chat {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 360px;
    background: var(--bg-main);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.whatsapp-chat.active {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.chat-header {
    background: #075E54;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 2;
}

.chat-agent-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.agent-avatar-wrapper {
    position: relative;
}

.agent-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    padding: 6px;
    object-fit: contain;
}

.online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #25D366;
    border: 2px solid #075E54;
    border-radius: 50%;
}

.agent-details h4 {
    font-size: 1.1rem;
    margin: 0 0 0.2rem 0;
    font-weight: 600;
}

.agent-details p {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.85;
}

.close-chat {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-chat:hover { opacity: 0.7; transform: rotate(90deg); }

.chat-body {
    padding: 1.5rem;
    background-color: #e5ddd5;
    background-image: url("https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png");
    background-blend-mode: multiply;
    height: 320px;
    max-height: 50vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.chat-message {
    background: white;
    color: #303030;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border-top-left-radius: 0;
    max-width: 88%;
    font-size: 0.95rem;
    line-height: 1.4;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.chat-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 10px solid white;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

.chat-footer {
    display: flex;
    padding: 1rem;
    background: #f0f0f0;
    gap: 0.75rem;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    background: white;
    border: none;
    padding: 1rem 1.25rem;
    border-radius: 25px;
    color: #333;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.chat-footer input:focus { box-shadow: 0 2px 5px rgba(0,0,0,0.15); }
.chat-footer input::placeholder { color: #888; }

.send-message-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #00a3ff;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.send-message-btn:hover { background: #008beb; transform: scale(1.05); }

@media (max-width: 768px) {
    .whatsapp-chat {
        width: calc(100vw - 3rem);
        right: -0.5rem;
        bottom: 80px;
    }
    .whatsapp-container {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    .tooltip-text { display: none; }
}

/* =========================================
   Visa Status Tracker Section
========================================= */
.visa-tracker {
    padding: 6rem 5%;
    position: relative;
    z-index: 2;
}

.tracker-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    text-align: center;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
    background: rgba(10, 10, 10, 0.4);
}

.tracker-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.tracker-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.tracker-form {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    width: 100%;
    max-width: 650px;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(0, 163, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.search-icon {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-right: 0.75rem;
}

.search-box input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05); /* Prevents Safari default white background */
    border: none;
    color: #fff;
    font-size: 1.1rem;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-box .btn {
    border-radius: 50px;
    padding: 0.85rem 2rem !important;
}

.tracker-result {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.result-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(0, 163, 255, 0.05);
    border: 1px solid rgba(0, 163, 255, 0.2);
    padding: 1.5rem 3rem;
    border-radius: 16px;
    animation: fadeUpTracker 0.4s ease forwards;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@keyframes fadeUpTracker {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.result-icon {
    font-size: 2.5rem;
    color: var(--accent-primary);
    transition: color 0.3s ease;
}

.result-details {
    text-align: left;
}

.result-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.25rem;
}

.result-details h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #fff;
}

/* Eligibility Checker Styles */
.eligibility-checker { padding: 6rem 1rem; }
.eligibility-container { max-width: 700px; margin: 0 auto; text-align: center; }
.quiz-progress { height: 6px; background: rgba(255,255,255,0.05); border-radius: 99px; margin-bottom: 2.5rem; overflow: hidden; }
.progress-bar { height: 100%; background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary)); transition: width 0.4s ease; }
.quiz-step h3 { font-size: 1.5rem; margin-bottom: 2rem; color: var(--text-primary); }
.quiz-options { display: flex; flex-direction: column; gap: 1rem; max-width: 400px; margin: 0 auto; }
.quiz-btn { background: rgba(255,255,255,0.03); border: 1px solid var(--border-glass); color: var(--text-primary); padding: 1rem 1.5rem; border-radius: var(--radius-md); font-size: 1.1rem; cursor: pointer; transition: all 0.3s ease; font-family: var(--font-body); }
.quiz-btn:hover { background: rgba(0, 163, 255, 0.1); border-color: var(--accent-primary); transform: translateY(-2px); }
.score-circle { width: 150px; margin: 0 auto 2rem auto; }
.circular-chart { display: block; margin: 0 auto; max-width: 100%; max-height: 250px; }

/* Ultra Small Device Fixes (iPhone SE size 375px) */
@media (max-width: 480px) {
    section { padding: 3rem 1rem !important; }
    .glass-panel { padding: 1.5rem 1rem !important; }
    h2 { font-size: clamp(1.75rem, 8vw, 2.25rem) !important; }
    .contact-container { padding: 1.5rem 1rem; gap: 2rem; }
    .contact-info p { font-size: 0.95rem; }
    .form-group input, .form-group select { font-size: 0.95rem; padding: 1rem 0.75rem; }
}
.circle-bg { fill: none; stroke: rgba(255,255,255,0.05); stroke-width: 3.8; }
.circle { fill: none; stroke-width: 2.8; stroke-linecap: round; transition: stroke-dasharray 1.5s ease-out; }
.blue .circle { stroke: var(--accent-primary); }
.orange .circle { stroke: #f59e0b; }
.percentage { fill: #fff; font-family: var(--font-heading); font-size: 0.5em; text-anchor: middle; font-weight: bold; }
.quiz-result { animation: fadeUpTracker 0.5s ease; }

/* Mobile responsives */
@media (max-width: 768px) {
    .visa-tracker { padding: 4rem 1rem; }
    .tracker-container { padding: 2rem 1.25rem; }
    .search-box { flex-direction: column; padding: 1rem; border-radius: var(--radius-lg); gap: 1rem; }
    .search-box input { width: 100%; text-align: center; }
    .search-icon { display: none; }
    .search-box .btn { width: 100%; }
    .result-card { flex-direction: column; text-align: center; padding: 1.5rem; width: 100%; }
    .result-details { text-align: center; }
}