/* ----------------------------------------------------
   BRAND COLOR PALETTE & DESIGN SYSTEM
   HOLIDAYeS Corporate Branding Refined
------------------------------------------------------- */
:root {
    /* Brand Colors */
    --primary: #0a192f;        /* Deep Navy Blue */
    --primary-light: #172a45;
    --accent: #ff7a00;         /* Vibrant Orange */
    --accent-hover: #e06c00;
    --bg-primary: #ffffff;     /* Pure White Background */
    --bg-secondary: #fdfbf7;   /* Soft Cream / Beige */
    --bg-tertiary: #f4f0e6;    /* Soft beige outline/divider */
    
    /* Text Colors */
    --text-primary: #0f1e36;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-light: #e2e8f0;
    
    /* Global Styles */
    --border-color: rgba(10, 25, 47, 0.08);
    --border-hover: rgba(10, 25, 47, 0.16);
    --shadow-sm: 0 2px 8px rgba(10, 25, 47, 0.06);
    --shadow-md: 0 8px 24px rgba(10, 25, 47, 0.08);
    --shadow-lg: 0 16px 36px rgba(10, 25, 47, 0.12);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------------------------------
   BASE ELEMENTS
------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button, input, select, textarea {
    font-family: inherit;
    color: inherit;
    outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ----------------------------------------------------
   LAYOUT CONTAINERS & GRID (Restructured Split Screen Column System)
------------------------------------------------------- */
.main-wrapper {
    margin-top: 80px; /* Offset for sticky navbar */
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px 24px;
}

/* Split screen layout: Left side places, Right side directories */
.layout-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 992px) {
    .layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Left Main Content Column - Tourism Places */
.main-content {
    min-width: 0;
}

/* Right Directory Column - Agencies, Hotels, Transport Listings */
.sidebar, .directory-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.d-none {
    display: none !important;
}

/* Directory Listing Box (Cards) */
.directory-box {
    background-color: var(--bg-secondary);
    border: 1px solid var(--bg-tertiary);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.directory-box-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--bg-tertiary);
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.directory-card {
    background: #ffffff;
    border: 1px solid var(--bg-tertiary);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition);
}

.directory-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.directory-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.directory-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.directory-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.directory-meta span i {
    color: var(--accent);
    margin-right: 6px;
    width: 14px;
}

.directory-actions {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

/* Alternate Section Background */
.bg-cream-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--bg-tertiary);
    border-bottom: 1px solid var(--bg-tertiary);
}

/* ----------------------------------------------------
   HEADER & NAVBAR
------------------------------------------------------- */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--primary-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-brand {
    display: flex;
    align-items: center;
    height: 48px;
}

.logo-img {
    height: 100%;
    max-height: 44px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-phone {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent) 0%, #ff9838 100%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    padding: 8px 18px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(255, 122, 0, 0.25);
    transition: var(--transition);
    margin-left: 16px;
}

.nav-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 122, 0, 0.4);
    background: linear-gradient(135deg, #e06c00 0%, var(--accent) 100%);
    color: #ffffff;
}

.nav-phone i {
    font-size: 0.95rem;
    animation: phone-shake 3s infinite;
}

@keyframes phone-shake {
    0%, 90%, 100% { transform: rotate(0); }
    92% { transform: rotate(-15deg); }
    94% { transform: rotate(15deg); }
    96% { transform: rotate(-15deg); }
    98% { transform: rotate(15deg); }
}

@media (max-width: 480px) {
    .nav-phone span {
        display: none;
    }
    .nav-phone {
        padding: 8px 12px;
        margin-left: 8px;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        justify-content: center;
    }
}

.nav-hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-hamburger-btn span {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition);
}

@media (max-width: 1100px) {
    .nav-menu {
        display: none;
    }
    .nav-hamburger-btn {
        display: flex;
    }
}

