/* modern-update.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif !important;
}

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

/* ── Logo Sizing ── */
/* Navbar logo */
header .navbar-brand img {
    height: 65px !important;
    width: auto !important;
    max-width: 280px !important;
    object-fit: contain !important;
    display: block;
}

/* Footer logo */
footer .victoria img {
    max-width: 160px !important;
    height: auto !important;
    display: block;
    margin-bottom: 16px;
}

/* About page inline logo (over heading) */
.about-victoria .section-title>img {
    max-height: 70px !important;
    width: auto !important;
}

/* Mobile logo sizes */
@media (max-width: 768px) {


    footer .victoria img {
        max-width: 130px !important;
    }
}


/* Modern Header (Default for all pages) */
header {
    background: url(../images/footer-bg.jpg) no-repeat center center !important;
    background-size: cover !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative !important;
    z-index: 999;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

header .navbar {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

header .navbar-nav>li>a {
    color: #fff !important;
    font-weight: 600 !important;
}

header .navbar-nav>li>a:hover,
header .navbar-nav>li.active>a {
    color: #88a800 !important;
    background-color: transparent !important;
}

header .navbar-toggle .icon-bar {
    background-color: #fff !important;
}

header .search-wrapper button {
    color: #fff !important;
}

/* ===================================
   INDEX PAGE ONLY: Transparent Navbar
   =================================== */
#home-1 header {
    background: transparent !important;
    box-shadow: none !important;
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

#home-1 header::before {
    display: none !important;
}

#home-1 header .navbar {
    background: transparent !important;
    border: none !important;
    padding: 10px 0;
}

/* Nav links - white, uppercase, slightly spaced */
#home-1 header .navbar-nav>li>a {
    color: #ffffff !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
    padding: 8px 14px !important;
    border-radius: 3px !important;
    transition: all 0.3s ease !important;
    background-color: transparent !important;
}

/* Active nav item: green pill (matching reference image) */
#home-1 header .navbar-nav>li.active>a {
    background-color: transparent !important;
    color: #ffffff !important;
    border-radius: 3px !important;
}

/* Hover state */
#home-1 header .navbar-nav>li>a:hover {
    background-color: rgba(141, 198, 63, 0.25) !important;
    color: #ffffff !important;
}

/* Toggle icon bars visible on mobile */
#home-1 header .navbar-toggle .icon-bar {
    background-color: #fff !important;
}

/* Search and menu icons */
#home-1 header .search-wrapper button {
    color: #fff !important;
}

/* Make the hero overlap the transparent header */
#main-hero .title {
    background: url(../images/home-1/title-bg-clean.png) no-repeat center center !important;
    background-size: cover !important;
}

#home-1 .hero {
    margin-top: 0 !important;
}

.navbar-brand img {
    height: 50px;
    object-fit: contain;
}

/* Modern Buttons */
.btn-default,
.btn-primary {
    border-radius: 30px !important;
    text-transform: uppercase;
    font-weight: 600 !important;
    letter-spacing: 1px;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-default:hover,
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Hero Section Modernization */
.hero-logo {
    height: 110px;
    margin-top: -85px;
    max-width: 100%;
    object-fit: contain;
}

#main-hero .title h2 {
    font-size: 4rem;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

#main-hero .title p {
    font-size: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
}

