/* ============================================
   NexaEsim - Global Styles
   Professional Travel eSIM E-Commerce
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --success: #10b981;
    --info: #06b6d4;
    --gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --gradient-dark: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-lg: 16px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --- Base --- */
* { box-sizing: border-box; }
body {
    font-family: var(--font);
    color: #1e293b;
    line-height: 1.6;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: all .2s; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }

/* --- Top Bar --- */
.top-bar {
    background: var(--secondary);
    padding: 6px 0;
    font-size: 13px;
    position: relative;
    z-index: 1040;
}
.top-bar-link {
    color: rgba(255,255,255,.75);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
}
.top-bar-link:hover { color: #fff; }
.top-bar-social {
    color: rgba(255,255,255,.6);
    font-size: 14px;
    transition: color .2s;
}
.top-bar-social:hover { color: #fff; }
.lang-switcher .dropdown-toggle { font-size: 13px; color: rgba(255,255,255,.75); }
.lang-switcher .dropdown-toggle:hover { color: #fff; }
.lang-switcher .dropdown-toggle::after { font-size: 10px; }
.lang-switcher .dropdown-menu { min-width: 180px; max-height: 400px; overflow-y: auto; font-size: 13px; z-index: 1050; scrollbar-width: thin; }
.lang-switcher .dropdown-menu::-webkit-scrollbar { width: 5px; }
.lang-switcher .dropdown-menu::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
.lang-switcher .dropdown-menu::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* --- Navbar --- */
#mainNav {
    background: #fff;
    box-shadow: var(--shadow);
    padding: 0;
    z-index: 1030;
    transition: all .3s;
}
#mainNav .navbar-brand {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
}
#mainNav .navbar-brand i { color: var(--primary); font-size: 1.6rem; }
#mainNav .navbar-brand strong { font-weight: 800; color: var(--primary); }
#mainNav .nav-link {
    color: #475569;
    font-weight: 500;
    font-size: 15px;
    padding: 16px 14px !important;
    transition: color .2s;
    position: relative;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active { color: var(--primary); }

/* Desktop dropdown */
@media (min-width: 992px) {
    #mainNav .dropdown:hover > .dropdown-menu { display: block; margin-top: 0; }
    #mainNav .dropdown-menu {
        border: none;
        box-shadow: var(--shadow-xl);
        border-radius: var(--radius);
        padding: 12px 0;
        animation: fadeDown .2s ease;
    }
}
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
#mainNav .dropdown-item {
    padding: 8px 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .15s;
}
#mainNav .dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}
#mainNav .dropdown-item .fi { font-size: 16px; }
#mainNav .dropdown-header {
    font-weight: 700;
    color: var(--secondary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 8px 20px;
}

/* Mega Menu */
.mega-menu {
    width: 100%;
    left: 0;
    padding: 24px 0 !important;
}
@media (min-width: 992px) {
    .mega-dropdown { position: static; }
    .mega-menu { border-top: 3px solid var(--primary); }
}
.mega-menu-cta {
    background: var(--primary-light);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.mega-menu-cta i { color: var(--primary); }
.mega-menu-cta h6 { font-weight: 700; margin: 0; }
.mega-menu-cta p { font-size: 13px; color: #64748b; margin: 0; }

/* Mobile Nav */
@media (max-width: 991.98px) {
    #mainNav .navbar-collapse {
        max-height: 85vh;
        overflow-y: auto;
        padding: 12px 0;
        -webkit-overflow-scrolling: touch;
    }
    #mainNav .nav-link { padding: 10px 0 !important; }
    #mainNav .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 16px;
        background: transparent;
        max-height: 50vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .mega-menu { padding: 8px 0 !important; }
    .mega-menu .container { padding: 0; }
    .mega-menu .row > div { margin-bottom: 4px; }
    .mega-menu .dropdown-header { font-size: 13px; padding: 8px 12px 4px; color: #2563eb; font-weight: 700; }
    .mega-menu .dropdown-item { padding: 6px 12px; font-size: 14px; }
    .mega-menu-cta { display: none; }
}

/* --- Hero Slider --- */
.hero-slider { overflow: hidden; }
.hero-slide { min-height: 520px; display: flex; align-items: center; }
.min-vh-hero { min-height: 520px; }
.hero-img {
    max-height: 400px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.3));
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.fw-800 { font-weight: 800; }
.text-gradient {
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.opacity-85 { opacity: .85; }
.hero-trust span {
    font-size: 14px;
    color: rgba(255,255,255,.8);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.5);
    background: transparent;
    opacity: .7;
}
.carousel-indicators .active {
    background: #fff;
    border-color: #fff;
    opacity: 1;
}

/* --- Section Headings --- */
.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Destination Pills --- */
.destination-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    color: #334155;
    font-weight: 500;
    font-size: 15px;
    transition: all .2s;
    box-shadow: var(--shadow-sm);
}
.destination-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.destination-pill .fi { font-size: 20px; }

