/* ==========================================================================
   KONGU HOLIDAYS - MAIN STYLESHEET
   Consolidated styles for Navigation, Hero, Cards, and Components
   ========================================================================== */

/* ========================================
   1. GLOBAL VARIABLES & UTILITIES
   ======================================== */
:root {
    --hero-outline-color: rgba(255, 255, 255, 0.45);
    --hero-overlay-opacity: 0.55;
    --header-height: 105px;
    --primary-color: #08495E;
    --secondary-color: #e67e22;
    --text-color: #2c2c2c;
    --body-bg: #ffffff;
}

::selection {
    background: #034b29;
    color: #fff;
}

/* ========================================
   2. DESKTOP NAVIGATION
   ======================================== */
.announcement-bar {
    background: #1B4332;
    font-size: 1rem;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1040;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.announcement-bar a:hover {
    color: #fff !important;
    text-decoration: none !important;
    opacity: 0.9;
}

#header.fixed-top {
    top: 0;
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease, box-shadow 0.3s ease;
}

#header.fixed-top .nav-link {
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
}

#header.fixed-top .nav-link:hover,
#header.fixed-top .nav-link.active {
    color: var(--primary-color) !important;
}

#header.fixed-top .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#header.fixed-top .nav-link:hover::after,
#header.fixed-top .nav-link.active::after {
    width: 25px;
}

#header .btn-primary {
    background-color: #ffffff;
    border-color: #e67e22;
    color: #e67e22;
}

#header .btn-primary:hover {
    color: #ffffff;
    background-color: #e67e22;
    border-color: #e67e22;
}

/* Dropdown Hover */
@media (min-width: 1200px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Body Padding for fixed header */
body {
    padding-top: var(--header-height);
}

/* ========================================
   3. MOBILE NAVIGATION (OFFCANVAS & BOTTOM)
   ======================================== */

/* --- Mobile Bottom Nav --- */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.6rem 0.5rem;
    z-index: 1050;
    transition: transform 0.3s ease-in-out;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #474242;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    gap: 0.25rem;
    transition: all 0.2s ease;
    flex: 1;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.25rem;
    margin-bottom: 2px;
    transition: transform 0.2s ease;
}

.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
    color: #d96f12;
}

.mobile-bottom-nav .nav-item:active i {
    transform: scale(0.9);
}

/* --- Mobile Offcanvas Menu --- */
.mobile-menu-minimal.offcanvas {
    background: #ffffff;
    max-width: 320px;
    width: 90%;
}

.mobile-menu-logo {
    max-width: 180px;
    height: auto;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.2s ease, padding-left 0.2s ease;
    letter-spacing: 0.3px;
}

.mobile-menu-link:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    color: var(--primary-color);
    padding-left: 8px;
}

.mobile-menu-divider {
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
}

/* --- Mobile Dropdown Styles --- */
.mobile-menu-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.2s ease;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.mobile-menu-dropdown-toggle:hover {
    color: var(--primary-color);
}

.mobile-menu-dropdown-toggle i {
    transition: transform 0.3s ease;
    font-size: 0.875rem;
    color: var(--primary-color);
}

.mobile-menu-dropdown-toggle.active i {
    transform: rotate(180deg);
}

.mobile-menu-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1rem;
}

.mobile-menu-submenu.show {
    max-height: 500px;
}

.mobile-menu-submenu-item {
    display: block;
    color: #555;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu-submenu-item:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.mobile-menu-submenu-item:last-child {
    border-bottom: none;
}

/* --- Mobile Contact Section --- */
.mobile-menu-contact-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d;
    margin-bottom: 1rem;
}

.mobile-menu-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.875rem;
    font-size: 0.95rem;
}

.mobile-menu-contact-item i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
}

.mobile-menu-contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.mobile-menu-contact-item a:hover {
    color: var(--primary-color);
}

.mobile-menu-description {
    font-size: 0.8125rem;
    color: #6c757d;
    line-height: 1.5;
    margin-top: 1.25rem;
    margin-bottom: 0;
    font-style: italic;
}

.mobile-menu-minimal .btn-close {
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.mobile-menu-minimal .btn-close:hover {
    opacity: 1;
}

/* --- Mobile Book FAB --- */
.mobile-book-fab {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1045;
    background: #0f2b5b;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(15, 43, 91, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid white;
}

.mobile-book-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 43, 91, 0.4);
    color: white;
}

/* Hide mobile elements on desktop */
@media (min-width: 992px) {

    .mobile-bottom-nav,
    .mobile-book-fab {
        display: none !important;
    }
}

/* Body padding adjustment */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 70px;
        padding-top: 100px;
    }
}

/* ========================================
   4. NEW BADGE STYLES (REDESIGNED)
   ======================================== */