/* Glassmorphism for Cards/Features */
.faeture .col {
    background: white;
    border-radius: 15px;
    padding: 30px 20px !important;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease !important;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.faeture .col:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.faeture i {
    color: #0052cc !important;
    /* A nice modern blue */
}

/* =====================================================
   RESORT SECTION MODERNIZATION
   ===================================================== */
.about-resort {
    overflow: hidden;
    background: #fff;
}

.modern-resort-showcase {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-resort-showcase img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
    z-index: 0;
}

.modern-resort-showcase:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.modern-resort-showcase .title {
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 5;
    text-align: center;
    color: #fff;
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    width: 80% !important;
    min-width: 280px;
    box-sizing: border-box;
}

.modern-about-text img {
    margin-top: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.laundry-badge {
    background: #494b46;
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(141, 198, 63, 0.3);
}

.modern-resort-showcase .title h2 {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #fff;
}

.modern-resort-showcase .title h2 span {
    color: #8dc63f;
}

.italic-subtitle {
    font-size: 1.1rem !important;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9) !important;
    font-style: italic;
    font-weight: 300;
}

@media (max-width: 768px) {
    .modern-resort-showcase {
        height: 450px;
    }

    .modern-resort-showcase .title h2 {
        font-size: 2.2rem;
    }
}

/* Modern About Content */
.modern-about-container {
    padding: 80px 60px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-about-text {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.modern-accent {
    color: #494b46;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.modern-about-text h3 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #111;
}

.text-primary-blue {
    color: #0052cc;
}

.modern-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.highlight {
    font-weight: 700;
    color: #111;
}

.modern-divider {
    border: none;
    height: 3px;
    width: 60px;
    background: #494b46;
    margin: 0 0 30px 0;
}

.modern-quote {
    color: #888;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .modern-about-container {
        padding: 60px 30px;
        height: auto;
        border-right: none;
    }
}



/* =====================================================
   NEWS-SHOP SECTION UPDATES
   ===================================================== */
.news-shop {
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

.display-flex-center {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.section-padding {
    padding: 100px 0;
}

/* Testimonial Card */
.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 82, 204, 0.08);
    position: relative;
    margin-bottom: 50px;
    border-left: 5px solid #0052cc;
}

.testimonial-card .quote-icon {
    position: absolute;
    top: -20px;
    right: 40px;
    background: #0052cc;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.testimonial-card .playfair {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.client-info {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #111;
}

.client-location {
    font-size: 0.9rem;
    color: #888;
}

/* Modern Title */
.modern-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111;
    line-height: 1.2;
}

.modern-title span {
    display: block;
    color: #0052cc;
    font-size: 0.8em;
}

.service-intro-content .sort-about p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.secondary-quote {
    border-left: 3px solid #eee;
    padding-left: 20px;
    font-style: italic;
    color: #555 !important;
}

/* Modern Button */
.cta-area {
    margin-top: 35px;
}

.modern-btn-primary {
    background: #0052cc;
    color: #fff !important;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 82, 204, 0.3);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.modern-btn-primary:hover {
    background: #0041a3;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 82, 204, 0.4);
}

.modern-btn-primary i::before {
    font-size: 1.3em;
}

/* Showcase Image Wrapper */
.premium-showcase-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.showcase-img {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-showcase-wrapper:hover .showcase-img {
    transform: scale(1.05);
}

.showcase-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.showcase-badge .since {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #999;
}

.showcase-badge .year {
    font-weight: 800;
    font-size: 1.5rem;
    color: #0052cc;
}

@media (max-width: 991px) {
    .news-shop {
        text-align: center;
    }

    .testimonial-card {
        text-align: left;
    }

    .modern-btn-primary {
        margin: 0 auto;
    }

    .premium-showcase-wrapper {
        margin-top: 50px;
    }

    .display-flex-center {
        flex-direction: column;
    }
}


/* =====================================================
   FEATURE SECTION (.beautifull-spa-and-faeture)
   ===================================================== */
.beautifull-spa-and-faeture {
    background: url('../images/feature-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    color: #fff;
}

.beautifull-spa-and-faeture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 20, 30, 0.85), rgba(10, 20, 30, 0.95));
    z-index: 1;
}

.beautifull-spa-and-faeture .container {
    position: relative;
    z-index: 2;
}

.section-title-wrapper {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.modern-intro-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.feature-item-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 45px 30px;
    border-radius: 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-item-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-12px);
    border-color: #8dc63f;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.icon-bubble {
    width: 85px;
    height: 85px;
    background: rgba(141, 198, 63, 0.12);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
}

.feature-item-card:hover .icon-bubble {
    background: #8dc63f;
    transform: rotate(15deg);
}

.feature-item-card i::before {
    font-size: 44px;
    color: #8dc63f;
    transition: all 0.4s ease;
    margin: 0 !important;
}

.feature-item-card:hover i::before {
    color: #fff;
    transform: scale(1.1);
}

.feature-item-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
    letter-spacing: 0.5px;
}

.feature-item-card p {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .feature-item-card {
        margin-bottom: 30px;
        min-height: auto;
    }
}


/* Obsolete overrides removed */


