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

:root {
    --primary: #f15d30;
    --secondary: #f8fafc;
    --dark: #020617;
    --light: #0f172a;
    --white: #020617;
    --gray: #94a3b8;
    --bg-dark: #000000;
    --bg-card: #0a0f1d;
    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --primary-glow: rgba(241, 93, 48, 0.4);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.5), 0 2px 4px -2px rgb(0 0 0 / 0.5);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.6), 0 4px 6px -4px rgb(0 0 0 / 0.6);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px var(--primary-glow); }
    50% { box-shadow: 0 0 25px var(--primary-glow); }
    100% { box-shadow: 0 0 5px var(--primary-glow); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.float-anim {
    animation: float 5s ease-in-out infinite;
}

.glow-anim {
    animation: glow 2s ease-in-out infinite;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .heading {
    font-family: 'Poppins', sans-serif !important;
    color: var(--text-main) !important;
}

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

.slider-item .overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%) !important;
}

.slider-item .slider-text h1 {
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    text-align: center !important;
}

.hero-wrap .slider-text {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    height: 100% !important;
}

.hero-wrap .slider-text .col-md-9, .hero-wrap .slider-text .col-md-10, .hero-wrap .slider-text .col-md-12 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto !important;
}

.hero-wrap .slider-text {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    height: 100% !important;
}

.hero-wrap .slider-text .col-md-9, .hero-wrap .slider-text .col-md-10, .hero-wrap .slider-text .col-md-12 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto !important;
}

.breadcrumb-wrap {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 12px 40px !important;
    border-radius: 100px !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 25px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
}

.breadcrumbs {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    display: flex !important;
    align-items: center !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    letter-spacing: 2px !important;
    font-weight: 700 !important;
}

.breadcrumbs li {
    color: #fff !important;
}

.breadcrumbs li a {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: var(--transition) !important;
}

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

.breadcrumbs li span {
    margin: 0 15px !important;
    color: rgba(255, 255, 255, 0.3) !important;
}

/* INNER PAGE HERO TITLE */
.hero-wrap-2 .slider-text h1 {
    font-size: 75px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    color: #fff !important;
    letter-spacing: -2px !important;
    text-shadow: 0 10px 40px rgba(0,0,0,0.5) !important;
    margin-bottom: 0 !important;
}

.hero-wrap-2 .slider-text {
    height: 500px !important;
}

.slider-item .slider-text .subheading {
    color: var(--primary) !important;
    font-size: 14px !important;
    letter-spacing: 5px !important;
    text-transform: uppercase !important;
    font-weight: 900 !important;
}

.btn-primary {
    background: var(--primary) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 18px 40px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    box-shadow: 0 10px 30px var(--primary-glow) !important;
    transition: var(--transition) !important;
}

.btn-primary:hover {
    transform: translateY(-5px) !important;
    animation: glow 1.5s infinite !important;
}

/* Luxury Card Styling */
.package-card, .services-1 {
    position: relative;
    background-size: cover !important;
    background-position: center center !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 25px !important;
    overflow: hidden;
    transition: var(--transition) !important;
    z-index: 1;
}

.services-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 15, 29, 0.7) 0%, rgba(10, 15, 29, 0.95) 100%) !important;
    z-index: -1;
    transition: var(--transition);
}

.services-1:hover::before {
    background: linear-gradient(to bottom, rgba(10, 15, 29, 0.4) 0%, rgba(10, 15, 29, 0.8) 100%) !important;
}

.package-card {
    background: var(--glass-bg) !important;
}

.package-card:hover, .services-1:hover {
    transform: translateY(-15px) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5) !important;
}

.package-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.package-img img {
    transition: transform 0.8s ease;
}

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

.testimony-section {
    position: relative;
    padding: 100px 0;
}

.testimony-section .overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 15, 29, 0.8) 100%) !important;
}

.testimony-wrap {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px !important;
    border-radius: 30px;
    transition: var(--transition);
}

.testimony-wrap:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