.nav-item {
    position: relative;
}

.nav-badge {
    position: relative;
    display: inline-flex;
    align-items: baseline;
}

.badge-glow {
    font-size: 0.55rem;
    padding: 3px 7px;
    border-radius: 50px;
    /* Pill shape */
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    top: -8px;
    /* Move upper */
    left: -2px;
    /* Move close */
    box-shadow: 0 2px 6px rgba(255, 107, 107, 0.5);
    animation: pulseGlow 2s infinite;
    line-height: 1;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 2px 6px rgba(255, 107, 107, 0.5);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 15px rgba(255, 107, 107, 0.7);
        transform: scale(1.05);
    }
}

/* Mobile specific badge adjustments */
.mobile-menu-link .badge-glow {
    font-size: 0.5rem;
    top: -5px;
    margin-left: 2px;
}

/* ========================================
   5. HERO SECTION STYLES
   ======================================== */
.hero-video {
    position: relative;
    overflow: hidden;
}

#heroCarousel {
    height: 70vh;
    min-height: 600px;
    max-height: 700px;
    max-width: 1400px;
    margin: 1rem auto 0;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: heroFadeIn 1.2s ease-out forwards;
}

#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    height: 100%;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 2;
}

.hero-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    animation: heroFadeIn 1.5s ease-out 0.3s backwards;
}

.hero-slide-content h4 {
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
    margin-bottom: 1.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.3;
}

.hero-slide-content p {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.5px;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.text-highlight {
    color: var(--secondary-color);
    background: var(--secondary-color);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    font-weight: 600;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-nav-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-nav-icon,
.carousel-control-next:hover .carousel-nav-icon {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.08);
}

#heroCarousel .carousel-indicators {
    bottom: 25px;
    z-index: 10;
}

#heroCarousel .carousel-indicators button {
    width: 5px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.7);
    margin: 0 6px;
    transition: all 0.3s ease;
}

#heroCarousel .carousel-indicators button.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

/* Hero CTA */
.hero-cta-group .btn-primary {
    background: var(--secondary-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.hero-cta-group .btn-primary:hover {
    background: #d35400;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.5);
}

.hero-cta-group .btn-outline-light {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2em;
}

.hero-cta-group .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: scale(1.05);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero Responsive */
@media (max-width: 991.98px) {
    #heroCarousel {
        height: 60vh;
        min-height: 450px;
        border-radius: 1.5rem;
        margin-top: 1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .hero-slide-content h4 {
        font-size: 1.75rem;
    }

    .hero-slide-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    #heroCarousel {
        height: 60vh;
        min-height: 425px;
        border-radius: 1.25rem;
        margin-top: 0.75rem;
    }

    .hero-slide-content h4 {
        font-size: 1.5rem;
    }

    .hero-slide-content p {
        font-size: 1rem;
    }

    .hero-cta-group .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    #heroCarousel .carousel-indicators {
        bottom: 15px;
    }
}

/* ========================================
   6. PACKAGE CARDS (MODERN REDESIGN)
   ======================================== */
.modern-package-card {
    position: relative;
    height: 480px;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.15), 0 4px 8px -2px rgba(0, 0, 0, 0.08);
}

.modern-package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 32px -8px rgba(0, 0, 0, 0.18), 0 12px 16px -4px rgba(0, 0, 0, 0.1);
}

.modern-package-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-package-card:hover .modern-package-card__image {
    transform: scale(1.05);
}

/* Premium gradient overlay for entire card */
.modern-package-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.25) 30%,
            rgba(0, 0, 0, 0.4) 60%,
            rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modern-package-card:hover .modern-package-card__overlay {
    opacity: 0.95;
}

.modern-package-card__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    color: #ffffff;
}

.modern-package-card__header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modern-package-card__duration {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-block;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    align-self: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.modern-package-card__title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

/* Tagline/subtitle */
.modern-package-card__tagline {
    font-size: 1rem;
    line-height: 1.4;
    opacity: 0.95;
    margin: 0;
    font-weight: 400;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    font-style: italic;
    letter-spacing: 0.01em;
}

.modern-package-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 1.5rem;
}

