/* ==================== 1. VARIABLES & GLOBAL ==================== */
:root {
    --ttm-dark-blue: #0a142f; /* Main Brand Color (Dark Blue) */
    --ttm-gold: #8b6508;      /* Accent Color (Gold) */
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden; /* Prevents horizontal scroll on mobile */
}

/* Helper Class for Gold Text */
.ttm-gold-text {
    color: var(--ttm-gold) !important;
}

/* ==================== 2. HEADER & NAVBAR ==================== */

/* Top Bar (Phone/Email strip) */
.ttm-top-bar {
    background-color: var(--ttm-dark-blue);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Main Navigation Bar */
.ttm-navbar {
    background-color: var(--ttm-dark-blue) !important;
    padding: 10px 0;
}

/* Navigation Links */
.navbar-dark .navbar-nav .nav-link {
    color: #ffffff; /* Default color WHITE */
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 0.5rem 0.8rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* REMOVE "Always Golden" for Active Link */
/* Active link stays WHITE by default, only turns Gold on HOVER */
.navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff !important;
}

/* HOVER STATE: Turns Gold when mouse is over it */
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active:hover,
.navbar-dark .navbar-nav .show > .nav-link {
    color: var(--ttm-gold) !important;
}

/* DROPDOWN MENU STYLES */

/* 1. Remove the Dropdown Icon (Caret) */
.dropdown-toggle::after {
    display: none !important;
    content: none !important;
}

/* 2. Dropdown Box Style */
.dropdown-menu {
    background-color: var(--ttm-dark-blue);
    border: 1px solid var(--ttm-gold);
    border-radius: 0;
    margin-top: 0;
    padding: 0; /* Remove default padding */
}

/* 3. Dropdown Items */
.dropdown-item {
    color: #ffffff;
    font-size: 14px;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: var(--ttm-gold);
    color: #ffffff;
    padding-left: 25px; /* Slight slide effect */
}

/* 4. SHOW DROPDOWN ON HOVER (Desktop Only) */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeIn 0.3s ease;
    }
}

/* Simple Fade Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* "Enquire Now" Button in Menu */
.btn-ttm-gold {
    background-color: var(--ttm-gold) !important;
    color: #ffffff !important;
    border: 1px solid var(--ttm-gold);
    font-weight: 600;
    margin-top: 5px;
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .btn-ttm-gold {
        margin-top: 0;
    }
}

.btn-ttm-gold:hover {
    background-color: transparent !important;
    color: var(--ttm-gold) !important;
    border: 1px solid var(--ttm-gold);
}

/* Fix for active state on the button link */
.navbar-dark .navbar-nav .btn-ttm-gold.nav-link {
    color: #ffffff !important;
}
.navbar-dark .navbar-nav .btn-ttm-gold.nav-link:hover {
    color: var(--ttm-gold) !important;
}

/* ==================== 3. PAGE SPECIFIC ==================== */

/* Page Headers */
.page-header {
    background-color: var(--ttm-dark-blue);
    padding: 80px 0;
    color: white;
    text-align: center;
}

/* Contact Page: Info Icons */
.icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--ttm-dark-blue);
    color: var(--ttm-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
}

/* Contact Page: Form Box Styling */
.contact-box {
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 30px;
    border-radius: 10px;
    background: white;
    height: 100%;
}

/* ==================== 4. FOOTER STYLES ==================== */

.ttm-footer {
    /* FORCE THE DARK BLUE COLOR */
    background-color: var(--ttm-dark-blue) !important; 
    
    /* Keep the Gold Line for separation */
    border-top: 4px solid var(--ttm-gold);
    
    color: #ffffff;
    font-size: 14px;
    padding-top: 60px; 
    margin-top: 0;
}

.ttm-footer h5 {
    color: var(--ttm-gold) !important;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links {
    padding-left: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--ttm-gold) !important;
    padding-left: 8px;
}

.contact-list {
    padding-left: 0;
    list-style: none;
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: #e0e0e0;
    line-height: 1.6;
}

.contact-list i {
    color: var(--ttm-gold);
    min-width: 25px;
    margin-top: 4px;
}