/* --- Top Destinations --- */
.top-dest-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all .25s;
    box-shadow: var(--shadow-sm);
    color: #334155;
}
.top-dest-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    color: var(--primary);
}
.top-dest-flag {
    font-size: 48px;
    margin-bottom: 10px;
    border-radius: 8px;
}
.top-dest-card h6 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 15px;
}
.top-dest-card small { font-size: 12px; }

/* --- Step Cards (How It Works) --- */
.step-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    box-shadow: var(--shadow);
    transition: all .3s;
    position: relative;
}
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}
.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.step-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.step-card h4 { font-weight: 700; font-size: 1.15rem; margin-bottom: 8px; }
.step-card p { color: #64748b; font-size: 14px; margin: 0; }

/* --- FAQ --- */
.accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius) !important;
    margin-bottom: 10px;
    overflow: hidden;
}
.accordion-button {
    font-weight: 600;
    font-size: 15px;
    color: #1e293b;
    padding: 16px 20px;
}
.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary);
    box-shadow: none;
}
.accordion-button:focus { box-shadow: none; border-color: var(--primary); }
.accordion-body { font-size: 14px; color: #475569; line-height: 1.7; }

/* --- Footer --- */
.site-footer { background: var(--secondary); color: rgba(255,255,255,.8); }
.footer-main { padding: 60px 0 40px; }
.footer-brand h4 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 12px;
}
.footer-brand h4 i { color: var(--primary); }
.footer-brand h4 strong { font-weight: 800; color: var(--primary); }
.footer-brand p { font-size: 14px; line-height: 1.7; opacity: .8; }
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: 16px;
    transition: all .2s;
}
.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.footer-contact p {
    font-size: 13px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-contact i { color: var(--primary); font-size: 14px; }
.footer-title {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: rgba(255,255,255,.65);
    font-size: 14px;
    transition: all .2s;
    display: inline-block;
}
.footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
    font-size: 13px;
}

/* --- Floating Contacts --- */
.floating-contacts {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    transition: all .3s;
}
.float-btn:hover { transform: scale(1.1); color: #fff; }
.float-phone { background: #25d366; }
.float-zalo { background: #0068ff; }
.float-messenger { background: #e60f1e; }

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 200px;
    right: 20px;
    z-index: 999;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: var(--shadow-lg);
}
.back-to-top.show { display: flex; }

/* --- Login Modal --- */
#loginModal .nav-pills { gap: 4px; }
#loginModal .nav-pills .nav-link {
    border-radius: var(--radius);
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
}
#loginModal .nav-pills .nav-link.active {
    background: var(--primary);
    color: #fff;
}
#loginModal .form-control {
    border-radius: 8px;
    padding: 10px 14px;
    border-color: #e2e8f0;
}
#loginModal .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

/* --- TopEsimPackageHome ViewComponent --- */
.esim-package-section { padding: 60px 0; }

/* --- LatestNews ViewComponent --- */
.news-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all .3s;
}
.news-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.news-card img { transition: transform .4s; }
.news-card:hover img { transform: scale(1.05); }

/* --- All Countries Section --- */
#all-countries {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?q=80&w=2050&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
#all-countries::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15,32,39,.92) 0%, rgba(32,58,67,.88) 50%, rgba(44,83,100,.85) 100%);
    z-index: 1;
}
#all-countries .container { position: relative; z-index: 2; }
.map-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: 300px 300px;
    animation: moveMap 20s linear infinite;
    z-index: 1;
    opacity: .2;
}
@keyframes moveMap {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

/* --- Countries Grid --- */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}
.country-card {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    transition: all .2s;
}
.country-card:hover {
    background: rgba(255,255,255,.15);
    transform: translateY(-2px);
    color: #fff;
}

