/* 
Premium Design System for Creek Cottage 
Modern, Luxury, Responsive
*/

:root {
    --primary: #f15d30;
    --secondary: #05237E;
    --dark: #0f172a;
    --light: #f8fafc;
    --white: #ffffff;
    --gray: #64748b;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .heading {
    font-family: 'Outfit', sans-serif !important;
}

/* HERO SECTION */
.hero-wrap {
    background-size: cover !important;
    background-position: center center !important;
}

.hero-wrap .overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.3) 0%, rgba(5, 35, 126, 0.1) 100%);
    z-index: 0;
}

.hero-wrap h1 {
    font-weight: 900;
    font-size: 65px;
    line-height: 1.1;
    letter-spacing: -2px;
    text-transform: uppercase;
}

/* HOME SLIDER PREMIUM STYLES */
.home-slider {
    position: relative;
    z-index: 0;
}

.home-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.home-slider .owl-nav .owl-prev,
.home-slider .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s all ease;
    pointer-events: auto;
}

.home-slider .owl-nav .owl-prev { left: 30px; }
.home-slider .owl-nav .owl-next { right: 30px; }

.home-slider .owl-nav .owl-prev:hover,
.home-slider .owl-nav .owl-next:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    transform: scale(1.1);
}

.home-slider .owl-dots {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
}

.home-slider .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3) !important;
    border-radius: 50%;
    margin: 0 5px;
    display: inline-block;
    transition: 0.3s;
    border: none !important;
}

.home-slider .owl-dots .owl-dot.active {
    background: var(--primary) !important;
    width: 30px;
    border-radius: 10px;
}

.slider-item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.slider-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.3)) !important;
}

@media (max-width: 767.98px) {
    .home-slider .owl-nav { display: none; }
    .home-slider .owl-dots { bottom: 20px; }
    .slider-text h1 { font-size: 38px !important; }
    .slider-text p.caps { font-size: 16px !important; }
}

/* HERO WRAP 2 (INNER PAGES) */
.hero-wrap-2 {
    height: 500px !important;
    min-height: 500px !important;
    position: relative;
    background-size: cover !important;
    background-position: center center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-wrap-2 .container {
    width: 100% !important;
    position: relative;
    z-index: 2;
}

.hero-wrap-2 .slider-text {
    height: auto !important;
    min-height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

.hero-wrap-2 .overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(5, 35, 126, 0.4) 100%) !important;
    opacity: 1 !important;
    z-index: 0;
}

.hero-wrap-2 .container {
    position: relative;
    z-index: 2;
}

/* NAVBAR SYSTEM - SCREENSHOT SYNC */
.ftco_navbar {
    padding: 15px 0 !important;
    transition: all 0.3s ease-in-out;
    z-index: 1030 !important;
}

#ftco-navbar {
    background: white !important;
    z-index: 1030 !important;
}

.ftco_navbar.scrolled {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
    padding: 10px 0 !important;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030 !important;
    margin-top: 0 !important;
}

@media (max-width: 991.98px) {
    .ftco_navbar.scrolled {
        padding: 8px 0 !important;
    }
}

/* Force flex alignment for navbar container */
.ftco_navbar .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 100px !important;
    transition: all 0.3s ease;
}

.ftco_navbar.scrolled .container {
    min-height: 70px !important;
}

@media (max-width: 991.98px) {
    .ftco_navbar {
        padding: 15px 0 !important;
        background: #ffffff !important;
    }
    .ftco_navbar .container {
        padding: 0 20px !important;
        min-height: 90px !important;
        display: flex !important;
        align-items: center !important;
    }
}

.ftco_navbar.scrolled .nav-link {
    color: #000000 !important;
    font-weight: 800 !important;
    font-size: 14px !important;
}

.ftco_navbar.scrolled .nav-link:hover {
    color: var(--primary) !important;
}