.modern-package-card__price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.modern-package-card__price-label {
    font-size: 0.75rem;
    opacity: 0.85;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.modern-package-card__price-value {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

/* Premium circular arrow button */
.modern-package-card__cta {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #1a1a1a;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    position: relative;
}

.modern-package-card__cta::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-package-card__cta:hover::before {
    opacity: 1;
}

.modern-package-card__cta:hover {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    color: #000000;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3), 0 6px 12px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.modern-package-card__cta:active {
    transform: translateY(-2px) scale(1.06);
}

/* Premium featured badge */
.modern-package-card__badge {
    position: absolute;
    display: none;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10;
    background: linear-gradient(135deg, #ff3b3b 0%, #d32f2f 100%);
    color: #ffffff;
    padding: 0.65rem 1.25rem;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
    transform: rotate(3deg);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.modern-package-card:hover .modern-package-card__badge {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 8px 24px rgba(220, 53, 69, 0.6), 0 4px 12px rgba(0, 0, 0, 0.35);
}

.modern-package-card__badge::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #d32f2f;
}

.modern-package-card__badge::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #b71c1c;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-package-card[data-animate="true"] {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Card Responsive */
@media (max-width: 768px) {
    .modern-package-card {
        height: 420px;
    }

    .modern-package-card__title {
        font-size: 1.75rem;
    }

    .modern-package-card__price-value {
        font-size: 1.25rem;
    }

    .modern-package-card__cta {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .modern-package-card__badge {
        font-size: 0.625rem;
        padding: 0.4rem 0.85rem;
    }
}

@media (max-width: 576px) {
    .modern-package-card {
        height: 380px;
    }

    .modern-package-card__content {
        padding: 1.5rem;
    }

    .modern-package-card__footer-wrapper {
        padding: 1.25rem 1.5rem;
        margin: 0 -1.5rem -1.5rem;
    }

    .modern-package-card__title {
        font-size: 1.5rem;
    }

    .modern-package-card__price-value {
        font-size: 1.125rem;
    }

    .modern-package-card__cta {
        width: 42px;
        height: 42px;
        font-size: 0.9375rem;
    }

    .modern-package-card__badge {
        font-size: 0.5625rem;
        padding: 0.35rem 0.75rem;
        top: 0.75rem;
        right: 0.75rem;
    }
}

/* ========================================
   7. SERVICE CARDS (OVERLAY)
   ======================================== */
.service-card-overlay {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
    transition: all 0.4s ease;
}

.service-card-overlay:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.service-card-overlay:hover::before {
    background: linear-gradient(180deg, rgba(46, 125, 50, 0.1) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.9) 100%);
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card-overlay:hover .service-card-img {
    transform: scale(1.1);
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 3;
}

.service-card-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.35rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.service-card-overlay:hover .service-card-title {
    transform: translateY(-4px);
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
}

@media (max-width: 767.98px) {
    .service-card-overlay {
        height: 240px;
    }

    .service-card-title {
        font-size: 1.2rem;
        letter-spacing: 1px;
        font-weight: 500;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .service-card-overlay {
        height: 260px;
    }
}

/* ========================================
   8. MISC UTILITIES & COMPONENTS
   ======================================== */
.btn-get-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.3rem;
}

.btn-get-quote i {
    font-size: 1rem;
}

/* Quote Modal */
#quoteModal .modal-content {
    background: var(--body-bg);
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 1.5rem 3rem rgba(33, 37, 41, 0.18);
}

#quoteModal .modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#quoteModal .modal-body {
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
}

#quoteModal label {
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

#quoteModal .form-control,
#quoteModal .form-select {
    font-size: 0.85rem !important;
    padding: 0.5rem 0.75rem;
}

/* Feature Grid (for Check Room/Quick Actions if used) */
.card-check-room {
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
    border-radius: 1.5rem;
    box-shadow: 0 0.5rem 2.5rem rgba(0, 0, 0, 0.18);
    background: rgba(24, 24, 24, 0.88);
    position: relative;
    z-index: 21;
}

.card-check-room .card-body {
    padding: 1.5rem 1.75rem 1.25rem !important;
}

/* Testimonials */
.testimonial-slider .splide__slide figure {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
}

/* Navbar Toggler */
.navbar-toggler {
    padding: 0.5rem;
    border-color: transparent;
    transition: all 0.2s ease-in-out;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler:hover .navbar-toggler-icon {
    transform: scale(1.1);
}

/* ========================================
   9. PAGE SPECIFIC STYLES (Moved from HTML)
   ======================================== */
:root {
    --tour-toolbar-offset: 7.5rem;
    --tour-toolbar-offset-hidden: 1.5rem;
}

#header {
    transition: transform 0.3s ease-in-out;
}

#header.header-hidden {
    transform: translateY(-100%);
}

#tourPackages .packages-search-card {
    position: static;
    z-index: 2;
}

#tourPackages .packages-toolbar {
    gap: 0.75rem;
}

@media (max-width: 575.98px) {
    #tourPackages #packageSearchForm {
        flex: 1 1 auto;
    }

    #tourPackages #packageSearchForm .input-group {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    :root {
        --tour-toolbar-offset: 68px;
        --tour-toolbar-offset-hidden: 1rem;
    }
}

/* Mobile Nav Styles */
.mobile-nav-panel .offcanvas-body {
    padding: 2rem 1.75rem 2.5rem;
}