/* =====================================================
   SHOWCASE GALLERY SECTION (.advantage-showcase)
   ===================================================== */
.showcase-grid {
    margin-top: 20px;
}

.showcase-grid>div {
    margin-bottom: 30px;
}

.showcase-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.4s ease;
    height: 450px;
    background: #fff;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    transition: all 0.5s ease;
}

.showcase-card .hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 82, 204, 0.85);
    /* Brand blue overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.showcase-card .hover-overlay i::before {
    font-size: 3.5em;
    color: #ffffff;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: inline-block;
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 82, 204, 0.25);
}

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

.showcase-card:hover .hover-overlay {
    opacity: 1;
}

.showcase-card:hover .hover-overlay i::before {
    transform: translateY(0);
}


/* Advantages Section */
.advantages .row {
    background: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease !important;
    border: none;
}

.advantages .row:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.advantage-details .icon i {
    color: #0052cc !important;
}

/* Stats Section Background */
.fun-fact {
    background: url(../images/footer-bg.jpg) no-repeat center center !important;
    background-size: cover !important;
    position: relative;
}

.fun-fact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.fun-fact .container {
    position: relative;
    z-index: 2;
}

/* Footer */
footer {
    background: url(../images/footer-bg.jpg) no-repeat center center !important;
    background-size: cover !important;
    position: relative;
    color: #fff !important;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

footer h2,
footer p,
footer a,
footer ul li,
footer .copyright p,
footer .copyright span {
    color: #fff !important;
}

/* Overlay adjustments for better contrast — (Obsolete, using showcase-overlay now) */

.news-letter-popup .wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Modern Shop Section (Futuristic Slider Version) */
.shop {
    padding: 100px 0;
    background: #fdfdfd;
    overflow: hidden;
}

.shop .slider-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    gap: 30px;
    padding: 40px 20px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    cursor: grab;
    scroll-behavior: smooth;
}

.shop .slider-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.shop .shop-card {
    flex: 0 0 320px;
    /* Fixed width for slider items */
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.shop .shop-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 50, 200, 0.15);
}

.shop .shop-card .image-wrapper {
    width: 100%;
    height: 420px;
    overflow: hidden;
    position: relative;
}

.shop .shop-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.shop .shop-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 82, 204, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.shop .shop-card:hover .card-overlay {
    opacity: 1;
}