/* Mobile Navigation Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background-color: var(--primary);
    box-shadow: var(--shadow-lg);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    padding: 40px 24px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-close {
    align-self: flex-end;
    font-size: 2.2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 30px;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.drawer-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-light);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--primary-light);
}

.drawer-link:hover, .drawer-link.active {
    color: var(--accent);
    padding-left: 8px;
}

/* ----------------------------------------------------
   BUTTONS
------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-orange {
    background-color: var(--accent);
    color: #ffffff;
}

.btn-orange:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.35);
}

.btn-navy {
    background-color: var(--primary);
    color: #ffffff;
}

.btn-navy:hover {
    background-color: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 25, 47, 0.25);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--border-hover);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--bg-secondary);
    border-color: var(--primary);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
}

/* ----------------------------------------------------
   HERO SECTIONS
------------------------------------------------------- */
.hero-banner {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.85) 0%, rgba(10, 25, 47, 0.4) 100%);
    z-index: 2;
}

.hero-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 3;
    color: #ffffff;
}

.hero-banner-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #ffffff;
    max-width: 800px;
}

.hero-banner-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 650px;
    margin-bottom: 24px;
}

.hero-banner-ctas {
    display: flex;
    gap: 16px;
}

@media (max-width: 768px) {
    .hero-banner {
        height: auto;
        padding: 80px 0;
    }
    .hero-banner-title {
        font-size: 2rem;
    }
    .hero-banner-subtitle {
        font-size: 1rem;
    }
    .hero-banner-ctas {
        flex-direction: column;
    }
}

/* ----------------------------------------------------
   DESTINATION & PACKAGE CARDS
------------------------------------------------------- */
.section-title-row {
    margin-bottom: 30px;
    border-left: 4px solid var(--accent);
    padding-left: 12px;
}

.section-main-title {
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Destination Grid & Card */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.dest-card {
    height: 180px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.dest-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.dest-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.8) 0%, rgba(10, 25, 47, 0.1) 80%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.dest-card-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
}

/* Package Grid & Cards */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.pkg-card {
    background-color: #ffffff;
    border: 1px solid var(--bg-tertiary);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.pkg-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pkg-img-wrapper {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.pkg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pkg-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--accent);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.pkg-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: rgba(10, 25, 47, 0.85);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}

.pkg-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pkg-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.pkg-highlights {
    list-style: none;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex: 1;
}

.pkg-highlights li {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pkg-highlights li::before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
}

.pkg-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-top: 1px solid var(--bg-tertiary);
    padding-top: 14px;
}

