:root {
    --primary-green: #34E0A1;
    --primary-green-hover: #00AA6C;
    --text-dark: #000000;
    --text-gray: #4A4A4A;
    --bg-white: #FFFFFF;
    --border-gray: #E0E0E0;
    --banner-bg: #FFEDD5;
    --banner-text: #9A3412;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    min-height: 100vh;
}

/* Banner */
.coming-soon-banner {
    background-color: var(--banner-bg);
    color: var(--banner-text);
    text-align: center;
    padding: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

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

.btn-ai {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-white);
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid #E0E0E0;
    box-shadow: 0 0 10px rgba(52, 224, 161, 0.3);
    transition: all 0.2s ease;
}

.btn-ai:hover {
    border-color: var(--primary-green);
    box-shadow: 0 0 15px rgba(52, 224, 161, 0.5);
}

.btn-signin {
    background-color: var(--text-dark);
    color: var(--bg-white) !important;
    padding: 10px 24px;
    border-radius: 24px;
    font-weight: 700;
}

.btn-signin:hover {
    background-color: #333333;
}

/* Main Content */
.main-container {
    max-width: 1000px;
    margin: 80px auto;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

/* Categories */
.categories {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.category {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    padding-bottom: 12px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    text-decoration: none;
    /* Reset browser default button styles so <button> matches <a> */
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-size: inherit;
    font-family: inherit;
    outline: none;
}

.category:hover {
    color: var(--text-dark);
}

.category.active {
    color: var(--text-dark);
    border-bottom: 2px solid var(--text-dark);
}

/* Search Bar */
.search-container {
    background: var(--bg-white);
    border-radius: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    margin: 0 auto;
    max-width: 800px;
    transition: box-shadow 0.3s;
}

.search-container:focus-within {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    padding-left: 20px;
}

.search-icon {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-right: 15px;
}

.search-input {
    border: none;
    outline: none;
    font-size: 1.1rem;
    width: 100%;
    color: var(--text-dark);
}

.search-input::placeholder {
    color: var(--text-gray);
}

.search-actions {
    display: flex;
    gap: 12px;
    padding-right: 4px;
}

.btn-ask-ai {
    background: var(--bg-white);
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-ask-ai:hover {
    background: #F5F5F5;
}

.btn-search {
    background: var(--primary-green);
    border: none;
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-search:hover {
    background: var(--primary-green-hover);
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .nav-links a {
        font-size: 0.95rem;
    }

    .categories {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .search-container {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
        gap: 20px;
    }
    
    .search-actions {
        width: 100%;
        justify-content: stretch;
    }
    
    .btn-ask-ai, .btn-search {
        flex: 1;
    }
}

/* Expandable Resources Section */
.resources-section {
    margin-top: 60px;
    text-align: center;
}

.btn-explore-more {
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-explore-more:hover {
    color: var(--primary-green-hover);
}

.chevron-icon {
    transition: transform 0.3s ease;
}

.btn-explore-more.active .chevron-icon {
    transform: rotate(180deg);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.resources-grid.hidden {
    display: none;
}

.resources-grid.visible {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

.resource-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.2s ease;
}

.resource-item:hover {
    transform: translateY(-5px);
}

.resource-circle {
    width: 140px;
    height: 140px;
    background-color: #E6F3F7;
    border: 4px solid #0F2027;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    box-shadow: inset -5px -5px 15px rgba(255,255,255,0.7), inset 5px 5px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.resource-item:hover .resource-circle {
    box-shadow: inset -5px -5px 15px rgba(255,255,255,0.7), inset 5px 5px 10px rgba(0,0,0,0.05), 0 10px 20px rgba(0,0,0,0.1);
    background-color: #D1EAF2;
}

.resource-circle i {
    font-size: 3rem;
    color: #0F2027;
}

.resource-title {
    font-weight: 700;
    font-size: 1rem;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

/* Responsive Grid */
@media (max-width: 900px) {
    .resources-grid.visible {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .resource-circle {
        width: 100px;
        height: 100px;
    }
    .resource-circle i {
        font-size: 2rem;
    }
}

/* =========================================================
   INNER PAGE STYLES
   ========================================================= */

/* Breadcrumb */
.breadcrumb {
    max-width: 900px;
    margin: 0 auto;
    padding: 16px 20px 0;
    font-size: 0.875rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.breadcrumb a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--primary-green-hover); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--text-dark); font-weight: 600; }

/* Page Hero */
.page-hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 20px;
    text-align: center;
}
.page-hero-icon {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 16px;
    display: block;
}
.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 16px;
}
.page-hero .hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* Page Content Wrapper */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

/* Content Section */
.content-section {
    margin-bottom: 56px;
}
.content-section h2 {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-gray);
}
.content-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 24px 0 10px;
}
.content-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 14px;
}
.content-section ul, .content-section ol {
    color: var(--text-gray);
    line-height: 1.8;
    padding-left: 20px;
    margin-bottom: 14px;
}
.content-section li { margin-bottom: 6px; }

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}
.card-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
.info-card {
    background: #f8f9fa;
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 24px;
    transition: box-shadow 0.25s, transform 0.25s;
}
.info-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
    transform: translateY(-3px);
}
.info-card-icon {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}
.info-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--text-dark);
}
.info-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #e8fdf5 0%, #f0fdf9 100%);
    border: 1px solid #a7f3d0;
    border-left: 4px solid var(--primary-green);
    border-radius: 12px;
    padding: 24px 28px;
    margin: 28px 0;
}
.highlight-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-green-hover);
}
.highlight-box p, .highlight-box ul {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
    padding-left: 0;
    list-style: none;
}
.highlight-box li::before {
    content: "✓ ";
    color: var(--primary-green-hover);
    font-weight: 700;
}