/* GALLERY PREMIUM STYLES */
.gallery-item {
    display: block;
    height: 300px;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    transition: 0.4s all ease;
}

.gallery-item .overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(241, 93, 48, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s all ease;
    color: #fff;
    font-size: 24px;
    transform: scale(1.1);
}

.gallery-item:hover .overlay-icon {
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

@media (max-width: 767.98px) {
    .gallery-item {
        height: 250px;
    }
}

/* GALLERY FILTERS */
.gallery-filters {
    gap: 15px;
}

.btn-filter {
    padding: 12px 35px;
    background: #ffa726;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    box-shadow: 0 5px 0 #e65100, 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    cursor: pointer;
    outline: none !important;
}

.btn-filter:hover {
    transform: translateY(-2px);
    background: #ffb74d;
    box-shadow: 0 7px 0 #e65100, 0 12px 25px rgba(0,0,0,0.15);
}

.btn-filter.active {
    background: #f57c00;
    transform: translateY(3px);
    box-shadow: 0 2px 0 #e65100, 0 5px 10px rgba(0,0,0,0.1);
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 15px 20px;
    color: #000 !important; /* Ensure black as base */
    opacity: 1 !important;
    transition: 0.3s;
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover {
    color: var(--primary) !important; /* Change to Orange on Hover */
}

.ftco-navbar-light .navbar-nav > .nav-item.active > .nav-link {
    color: #f15d30 !important; /* Brand Orange from Screenshot */
}

/* On scroll adjustments */
.ftco_navbar.scrolled .nav-item.active > .nav-link {
    color: #f15d30 !important;
}

.ftco_navbar.scrolled .nav-item:hover > .nav-link {
    color: #f15d30 !important;
}

/* Logo Highlighting System */
.logo-box {
    background: #ffffff;
    padding: 10px 15px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.scrolled .logo-box {
    padding: 6px 12px;
    border-radius: 12px;
}

.logo-box img {
    height: 65px;
    width: auto;
    transition: 0.3s;
}

.scrolled .logo-box img {
    height: 45px;
}

.logo-box-sidebar {
    background: #ffffff;
    padding: 18px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

.logo-box-sidebar img {
    width: 100px !important;
    height: auto !important;
}

/* Logo Sizing Legacy Cleanup */
.navbar-brand img {
    display: none;
}
.logo-box img {
    display: block !important;
}

/* MOBILE SIDEBAR */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 300px !important;
        height: 100vh !important;
        background: #0f172a !important; /* Premium Dark Blue from screenshot */
        z-index: 9999 !important;
        padding: 40px !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        display: block !important;
        visibility: hidden;
        box-shadow: 20px 0 60px rgba(0,0,0,0.5);
    }

    .navbar-collapse .navbar-nav .nav-link {
        color: #94a3b8 !important; /* Slate Gray for inactive */
        font-size: 16px !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        padding: 18px 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.05) !important;
        transition: 0.3s;
    }

    .navbar-collapse .navbar-nav .nav-item.active .nav-link {
        color: #f15d30 !important; /* Brand Orange */
    }

    .navbar-collapse .navbar-nav .nav-link:hover {
        color: #ffffff !important;
        padding-left: 10px !important;
    }

    .navbar-collapse.show {
        left: 0 !important;
        visibility: visible !important;
    }

    .navbar-toggler, 
    .ftco-navbar-light .navbar-toggler,
    .ftco-navbar-light.scrolled .navbar-toggler {
        background: var(--primary) !important;
        padding: 12px 22px !important;
        border-radius: 15px !important;
        border: none !important;
        outline: none !important;
        color: #fff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        font-size: 15px !important;
        text-transform: uppercase;
        font-weight: 900;
        letter-spacing: 1px;
        box-shadow: 0 8px 20px rgba(241, 93, 48, 0.4) !important;
    }

    .navbar-toggler i {
        color: #fff !important;
    }

    .navbar-toggler span {
        color: #fff !important;
    }

    .navbar-brand {
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
    }
}


.services-1 {
    border-radius: 32px;
    padding: 80px 40px 50px 40px !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    z-index: 1;
    height: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.services-1::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.95) 100%);
    z-index: 0;
}