/* Social Buttons */
.social-btn {
    display: inline-flex;
    align-items: center;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.social-btn i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-btn:hover { color: var(--ttm-gold) !important; }
.social-btn.facebook:hover i { background: #3b5998; color: white; }
.social-btn.instagram:hover i { background: #E1306C; color: white; }
.social-btn.youtube:hover i { background: #FF0000; color: white; }
.social-btn.google:hover i { background: #4285F4; color: white; }

/* Copyright Bar */
.copyright-bar {
    background-color: #050b1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #b0b0b0;
}

/* ==================== 5. MASTER FORM STYLES ==================== */

/* Modal Header Fix */
.modal-header {
    border-bottom: none;
}

/* Icon Box Style */
#appointmentForm .input-group-text,
#popupForm .input-group-text,
#footerQuoteForm .input-group-text {
    background-color: #f2f2f2;
    border: 1px solid #ced4da;
    border-right: none;
    color: var(--ttm-gold);
    width: 45px;
    justify-content: center;
    font-size: 14px;
}

/* Input Field Style */
#appointmentForm .form-control,
#appointmentForm .form-select,
#popupForm .form-control,
#popupForm .form-select,
#footerQuoteForm .form-control {
    border-left: none;
    background-color: #ffffff;
    padding: 10px 12px;
    font-size: 14px;
    height: auto;
    border: 1px solid #ced4da; /* Ensures proper border */
}

/* Focus State (Gold Border) */
#appointmentForm .form-control:focus,
#popupForm .form-control:focus,
#footerQuoteForm .form-control:focus,
#appointmentForm .form-select:focus,
#popupForm .form-select:focus {
    border-color: var(--ttm-gold);
    box-shadow: none;
}

/* Highlight Icon when Input is Focused */
#appointmentForm .form-control:focus + .input-group-text,
#popupForm .form-control:focus + .input-group-text,
#footerQuoteForm .form-control:focus + .input-group-text,
#appointmentForm .input-group-text:has(+ .form-control:focus),
#popupForm .input-group-text:has(+ .form-control:focus),
#footerQuoteForm .input-group-text:has(+ .form-control:focus) {
    border-color: var(--ttm-gold);
}

/* ==================== 6. FAQ STYLES ==================== */

.ttm-accordion .accordion-button {
    color: var(--ttm-gold);
    background-color: #ffffff;
    box-shadow: none;
    font-size: 16px;
    padding: 20px;
}

.ttm-accordion .accordion-button:not(.collapsed) {
    color: var(--ttm-gold);
    background-color: #fffbf0;
    box-shadow: none;
}

/* Gold Arrow Icon */
.ttm-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238b6508'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.ttm-accordion .accordion-body {
    background-color: #f9f9f9;
    padding: 20px;
    line-height: 1.6;
    border-top: 1px solid #eee;
}

/* ==================== 7. SERVICES PAGE STYLES ==================== */

.service-box {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    top: 0;
}

.service-icon {
    color: var(--ttm-dark-blue);
    transition: all 0.3s ease;
}

.service-box:hover {
    border-color: var(--ttm-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    top: -5px;
}

.service-box:hover .service-icon {
    color: var(--ttm-gold);
}

/* ==================== 8. ABOUT PAGE STYLES ==================== */

.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }

.transition-all {
    transition: all 0.3s ease;
}