/* Warning/Tip Box */
.tip-box {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-left: 4px solid #f59e0b;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
}
.tip-box .tip-label {
    font-weight: 700;
    color: #92400e;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.tip-box p { color: #78350f; line-height: 1.7; margin: 0; }

/* Season / Comparison Table */
.season-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 0.95rem;
}
.season-table th {
    background: var(--text-dark);
    color: white;
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
}
.season-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-gray);
    color: var(--text-gray);
    vertical-align: top;
}
.season-table tr:nth-child(even) td { background: #f8f9fa; }
.season-table tr:last-child td { border-bottom: none; }
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
}
.badge-green { background: #d1fae5; color: #065f46; }
.badge-yellow { background: #fef9c3; color: #854d0e; }
.badge-red { background: #fee2e2; color: #991b1b; }

/* FAQ */
.faq-item {
    border-bottom: 1px solid var(--border-gray);
    padding: 20px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 0;
    color: var(--text-dark);
}
.faq-answer {
    color: var(--text-gray);
    line-height: 1.8;
    margin-top: 12px;
    display: none;
}
.faq-answer.open { display: block; }
.faq-toggle { 
    font-size: 1.2rem;
    color: var(--text-gray); 
    transition: transform 0.25s;
    flex-shrink: 0;
}
.faq-question.active .faq-toggle { transform: rotate(180deg); }

/* CTA Banner */
.cta-banner {
    background: var(--text-dark);
    color: white;
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    margin-top: 60px;
}
.cta-banner h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}
.cta-banner p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.6;
}
.cta-banner .btn-cta {
    display: inline-block;
    background: var(--primary-green);
    color: var(--text-dark);
    padding: 16px 40px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.cta-banner .btn-cta:hover {
    background: var(--primary-green-hover);
    color: white;
    transform: translateY(-2px);
}

/* Quick Stats Bar */
.stats-bar {
    display: flex;
    justify-content: space-around;
    background: #f8f9fa;
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 28px 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}
.stat-item { text-align: center; }
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    display: block;
    letter-spacing: -1px;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Related Pages */
.related-pages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}
.related-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: #f8f9fa;
    border: 1px solid var(--border-gray);
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.2s;
}
.related-card:hover {
    border-color: var(--primary-green);
    background: #f0fdf9;
    transform: translateY(-2px);
}
.related-card i {
    font-size: 1.4rem;
    color: var(--primary-green);
    flex-shrink: 0;
}
.related-card-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
}
.related-card-text span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* Responsive inner pages */
@media (max-width: 768px) {
    .page-hero h1 { font-size: 2.2rem; }
    .card-grid { grid-template-columns: 1fr; }
    .card-grid-2 { grid-template-columns: 1fr; }
    .related-pages { grid-template-columns: 1fr; }
    .stats-bar { flex-direction: column; align-items: center; }
    .cta-banner { padding: 32px 20px; }
    .cta-banner h2 { font-size: 1.5rem; }
}
@media (max-width: 600px) {
    .season-table { font-size: 0.82rem; }
    .season-table th, .season-table td { padding: 8px 10px; }
}

/* =========================================================
   AFFILIATE & LEGAL STYLES
   ========================================================= */

/* Sticky Affiliate Disclaimer Banner */
.affiliate-disclaimer-banner {
    background-color: #f3f4f6;
    color: #4b5563;
    font-size: 0.85rem;
    padding: 8px 16px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    line-height: 1.4;
}
.affiliate-disclaimer-banner a {
    color: #00AA6C;
    text-decoration: underline;
    font-weight: 600;
}

/* Global Footer */
.global-footer {
    background-color: #0F2027;
    color: #9ca3af;
    padding: 40px 20px;
    margin-top: 60px;
    font-size: 0.9rem;
    border-top: 1px solid #1f2937;
}
.footer-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}
.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}
.footer-links a:hover {
    color: #34E0A1;
}
.footer-disclaimer {
    font-size: 0.8rem;
    line-height: 1.6;
    max-width: 650px;
    color: #9ca3af;
}
.footer-copy {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* =========================================================
   EMBEDDABLE SEARCH WIDGET
   ========================================================= */
.usnepal-search-widget {
    background: #ffffff;
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 30px auto;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.usnepal-search-widget .widget-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid var(--border-gray);
}

.usnepal-search-widget .tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    outline: none;
    border-bottom: 3px solid transparent;
}