.shop .shop-card h3 {
    font-size: 1.8em;
    font-weight: 800;
    margin-bottom: 5px;
    color: white;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.shop .shop-card:hover h3 {
    transform: translateY(0);
}

.shop .shop-card .playfair {
    font-size: 1em;
    opacity: 0.9;
    letter-spacing: 1.5px;
    font-style: italic;
    transform: translateY(15px);
    transition: transform 0.4s ease 0.1s;
}

.shop .shop-card:hover .playfair {
    transform: translateY(0);
}

.shop .section-title-modern {
    text-align: center;
    margin-bottom: 60px;
}

.shop .section-title-modern h2 {
    font-size: 3em;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.shop .section-title-modern .divider {
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, #0052cc, #00c6ff);
    margin: 0 auto;
    border-radius: 3px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.slider-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-controls button:hover {
    background: #0052cc;
    color: white;
    border-color: #0052cc;
    transform: scale(1.1);
}

/* Modern Advantages Section */
.spa-advantages {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.spa-advantages .modern-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.spa-advantages .image-column {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.spa-advantages .image-column .main-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.spa-advantages .image-column::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: rgba(0, 82, 204, 0.1);
    border-radius: 20px;
    z-index: -1;
}

.spa-advantages .text-column {
    flex: 1.2;
    min-width: 300px;
}

.spa-advantages .advantage-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    padding: 30px;
    background: #fcfcfc;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.spa-advantages .advantage-item:hover {
    background: white;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 82, 204, 0.1);
    border-color: rgba(0, 82, 204, 0.2);
}

.spa-advantages .advantage-item .icon-box {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.spa-advantages .advantage-item .icon-box i {
    font-size: 2.2em;
    color: #0052cc;
}

.spa-advantages .advantage-item .content-box h3 {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.spa-advantages .advantage-item .content-box span {
    font-size: 0.9em;
    color: #0052cc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spa-advantages .advantage-item .content-box p {
    font-size: 1em;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .spa-advantages .modern-flex {
        flex-direction: column;
    }
}

/* ======================================
   Floating WhatsApp Button (All Pages)
   ====================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.whatsapp-float .wa-tooltip {
    background: #1a1a1a;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.85em;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float .wa-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.whatsapp-float .wa-btn:hover {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65);
    color: white;
}

/* Pulse animation ring */
.whatsapp-float .wa-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: waPulse 2s ease-out infinite;
}

.whatsapp-float .wa-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.25);
    animation: waPulse 2s ease-out 0.5s infinite;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float .wa-btn {
        width: 54px;
        height: 54px;
        font-size: 1.6em;
    }
}


/* =====================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS — ALL PAGES
   =====================================================
   Breakpoints:
     - ≤1024px  Tablet landscape
     - ≤768px   Tablet portrait / large phone
     - ≤576px   Phone
     - ≤400px   Small phone
   ===================================================== */

/* ─── Global shared fixes ─── */
@media (max-width: 768px) {
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    section {
        padding: 60px 0 !important;
    }

    h2 {
        font-size: 1.8em !important;
    }

    h3 {
        font-size: 1.3em !important;
    }

    /* Remove oversized top-offset buttons */
    .hero>a {
        top: auto !important;
        bottom: 30px !important;
        position: relative !important;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 1.5em !important;
    }

    h3 {
        font-size: 1.15em !important;
    }

    p {
        font-size: 0.95em !important;
    }
}

/* ─── MOBILE GLOBAL: Custom Header Image ─── */
@media (max-width: 768px) {

    header,
    #home-1 header {
        position: relative !important;
        background: url('../images/mobile-header-bg.jpg') no-repeat center center !important;
        background-size: cover !important;
    }

    #home-1 header::before {
        display: none !important;
    }

    /* Dropdown menu on mobile – readable */
    #home-1 header .navbar-collapse {
        background: rgba(0, 0, 0, 0.9) !important;
        padding: 10px 20px !important;
    }

    #home-1 header .navbar-nav>li>a {
        font-size: 13px !important;
        padding: 10px 15px !important;
    }

    #home-1 .hero {
        margin-top: 0 !important;
    }
}


/* ─── HERO SECTION ─── */
@media (max-width: 768px) {
    #home-1 .hero .item {
        height: 550px !important;
    }

    #home-1 .hero .title {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 90% !important;
        text-align: center !important;
    }

    #home-1 .hero .title h2 {
        font-size: 2em !important;
        line-height: 1.3 !important;
    }

    #home-1 .hero .title span.playfair {
        font-size: 1em !important;
    }

    #home-1 .hero .title p {
        font-size: 0.9em !important;
    }
}

@media (max-width: 576px) {
    #home-1 .hero .item {
        height: 450px !important;
    }

    #home-1 .hero .title h2 {
        font-size: 1.6em !important;
    }
}


/* ─── ABOUT (index about-resort section) ─── */
@media (max-width: 768px) {
    .about-resort .row {
        flex-direction: column !important;
        display: flex;
    }

    .about-resort .about,
    .about-resort .resort {
        width: 100% !important;
    }

    .about-resort .resort {
        min-height: 280px !important;
    }
}