.hover-gold-border:hover {
    border-color: var(--ttm-gold) !important;
    background-color: #fff !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

/* ==================== HEADER SOCIAL HOVER EFFECTS ==================== */

.header-social {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.header-social.facebook:hover { color: #3b5998 !important; }
.header-social.instagram:hover { color: #E1306C !important; }
.header-social.youtube:hover   { color: #FF0000 !important; }
.header-social.google:hover    { color: #4285F4 !important; }

.header-social:hover i {
    transform: scale(1.2);
    transition: transform 0.2s;
}

/* ==================== CONTACT LINKS HOVER EFFECT ==================== */

.contact-link {
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--ttm-gold) !important; 
}

/* ==================== HOMEPAGE HERO CAROUSEL ==================== */

.hero-carousel .carousel-item {
    height: 85vh; 
    min-height: 500px;
    background-color: var(--ttm-dark-blue);
}

.hero-carousel img {
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7); 
}

.hero-carousel .carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-carousel h1 {
    font-size: 3rem; 
    font-weight: 800;
    margin-bottom: 1.5rem;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(50px); 
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-carousel .carousel-item.active h1 {
    animation: slideUpFade 1s ease-out forwards;
}

.hero-carousel .carousel-item.active .btn {
    animation: slideUpFade 1s ease-out 0.3s forwards;
    opacity: 0;
}

/* ==================== CTA PANORAMA SECTION ==================== */

.cta-panorama {
    background: linear-gradient(90deg, rgba(10, 20, 47, 0.9) 0%, rgba(10, 20, 47, 0.6) 100%), 
                url('../image/landscape panorama.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 300px;
    padding: 60px 0;
}

@media (min-width: 992px) {
    .cta-panorama h2 {
        font-size: 2.5rem;
    }
}

/* ==================== POPULAR TOURS (PROFESSIONAL CARD) ==================== */

.tour-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.tour-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-img-wrap img {
    transform: scale(1.1);
}

.duration-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--ttm-gold);
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.tour-card-body {
    padding: 20px;
}

.tour-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.tour-duration-text {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
    display: block;
}

.tour-icons {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    margin-bottom: 20px;
}

.tour-icon-item {
    text-align: center;
    font-size: 10px;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
}

.tour-icon-item i {
    display: block;
    font-size: 20px;
    color: var(--ttm-gold);
    margin-bottom: 5px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white !important;
    font-weight: 700;
    font-size: 12px;
    border: none;
    text-transform: uppercase;
}

.btn-whatsapp:hover {
    background-color: #1ebc57;
}

.btn-view-trip {
    background-color: var(--ttm-gold);
    color: white !important;
    font-weight: 700;
    font-size: 12px;
    border: none;
    text-transform: uppercase;
}

.btn-view-trip:hover {
    background-color: var(--ttm-dark-blue);
}

/* ==================== TRENDING DESTINATIONS SECTION ==================== */

.trending-card {
    position: relative;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.trending-card:hover {
    transform: translateY(-5px);
}

.trending-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.trending-card:hover img {
    transform: scale(1.1);
}

.trending-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 30px;
}

.trending-title {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.trending-count {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

/* ==================== HOMEPAGE SERVICES SECTION ==================== */

.service-card-home {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.service-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card-home img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card-content {
    padding: 25px;
}

.service-card-home h4 {
    color: var(--ttm-dark-blue);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.service-card-home p {
    color: #777;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==================== INTERNATIONAL PACKAGES ==================== */

.intl-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    height: 100%;
    border-bottom: 3px solid var(--ttm-gold);
}

.intl-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.intl-img {
    height: 200px;
    overflow: hidden;
}

.intl-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.intl-box:hover .intl-img img {
    transform: scale(1.1);
}

.intl-info {
    padding: 12px;
    text-align: center;
    background-color: #fff;
}

.intl-name {
    color: var(--ttm-dark-blue);
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================== WHY CHOOSE US SECTION ==================== */

.wcu-content {
    background-color: var(--ttm-dark-blue);
    padding: 80px 60px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.wcu-image {
    height: 100%;
    min-height: 400px;
}

.wcu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wcu-subtitle {
    display: inline-block;
    background-color: #0d6efd;
    color: #ffffff;
    padding: 5px 15px;
    font-family: 'Brush Script MT', cursive;
    font-size: 20px;
    margin-bottom: 25px;
    border-radius: 2px;
}

.wcu-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.wcu-text {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 0;
}

/* ==================== OUR PROCESS (ZIG-ZAG) ==================== */

.process-step {
    position: relative;
    padding: 0 15px;
    margin-bottom: 30px;
    z-index: 2;
}

@media (min-width: 992px) {
    .process-step-down {
        margin-top: 80px;
    }
}

.process-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.process-icon-box {
    width: 85px;
    height: 85px;
    background-color: var(--ttm-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(139, 101, 8, 0.2);
    transition: transform 0.3s ease;
}

.process-step:hover .process-icon-box {
    transform: translateY(-5px);
}

.process-number {
    position: absolute;
    top: -10px;
    left: -10px;
    background-color: var(--ttm-dark-blue);
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    z-index: 3;
}

.process-title {
    color: var(--ttm-dark-blue);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
}

.process-text {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.process-arrow-container {
    position: relative;
    height: 100%;
}

.arrow-img {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    width: 120px; 
    display: none;
}

@media (min-width: 992px) {
    .arrow-img {
        display: block;
    }
    .arrow-img-1 { top: 40px; right: -60px; }
    .arrow-img-2 { top: -40px; right: -60px; }
    .arrow-img-3 { top: 40px; right: -60px; }
}

/* ==================== TTM SPECIAL PAGE HERO ==================== */

.ttm-special-hero {
    background: url('../image/tourism.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    height: 60vh;
    min-height: 400px;
}

/* ==================== TESTIMONIALS SECTION ==================== */

.testimonial-section {
    background-color:#FAF9F6;
    color: #000;
    position: relative;
}

.testi-card {
    background: var(--ttm-dark-blue);
    border-radius: 15px;
    padding: 30px;
    color: #333;
    position: relative;
    margin-top: 30px;
    transition: transform 0.3s ease;
}

.testi-card:hover {
    transform: translateY(-5px);
}

.testi-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid var(--ttm-gold);
    object-fit: cover;
    position: absolute;
    top: -35px;
    left: 30px;
}

.testi-stars {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 15px;
    margin-top: 10px;
}

.testi-quote-icon {
    font-size: 40px;
    color: var(--ttm-gold);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 30px;
}

.testi-name {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.testi-location {
    font-size: 12px;
    color: #777;
    font-weight: 600;
}

/* ==================== 9. RESPONSIVE MEDIA QUERIES (NEW) ==================== */

/* Tablet & Mobile Devices (Below 992px) */
@media (max-width: 991px) {
    /* Navbar Toggle Area */
    .navbar-collapse {
        background-color: var(--ttm-dark-blue);
        padding: 20px;
        position: relative;
        z-index: 1000;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    /* Why Choose Us Padding */
    .wcu-content {
        padding: 50px 30px;
        text-align: center;
    }

    .wcu-title {
        font-size: 28px;
    }

    /* Process Section - Zig Zag Disable */
    .process-step-down {
        margin-top: 0;
    }
    
    .arrow-img {
        display: none !important; /* Hide arrows on mobile */
    }

    .process-step {
        margin-bottom: 40px;
    }
}

/* Mobile Devices (Below 768px) */
@media (max-width: 768px) {
    /* Hero Carousel Text Size */
    .hero-carousel h1 {
        font-size: 1.8rem;
    }
    
    .hero-carousel .carousel-item {
        height: 60vh; /* Allow shorter height on small phones */
    }

    /* Page Headers */
    .page-header {
        padding: 50px 0;
    }
    .page-header h1 {
        font-size: 2rem;
    }

    /* Trending Destinations Title */
    .trending-title {
        font-size: 18px;
    }

    /* Footer Padding */
    .ttm-footer {
        padding-top: 40px;
        text-align: center; /* Center footer text on mobile */
    }
    
    .footer-links, .contact-list {
        display: inline-block;
        text-align: left;
    }

    /* Buttons Full Width */
    .btn-ttm-gold {
        width: 100%;
        margin-top: 10px;
    }
    
    /* Tour Card */
    .tour-img-wrap {
        height: 200px;
    }
}

/* Very Small Devices (Below 576px) */
@media (max-width: 576px) {
    .wcu-content {
        padding: 40px 20px;
    }
    
    /* Make Modal Forms fit screen */
    .modal-dialog {
        margin: 10px;
    }
}

/* ==================== REGION FILTER BUTTONS ==================== */

.region-btn-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; /* Space between buttons */
}

.region-btn {
    background-color: #f8f9fa; /* Light Gray Background */
    color: var(--ttm-gold);    /* Theme Gold Text */
    border: 1px solid #e9ecef;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 700;          /* Bold */
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 130px;
    text-align: center;
}

/* Hover Effect: Turns Gold with White Text */
.region-btn:hover {
    background-color: var(--ttm-gold);
    color: #ffffff !important;
    border-color: var(--ttm-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(139, 101, 8, 0.2);
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .region-btn {
        flex: 1 1 45%; /* Makes buttons larger on phone (2 per row) */
        font-size: 13px;
        padding: 10px;
    }
}

/* ==================== 1. ACTIVE REGION BUTTON ==================== */
/* This makes the button look like it is hovered (Gold) permanently */
.region-btn.active {
    background-color: var(--ttm-gold);
    color: #ffffff !important;
    border-color: var(--ttm-gold);
    box-shadow: 0 4px 10px rgba(139, 101, 8, 0.2);
}

/* ==================== 2. DESTINATION BENTO GRID ==================== */

/* Common Card Style */
.dest-grid-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    display: block; /* Makes anchor clickable block */
    width: 100%;
    margin-bottom: 20px; /* Space between stacked cards */
}

/* Image Styling */
.dest-grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Zoom Effect */
.dest-grid-card:hover img {
    transform: scale(1.1);
}

/* Dark Gradient Overlay (For text readability) */
.dest-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    z-index: 2;
}

/* Text Style */
.dest-grid-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
    margin: 0;
    text-transform: capitalize;
}

/* HEIGHT HELPERS (Desktop Only) */
@media (min-width: 992px) {
    /* Small Cards (Side ones) */
    .h-small {
        height: 180px; 
    }
    /* Large Card (Middle one) - Height of 3 small cards + gaps */
    .h-large {
        height: 580px; /* (180px * 3) + (20px gap * 2) = 580px */
    }
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .h-small, .h-large {
        height: 250px; /* Make them all standard boxes on mobile */
    }
}

.ttm-gold-text {
    color: var(--ttm-gold) !important;
}

/* Duration Badge on Top Right of Image */
.badge-duration {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #8b6508; /* Your Theme Gold/Brown */
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 10; /* Ensures it sits on top of the image */
}

/* Badge Style for "Popular" */
.badge-popular {
    position: absolute;          /* Places it over the image (ensure parent has position: relative) */
    top: 15px;                   /* Distance from top edge */
    left: 15px;                  /* Distance from left edge */
    background-color: #E74C3C;   /* The specific red color from your image */
    color: #ffffff;              /* White text */
    padding: 5px 20px;           /* Top/Bottom padding 5px, Left/Right 20px */
    border-radius: 50px;         /* Fully rounded pill shape */
    font-size: 14px;             /* Adjust text size */
    font-weight: 500;            /* Slightly bold text */
    z-index: 2;                  /* Ensures it sits on top of the image */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Optional: adds a slight shadow for depth */
}