.testimony-wrap .name {
    color: #fff !important;
    font-weight: 800 !important;
}

.testimony-wrap .position {
    color: var(--primary) !important;
}

.testimony-wrap p {
    color: var(--text-muted) !important;
    font-style: italic;
    font-size: 18px;
}

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

/* GLOBAL OWL CAROUSEL SCROLL FIX FOR TOUCH DEVICES */
.owl-carousel,
.owl-carousel .owl-stage-outer,
.owl-carousel .owl-stage,
.owl-stage,
.owl-item,
.owl-carousel.owl-drag .owl-item,
.home-slider,
.slider-item,
.hero-wrap {
    touch-action: pan-y !important;
}

/* 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-item {
        height: 450px !important;
        min-height: 450px !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
        touch-action: pan-y !important;
        display: flex !important;
        align-items: flex-end !important; /* Bottom align for modern mobile look */
        padding: 0 !important;
    }
    
    .slider-item .overlay {
        background: rgba(15, 23, 42, 0.5) !important; /* Solid dark overlay for better text contrast */
        display: block !important;
    }
    
    .slider-text.js-fullheight {
        height: auto !important;
        min-height: auto !important;
        padding: 60px 25px !important;
        display: block !important;
        width: 100% !important;
        background: transparent !important;
        position: relative;
        z-index: 2;
        text-align: left !important; /* Modern left alignment */
    }
    
    .slider-text .container {
        padding: 0 !important;
    }

    .slider-text .row {
        margin: 0 !important;
        padding: 0 !important;
    }

    .slider-text .col-md-7 {
        padding: 0 !important;
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        text-align: left !important;
    }

    .slider-text h1 { 
        font-size: 32px !important; 
        line-height: 1.1 !important;
        margin-bottom: 20px !important;
        color: #fff !important;
        font-weight: 900 !important;
        text-align: left !important;
        text-transform: uppercase;
        letter-spacing: -1px;
    }
    
    .slider-text p.caps { 
        font-size: 16px !important; 
        line-height: 1.6 !important;
        margin-bottom: 30px !important;
        color: rgba(255, 255, 255, 0.9) !important;
        text-align: left !important;
    }
    
    .slider-text .subheading {
        font-size: 13px !important;
        letter-spacing: 3px !important;
        margin-bottom: 12px !important;
        display: block !important;
        text-align: left !important;
        color: var(--primary) !important;
    }
    
    .slider-text .btn-primary {
        padding: 16px 40px !important;
        font-size: 14px !important;
        width: auto !important; /* Back to auto width for premium feel */
        display: inline-block !important;
        border-radius: 50px !important;
        text-align: center !important;
        font-weight: 800 !important;
    }
    
    .about-img-wrap img {
        min-height: 250px !important;
        border-radius: 20px !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: rgba(2, 6, 23, 0.8) !important;
    backdrop-filter: blur(15px);
    z-index: 1030 !important;
}

.ftco_navbar.scrolled {
    background: #020617 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3) !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: #020617 !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: #ffffff !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: #fff !important; /* Ensure white as base */
    opacity: 0.8 !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: rgba(255, 255, 255, 0.05);
    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.3);
    border: 1px solid rgba(255,255,255,0.1);
    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: rgba(255, 255, 255, 0.05);
    padding: 18px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    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: #020617 !important;
        z-index: 9999 !important;
        padding: 30px !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);
        border-right: 1px solid rgba(255,255,255,0.05);
    }

    .navbar-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .close-sidebar {
        background: #fff !important;
        border: none !important;
        color: #0f172a !important;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        cursor: pointer;
        transition: 0.3s;
    }

    .close-sidebar:hover {
        background: var(--primary) !important;
        color: #fff !important;
        transform: rotate(90deg);
    }

    .navbar-collapse .navbar-nav .nav-link {
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        padding: 15px 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.03) !important;
    }

    .navbar-collapse .navbar-nav .nav-item.active .nav-link {
        color: var(--primary) !important;
    }

    .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: var(--bg-card);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.2);
    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-attachment: scroll !important;
        touch-action: pan-y !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: var(--bg-card);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(255,255,255,0.05);
    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(15, 23, 42, 0.9);
    backdrop-filter: blur(5px);
    padding: 10px 18px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    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: var(--bg-card);
    position: relative;
    z-index: 2;
}