.services-1:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.services-1 .icon {
    width: 65px; height: 65px;
    border-radius: 20px;
    background: var(--primary) !important;
    color: #fff !important;
    font-size: 28px;
    margin-bottom: 25px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 15px 30px rgba(241, 93, 48, 0.4);
    position: relative;
    z-index: 1;
}

.services-1 .media-body {
    position: relative;
    z-index: 1;
}

.services-1 .media-body h3 {
    color: #ffffff !important;
    font-weight: 700;
}

.services-1 .media-body p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* CARDS (VERTICAL STYLE) */
.service-card-modern {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-modern .img {
    height: 260px;
    background-size: cover;
    background-position: center;
}

.service-card-modern .text {
    padding: 40px !important;
    position: relative;
}

.service-card-modern .icon-wrap {
    width: 70px; height: 70px;
    background: var(--primary);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 30px;
    position: absolute; top: -35px; right: 40px;
    box-shadow: 0 15px 30px rgba(241, 93, 48, 0.4);
}

/* TESTIMONY */
.testimony-wrap {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 45px !important;
    border-radius: 30px;
    color: #fff;
    transition: all 0.3s ease;
}

/* FLOATING BUTTONS */
.floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.whatsapp-float {
    background: #25D366;
    animation: whatsapp-pulse 2s infinite;
}

.insta-float {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* SECTION UTILS */
.heading-section .subheading {
    font-size: 14px !important;
    text-transform: uppercase !important;
    font-weight: 800 !important;
    color: var(--primary) !important;
    letter-spacing: 3px !important;
    display: block;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif !important;
}

@media (max-width: 767.98px) {
    .hero-wrap, .hero-wrap.js-fullheight {
        height: 306px !important;
        min-height: 227px !important;
        
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .hero-wrap .slider-text {
        height: 306px !important;
    }

    .hero-wrap .overlay {
        height: 306px !important;
        background: rgba(0, 0, 0, 0.5) !important;
        opacity: 1 !important;
    }

    .hero-wrap p {
        font-size: 14px !important;
        line-height: 1.4 !important;
        margin-bottom: 0 !important;
    }
    
    .hero-wrap h1 {
        margin-bottom: 10px !important;
    }

    /* INNER PAGES MOBILE */
    .hero-wrap-2 {
        height: 300px !important;
        min-height: 300px !important;
    }
    .hero-wrap-2 .overlay {
        height: 300px !important;
    }
    .hero-wrap-2 .slider-text {
        height: 300px !important;
    }
    .hero-wrap-2 h1 {
        font-size: 32px !important;
    }
}

.heading-section h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--secondary);
}

/* MOBILE RESPONSIVENESS UPDATES */
@media (max-width: 991.98px) {
    .hero-wrap h1 {
        font-size: 42px !important;
    }
    
    .heading-section h2 {
        font-size: 36px !important;
    }
    
    .ftco-section {
        padding: 20px 0 !important;
    }

    .navbar-brand img {
        height: 50px !important;
    }
}

@media (max-width: 767.98px) {
    .hero-wrap h1 {
        font-size: 32px !important;
        letter-spacing: -1px !important;
    }
    
    .hero-wrap .subheading {
        font-size: 20px !important;
        letter-spacing: 2px !important;
    }
    
    .heading-section h2 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
    
    .services-1 {
        min-height: 400px !important;
        padding: 60px 30px 40px 30px !important;
        border-radius: 24px !important;
        margin-bottom: 20px !important;
    }
    
    .services-1 .icon {
        width: 55px !important;
        height: 55px !important;
        font-size: 24px !important;
    }

    .about-img-main img {
        border-radius: 20px !important;
        min-height: 300px !important;
    }

    .heading-section h2 br {
        display: none;
    }

    /* Fix for the section with background image and margin */
    section.ftco-section.img {
        margin: 0 10px !important;
        border-radius: 20px !important;
    }

    .testimony-wrap {
        padding: 30px 20px !important;
        border-radius: 20px !important;
    }

    .floating-container {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-wrap h1 {
        font-size: 28px !important;
    }
    
    .services-1 {
        min-height: 350px !important;
    }
}

/* FOOTER RESPONSIVENESS */
@media (max-width: 767.98px) {
    .ftco-footer {
        padding: 60px 0 30px 0 !important;
    }
    
    .ftco-footer .row.mb-5.pb-5 {
        margin-bottom: 20px !important;
        padding-bottom: 20px !important;
    }
    
    .ftco-footer-widget {
        margin-bottom: 40px;
    }
    
    .ftco-footer-widget h2 {
        margin-bottom: 15px !important;
        font-size: 16px !important;
    }
    
    .ftco-footer-widget .block-23 ul li {
        margin-bottom: 15px !important;
    }
    
    .amenity-icon i {
        font-size: 10px !important;
    }
}

/* AMENITIES REDESIGN - PREMIUM GLASS STYLE */
.amenity-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 22px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.amenity-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.amenity-icon-wrap {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(241, 93, 48, 0.4);
    flex-shrink: 0;
}

.amenity-text {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.5px;
}

.capacity-box {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 60px 40px;
    margin-top: 20px;
}

.capacity-item i {
    font-size: 32px;
    color: #fff;
    display: block;
}

.capacity-item p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    font-weight: 700;
}

.capacity-item .value {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

@media (max-width: 991.98px) {
    .amenity-card {
        padding: 18px;
    }
    .amenity-text {
        font-size: 14px;
    }
}

@media (max-width: 767.98px) {
    .amenity-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    
    .amenity-icon-wrap {
        margin-right: 0;
        margin-bottom: 12px;
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .amenity-text {
        font-size: 12px;
        line-height: 1.2;
    }
    
    .capacity-box {
        padding: 40px 20px;
        border-radius: 30px;
    }
    
    .capacity-item .value {
        font-size: 18px;
    }
    
    .capacity-item i {
        font-size: 26px;
    }
}

/* PREMIUM SECTION BOX FIX */
.premium-section-box {
    transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
    .premium-section-box {
        margin: 0 !important;
        border-radius: 0 !important;
    }
}

/* BREADCRUMBS */
.breadcrumb-wrap {
    z-index: 2;
    position: relative;
}

.breadcrumbs {
    display: inline-flex !important;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 25px !important;
    border-radius: 50px;
    list-style: none;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.breadcrumbs li {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
}

.breadcrumbs li a {
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
    text-decoration: none !important;
}

.breadcrumbs li a:hover {
    color: var(--primary);
}

.breadcrumbs li span {
    margin: 0 10px;
    color: var(--primary);
    font-weight: 900;
}

@media (max-width: 767.98px) {
    .breadcrumbs {
        padding: 6px 20px !important;
    }
    .breadcrumbs li {
        font-size: 12px;
    }
}

/* PACKAGE CARDS REDESIGN */
.package-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}

.package-img {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.package-card:hover .package-img {
    transform: scale(1.05);
}

.package-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 10px 18px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    z-index: 2;
    transition: all 0.4s ease;
}

.package-price span {
    color: var(--primary);
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.package-card:hover .package-price {
    background: var(--primary);
    box-shadow: 0 10px 30px rgba(241, 93, 48, 0.4);
}

.package-card:hover .package-price span {
    color: #fff;
}

.package-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    position: relative;
    z-index: 2;
}

.package-text h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #0f172a;
}

.package-text p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .package-img {
        height: 220px;
    }
    .package-text h3 {
        font-size: 18px;
    }
}