/* ???????????????????????????????????????????????????
   BASE & TYPOGRAPHY
??????????????????????????????????????????????????? */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 15px; }

body {
    font-family: 'Poppins', sans-serif;
    color: #2d3748;
    background: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

@media (min-width: 768px) { html { font-size: 16px; } }

/* ???????????????????????????????????????????????????
   TOP HEADER BAR  (white bar — logo + action buttons)
??????????????????????????????????????????????????? */
.top-header {
    background: #ffffff;
    border-bottom: 1px solid #e8ecf0;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1060;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Brand / Logo */
.top-header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon-wrap {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1a56db, #1e3a8a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e3a8a;
    letter-spacing: -0.3px;
}

.brand-tagline {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Header action buttons */
.btn-header-primary {
    background: #1a56db;
    color: #fff;
    border: none;
    padding: 9px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.btn-header-primary:hover {
    background: #1e3a8a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26,86,219,0.35);
}

.btn-header-outline {
    background: transparent;
    color: #374151;
    border: 1.5px solid #d1d5db;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.btn-header-outline:hover {
    border-color: #1a56db;
    color: #1a56db;
    background: #eff6ff;
}

@media (max-width: 576px) {
    .brand-tagline { display: none; }
    .brand-name { font-size: 1.1rem; }
    .btn-header-primary,
    .btn-header-outline { font-size: 0.78rem; padding: 7px 12px; }
}

/* ???????????????????????????????????????????????????
   BLUE NAVIGATION BAR  (solid blue — menu links)
??????????????????????????????????????????????????? */
.blue-navbar {
    background: #1a56db;
    padding: 0;
    position: sticky;
    top: 69px; /* height of top-header */
    z-index: 1050;
    box-shadow: 0 3px 10px rgba(26,86,219,0.25);
}

.blue-nav-link {
    color: rgba(255,255,255,0.92) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 14px 16px !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}

.blue-nav-link:hover {
    color: #ffffff !important;
    background: rgba(255,255,255,0.12);
    border-bottom-color: #fff;
}

/* Mobile toggler */
.blue-toggler {
    border: 1.5px solid rgba(255,255,255,0.5);
    color: #fff;
    font-size: 1.3rem;
    padding: 4px 10px;
    line-height: 1;
    background: transparent;
    border-radius: 6px;
    margin: 6px 0;
}

@media (max-width: 991px) {
    .blue-navbar { top: 61px; }
    .blue-nav-link { padding: 10px 16px !important; border-bottom: none; border-left: 3px solid transparent; }
    .blue-nav-link:hover { border-left-color: #fff; border-bottom-color: transparent; }
}

/* ???????????????????????????????????????????????????
   BANNER + FLOATING SEARCH WRAPPER
??????????????????????????????????????????????????? */
.banner-search-wrapper {
    position: relative;
    /* bottom padding creates space for the floating card overlap */
    padding-bottom: 90px;
}

/* Full-width banner image — NOT full-screen, matches reference height */
.banner-carousel-wrap {
    width: 100%;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Arrow-only carousel controls — thin circles like reference */
.banner-arrow {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.85) !important;
    border-radius: 50% !important;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1 !important;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a8a;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
    transition: background 0.2s, box-shadow 0.2s;
    position: absolute;
    z-index: 10;
}

.banner-arrow:hover {
    background: #ffffff !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.22);
    color: #1a56db;
}

.carousel-control-prev.banner-arrow { left: 12px; }
.carousel-control-next.banner-arrow { right: 12px; }

/* Override Bootstrap's default icon inside our custom arrow */
.banner-arrow .carousel-control-prev-icon,
.banner-arrow .carousel-control-next-icon { display: none; }

/* Floating search card — overlaps the bottom of the banner */
.floating-search-card {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
}

.search-card-modern {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.14);
    border: 1px solid #e8f0fe;
}

.search-card-title {
    font-size: 1.05rem;
    color: #1e3a8a;
}

/* Search dropdowns */
.search-select {
    border: 1.5px solid #d1d5db;
    border-radius: 50px !important;
    padding: 10px 18px;
    font-size: 0.92rem;
    color: #374151;
    background-color: #ffffff;
    height: 48px;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.search-select:focus {
    border-color: #1a56db;
    box-shadow: 0 0 0 3px rgba(26,86,219,0.12);
    outline: none;
}

/* Search button — solid blue, pill shaped */
.btn-search {
    background: #1a56db;
    color: #fff;
    border: none;
    border-radius: 50px !important;
    font-weight: 700;
    font-size: 1rem;
    height: 48px;
    padding: 0 28px;
    transition: all 0.25s;
    box-shadow: 0 4px 14px rgba(26,86,219,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-search:hover {
    background: #1e3a8a;
    color: #fff;
    box-shadow: 0 6px 20px rgba(26,86,219,0.45);
    transform: translateY(-1px);
}

/* Spacer — compensates for the absolute-positioned floating card */
.banner-search-spacer {
    height: 100px;
}

/* Responsive banner */
@media (max-width: 991px) {
    .banner-img { height: 280px; }
    .banner-search-wrapper { padding-bottom: 0; }
    .floating-search-card { position: static; margin: 0; }
    .banner-search-spacer { height: 0; }
    .search-card-modern { border-radius: 0; border-left: none; border-right: none; box-shadow: 0 4px 16px rgba(0,0,0,0.10); }
}

@media (max-width: 576px) {
    .banner-img { height: 180px; }
    .search-card-title { font-size: 0.95rem; }
}

/* ???????????????????????????????????????????????????
   STATS BAR
??????????????????????????????????????????????????? */
.stats-bar-section { background: #f8faff; }

.stats-bar {
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 22px 28px;
    flex-wrap: wrap;
    gap: 16px;
    border: 1px solid #e8f0fe;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    font-size: 1.8rem;
    color: #1a56db;
    line-height: 1;
}

.stat-number {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: #e2e8f0;
}

@media (max-width: 576px) {
    .stats-bar { padding: 16px; gap: 12px; }
    .stat-divider { display: none; }
    .stat-item { width: 45%; justify-content: center; }
}

/* ???????????????????????????????????????????????????
   SECTION COMMONS
??????????????????????????????????????????????????? */
.section-badge {
    display: inline-block;
    background: #eff6ff;
    color: #1a56db;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid #bfdbfe;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 10px;
}

.section-sub {
    color: #64748b;
    font-size: 0.97rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ???????????????????????????????????????????????????
   DESTINATION CARDS
??????????????????????????????????????????????????? */
.destinations-section { background: #fff; }

.destination-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.destination-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: all 0.32s cubic-bezier(0.25,0.8,0.25,1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.13);
}

.destination-img-wrap {
    position: relative;
    overflow: hidden;
    height: 210px;
}

.destination-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-img { transform: scale(1.07); }

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15,23,42,0.68) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 18px;
    opacity: 0;
    transition: opacity 0.32s;
}

.destination-card:hover .destination-overlay { opacity: 1; }

.destination-explore {
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    background: #1a56db;
    padding: 7px 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
}

.destination-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,0.92);
    color: #1a56db;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.destination-body {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.destination-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.destination-location {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 7px;
    font-weight: 500;
}

.destination-desc {
    font-size: 0.82rem;
    color: #94a3b8;
    flex: 1;
    line-height: 1.6;
    margin-bottom: 12px;
}

.destination-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.destination-rating {
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
}

.destination-tag {
    font-size: 0.72rem;
    background: #eff6ff;
    color: #1a56db;
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 600;
}

/* ???????????????????????????????????????????????????
   FEATURES SECTION
??????????????????????????????????????????????????? */
.features-section { background: #f8faff; }

.feature-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    border: 1px solid #e8f0fe;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(26,86,219,0.11);
    border-color: #bfdbfe;
}

.feature-icon-wrap {
    width: 66px;
    height: 66px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon-wrap {
    background: linear-gradient(135deg, #1a56db, #1e3a8a);
}

.feature-icon {
    font-size: 1.7rem;
    color: #1a56db;
    transition: color 0.3s;
}

.feature-card:hover .feature-icon { color: #fff; }

/* ???????????????????????????????????????????????????
   ABOUT SECTION
??????????????????????????????????????????????????? */
.about-section { background: #fff; }

.about-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0,0,0,0.11);
}

.about-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-img-wrap:hover .about-img { transform: scale(1.03); }

.about-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #1a56db;
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 9px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 16px rgba(26,86,219,0.38);
    display: flex;
    align-items: center;
}

.stat-mini-card {
    background: #f8faff;
    border-radius: 14px;
    border: 1.5px solid #e8f0fe;
    transition: all 0.3s;
}

.stat-mini-card:hover {
    border-color: #1a56db;
    background: #eff6ff;
    transform: translateY(-3px);
    box-shadow: 0 7px 18px rgba(26,86,219,0.11);
}

/* ???????????????????????????????????????????????????
   TESTIMONIALS
??????????????????????????????????????????????????? */
.testimonial-section { background: #f8faff; }

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e8f0fe;
    height: 100%;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(26,86,219,0.10);
}

.testimonial-stars { color: #f59e0b; font-size: 0.88rem; }

.testimonial-text {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.75;
    font-style: italic;
    flex: 1;
    margin-bottom: 18px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a56db, #1e3a8a);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-prev,
.testimonial-next {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    color: #374151;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.25s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
    z-index: 5;
}

.testimonial-prev { left: -21px; }
.testimonial-next { right: -21px; }

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #1a56db;
    border-color: #1a56db;
    color: #fff;
}

@media (max-width: 768px) {
    .testimonial-prev { left: 0; }
    .testimonial-next { right: 0; }
}

/* ???????????????????????????????????????????????????
   CTA SECTION
??????????????????????????????????????????????????? */
.cta-section { background: #f8faff; padding-bottom: 72px; }

.cta-card {
    background: linear-gradient(135deg, #1a56db 0%, #1e3a8a 55%, #1a1a4e 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(26,86,219,0.32);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -55px; right: -55px;
    width: 220px; height: 220px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -70px; left: -70px;
    width: 280px; height: 280px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-card .btn-light {
    color: #1a56db;
    font-weight: 700;
    transition: all 0.3s;
}

.cta-card .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0,0,0,0.18);
}

/* ???????????????????????????????????????????????????
   FOOTER
??????????????????????????????????????????????????? */
.site-footer {
    background: #0f172a;
    padding: 56px 0 28px;
}

.site-footer h5 { color: #f1f5f9; font-size: 1.2rem; }
.site-footer h6 { color: #e2e8f0; font-size: 0.92rem; }

.footer-text { color: #94a3b8; font-size: 0.88rem; line-height: 1.7; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.86rem;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-flex;
    align-items: center;
}
.footer-links a:hover { color: #60a5fa; padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    color: #94a3b8;
    font-size: 0.86rem;
    margin-bottom: 9px;
    display: flex;
    align-items: center;
}
.footer-contact i { color: #60a5fa; }

.footer-divider { border-color: rgba(255,255,255,0.08); }

.social-links { display: flex; gap: 9px; }
.social-link {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: #94a3b8;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s;
    border: 1px solid rgba(255,255,255,0.1);
}
.social-link:hover {
    background: #1a56db;
    color: #fff;
    border-color: #1a56db;
    transform: translateY(-3px);
}

/* ???????????????????????????????????????????????????
   UTILITIES & ACCESSIBILITY
??????????????????????????????????????????????????? */
.btn:focus-visible,
.form-select:focus,
.form-control:focus {
    box-shadow: 0 0 0 3px rgba(26,86,219,0.22);
    outline: none;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 15px; }

body {
    font-family: 'Poppins', sans-serif;
    color: #2d3748;
    background: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

@media (min-width: 768px) { html { font-size: 16px; } }

/* ???????????????????????????????????????????????????
   NAVBAR
??????????????????????????????????????????????????? */
.site-navbar {
    background: transparent;
    padding: 18px 0;
    transition: all 0.4s ease;
    z-index: 1050;
}

.site-navbar .navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    transition: color 0.3s;
}

.site-navbar .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.25s;
}

.site-navbar .nav-link:hover {
    color: #ffffff !important;
    background: rgba(255,255,255,0.12);
}

.site-navbar .btn-outline-light {
    border-color: rgba(255,255,255,0.6);
    color: #fff;
    font-size: 0.88rem;
    transition: all 0.25s;
}

.site-navbar .btn-outline-light:hover {
    background: #fff;
    color: #1a73e8;
    border-color: #fff;
}

/* Scrolled state */
.site-navbar.navbar-scrolled {
    background: #0f172a !important;
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

.site-navbar.navbar-scrolled .navbar-brand { color: #60a5fa; }
.site-navbar.navbar-scrolled .nav-link { color: rgba(255,255,255,0.85) !important; }

/* ???????????????????????????????????????????????????
   HERO SECTION
??????????????????????????????????????????????????? */
.hero-section { position: relative; width: 100%; }

.hero-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5,15,35,0.45) 0%,
        rgba(5,15,35,0.65) 60%,
        rgba(5,15,35,0.80) 100%
    );
    z-index: 1;
}

.hero-caption {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.25);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 0;
    max-width: 580px;
    line-height: 1.7;
}

/* Hero buttons */
.btn-hero-primary {
    background: #1a73e8;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(26,115,232,0.45);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-hero-primary:hover {
    background: #1558c0;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(26,115,232,0.55);
}

.btn-hero-outline {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.55);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(6px);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.22);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* Hero carousel indicators */
.hero-indicators {
    bottom: 30px;
    z-index: 10;
}

.hero-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    transition: all 0.3s;
}

.hero-indicators .active {
    width: 28px;
    border-radius: 10px;
    background: #fff;
}

/* ???????????????????????????????????????????????????
   STATS BAR
??????????????????????????????????????????????????? */
.stats-bar-section {
    position: relative;
    z-index: 10;
    margin-top: -56px;
    padding: 0 0 16px;
}

.stats-bar {
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 28px 32px;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-icon {
    font-size: 2rem;
    color: #1a73e8;
    line-height: 1;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: #e2e8f0;
}

@media (max-width: 576px) {
    .stats-bar { padding: 20px 16px; gap: 14px; }
    .stat-divider { display: none; }
    .stat-item { width: 45%; justify-content: center; }
    .stats-bar-section { margin-top: -30px; }
}

/* ???????????????????????????????????????????????????
   SECTION COMMONS
??????????????????????????????????????????????????? */
.section-badge {
    display: inline-block;
    background: #eff6ff;
    color: #1a73e8;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    border: 1px solid #bfdbfe;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 12px;
}

.section-sub {
    color: #64748b;
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ???????????????????????????????????????????????????
   SEARCH SECTION
??????????????????????????????????????????????????? */
.search-section { background: #f8faff; }

.search-card-modern {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(26,115,232,0.10);
    border: 1px solid #e8f0fe;
}

.search-card-modern .form-select {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px !important;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #374151;
    background-color: #f9fafb;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-card-modern .form-select:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26,115,232,0.12);
    background: #fff;
}

.btn-search {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: #fff;
    border: none;
    border-radius: 12px !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(26,115,232,0.35);
}

.btn-search:hover {
    background: linear-gradient(135deg, #1558c0, #0a3578);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(26,115,232,0.45);
}

/* ???????????????????????????????????????????????????
   DESTINATION CARDS
??????????????????????????????????????????????????? */
.destinations-section { background: #fff; }

.destination-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.destination-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.14);
}

.destination-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.destination-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-img { transform: scale(1.08); }

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15,23,42,0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.35s;
}

.destination-card:hover .destination-overlay { opacity: 1; }

.destination-explore {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    background: #1a73e8;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
}

.destination-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255,255,255,0.92);
    color: #1a73e8;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.destination-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.destination-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.destination-location {
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 500;
}

.destination-desc {
    font-size: 0.84rem;
    color: #94a3b8;
    flex: 1;
    line-height: 1.6;
    margin-bottom: 14px;
}

.destination-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.destination-rating {
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
}

.destination-tag {
    font-size: 0.75rem;
    background: #eff6ff;
    color: #1a73e8;
    padding: 3px 12px;
    border-radius: 50px;
    font-weight: 600;
}

/* ???????????????????????????????????????????????????
   FEATURES SECTION
??????????????????????????????????????????????????? */
.features-section { background: #f8faff; }

.feature-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #e8f0fe;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26,115,232,0.12);
    border-color: #bfdbfe;
}

.feature-icon-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon-wrap {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
}

.feature-icon {
    font-size: 1.8rem;
    color: #1a73e8;
    transition: color 0.3s;
}

.feature-card:hover .feature-icon { color: #fff; }

/* ???????????????????????????????????????????????????
   ABOUT SECTION
??????????????????????????????????????????????????? */
.about-section { background: #fff; }

.about-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    transition: transform 0.5s ease;
}

.about-img-wrap:hover .about-img { transform: scale(1.03); }

.about-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #1a73e8;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 22px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(26,115,232,0.4);
    display: flex;
    align-items: center;
}

.stat-mini-card {
    background: #f8faff;
    border-radius: 16px;
    border: 1.5px solid #e8f0fe;
    transition: all 0.3s;
}

.stat-mini-card:hover {
    border-color: #1a73e8;
    background: #eff6ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26,115,232,0.12);
}

/* ???????????????????????????????????????????????????
   TESTIMONIALS
??????????????????????????????????????????????????? */
.testimonial-section { background: #f8faff; }

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid #e8f0fe;
    height: 100%;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26,115,232,0.10);
}

.testimonial-stars { color: #f59e0b; font-size: 0.9rem; }

.testimonial-text {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.75;
    font-style: italic;
    flex: 1;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-prev,
.testimonial-next {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    color: #374151;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.25s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-prev { left: -22px; }
.testimonial-next { right: -22px; }

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #1a73e8;
    border-color: #1a73e8;
    color: #fff;
}

/* ???????????????????????????????????????????????????
   CTA SECTION
??????????????????????????????????????????????????? */
.cta-section { background: #f8faff; padding-bottom: 80px; }

.cta-card {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 50%, #1a1a4e 100%);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26,115,232,0.35);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-card .btn-light {
    color: #1a73e8;
    font-weight: 700;
    transition: all 0.3s;
}

.cta-card .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ???????????????????????????????????????????????????
   FOOTER
??????????????????????????????????????????????????? */
.site-footer {
    background: #0f172a;
    padding: 60px 0 30px;
}

.site-footer h5 { color: #f1f5f9; font-size: 1.25rem; }
.site-footer h6 { color: #e2e8f0; font-size: 0.95rem; }

.footer-text { color: #94a3b8; font-size: 0.9rem; line-height: 1.7; }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover { color: #60a5fa; padding-left: 4px; }

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: #94a3b8;
    font-size: 0.88rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i { color: #60a5fa; }

.footer-divider { border-color: rgba(255,255,255,0.08); }

.social-links { display: flex; gap: 10px; }

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: #94a3b8;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
    background: #1a73e8;
    color: #fff;
    border-color: #1a73e8;
    transform: translateY(-3px);
}

/* ???????????????????????????????????????????????????
   UTILITIES & ACCESSIBILITY
??????????????????????????????????????????????????? */
.btn:focus-visible,
.form-select:focus,
.form-control:focus {
    box-shadow: 0 0 0 3px rgba(26,115,232,0.25);
    outline: none;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* ???????????????????????????????????????????
   CUSTOM SECTION IMPROVEMENTS - COMPACT & LEFT-ALIGNED
??????????????????????????????????????????? */
.section-header {
    text-align: left !important;
    max-width: 100% !important;
}

.section-badge {
    font-size: 0.65rem !important;
    padding: 3px 10px !important;
    letter-spacing: 1px !important;
}

.section-title {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
}

.section-sub {
    font-size: 0.88rem !important;
    max-width: 100% !important;
    margin: 0 !important;
}

/* Reduce section spacing */
.destinations-section,
.features-section,
.testimonial-section,
.about-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.section-header.mb-4 {
    margin-bottom: 1.5rem !important;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 1.85rem !important;
    }
    
    .section-sub {
        font-size: 0.92rem !important;
    }
}


/* Widget Styles */
.widget-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid #e8f0fe;
}

.widget-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.widget-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 13px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.88rem;
}

.widget-body {
    padding: 13px;
}

/* Weather Widget - Increased by 10% from previous size */
.weather-testimonials-section .widget-card {
    max-height: 154px !important;  /* 140px + 10% = 154px */
    height: auto !important;
}

.weather-testimonials-section .widget-card .widget-header {
    padding: 5px 10px;
    font-size: 0.7rem;
}

.weather-testimonials-section .widget-card .widget-body {
    padding: 8px 10px;
}

.weather-testimonials-section .widget-card .weather-icon {
    margin-top: 0.1rem !important;
    margin-bottom: 0.1rem !important;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weather-testimonials-section .widget-card .weather-icon i {
    font-size: 0.95rem !important;
}

.weather-testimonials-section .widget-card h2 {
    font-size: 1.1rem !important;
    margin-bottom: 0.1rem !important;
}

.weather-testimonials-section .widget-card .text-muted {
    font-size: 0.62rem !important;
    margin-bottom: 0.15rem !important;
}

.weather-testimonials-section .widget-card .border-top {
    margin-top: 0.3rem !important;
    padding-top: 0.3rem !important;
    border-top-width: 1px !important;
}

.weather-testimonials-section .widget-card .border-top > div {
    padding: 0 0.25rem !important;
}

.weather-testimonials-section .widget-card .border-top small {
    font-size: 0.52rem !important;
}

.weather-testimonials-section .widget-card .border-top strong {
    font-size: 0.65rem !important;
}

.weather-testimonials-section .widget-card > .widget-body > small {
    font-size: 0.55rem !important;
    margin-top: 0.3rem !important;
    display: block;
}

/* Weather & Testimonials Combined Section */
.weather-testimonials-section {
    background: #f8faff;
}

.weather-testimonials-section .section-header {
    margin-bottom: 1rem !important;
}

@media (max-width: 991px) {
    .weather-testimonials-section .col-lg-4 {
        order: 2;
        margin-top: 2rem;
    }
    
    .weather-testimonials-section .col-lg-8 {
        order: 1;
    }
}

.update-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.update-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.update-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Live Updates - 2x2 Grid Cards */
.update-card-mini {
    background: #f8faff;
    border: 1px solid #e8f0fe;
    border-radius: 12px;
    padding: 12px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 28px;
}

.update-card-mini:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    background: #eff6ff;
    border-color: #bfdbfe;
}

.update-card-mini .update-dot {
    position: absolute;
    left: 10px;
    top: 14px;
    margin-top: 0;
}

.update-card-mini strong {
    font-size: 0.78rem;
    color: #0f172a;
    line-height: 1.3;
}

.update-card-mini small {
    font-size: 0.7rem;
    line-height: 1.2;
}

.weather-icon {
    animation: pulse 3s ease-in-out infinite;
}

/* Custom badge colors */
.bg-purple {
    background-color: #9333ea !important;
}

.bg-brown {
    background-color: #92400e !important;
}