/* --- Alphabet Filter --- */
.alphabet-filter .btn { min-width: 36px; font-size: 13px; font-weight: 600; }
.alphabet-filter .btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* --- Search Filter --- */
.search-filter-bar .form-control {
    border-radius: 50px;
    padding: 10px 16px;
    border: none;
}
.search-filter-bar .input-group-text {
    border-radius: 50px 0 0 50px;
    border: none;
}

/* --- Device List --- */
.device-list {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 30px;
}
.device-category { margin-bottom: 24px; }
.device-category h5 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.device-badge {
    display: inline-block;
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    margin: 3px;
    color: #475569;
}

/* --- Feature Icons --- */
.feature-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all .3s;
}
.feature-icon:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

/* --- Buttons --- */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 8px;
    font-weight: 600;
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}
.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    border-radius: 8px;
    font-weight: 600;
}
.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* --- MiniCart --- */
.mini-cart-dropdown { width: 380px; padding: 0; border: none; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.mini-cart-item { display: flex; gap: 12px; padding: 12px 16px; border-bottom: 1px solid #f1f5f9; }
.mini-cart-item:last-child { border-bottom: none; }

/* --- Plan Details Modal --- */
.plan-modal .modal-header { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.plan-modal .modal-content { border-radius: var(--radius-lg); border: none; box-shadow: var(--shadow-xl); }

/* --- Network section (product detail) --- */
.network-section { padding: 20px 0; }
.network-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.network-card { background: #f8fafc; border-radius: var(--radius); padding: 16px; text-align: center; transition: all .2s; }
.network-card:hover { background: var(--primary-light); transform: translateY(-2px); }
.network-logo { max-height: 40px; margin-bottom: 8px; }
.network-name { font-weight: 600; font-size: 14px; }
.network-info { font-size: 12px; color: #64748b; }
.network-coverage { font-size: 11px; color: var(--success); }

/* --- Comments section (blog) --- */
.comments-section { padding: 30px 0; }
.comments-header { font-weight: 700; font-size: 18px; margin-bottom: 20px; }
.comment-form { margin-bottom: 24px; }
.comment-form textarea { border-radius: var(--radius); resize: none; }
.comment-form button { margin-top: 8px; }

/* --- Hero Section (legacy, product pages) --- */
.hero-section {
    background: var(--gradient-dark);
    padding: 60px 0;
    color: #fff;
}
.hero-section h1 { font-weight: 800; }
.hero-section .lead { opacity: .85; }
.hero-section .bi-check-circle-fill { color: var(--success); }

/* --- Product Cards 2-col mobile --- */
@media (max-width: 575.98px) {
    .product-grid .col { flex: 0 0 50%; max-width: 50%; }
    .hero-slide { min-height: 420px; }
    .min-vh-hero { min-height: 420px; }
    .hero-slide h1, .hero-slide h2 { font-size: 1.8rem; }
    .hero-slide .lead { font-size: 15px; }
    .section-title { font-size: 1.6rem; }
    .top-dest-card { padding: 16px 8px; }
    .top-dest-flag { font-size: 36px; }
    .step-card { padding: 24px 16px; }
    .floating-contacts { bottom: 12px; right: 12px; }
    .float-btn { width: 42px; height: 42px; font-size: 18px; }
    #all-countries { background-attachment: scroll; }
    .countries-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Tablet --- */
@media (min-width: 576px) and (max-width: 991.98px) {
    .hero-slide { min-height: 460px; }
    .min-vh-hero { min-height: 460px; }
    .section-title { font-size: 1.8rem; }
    .countries-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

/* --- Desktop Large --- */
@media (min-width: 1200px) {
    .hero-slide { min-height: 560px; }
    .min-vh-hero { min-height: 560px; }
}

/* --- Smooth scroll --- */
html { scroll-behavior: smooth; }

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp .6s ease forwards; }

/* --- Utility --- */
.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-light { background-color: #f8fafc !important; }

/* --- Glass effect --- */
.glass {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.2);
}

/* --- Country stat card (all countries page) --- */
.country-stat-card {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all .3s;
}
.country-stat-card:hover {
    background: rgba(255,255,255,.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,.3);
}

/* --- Glass button --- */
.btn-glass-white {
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,.3);
    color: white;
    padding: 15px 40px;
    font-weight: 600;
    transition: all .3s;
}
.btn-glass-white:hover {
    background: rgba(255,255,255,.3);
    color: white;
    transform: translateY(-3px);
}

/* --- Destination Card (legacy) --- */
.destination-card { text-decoration: none; display: block; }
.destination-card .destination-pill { cursor: pointer; }

/* ============================================
   HOMEPAGE - Professional Redesign
   ============================================ */

/* --- Hero Home --- */
.hero-home {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #0f2b46 100%);
}
.hero-home-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(37,99,235,.15) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(124,58,237,.1) 0%, transparent 60%);
    z-index: 0;
}
.hero-home .container { z-index: 2; }
.hero-home-row { min-height: 600px; padding: 60px 0; }

.hero-home-content { max-width: 560px; }
.hero-badge-row { margin-bottom: 20px; }
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,.15);
    border: 1px solid rgba(245,158,11,.3);
    color: #fbbf24;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
}
.hero-home-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-home-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Hero Search */
.hero-search {
    margin-bottom: 24px;
}
.hero-search-form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 60px;
    padding: 6px 6px 6px 20px;
    transition: all .3s;
}
.hero-search-form:focus-within {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.3);
    box-shadow: 0 0 0 4px rgba(37,99,235,.2);
}
.hero-search-icon {
    color: rgba(255,255,255,.5);
    font-size: 18px;
    flex-shrink: 0;
}
.hero-search-input {
    flex: 1;
    border: none;
    background: transparent;
    color: #fff;
    padding: 12px 14px;
    font-size: 15px;
    outline: none;
    min-width: 0;
}
.hero-search-input::placeholder { color: rgba(255,255,255,.45); }
.hero-search-btn {
    border-radius: 50px !important;
    padding: 10px 24px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Hero Quick Links */
.hero-quick-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.hero-quick-label {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    font-weight: 500;
}
.hero-quick-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.07);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.1);
    transition: all .2s;
}
.hero-quick-links a:hover {
    background: rgba(255,255,255,.15);
    color: #fff;
    border-color: rgba(255,255,255,.25);
}
.hero-quick-links a .fi { font-size: 14px; }