.usnepal-search-widget .tab-btn:hover {
    color: var(--text-dark);
    background: #f1f3f5;
}

.usnepal-search-widget .tab-btn.active {
    color: var(--primary-green-hover);
    border-bottom-color: var(--primary-green-hover);
    background: #ffffff;
}

.usnepal-search-widget .widget-content {
    padding: 24px;
}

.usnepal-search-widget .tab-pane {
    display: none;
}

.usnepal-search-widget .tab-pane.active {
    display: block;
}

.usnepal-search-widget .widget-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    align-items: flex-end;
}

.usnepal-search-widget .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.usnepal-search-widget .form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.usnepal-search-widget .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.usnepal-search-widget .input-wrapper i {
    position: absolute;
    left: 12px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.usnepal-search-widget .widget-form input {
    width: 100%;
    padding: 12px 12px 12px 36px;
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-dark);
    outline: none;
    background-color: #ffffff;
    transition: border-color 0.2s;
}

.usnepal-search-widget .widget-form select {
    width: 100%;
    padding: 12px 32px 12px 36px;
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-dark);
    outline: none;
    background-color: #ffffff;
    transition: border-color 0.2s;
    /* Force browser to respect padding-left so icon doesn't overlap text */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.usnepal-search-widget .widget-form input:focus,
.usnepal-search-widget .widget-form select:focus {
    border-color: var(--primary-green-hover);
}

.usnepal-search-widget .btn-widget-search {
    background: var(--primary-green);
    color: var(--text-dark);
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
    width: 100%;
    margin-top: 6px;
}

.usnepal-search-widget .btn-widget-search:hover {
    background: var(--primary-green-hover);
    color: #ffffff;
}

/* ── Smart Search Options Row ─────────────────────────────────────────────── */
.usnepal-search-widget .widget-options-row {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 20px;
    padding: 10px 14px;
    margin: 0 0 4px;
    background: rgba(0,0,0,0.03);
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.07);
}

.usnepal-search-widget .widget-option-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    user-select: none;
    transition: color 0.15s;
    white-space: nowrap;
}

.usnepal-search-widget .widget-option-check:hover {
    color: var(--primary-green-hover);
}

.usnepal-search-widget .widget-option-check input[type="checkbox"] {
    width: 15px;
    height: 15px;
    cursor: pointer;
    accent-color: var(--primary-green);
    margin: 0;
    flex-shrink: 0;
}

.usnepal-search-widget .widget-option-note {
    font-size: 0.76rem;
    color: #888;
    font-style: italic;
    margin-left: auto;
}

@media (max-width: 768px) {
    .usnepal-search-widget .widget-option-note {
        margin-left: 0;
        width: 100%;
    }
    .usnepal-search-widget {
        margin: 20px 10px;
    }
    .usnepal-search-widget .widget-form {
        grid-template-columns: 1fr;
    }
}

/* --- Festive Planner Styling --- */
.usnepal-search-widget .festive-group label {
    color: #e28743 !important; /* warm festive copper/orange */
    font-weight: 800;
}

.usnepal-search-widget .festive-group select {
    border-color: #ffd700 !important; /* gold border */
    background-color: #fffdf6 !important; /* warm gold cream tint */
}

.usnepal-search-widget .festive-group select:focus {
    border-color: #e28743 !important;
    box-shadow: 0 0 5px rgba(226, 135, 67, 0.3);
}

.usnepal-search-widget .festive-group i {
    color: #e28743 !important;
}

/* Tooltip Trigger & Popover Styles */
.utsav-tooltip-trigger {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-left: 4px;
    color: var(--text-gray);
    font-size: 0.85rem;
    vertical-align: middle;
}

.utsav-tooltip-trigger:hover {
    color: #e28743;
}

.utsav-tooltip-trigger::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    background-color: #1f2937;
    color: #ffffff;
    text-align: center;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: normal;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
}

/* Arrow for tooltip */
.utsav-tooltip-trigger::before {
    content: "";
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #1f2937 transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
}

.utsav-tooltip-trigger:hover::after,
.utsav-tooltip-trigger:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Adjust tooltip placement on mobile screens to prevent clipping */
@media (max-width: 600px) {
    .utsav-tooltip-trigger::after {
        left: auto;
        right: -30px;
        transform: none;
        width: 200px;
    }
    .utsav-tooltip-trigger::before {
        left: auto;
        right: 2px;
        transform: none;
    }
}

/* Autocomplete Dropdown */
.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--border-gray);
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 0;
    display: none; /* Hidden by default */
}

.autocomplete-dropdown.active {
    display: block;
}

.autocomplete-item {
    padding: 10px 16px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-gray);
    transition: background 0.2s ease;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover,
.autocomplete-item.focused {
    background: #f0fdf4; /* Light green hover matching theme */
}

.autocomplete-item .city-name {
    font-weight: 500;
}

.autocomplete-item .country-name {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-left: 5px;
}

.autocomplete-item .iata-code {
    background: #e2e8f0;
    color: #475569;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.autocomplete-item .airport-name {
    font-size: 0.75rem;
    color: var(--text-gray);
    display: block;
    margin-top: 3px;
}