/* ─── FEATURES / FAETURE ─── */
@media (max-width: 768px) {
    .faeture .row {
        display: flex;
        flex-wrap: wrap;
    }

    .faeture .col {
        width: 50% !important;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .faeture .col {
        width: 100% !important;
    }
}


/* ─── SPA ADVANTAGES (index page) ─── */
@media (max-width: 768px) {
    .spa-advantages .advantage-details {
        flex-direction: column !important;
    }

    .spa-advantages .advantages {
        width: 100% !important;
    }

    /* Modern advantages (service page) */
    .spa-advantages .modern-flex {
        flex-direction: column-reverse !important;
        gap: 30px !important;
    }

    .spa-advantages .image-column {
        width: 100% !important;
    }

    .spa-advantages .advantage-item {
        padding: 20px !important;
        gap: 15px !important;
    }

    .spa-advantages .advantage-item .icon-box {
        width: 55px !important;
        height: 55px !important;
    }

    .spa-advantages .advantage-item .content-box h3 {
        font-size: 1.1em !important;
    }
}


/* ─── SHOP / PRICING SERVICES ─── */
@media (max-width: 768px) {
    .shop {
        padding: 60px 0 !important;
    }

    .shop .slider-container {
        gap: 16px !important;
        padding: 20px 15px !important;
    }

    .shop .shop-card {
        flex: 0 0 260px !important;
    }

    .shop .shop-card .image-wrapper {
        height: 300px !important;
    }

    .shop .section-title-modern h2 {
        font-size: 2em !important;
    }

    .slider-controls button {
        width: 42px !important;
        height: 42px !important;
        font-size: 1em !important;
    }
}

@media (max-width: 576px) {
    .shop .shop-card {
        flex: 0 0 220px !important;
    }

    .shop .shop-card .image-wrapper {
        height: 260px !important;
    }
}


/* ─── FUN FACT / STATS ─── */
@media (max-width: 768px) {
    .fun-fact .row {
        flex-wrap: wrap;
        display: flex;
    }

    .fun-fact .col {
        width: 50% !important;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .fun-fact .col {
        width: 100% !important;
    }
}


/* ─── NEWS-SHOP SECTION (index) ─── */
@media (max-width: 768px) {

    .news-shop .news,
    .news-shop .shop {
        width: 100% !important;
    }

    .news-shop .news.col-md-6 {
        max-width: 100% !important;
    }

    .news-shop .appointment .btn-group {
        flex-wrap: wrap;
        display: flex;
        gap: 8px;
    }
}


/* ─── ABOUT VICTORIA (service page top section) ─── */
@media (max-width: 768px) {
    .about-victoria .icon .row {
        flex-direction: column;
    }

    .about-victoria .icon ul {
        flex-wrap: wrap;
        justify-content: center !important;
        display: flex;
        padding-left: 0;
    }

    .about-victoria .icon ul li {
        width: 33% !important;
        text-align: center;
    }

    .about-victoria #facial-style {
        width: 100% !important;
        max-width: 100% !important;
    }

    .about-victoria .btn {
        display: block !important;
        width: 90% !important;
        margin: 10px auto !important;
        text-align: center !important;
    }
}


/* ─── FOOTER ─── */
@media (max-width: 768px) {
    footer .row {
        display: flex;
        flex-wrap: wrap;
    }

    footer .victoria,
    footer .footer-about,
    footer .explore,
    footer .usefull-links {
        width: 50% !important;
        margin-bottom: 30px;
        min-height: auto !important;
    }

    footer .copyright .col {
        width: 100% !important;
        text-align: center !important;
    }

    footer .copyright .pull-right {
        float: none !important;
    }
}

@media (max-width: 480px) {

    footer .victoria,
    footer .footer-about,
    footer .explore,
    footer .usefull-links {
        width: 100% !important;
    }
}


/* ─── GALLERY PAGE HERO ─── */
@media (max-width: 768px) {
    .gallery-hero {
        padding: 80px 0 40px !important;
    }

    .gallery-hero h1 {
        font-size: 2.5em !important;
    }

    .gallery-filters {
        gap: 8px !important;
        padding: 20px 0 30px !important;
    }

    .filter-btn {
        padding: 8px 18px !important;
        font-size: 0.82em !important;
    }
}

@media (max-width: 576px) {
    .gallery-hero h1 {
        font-size: 2em !important;
    }

    .gallery-grid {
        columns: 2 !important;
        column-gap: 12px !important;
    }

    .gallery-item {
        margin-bottom: 12px !important;
    }
}

@media (max-width: 380px) {
    .gallery-grid {
        columns: 1 !important;
    }
}


/* ─── CONTACT PAGE ─── */
@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 40px !important;
    }

    .contact-hero h1 {
        font-size: 2.5em !important;
    }

    .contact-cards {
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
    }

    .contact-card {
        padding: 28px 18px !important;
    }

    .form-wrapper {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .form-info h2 {
        font-size: 2em !important;
    }

    .modern-form {
        padding: 30px 25px !important;
    }

    .form-row-grid {
        grid-template-columns: 1fr !important;
    }

    .map-cards {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

@media (max-width: 480px) {
    .contact-cards {
        grid-template-columns: 1fr !important;
    }

    .contact-hero h1 {
        font-size: 1.8em !important;
    }
}


/* ─── SERVICE PAGE BREADCRUMB ─── */
@media (max-width: 576px) {
    .photo-gallery-title .section-title h2 {
        font-size: 1.8em !important;
    }
}


/* ─── ABOUT PAGE: VIC-PARTNER & TEAM ─── */
@media (max-width: 768px) {

    .vic-partner .row,
    .team .row {
        display: flex;
        flex-wrap: wrap;
    }

    .vic-partner .col,
    .team .col {
        width: 50% !important;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {

    .vic-partner .col,
    .team .col {
        width: 100% !important;
    }
}


/* ─── ABOUT PAGE MIDDLE BANNER ─── */
@media (max-width: 768px) {
    .middle-banner .flex-layout {
        flex-direction: column !important;
        text-align: center;
    }
}


/* ─── LIGHTBOX NAV BUTTONS (mobile) ─── */
@media (max-width: 576px) {
    .lightbox-prev {
        left: -10px !important;
    }

    .lightbox-next {
        right: -10px !important;
    }

    .lightbox-content {
        max-width: 98vw !important;
    }

    .lightbox-close {
        top: -40px !important;
    }
}


/* ─── SECTION TITLE MODERN (shared across pages) ─── */
@media (max-width: 768px) {
    .section-title-modern h2 {
        font-size: 2em !important;
    }

    .shop .section-title-modern h2 {
        font-size: 1.8em !important;
    }
}

@media (max-width: 576px) {
    .section-title-modern h2 {
        font-size: 1.6em !important;
    }
}


/* ─── NAVBAR HAMBURGER: always show on mobile ─── */
@media (max-width: 768px) {
    .navbar-toggle {
        display: block !important;
    }

    /* Collapsed menu drop down from top */
    header .navbar-collapse {
        background: rgba(20, 20, 30, 0.97) !important;
        border: none !important;
        padding: 10px 0 20px !important;
    }

    header .navbar-nav>li>a {
        padding: 12px 20px !important;
        font-size: 13px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    header .search-wrapper {
        position: absolute !important;
        top: 18px !important;
        right: 15px !important;
    }
}

/* ─── WHATSAPP BUTTON — extra small ─── */
@media (max-width: 400px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float .wa-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5em;
    }
}


/* =====================================================
   PREMIUM HERO SECTION (8K IMAGES & ANIMATION)
   ===================================================== */
@keyframes kenBurnsHero {
    0% {
        transform: scale(1) translateZ(0);
    }

    100% {
        transform: scale(1.15) translateZ(0);
    }
}

#home-1 .hero .hero-slider {
    overflow: hidden !important;
}

#home-1 .hero .item-1 {
    background: url('../images/slider1_new.png') no-repeat center center !important;
    background-size: cover !important;
    animation: kenBurnsHero 20s infinite alternate linear !important;
    will-change: transform;
    backface-visibility: hidden;
}

#home-1 .hero .item-2 {
    background: url('../images/slider2_new.png') no-repeat center center !important;
    background-size: cover !important;
    animation: kenBurnsHero 20s infinite alternate linear !important;
    will-change: transform;
    backface-visibility: hidden;
}


/* =====================================================
   PHASE 2: TARGETED MOBILE FIXES (from screenshot audit)
   ===================================================== */


/* 1. Prevent native scroll hijacking from raw bootstrap negative margins */
#main-hero.row,
#main-hero .hero-slider .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

* {
    box-sizing: border-box;
}

/* 2. Footer logo — cap it on mobile */
@media (max-width: 768px) {
    footer .victoria img {
        max-width: 120px !important;
        height: auto !important;
    }

    footer .nav.navbar-nav {
        justify-content: flex-start;
        flex-wrap: wrap;
        display: flex;
        gap: 4px;
    }
}

/* 3. INDEX: Hero — text box does NOT overflow on small screens */
@media (max-width: 576px) {
    #main-hero .title {
        padding: 30px 15px 40px !important;
        /* give inner breathing room */
        width: 100% !important;
        height: auto !important;
        /* Prevent text overflow clipping */
        background-size: cover !important;
        top: 44% !important;
        /* Raised slightly to clear the bottom button */
        transform: translate(-50%, -50%) !important;
    }

    #main-hero .title>div {
        margin-top: 0 !important;
        /* Eliminate original 75px offset */
    }

    .hero-logo {
        height: 60px !important;
        margin-top: -10px !important;
        /* tighter on mobile */
        margin-bottom: 15px !important;
    }

    #main-hero .title h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        word-break: break-word;
    }

    #main-hero .title p {
        font-size: 0.85rem !important;
        padding: 8px 12px !important;
        max-width: 95vw !important;
        word-break: break-word;
    }

    #main-hero .title .playfair {
        font-size: 0.9rem !important;
    }

    /* Explore button — centered perfectly */
    #main-hero a.btn {
        height: 46px !important;
        padding: 0 24px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: normal !important;
        font-size: 0.85em !important;
        bottom: 25px !important;
        /* Slightly more clearance */
    }
}

