/* =========================================
   GLOBAL & RESETS
   ========================================= */
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: #f8fafc;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    user-select: none !important;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-thumb {
    background-color: #293990;
}

::-webkit-scrollbar-track {
    background-color: #1f1f1f;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 5rem;
    background: transparent;
    padding-top: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 580px;
}

.hero-badge {
    display: inline-block;
    background: #e2e8f0;
    color: #334155;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-family: 'Poppins-Bold', sans-serif;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    font-family: 'Poppins-Bold', sans-serif;
}

.hero-content h1 span {
    color: #94a3b8;
}

.hero-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-family: 'Poppins-Regular', sans-serif;
    max-width: 95%;
}

/* =========================================
   HERO SEARCH (WITH BULLETPROOF OVERRIDES)
   ========================================= */
.hero-search-container {
    display: flex;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 50px;
    padding: 8px 8px 8px 28px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    align-items: center;
    transition: all 0.3s ease;
    max-width: 550px;
}

.hero-search-container:focus-within {
    border-color: #293990;
    box-shadow: 0 0 0 4px rgba(41, 57, 144, 0.1);
}

.hero-search-container i {
    color: #293990;
    font-size: 1.2rem;
}

/* Force override global input/textarea CSS */
.hero-search-container input,
.hero-search-container select {
    border: none !important;
    outline: none !important;
    width: 100% !important;
    padding: 10px 16px !important;
    font-size: 1rem !important;
    background: transparent !important;
    color: #0f172a !important;
    font-family: 'Poppins-Regular', sans-serif !important;
    cursor: pointer !important;
    box-shadow: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
    height: auto !important;
    appearance: auto;
}

.hero-search-container input::placeholder {
    color: #94a3b8 !important;
}

.hero-search-btn {
    background: #0f172a !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 40px !important;
    padding: 14px 32px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    white-space: nowrap !important;
    font-family: 'Poppins-Bold', sans-serif !important;
    transition: 0.2s !important;
    cursor: pointer !important;
}

.hero-search-btn:hover {
    background: #293990 !important;
}

/* =========================================
   HERO IMAGE
   ========================================= */