/* Hero Visual */
.hero-home-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-home-img {
    max-height: 420px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.4));
    animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

/* Floating Cards */
.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
    z-index: 3;
    animation: cardFloat 5s ease-in-out infinite;
}
.hero-float-card i {
    font-size: 22px;
    flex-shrink: 0;
}
.hero-float-card strong {
    display: block;
    font-size: 13px;
    color: #1e293b;
    line-height: 1.3;
}
.hero-float-card small {
    font-size: 11px;
    color: #64748b;
}
.hero-float-1 { top: 12%; right: 0; animation-delay: 0s; }
.hero-float-2 { bottom: 20%; left: -10px; animation-delay: 1.5s; }
.hero-float-3 { bottom: 5%; right: 5%; animation-delay: 3s; }
@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* --- Trust Bar --- */
.trust-bar {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 24px 0;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 32px;
}
.trust-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-text strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
}
.trust-text span {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}
.trust-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

/* --- Destination Cards (new) --- */
.dest-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 16px 22px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    color: #334155;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.dest-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity .3s;
    z-index: 0;
}
.dest-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(37,99,235,.15);
    color: #fff;
}
.dest-card:hover::before { opacity: 1; }
.dest-card > * { position: relative; z-index: 1; }
.dest-flag {
    font-size: 48px;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: transform .3s;
}
.dest-card:hover .dest-flag { transform: scale(1.1); }
.dest-card h6 {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 6px;
}
.dest-price {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}
.dest-card:hover .dest-price { color: rgba(255,255,255,.8); }
.dest-badge {
    font-size: 11px;
    background: rgba(245,158,11,.15);
    color: #d97706;
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 600;
}
.dest-card:hover .dest-badge {
    background: rgba(255,255,255,.2);
    color: #fff;
}
.dest-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    font-size: 12px;
    margin-top: 10px;
    transition: all .3s;
}
.dest-card:hover .dest-arrow {
    background: rgba(255,255,255,.25);
    color: #fff;
}
.destination-pill-cta {
    background: var(--primary-light) !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    font-weight: 600;
    justify-content: center;
}
.destination-pill-cta:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