/* 4. INDEX: Hero slides — better mobile height */
@media (max-width: 576px) {
    #home-1 .hero .item {
        height: 520px !important;
        min-height: 520px !important;
    }
}

@media (max-width: 400px) {
    #home-1 .hero .item {
        height: 480px !important;
        min-height: 480px !important;
    }
}

/* 5. INDEX: Transparent header — on mobile be relative so content flows below */
@media (max-width: 768px) {
    #home-1 header {
        position: relative !important;
    }

    #home-1 .hero {
        margin-top: 0 !important;
    }
}

/* 6. NAVBAR: Logo left, hamburger right, pure standard layout */
@media (max-width: 768px) {

    /* Kill Bootstrap clearfix pseudo-elements that break flex spacing */
    header .navbar-header::before,
    header .navbar-header::after {
        display: none !important;
        content: '' !important;
    }

    header .navbar-header {
        display: flex !important;
        flex-direction: row-reverse !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        position: relative !important;
        left: auto !important;
        transform: none !important;
        padding: 5px 0 !important;
        height: 80px !important;
    }

    header .navbar-brand {
        position: static !important;
        float: none !important;
        transform: none !important;
        left: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    header .navbar-brand img {
        height: 55px !important;
        width: auto !important;
        max-width: none !important;
    }

    header .navbar-toggle {
        position: static !important;
        float: none !important;
        margin: 0 !important;
        border: 1px solid rgba(255, 255, 255, 0.5) !important;
        border-radius: 6px !important;
        padding: 10px 12px !important;
    }

    /* Hide the standalone search & extra hamburger on mobile as it muddles the UI */
    header .search-wrapper {
        display: none !important;
    }

    /* Collapsed nav menu panel */
    header #navbar.collapse.in,
    header #navbar.collapsing {
        background: rgba(10, 10, 20, 0.96) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding: 5px 0 15px !important;
        margin-top: 0 !important;
    }

    header .navbar-nav>li>a {
        color: #fff !important;
        padding: 12px 20px !important;
        font-size: 13px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    header .navbar-nav>li.active>a {
        color: #8dc63f !important;
        background: rgba(141, 198, 63, 0.08) !important;
    }

    /* Remove the floating pull-right on nav items */
    header #navbar {
        float: none !important;
        width: 100% !important;
        padding: 0 !important;
        margin-top: 0 !important;
    }

    header .navbar-nav {
        float: none !important;
        margin: 0 !important;
    }
}