/* ----------------------------------------------------
   FILTER STRIP
------------------------------------------------------- */
.filter-strip {
    background-color: var(--bg-secondary);
    border: 1px solid var(--bg-tertiary);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.filter-group select, .filter-group input {
    background-color: #ffffff;
    border: 1px solid var(--bg-tertiary);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    width: 100%;
}

.filter-actions {
    display: flex;
    gap: 10px;
}

/* ----------------------------------------------------
   SPECIFIC PAGES CONTENT
------------------------------------------------------- */
.domestic-categories-list {
    margin-bottom: 40px;
}

.domestic-category-section {
    margin-bottom: 48px;
}

.domestic-category-title {
    font-size: 1.4rem;
    border-bottom: 2px solid var(--bg-tertiary);
    padding-bottom: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.domestic-category-title i {
    color: var(--accent);
}

/* Enquiry Form Block on Sidebar */
.sidebar-widget {
    background-color: var(--bg-secondary);
    border: 1px solid var(--bg-tertiary);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget-title {
    font-size: 1.15rem;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--bg-tertiary);
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-widget-title i {
    color: var(--accent);
}

.sidebar-form .form-group {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.sidebar-form input, .sidebar-form select {
    background-color: #ffffff;
    border: 1px solid var(--bg-tertiary);
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 0.9rem;
    color: var(--text-primary);
    width: 100%;
    transition: var(--transition);
}

.sidebar-form input:focus, .sidebar-form select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
}

.sidebar-success {
    text-align: center;
    padding: 20px 0;
    animation: fade-in 0.4s ease;
}

.sidebar-success i {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 12px;
}

.sidebar-success h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.sidebar-success p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* FAQ Accordion */
.faq-section {
    margin: 60px 0;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--bg-tertiary);
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    padding: 16px 20px;
    font-weight: 600;
    cursor: pointer;
    background-color: var(--bg-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: var(--bg-tertiary);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 20px;
    border-top: 1px solid var(--bg-tertiary);
    display: none;
    font-size: 0.9rem;
    color: var(--text-secondary);
    background-color: #ffffff;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ----------------------------------------------------
   TESTIMONIALS SLIDER
------------------------------------------------------- */
.testimonials-section {
    padding: 60px 24px;
    text-align: center;
}

.testimonial-carousel {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px;
    border: 1px dashed var(--bg-tertiary);
    background-color: var(--bg-secondary);
    border-radius: 12px;
}

.test-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.test-card {
    min-width: 100%;
    padding: 20px;
}

.test-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.test-stars {
    color: #f59e0b;
    margin-bottom: 12px;
}

.test-author {
    font-weight: 700;
    font-size: 0.95rem;
}

.test-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.test-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.test-arrow {
    background-color: #ffffff;
    border: 1px solid var(--bg-tertiary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.test-arrow:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.test-dots {
    display: flex;
    gap: 6px;
}

.test-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--bg-tertiary);
    cursor: pointer;
}

.test-dot.active {
    background-color: var(--accent);
    width: 18px;
    border-radius: 3px;
}

/* ----------------------------------------------------
   FOOTER
------------------------------------------------------- */
.footer-section {
    background-color: var(--primary);
    color: var(--text-light);
    border-top: 3px solid var(--accent);
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 40px 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
}

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

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    opacity: 0.8;
    margin-top: 15px;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.footer-socials a:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    font-size: 0.88rem;
    color: var(--text-light);
    opacity: 0.8;
}

.footer-col ul a:hover {
    color: var(--accent);
    padding-left: 4px;
    opacity: 1;
}

.footer-contact-info {
    font-size: 0.88rem;
    opacity: 0.8;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-info span i {
    color: var(--accent);
    width: 20px;
}

.footer-bottom {
    background-color: var(--primary-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ----------------------------------------------------
   FLOATING WIDGETS
------------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

/* ----------------------------------------------------
   ANIMATIONS KEYFRAMES
------------------------------------------------------- */
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ----------------------------------------------------
   DIRECTORY PACKAGES GRID & ITEMS
------------------------------------------------------- */
.pkg-directory-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.directory-list-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dir-item {
    background-color: #ffffff;
    border: 1px solid var(--bg-tertiary);
    border-radius: 8px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: var(--transition);
}

.dir-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.dir-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--bg-tertiary);
    padding-bottom: 6px;
    margin-bottom: 4px;
}

.dir-item-title {
    font-family: var(--font-header);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.05rem;
}

.dir-item-dur {
    background-color: var(--bg-secondary);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid var(--bg-tertiary);
}

.dir-item-cities {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.btn-xs {
    padding: 6px 12px;
    font-size: 0.75rem;
    align-self: flex-start;
}

.badge-blue {
    background-color: var(--primary) !important;
}

.pkg-desc-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.pkg-route-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.pkg-route-info i {
    color: var(--accent);
    margin-right: 4px;
}

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

/* ----------------------------------------------------
   AD CARDS & SIDEBAR PROMO WIDGETS
   Ensures images do not stretch layout & cause overlap
------------------------------------------------------- */
.ad-card {
    background-color: #ffffff;
    border: 1px solid var(--bg-tertiary);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    width: 100%;
}

.ad-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.ad-img-wrapper {
    position: relative;
    height: 140px;
    width: 100%;
    overflow: hidden;
}

.ad-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

.ad-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--accent);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.ad-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ad-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.ad-text {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.ad-footer {
    margin-top: 4px;
}

/* Global Image Restraints to Prevent Stretch Overflows */
img {
    max-width: 100%;
    height: auto;
}

/* ----------------------------------------------------
   SEO DIRECTORY KEYWORD TAGS IN FOOTER
------------------------------------------------------- */
.footer-seo-tags {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-seo-tags h4 {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.seo-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.seo-tags-container a {
    color: var(--text-light);
    opacity: 0.65;
    font-size: 0.8rem;
    transition: var(--transition);
    text-decoration: none;
}

.seo-tags-container a:hover {
    color: var(--accent);
    opacity: 1;
}