.package-text h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-main);
}

.package-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .package-img {
        height: 220px;
    }
    .package-text h3 {
        font-size: 18px;
    }
/* GLOBAL UTILITY OVERRIDES */
.bg-light {
    background-color: var(--bg-card) !important;
}

.text-black {
    color: var(--text-main) !important;
}

.text-secondary {
    color: var(--text-muted) !important;
}

/* Form Styles for Black Theme */
.about-img-wrap {
    position: relative;
    z-index: 1;
}

.about-img-wrap::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background: rgba(241, 93, 48, 0.15);
    border-radius: 30px;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.about-img-wrap::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(5, 35, 126, 0.1);
    border-radius: 20px;
    z-index: -1;
    animation: float 8s ease-in-out infinite reverse;
}

.about-img-main {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 5px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.about-img-main:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.1);
}

/* SERVICES REDESIGN FOR BLACK THEME */
/* SERVICES REDESIGN - REVERT TO NORMAL PREMIUM DARK */
.services-1, .service-card-modern {
    background-color: var(--bg-card) !important;
    border: 1px solid var(--glass-border) !important;
    padding: 40px 30px !important;
    border-radius: 20px !important;
    text-align: center !important;
    transition: var(--transition) !important;
    height: 100% !important;
    display: block !important;
    position: relative !important;
    overflow: visible !important;
}

.services-1::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.92) 100%) !important;
    z-index: 1 !important;
    display: block !important;
    border-radius: 20px !important;
    pointer-events: none !important;
    transition: var(--transition) !important;
}

.services-1 .icon {
    width: 80px !important;
    height: 80px !important;
    background: var(--primary) !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: -70px auto 30px auto !important;
    font-size: 30px !important;
    box-shadow: 0 10px 20px rgba(241, 93, 48, 0.3) !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 2 !important;
}

.services-1 .media-body {
    text-align: center !important;
    position: relative !important;
    z-index: 2 !important;
}

.services-1 .media-body h3 {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 20px !important;
}

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

.services-1:hover {
    transform: translateY(-10px) !important;
}

.services-1:hover::before {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.85) 100%) !important;
}

/* PACKAGE CARD REDESIGN */
.package-card {
    background: var(--bg-card) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 35px !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
}

.package-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.package-img {
    height: 280px !important;
    position: relative !important;
}

.package-price {
    
    backdrop-filter: blur(5px) !important;
    color: #fff !important;
    font-weight: 900 !important;
    padding: 10px 25px !important;
    border-radius: 50px !important;
    font-size: 18px !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
}

.package-text h3 {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 15px !important;
}

.package-text p {
    font-size: 15px !important;
    color: var(--text-muted) !important;
    line-height: 1.8 !important;
}