/* 7. SERVICE PAGE: About victoria service icons — proper 2-col grid */
@media (max-width: 576px) {
    .about-victoria .icon ul {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px 10px !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .about-victoria .icon ul li {
        width: 100% !important;
        text-align: center !important;
    }

    .about-victoria .icon ul li i {
        font-size: 2em !important;
    }

    .about-victoria .icon ul li p {
        font-size: 0.85em !important;
    }
}

/* 8. ABOUT PAGE: App store icons — center and scale */
@media (max-width: 576px) {
    .about-victoria div[style*="margin-top: 20px"] {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 12px !important;
    }

    .about-victoria div[style*="margin-top: 20px"] a {
        margin-left: 0 !important;
    }

    .about-victoria div[style*="margin-top: 20px"] a img {
        height: 42px !important;
    }
}

/* 9. GALLERY: Filter tabs — wrap cleanly, no orphan last-item */
@media (max-width: 576px) {
    .gallery-filters {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px !important;
        padding: 15px 10px 25px !important;
    }

    .filter-btn {
        padding: 7px 16px !important;
        font-size: 0.8em !important;
        border-radius: 20px !important;
    }

    .gallery-section {
        padding: 0 0 60px !important;
    }

    .gallery-grid {
        padding: 0 12px !important;
    }
}

/* 10. CONTACT: Cards — single column on small phones */
@media (max-width: 500px) {
    .contact-cards {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 5px;
    }

    .contact-hero {
        padding: 70px 0 30px !important;
    }

    .contact-hero h1 {
        font-size: 1.8em !important;
        line-height: 1.2 !important;
    }

    .contact-info-section {
        padding: 50px 0 40px !important;
    }
}

/* 11. CONTACT: Form section padding on mobile */
@media (max-width: 576px) {
    .form-section {
        padding: 60px 0 !important;
    }

    .modern-form {
        padding: 25px 18px !important;
        border-radius: 16px !important;
    }

    .form-group-modern input,
    .form-group-modern textarea {
        padding: 12px 14px !important;
        font-size: 0.9em !important;
    }

    .submit-btn {
        padding: 14px !important;
        font-size: 0.9em !important;
    }
}

/* 12. CONTACT: Maps — full-width on mobile */
@media (max-width: 576px) {
    .maps-section {
        padding: 50px 0 !important;
    }

    .map-card iframe {
        height: 240px !important;
    }

    .maps-section .section-heading h2 {
        font-size: 1.8em !important;
    }
}

/* 13. SERVICE: Pricing slider — single card view on mobile */
@media (max-width: 500px) {
    .shop .shop-card {
        flex: 0 0 85vw !important;
        max-width: 85vw !important;
    }

    .shop .slider-container {
        padding: 15px 20px !important;
        gap: 15px !important;
    }

    .shop .shop-card .image-wrapper {
        height: 250px !important;
    }
}

/* 14. SERVICE: Advantage section image — compact on mobile */
@media (max-width: 576px) {
    .spa-advantages .advantage-hero-image {
        border-radius: 16px !important;
        max-height: 250px !important;
        object-fit: cover;
        width: 100%;
    }
}

/* 15. PAGE BREADCRUMB — center on mobile */
@media (max-width: 576px) {
    .page-breadcrumb {
        padding: 20px 0 !important;
        text-align: center;
    }

    .page-breadcrumb .breadcrumb {
        justify-content: center;
        text-align: center;
    }

    .simple-page-breadcrumb {
        text-align: center;
    }
}

/* 16. ABOUT PAGE: Section title with logo */
@media (max-width: 576px) {
    .about-victoria .section-title img {
        max-height: 60px !important;
        margin-bottom: 12px !important;
    }

    .about-victoria h2 {
        font-size: 1.5em !important;
        line-height: 1.3 !important;
    }
}

/* 17. FUN FACT numbers — readable on mobile */
@media (max-width: 576px) {
    .fun-fact .number {
        font-size: 2.5em !important;
    }

    .fun-fact .fact-title {
        font-size: 1em !important;
    }
}

/* 18. Footer — remove fixed min-height on mobile */
@media (max-width: 768px) {
    footer .container .row:first-child>.col {
        min-height: auto !important;
    }

    footer h2 {
        font-size: 1.1em !important;
        margin-bottom: 12px !important;
    }

    footer ul li {
        font-size: 0.9em !important;
        line-height: 1.6 !important;
    }

    footer>.container>.row.copyright p {
        font-size: 0.82em !important;
        text-align: center !important;
    }
}

/* 19. Photo gallery title section */
@media (max-width: 576px) {
    .photo-gallery-title {
        padding: 50px 0 30px !important;
    }

    .photo-gallery-title .section-title h2 {
        font-size: 1.8em !important;
    }
}

/* 20. Global image overflow guard */
img {
    max-width: 100%;
    height: auto;
}

/* 21. Iframe responsive */
iframe {
    max-width: 100% !important;
}

/* 22. Mega Laundry hero on index — clear stacking context */
@media (max-width: 576px) {
    #home-1 .hero .hero-slider {
        display: block !important;
        position: relative !important;
    }

    #home-1 .hero .hero-slider .item {
        position: relative !important;
    }
}