.mobile-nav-panel .mobile-nav-grid {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.mobile-nav-panel .mobile-nav-tile {
    border-radius: 1rem;
    padding: 1.35rem 1.1rem;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.25s ease-in-out;
}

.mobile-nav-panel .mobile-nav-tile.active,
.mobile-nav-panel .mobile-nav-tile:hover {
    background-color: rgba(15, 110, 253, 0.18);
    color: #fff;
}

.mobile-nav-panel .mobile-nav-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.85rem;
}

.mobile-nav-panel .social-links {
    padding-top: 3rem;
}/ *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  
       1 0 .   M O B I L E   C A R D   V I S I B I L I T Y   I M P R O V E M E N T S  
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * /  
 @ m e d i a   ( m a x - w i d t h :   5 7 5 . 9 8 p x )   {  
         . m o d e r n - p a c k a g e - c a r d   {  
                 h e i g h t :   4 8 0 p x ;  
                 / *   I n c r e a s e   h e i g h t   f r o m   3 8 0 p x   t o   m a k e   i t   l o o k   l e s s   " w i d e "   a n d   t a l l   e n o u g h   f o r   c o n t e n t   * /  
         }  
  
         . m o d e r n - p a c k a g e - c a r d _ _ c o n t e n t   {  
                 p a d d i n g :   1 . 7 5 r e m ;  
                 / *   I n c r e a s e   p a d d i n g   f o r   b e t t e r   s p a c i n g   * /  
                 j u s t i f y - c o n t e n t :   f l e x - e n d ;  
                 / *   E n s u r e   c o n t e n t   s t a y s   a t   b o t t o m   * /  
         }  
  
         . m o d e r n - p a c k a g e - c a r d _ _ h e a d e r   {  
                 m a r g i n - b o t t o m :   a u t o ;  
                 / *   P u s h   h e a d e r   t o   t o p   i f   n e e d e d ,   o r   j u s t   l e t   i t   f l o w   * /  
         }  
  
         . m o d e r n - p a c k a g e - c a r d _ _ t i t l e   {  
                 f o n t - s i z e :   1 . 8 5 r e m ;  
                 / *   I n c r e a s e   f r o m   1 . 5 r e m   * /  
                 l i n e - h e i g h t :   1 . 2 ;  
                 t e x t - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 8 ) ;  
                 / *   S t r o n g e r   s h a d o w   f o r   r e a d a b i l i t y   * /  
         }  
  
         . m o d e r n - p a c k a g e - c a r d _ _ t a g l i n e   {  
                 f o n t - s i z e :   1 . 1 r e m ;  
                 / *   I n c r e a s e   t a g l i n e   s i z e   * /  
                 f o n t - w e i g h t :   5 0 0 ;  
                 o p a c i t y :   1 ;  
                 / *   F u l l   o p a c i t y   f o r   b e t t e r   v i s i b i l i t y   * /  
                 t e x t - s h a d o w :   0   2 p x   8 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 8 ) ;  
         }  
  
         . m o d e r n - p a c k a g e - c a r d _ _ p r i c e - l a b e l   {  
                 f o n t - s i z e :   0 . 8 5 r e m ;  
                 f o n t - w e i g h t :   7 0 0 ;  
         }  
  
         . m o d e r n - p a c k a g e - c a r d _ _ p r i c e - v a l u e   {  
                 f o n t - s i z e :   1 . 7 5 r e m ;  
                 / *   I n c r e a s e   f r o m   1 . 1 2 5 r e m   * /  
                 t e x t - s h a d o w :   0   3 p x   8 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 8 ) ;  
         }  
  
         . m o d e r n - p a c k a g e - c a r d _ _ d u r a t i o n   {  
                 f o n t - s i z e :   0 . 8 5 r e m ;  
                 p a d d i n g :   0 . 5 r e m   1 r e m ;  
                 b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 6 ) ;  
                 / *   D a r k e r   b a c k g r o u n d   f o r   r e a d a b i l i t y   * /  
         }  
  
         / *   E n s u r e   t h e   o v e r l y   i s   s t r o n g   e n o u g h   f o r   t h e   w h i t e   t e x t   * /  
         . m o d e r n - p a c k a g e - c a r d _ _ o v e r l a y   {  
                 b a c k g r o u n d :   l i n e a r - g r a d i e n t ( t o   b o t t o m ,  
                                 r g b a ( 0 ,   0 ,   0 ,   0 . 2 )   0 % ,  
                                 r g b a ( 0 ,   0 ,   0 ,   0 . 4 )   4 0 % ,  
                                 r g b a ( 0 ,   0 ,   0 ,   0 . 8 5 )   1 0 0 % ) ;  
         }  
 }  
 