.btn-primary.rounded-pill {
    padding: 12px 30px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.services-1 .icon, .service-card-modern .icon-wrap {
    background: rgba(241, 93, 48, 0.1) !important;
    color: var(--primary) !important;
}

.service-card-modern .img {
    border-radius: 15px !important;
    margin-bottom: 20px !important;
}

.ftco-section {
    background-color: var(--bg-dark) !important;
}

.heading-section h2 {
    color: #fff !important;
}

.heading-section .subheading {
    color: var(--primary) !important;
}

/* BREADCRUMB STYLES */
.breadcrumb-wrap {
    background: transparent !important;
}

.breadcrumbs {
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 10px 25px !important;
    border-radius: 50px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.breadcrumbs li {
    color: #fff !important;
}

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

.breadcrumbs li span {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* NAVBAR DARK THEME ENFORCEMENT */
.ftco_navbar {
    background: transparent !important;
}

.ftco_navbar.awake {
    background: var(--bg-dark) !important;
    border-bottom: 1px solid var(--primary) !important;
}

.logo-box {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 12px !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: var(--transition) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
}

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

.logo-box:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px) !important;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    padding: 10px 20px !important;
    transition: var(--transition) !important;
}

.navbar-nav .nav-item.active > .nav-link {
    color: var(--primary) !important;
}

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

.ftco_navbar.scrolled .logo-box {
    padding: 8px !important;
    border-radius: 12px !important;
}

.ftco_navbar.scrolled .logo-box img {
    height: 60px !important;
}

/* MOBILE RESPONSIVENESS FIXES */
@media (max-width: 991.98px) {
    .slider-item .slider-text h1 {
        font-size: 55px !important;
        letter-spacing: -1px !important;
    }
    .hero-wrap.hero-wrap-2 {
        height: 500px !important;
    }
}

@media (max-width: 767.98px) {
    .slider-item .slider-text h1 {
        font-size: 36px !important;
        letter-spacing: -1px !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
        font-weight: 900 !important;
    }
    
    .slider-item .slider-text .subheading {
        font-size: 11px !important;
        letter-spacing: 4px !important;
        margin-bottom: 15px !important;
        color: var(--primary) !important;
        font-weight: 800 !important;
    }

    .slider-item .slider-text p {
        font-size: 15px !important;
        line-height: 1.7 !important;
        max-width: 90% !important;
        margin: 0 auto 30px !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .btn-primary {
        padding: 15px 35px !important;
        font-size: 13px !important;
        letter-spacing: 2px !important;
        border-radius: 100px !important;
    }

    .hero-wrap.hero-wrap-2 {
        height: 450px !important;
    }

    .hero-wrap.hero-wrap-2 .slider-text h1 {
        font-size: 32px !important;
    }

    .breadcrumb-wrap {
        padding: 8px 20px !important;
    }

    .breadcrumbs {
        padding: 5px 15px !important;
        font-size: 12px !important;
    }

    /* Fix image floating for mobile */
    .about-img-main {
        animation: none !important;
        transform: none !important;
    }
    
    .package-card:hover, .services-1:hover {
        transform: none !important;
    }
    
    .ftco-section {
        padding: 60px 0 !important;
    }

    .heading-section h2 {
        font-size: 30px !important;
    }
}

/* PREMIUM SLIDER DOTS */
.owl-theme .owl-dots {
    bottom: 40px !important;
    position: absolute !important;
    width: 100% !important;
}

.owl-theme .owl-dots .owl-dot span {
    width: 25px !important;
    height: 5px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 5px !important;
    margin: 5px 7px !important;
    transition: all 0.3s ease !important;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: var(--primary) !important;
    width: 50px !important;
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: rgba(255, 255, 255, 0.5) !important;
}

/* CUSTOM NAVIGATION ARROWS */
.home-slider .owl-nav {
    position: absolute !important;
    top: 50% !important;
    width: 100% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
    pointer-events: none;
}

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

.home-slider .owl-prev {
    left: 40px !important;
}

.home-slider .owl-next {
    right: 40px !important;
}

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

/* FLOATING SOCIAL ICONS */
.floating-social {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-social a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.floating-social a.whatsapp {
    background: #25D366;
}

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

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

/* MOBILE ADJUSTMENTS FOR SOCIAL */
@media (max-width: 767.98px) {
    .floating-social {
        right: 20px;
        bottom: 20px;
    }
    .floating-social a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .home-slider .owl-nav {
        display: none !important;
    }
}

/* TESTIMONIALS SECTION - PREMIUM DARK OVERHAUL */
.testimony-section {
    background: #020617 !important;
    padding: 100px 0 !important;
    position: relative !important;
}

.testimony-section .heading-section h2 {
    color: #fff !important;
}

.testimony-wrap {
    background: #0f172a !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
    border-radius: 35px !important;
    padding: 50px 40px !important;
    transition: var(--transition) !important;
    margin: 10px !important;
}

.testimony-wrap .text p {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: rgba(255,255,255,0.7) !important;
    font-style: italic !important;
}

.testimony-wrap .user-img {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    border: 3px solid var(--primary) !important;
    background-size: cover !important;
    background-position: center !important;
}

.testimony-wrap .name {
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 0 !important;
}

.testimony-wrap .position {
    color: var(--primary) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
}

.testimony-section .owl-nav {
    display: none !important;
}

.testimony-section .owl-dots {
    position: relative !important;
    margin-top: 50px !important;
    bottom: 0 !important;
}

.testimony-section .owl-dots .owl-dot span {
    background: rgba(255,255,255,0.1) !important;
}

.testimony-section .owl-dots .owl-dot.active span {
    background: var(--primary) !important;
}

@media (max-width: 767.98px) {
    .testimony-wrap {
        padding: 30px 20px !important;
        border-radius: 25px !important;
    }
}
/* ========================================================================== 
   FINAL MOBILE RESPONSIVENESS OVERRIDES (CONSOLIDATED)
   ========================================================================== */ 
@media (max-width: 767.98px) { 
    /* Stabilize all hero/banner heights to avoid JS-conflict and scroll capture issues */
    .home-slider, .slider-item, .hero-wrap, .hero-wrap.js-fullheight, 
    .hero-wrap .slider-text, .slider-item .slider-text, .hero-wrap.hero-wrap-2, .hero-wrap-2 .slider-text {
        height: 450px !important;
        min-height: 450px !important;
        max-height: 450px !important;
    }

    /* Force vertical scroll to be handled by browser, not carousel */
    .home-slider, .slider-item, .hero-wrap, .owl-stage-outer, .owl-stage, .owl-item {
        touch-action: pan-y !important;
    }

    /* Fix transition overlap */
    .home-slider .owl-item:not(.active) {
        opacity: 0 !important;
        pointer-events: none !important;
        transition: opacity 0.4s ease !important;
    }
    .home-slider .owl-item.active {
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    /* Background Attachment Fix for Mobile */
    .slider-item, .hero-wrap {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    /* Typography & Spacing */
    .slider-item .slider-text h1, .hero-wrap h1 {
        font-size: 32px !important;
        line-height: 1.1 !important;
        margin-bottom: 15px !important;
        letter-spacing: -1px !important;
    }

    .slider-item .slider-text p, .hero-wrap p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 25px !important;
        max-width: 100% !important;
    }

    .slider-item .slider-text .subheading {
        font-size: 12px !important;
        letter-spacing: 3px !important;
        margin-bottom: 10px !important;
    }

    .about-img-main img { 
        height: 300px !important; 
        object-fit: cover !important; 
    } 

    .heading-section h2 { 
        font-size: 28px !important; 
        line-height: 1.2 !important; 
    } 

    .ftco-section { 
        padding: 50px 0 !important; 
    } 

    .booking-card { 
        padding: 30px 20px !important; 
        margin-top: -60px !important; 
        border-radius: 25px !important; 
    } 

    .service-card-modern .text { 
        padding: 30px 20px !important; 
    } 

    /* Premium Service Cards Mobile Responsiveness Fixes */
    .services-section .col-12 {
        margin-top: 50px !important;
        margin-bottom: 10px !important;
    }
    
    .services-1 {
        padding: 55px 24px 35px 24px !important;
        border-radius: 20px !important;
        min-height: auto !important;
        height: auto !important;
    }

    .services-1 .icon {
        width: 70px !important;
        height: 70px !important;
        margin: -60px auto 25px auto !important;
        font-size: 26px !important;
        box-shadow: 0 8px 20px rgba(241, 93, 48, 0.3) !important;
    }

    .services-1 .media-body h3 {
        font-size: 20px !important;
        margin-bottom: 12px !important;
    }

    .services-1 .media-body p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 0 !important;
    }

    .testimony-wrap { 
        padding: 30px 20px !important; 
        margin: 5px !important; 
    } 
}