.hero-image-wrapper {
    flex: 1.2;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.recent-update-card {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.update-icon {
    background: #0f172a;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.update-text span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    margin-bottom: 4px;
    font-family: 'Poppins-Bold', sans-serif;
}

.update-text p {
    margin: 0;
    font-size: 1rem;
    color: #0f172a;
    line-height: 1.3;
    font-family: 'Poppins-Bold', sans-serif;
}

/* =========================================
   FEATURED DESTINATIONS
   ========================================= */
.featured-section {
    padding: 4rem 0;
    background: #ffffff;
    margin-bottom: 2rem;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.section-title h2 {
    font-size: 2.2rem;
    color: #0f172a;
    font-family: 'Poppins-Bold', sans-serif;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-title p {
    color: #64748b;
    font-size: 1rem;
    font-family: 'Poppins-Regular', sans-serif;
    margin: 0;
}

.view-all-link {
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Poppins-Bold', sans-serif;
    transition: color 0.2s;
}

.view-all-link:hover {
    color: #293990;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.dest-card {
    background: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.dest-card:hover {
    transform: translateY(-8px);
}

.dest-img-wrapper {
    position: relative;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.2rem;
}

.dest-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dest-card:hover .dest-img-wrapper img {
    transform: scale(1.05);
}

.dest-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-family: 'Poppins-Bold', sans-serif;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dest-badge i {
    color: #ef4444;
    font-size: 0.6rem;
}

.dest-info h3 {
    font-size: 1.2rem;
    color: #0f172a;
    font-family: 'Poppins-Bold', sans-serif;
    margin-bottom: 0.5rem;
}

.dest-meta {
    font-size: 0.75rem;
    color: #94a3b8;
    font-family: 'Poppins-Bold', sans-serif;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.05em;
}

.highlight-green {
    color: #10b981;
}

.highlight-gold {
    color: #f59e0b;
}

/* =========================================
   TRAVEL INTENT
   ========================================= */
.intent-section {
    background: #061124;
    padding: 6rem 0;
    color: #ffffff;
}

.intent-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.intent-header h2 {
    font-size: 2.5rem;
    font-family: 'Poppins-Bold', sans-serif;
    margin-bottom: 1rem;
}

.intent-header p {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.6;
    font-family: 'Poppins-Regular', sans-serif;
    margin: 0;
}

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

.intent-card {
    background: #12213d;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.intent-card:hover {
    background: #182b4a;
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.intent-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.intent-card h3 {
    font-size: 1.4rem;
    font-family: 'Poppins-Bold', sans-serif;
    margin-bottom: 1rem;
    color: #ffffff;
}

.intent-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    font-family: 'Poppins-Regular', sans-serif;
    margin-bottom: 2.5rem;
    min-height: 80px;
}

.intent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.intent-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #e2e8f0;
    font-size: 0.9rem;
    font-family: 'Poppins-Regular', sans-serif;
    margin-bottom: 1rem;
}

.intent-list li i {
    color: #10b981;
    font-size: 0.85rem;
    margin-top: 4px;
}

/* =========================================
   RESULTS CANVAS & TABS
   ========================================= */
.results-canvas-wrapper {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    padding: 3rem;
    margin-top: 2rem;
}

.top-nav-pills {
    gap: 12px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 20px;
    flex-wrap: wrap;
}

.sidebar-nav .nav-link {
    font-family: 'Poppins-Bold', sans-serif;
    color: #64748b;
    border-radius: 50px !important;
    padding: 12px 28px !important;
    transition: all 0.3s ease;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

.sidebar-nav .nav-link.active {
    background: #0f172a !important;
    color: #ffffff !important;
    border-color: #0f172a;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
}

.sidebar-nav .nav-link:hover:not(.active) {
    background: #e2e8f0;
    color: #0f172a;
}

.tab-panel {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.4s forwards ease-out;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   VISA TYPE PILLS (Horizontal Tabs)
   ========================================= */
.type-btn {
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 20px;
    font-family: 'Poppins-Bold', sans-serif;
    font-size: 0.85rem;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.type-btn:hover {
    background-color: #e2e8f0;
    color: #0f172a;
}

.type-btn.active {
    background-color: #293990;
    border-color: #293990;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(41, 57, 144, 0.2);
}

/* =========================================
   SHARP ACCORDION (Visas & Embassies)
   ========================================= */
.mtcl-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.mtcl-box:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.mtcl-box-header {
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #ffffff;
    transition: background 0.2s ease;
}

.mtcl-box-header:hover {
    background: #f8fafc;
}

.mtcl-box-header h3 {
    margin: 0;
    font-family: "Poppins-Bold", sans-serif;
    font-size: 1.05rem;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.mtcl-arrow {
    font-size: 1rem;
    color: #94a3b8;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mtcl-box-body {
    display: none;
    padding: 0 24px 24px 24px;
    border-top: 1px solid #e2e8f0;
    background: #ffffff;
}

.mtcl-box.is-open {
    border-color: #cbd5e1;
}

.mtcl-box.is-open .mtcl-box-header {
    background: #f8fafc;
    border-bottom: 1px solid transparent;
}

.mtcl-box.is-open .mtcl-box-body {
    display: block;
    animation: slideDownFade 0.3s ease forwards;
}

.mtcl-box.is-open .mtcl-arrow {
    transform: rotate(180deg);
    color: #293990;
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   INTERNAL ACCORDION DATA
   ========================================= */
.data-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    font-family: "Poppins-Regular", sans-serif;
    font-size: 0.95rem;
}

.data-row:last-of-type {
    border-bottom: none;
}

.data-row .label {
    color: #64748b;
    flex: 1;
    padding-right: 20px;
}

.data-row .val {
    color: #0f172a;
    font-family: "Poppins-Bold", sans-serif;
    text-align: right;
    flex: 1;
}

.docs-wrapper {
    margin-top: 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}

.docs-wrapper h6 {
    font-family: "Poppins-Bold", sans-serif;
    margin-bottom: 12px;
    color: #0f172a;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.docs-wrapper p {
    font-family: "Poppins-Regular", sans-serif;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.doc-item {
    padding: 12px 16px;
    margin-bottom: 8px;
    background: #ffffff;
    border-left: 3px solid #293990;
    font-family: "Poppins-Regular", sans-serif;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    border-radius: 0 4px 4px 0;
}

.doc-item:last-child {
    margin-bottom: 0;
}

.doc-item strong {
    color: #0f172a;
    font-family: "Poppins-Bold", sans-serif;
    display: block;
    margin-bottom: 4px;
}

/* =========================================
   CLEAN PDF FORMS GRID 
   ========================================= */
.forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.form-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    padding: 20px;
    border-radius: 16px;
    font-family: "Poppins-Bold", sans-serif;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.form-btn i {
    color: #ef4444;
    font-size: 1.5rem;
    background: #fef2f2;
    padding: 12px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.form-btn:hover {
    background: #ffffff;
    color: #293990;
    border-color: #293990;
    box-shadow: 0 10px 25px rgba(41, 57, 144, 0.08);
    transform: translateY(-4px);
}

.form-btn:hover i {
    transform: scale(1.1);
    background: #293990;
    color: #ffffff;
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 1200px) {
    .hero-section {
        flex-direction: column;
        gap: 3rem;
        padding-top: 2rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-image-wrapper {
        width: 100%;
        height: 400px;
    }

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

    .intent-grid {
        grid-template-columns: 1fr;
    }
}

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

    .results-canvas-wrapper {
        padding: 1.5rem;
    }

    .forms-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   SHIMMERING SKELETON LOADERS
   ========================================= */
.skeleton {
    background: #e2e8f0;
    background: linear-gradient(110deg, #e2e8f0 8%, #f1f5f9 18%, #e2e8f0 33%);
    border-radius: 8px;
    background-size: 200% 100%;
    animation: 1.5s shimmer linear infinite;
}

@keyframes shimmer {
    to {
        background-position-x: -200%;
    }
}

.skel-title {
    height: 40px;
    width: 60%;
    margin: 0 auto 30px auto;
    border-radius: 12px;
}

.skel-text {
    height: 16px;
    width: 100%;
    margin-bottom: 12px;
}

.skel-text.short {
    width: 70%;
}

.skel-box {
    height: 80px;
    width: 100%;
    margin-bottom: 16px;
    border-radius: 12px;
}

.skel-pill {
    height: 40px;
    width: 120px;
    border-radius: 50px;
    display: inline-block;
    margin: 0 5px;
}