/* --- Why Section --- */
.why-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.why-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all .3s;
    height: 100%;
}
.why-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}
.why-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 26px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all .3s;
}
.why-card:hover .why-icon {
    transform: scale(1.1) rotate(-5deg);
}
.why-icon-purple { background: #ede9fe; color: #7c3aed; }
.why-icon-green { background: #d1fae5; color: #059669; }
.why-icon-orange { background: #ffedd5; color: #ea580c; }
.why-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary);
}
.why-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* --- Step Cards (Redesigned) --- */
.step-number-badge {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(37,99,235,.3);
}
.step-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 34px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all .3s;
}
.step-card:hover .step-icon-wrap {
    background: var(--primary);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(37,99,235,.25);
}

/* --- Testimonials --- */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.testimonial-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all .3s;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: transparent;
}
.testimonial-stars {
    margin-bottom: 16px;
    color: #f59e0b;
    font-size: 16px;
    display: flex;
    gap: 2px;
}
.testimonial-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: #1e293b;
}
.testimonial-author small {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}
.testimonial-author .fi { font-size: 12px; }

/* --- CTA Banner --- */
.cta-banner {
    padding: 24px 0;
    background: var(--secondary);
}
.cta-inner {
    background: var(--gradient);
    border-radius: var(--radius-lg);
    padding: 48px 48px;
}
.cta-inner h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}
.cta-inner p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.8);
    margin: 0;
}
.cta-inner .btn-light {
    color: var(--primary);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.cta-inner .btn-light:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

/* --- Homepage Responsive --- */
@media (max-width: 991.98px) {
    .hero-home { min-height: auto; }
    .hero-home-row { min-height: auto; padding: 48px 0; }
    .hero-home-title { font-size: 2.4rem; }
    .hero-search-btn { padding: 10px 16px; font-size: 14px; }
    .trust-divider { display: none; }
    .trust-bar-inner { gap: 8px; justify-content: center; }
    .trust-item { padding: 12px 16px; flex: 0 0 calc(50% - 8px); justify-content: center; }
    .cta-inner { padding: 32px 24px; text-align: center; }
    .cta-inner h2 { font-size: 1.5rem; }
}
@media (max-width: 575.98px) {
    .hero-home-row { padding: 36px 0; }
    .hero-home-title { font-size: 1.9rem; }
    .hero-home-subtitle { font-size: 1rem; }
    .hero-search-form { flex-wrap: wrap; border-radius: 16px; padding: 8px; }
    .hero-search-icon { display: none; }
    .hero-search-input { width: 100%; padding: 10px 12px; font-size: 14px; }
    .hero-search-btn { width: 100%; border-radius: 12px !important; margin-top: 4px; }
    .hero-quick-links { gap: 6px; }
    .hero-quick-links a { font-size: 12px; padding: 5px 10px; }
    .trust-item { flex: 0 0 calc(50% - 4px); padding: 10px 8px; gap: 10px; }
    .trust-icon { width: 40px; height: 40px; font-size: 16px; border-radius: 10px; }
    .trust-text strong { font-size: 1rem; }
    .trust-text span { font-size: 11px; }
    .dest-card { padding: 20px 10px 18px; }
    .dest-flag { font-size: 36px; margin-bottom: 8px; }
    .dest-card h6 { font-size: 13px; }
    .dest-arrow { width: 24px; height: 24px; font-size: 10px; margin-top: 8px; }
    .why-section { padding: 48px 0; }
    .why-card { padding: 28px 20px; }
    .testimonials-section { padding: 48px 0; }
    .testimonial-card { padding: 24px 20px; }
    .cta-inner { padding: 28px 20px; }
    .cta-inner h2 { font-size: 1.3rem; }
    .cta-inner p { font-size: .95rem; }
}
