/* ==========================================================================
   DOVE NEST - THE LUXURY COUPLE HOUSE LONAVALA
   Aesthetics: Clean Glassmorphism, Luxury Slate & Sunset Orange (Matches Couple House)
   Ultra-Fast, Mobile-Friendly, 60fps Smooth UI
   ========================================================================== */

:root {
    --primary: #F14300;
    --primary-soft: rgba(241, 67, 0, 0.1);
    --primary-gradient: linear-gradient(135deg, #FF512F 0%, #F09819 100%);
    --dark: #0f172a;
    --dark-muted: #334155;
    --text-muted: #64748b;
    --body-bg: #f8fafc;
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.6);
    --whatsapp: #25D366;
    --whatsapp-hover: #1eb956;
    --airbnb: #FF385C;
    --airbnb-hover: #e0284b;
    --font-sans: 'Outfit\, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-serif: 'Playfair Display\, Georgia, serif;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.07);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
}

/* Reset & Smooth Scroll */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--body-bg);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 75px; /* Space for mobile sticky bar */
}

@media (min-width: 769px) {
    body {
        padding-bottom: 0;
    }
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.25s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

/* ==========================================================================
   NAVBAR (Clean Glass White)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(241, 67, 0, 0.3);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--dark);
    line-height: 1.1;
}

.logo-badge {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-muted);
}

.nav-item:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-icon-share {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: #f1f5f9;
    border: 1px solid var(--card-border);
    border-radius: 30px;
    color: var(--dark);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-icon-share:hover {
    background: #e2e8f0;
    transform: translateY(-1px);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-gradient);
    color: #fff;
    padding: 11px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 18px rgba(241, 67, 0, 0.35);
    transition: all 0.25s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(241, 67, 0, 0.45);
    color: #fff;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border: 1px solid var(--card-border);
    border-radius: 30px;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 24px;
        gap: 20px;
        border-bottom: 1px solid var(--card-border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.35s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-actions .btn-primary {
        display: none;
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 24px 80px;
    overflow: hidden;
    margin-top: 0;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-parallax-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(1.15);
    transform: scale(1.05);
    transition: transform 0.6s ease-out;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.7) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 920px;
    text-align: center;
    margin: 0 auto;
    color: #fff;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.text-airbnb {
    color: #FF385C;
    font-size: 1.15rem;
}

.text-wa {
    color: #25D366;
}

.hero-heading {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.serif-accent {
    font-family: var(--font-serif);
    font-style: italic;
    background: linear-gradient(135deg, #ffffff 40%, #fed7aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #f1f5f9;
    max-width: 720px;
    margin: 0 auto 36px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

/* Two Direct Action Buttons in Hero */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: 13px 28px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.25s ease;
    text-align: left;
}

.btn-cta-whatsapp i {
    font-size: 2.2rem;
}

.btn-cta-airbnb {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #FF385C, #E00B41);
    color: #fff;
    padding: 13px 28px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(255, 56, 92, 0.4);
    transition: all 0.25s ease;
    text-align: left;
}

.btn-cta-airbnb i {
    font-size: 2.2rem;
}

.btn-cta-whatsapp:hover,
.btn-cta-airbnb:hover {
    transform: translateY(-3px);
    color: #fff;
}

.btn-cta-text {
    display: flex;
    flex-direction: column;
}

.cta-subtitle {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}

.cta-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.1;
}

/* Floating Quick Date Picker Bar (Airbnb Style) */
.hero-quick-book-bar {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 60px;
    padding: 8px 12px 8px 28px;
    color: var(--dark);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    max-width: 820px;
    margin: 0 auto;
}

.quick-book-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 4px 14px;
}

.col-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.quick-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    width: 100%;
    cursor: pointer;
}

.quick-val {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

.quick-book-divider {
    width: 1px;
    height: 36px;
    background: #e2e8f0;
}

.btn-quick-check {
    background: var(--primary-gradient);
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(241, 67, 0, 0.3);
}

.btn-quick-check:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 67, 0, 0.4);
}

@media (max-width: 768px) {
    .hero-quick-book-bar {
        display: none;
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mouse-icon {
    width: 22px;
    height: 34px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 6px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.6s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* ==========================================================================
   HIGHLIGHTS STRIP
   ========================================================================== */
.highlights-strip {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 28px 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.strip-container {
    max-width: 1260px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.highlight-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.highlight-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   COMMON SECTION STYLES
   ========================================================================== */
.section-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 85px 24px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-subtext {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    background: var(--body-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.about-text-content .lead-p {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 500;
}

.about-text-content .secondary-p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-muted);
    margin-bottom: 30px;
}

.suite-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.spec-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.spec-card i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 3px;
}

.spec-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.spec-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.about-action-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.about-visuals {
    position: relative;
}

.image-card-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.image-card-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.image-badge-glass {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.image-badge-glass i {
    color: #f59e0b;
}

.image-card-secondary {
    position: absolute;
    bottom: -25px;
    right: -20px;
    width: 60%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 5px solid #ffffff;
    box-shadow: var(--shadow-lg);
}

.image-card-secondary img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.floating-rate-card {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
    text-align: right;
}

.rate-badge {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

.rate-amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.rate-amount span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.floating-rate-card small {
    display: block;
    font-size: 0.65rem;
    color: #22c55e;
    font-weight: 600;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .image-card-secondary {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        margin-top: 20px;
    }
}

/* ==========================================================================
   PARALLAX BANNER
   ========================================================================== */
.parallax-banner {
    position: relative;
    padding: 100px 24px;
    text-align: center;
    overflow: hidden;
    color: #fff;
}

.parallax-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.banner-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.75) 100%);
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.banner-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #fed7aa;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.banner-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.banner-desc {
    font-size: 1.1rem;
    color: #f1f5f9;
    margin-bottom: 30px;
}

.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==========================================================================
   FULL MASONRY GALLERY
   ========================================================================== */
.gallery-section {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.masonry-gallery {
    column-count: 3;
    column-gap: 20px;
    margin-top: 40px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.45s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .masonry-gallery {
        column-count: 2;
        column-gap: 14px;
    }
    .masonry-item {
        margin-bottom: 14px;
    }
}

@media (max-width: 540px) {
    .masonry-gallery {
        column-count: 1;
    }
}

/* ==========================================================================
   AMENITIES SECTION
   ========================================================================== */
.amenities-section {
    background: var(--body-bg);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.amenity-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.amenity-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.amenity-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.amenity-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.amenity-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   BOOKING & AVAILABILITY SECTION
   ========================================================================== */
.booking-section {
    background: #f1f5f9;
    border-top: 1px solid #e2e8f0;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

.booking-intro {
    font-size: 1.05rem;
    color: var(--dark-muted);
    margin-bottom: 24px;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 26px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-type strong {
    display: block;
    font-size: 1.05rem;
    color: var(--dark);
}

.price-type span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.price-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
}

.price-val small {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.price-val.highlight {
    color: var(--primary);
}

.price-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 16px 0;
}

.price-note {
    margin-top: 14px;
    font-size: 0.85rem;
    color: #16a34a;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Two Options Stack */
.two-options-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 26px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.two-options-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.options-btn-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-option-wa,
.btn-option-ab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
    text-align: left;
}

.btn-option-wa {
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    color: #14532d;
}

.btn-option-wa:hover {
    background: #dcfce7;
    border-color: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.15);
}

.btn-option-ab {
    background: #fff1f2;
    border: 1.5px solid #fecdd3;
    color: #881337;
}

.btn-option-ab:hover {
    background: #ffe4e6;
    border-color: #FF385C;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 56, 92, 0.15);
}

.opt-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.opt-left i {
    font-size: 1.8rem;
}

.btn-option-wa .opt-left i {
    color: #16a34a;
}

.btn-option-ab .opt-left i {
    color: #FF385C;
}

.opt-text strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
}

.opt-text span {
    font-size: 0.8rem;
    color: var(--dark-muted);
}

.direct-contact-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-pill {
    padding: 9px 18px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.contact-pill:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* Booking Form Pane */
.booking-form-pane {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: var(--shadow-md);
}

.form-header {
    margin-bottom: 24px;
}

.form-header h3 {
    font-size: 1.4rem;
    color: var(--dark);
    font-weight: 700;
}

.form-header p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}

.form-field {
    margin-bottom: 16px;
}

.form-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: var(--radius-sm);
    color: var(--dark);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(241, 67, 0, 0.12);
}

.whatsapp-dynamic-box {
    background: #f0fdf4;
    border: 1.5px dashed #86efac;
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    margin-bottom: 20px;
}

.btn-whatsapp-dynamic {
    width: 100%;
    background: var(--whatsapp);
    color: #fff;
    padding: 13px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-dynamic:hover {
    background: var(--whatsapp-hover);
}

.whatsapp-dynamic-box small {
    display: block;
    font-size: 0.75rem;
    color: #15803d;
    margin-top: 8px;
    font-weight: 500;
}

.form-divider-or {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.form-divider-or::before,
.form-divider-or::after {
    content: '\;
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.form-divider-or span {
    padding: 0 12px;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn-submit-mail {
    width: 100%;
    background: #0f172a;
    color: #fff;
    padding: 13px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.btn-submit-mail:hover {
    background: #1e293b;
    transform: translateY(-1px);
}

.form-message {
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    text-align: center;
    margin-bottom: 14px;
    display: none;
}

.form-message.success {
    display: block;
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

@media (max-width: 991px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FAQS SECTION
   ========================================================================== */
.faq-section {
    background: var(--body-bg);
}

.faq-accordion {
    max-width: 840px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.faq-item[open] {
    border-color: var(--primary);
}

.faq-question {
    padding: 20px 24px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 24px 22px;
    font-size: 0.95rem;
    color: var(--dark-muted);
    line-height: 1.7;
}

.faq-answer ul {
    margin-top: 10px;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

/* ==========================================================================
   MAP SECTION
   ========================================================================== */
.map-section {
    background: #ffffff;
    padding: 60px 0 80px;
    border-top: 1px solid #e2e8f0;
}

.map-card-wrapper {
    background: var(--body-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    box-shadow: var(--shadow-sm);
}

.map-info-pane {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-info-pane h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.map-info-pane p {
    font-size: 0.95rem;
    color: var(--dark-muted);
    margin-bottom: 20px;
}

.map-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.map-stats div {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.map-stats strong {
    color: var(--primary);
}

.map-frame-pane iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
}

@media (max-width: 768px) {
    .map-card-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FOOTER (Luxury Slate Navy - High End)
   ========================================================================== */
.footer {
    background: #0f172a;
    color: #e2e8f0;
    border-top: 1px solid #1e293b;
    padding: 70px 24px 30px;
}

.footer-container {
    max-width: 1260px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer .logo-title {
    color: #ffffff;
}

.footer .logo-badge {
    color: #94a3b8;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 16px 0 20px;
    max-width: 320px;
}

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

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-links-group h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

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

.footer-links-group li a {
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-links-group li a:hover {
    color: #fff;
}

.footer-addr {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 8px;
}

.footer-hours {
    font-size: 0.8rem;
    color: #64748b;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    font-size: 0.85rem;
    color: #64748b;
    flex-wrap: wrap;
    gap: 12px;
}

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

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

/* ==========================================================================
   BOOKING & SHARE MODALS (Clean White Luxury)
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 780px;
    padding: 40px;
    position: relative;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.25);
    transform: scale(0.92);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-box-sm {
    max-width: 440px;
    padding: 32px 24px;
}

.modal-backdrop.active .modal-box {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 1.8rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--dark);
}

.modal-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 8px;
}

.modal-header h3 {
    font-size: 1.6rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 0.95rem;
    color: var(--dark-muted);
    max-width: 520px;
    margin: 0 auto 28px;
}

.modal-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.modal-choice-card {
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease;
    position: relative;
}

.choice-whatsapp {
    background: #f0fdf4;
    border: 2px solid #86efac;
}

.choice-airbnb {
    background: #fff1f2;
    border: 2px solid #fecdd3;
}

.choice-whatsapp:hover {
    border-color: #22c55e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.2);
}

.choice-airbnb:hover {
    border-color: #FF385C;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 56, 92, 0.2);
}

.recommended-chip {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #22c55e;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.verified-chip {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #FF385C;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.choice-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.wa-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #16a34a;
}

.ab-icon {
    background: rgba(255, 56, 92, 0.15);
    color: #FF385C;
}

.modal-choice-card h4 {
    font-size: 1.15rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 6px;
}

.choice-price {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--dark);
}

.choice-price small {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.choice-price-sub {
    font-size: 0.78rem;
    color: var(--dark-muted);
    margin-bottom: 18px;
    font-weight: 500;
}

.choice-perks {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.choice-perks li {
    font-size: 0.85rem;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.choice-perks li i {
    color: #16a34a;
    font-size: 0.8rem;
}

.btn-modal-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--whatsapp);
    color: #fff;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.2s;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-modal-wa:hover {
    background: var(--whatsapp-hover);
    color: #fff;
}

.btn-modal-ab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--airbnb);
    color: #fff;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.2s;
    box-shadow: 0 4px 12px rgba(255, 56, 92, 0.3);
}

.btn-modal-ab:hover {
    background: var(--airbnb-hover);
    color: #fff;
}

.modal-footer-note {
    font-size: 0.88rem;
    color: var(--text-muted);
    border-top: 1px solid var(--card-border);
    padding-top: 16px;
}

.modal-footer-note a {
    color: var(--primary);
}

@media (max-width: 768px) {
    .modal-options-grid {
        grid-template-columns: 1fr;
    }
    .modal-box {
        padding: 28px 18px;
    }
}

/* UI Share Modal */
.share-header-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.share-options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.share-opt-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.share-opt-btn.wa {
    background: #25D366;
    color: #fff;
}

.share-opt-btn.fb {
    background: #1877F2;
    color: #fff;
}

.share-opt-btn.copy {
    background: #f1f5f9;
    color: var(--dark);
    border: 1px solid var(--card-border);
}

.share-opt-btn.copy:hover {
    background: #e2e8f0;
}

.copy-toast {
    margin-top: 14px;
    padding: 8px;
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    text-align: center;
    display: none;
    font-weight: 600;
}

.copy-toast.active {
    display: block;
}

/* ==========================================================================
   STICKY MOBILE BOTTOM BAR
   ========================================================================== */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid #e2e8f0;
    padding: 10px 16px env(safe-area-inset-bottom, 10px);
    z-index: 999;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.sticky-price-tag {
    display: flex;
    flex-direction: column;
}

.sticky-from {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.sticky-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.sticky-day {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.sticky-btn-group {
    display: flex;
    gap: 8px;
}

.btn-sticky-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: #fff;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.btn-sticky-ab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FF385C;
    color: #fff;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 56, 92, 0.35);
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: flex;
    }
}

/* ==========================================================================
   LIVE GOOGLE REVIEWS SECTION (Couple House Aesthetic)
   ========================================================================== */
.reviews-section {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.reviews-banner-card {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 36px;
    margin-bottom: 36px;
    box-shadow: var(--shadow-sm);
}

.reviews-banner-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.google-official-badge {
    display: flex;
    align-items: center;
    gap: 16px;
}

.google-icon-svg {
    flex-shrink: 0;
}

.google-badge-titles {
    display: flex;
    flex-direction: column;
}

.g-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.g-rating-score {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.g-stars {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    font-size: 1.1rem;
}

.g-verified-text {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reviews-banner-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-google-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-google-action:hover {
    background: var(--primary);
    transform: translateY(-2px);
    color: #fff;
}

.btn-google-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border: 1px solid var(--card-border);
    border-radius: 30px;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    background: #ffffff;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-google-outline:hover {
    border-color: var(--dark);
    background: #f1f5f9;
}

.reviews-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.review-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: rgba(241, 67, 0, 0.3);
    box-shadow: var(--shadow-md);
}

.review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.review-time {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.verified-tag {
    color: #16a34a;
    font-weight: 600;
}

.review-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.review-body {
    font-size: 0.92rem;
    color: var(--dark-muted);
    line-height: 1.6;
    font-style: italic;
}

@media (max-width: 860px) {
    .reviews-banner-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }
    .reviews-banner-right {
        width: 100%;
        flex-wrap: wrap;
    }
    .btn-google-action,
    .btn-google-outline {
        width: 100%;
        justify-content: center;
    }
}

/* Swiper Gallery Styles */
.gallerySwiper {
    width: 100%;
    padding-bottom: 50px;
}
.gallerySwiper .swiper-slide {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.gallerySwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-button-next, .swiper-button-prev {
    color: var(--primary);
}
.swiper-pagination-bullet-active {
    background: var(--primary);
}
.gallerySwiper .swiper-button-next, 
.gallerySwiper .swiper-button-prev {
    z-index: 10 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 2px 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
    text-decoration: none;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}
@media (max-width: 768px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }
}
.gallerySwiper {
    width: 100%;
    padding: 0 50px 50px 50px !important;
    box-sizing: border-box;
}
.gallerySwiper .swiper-button-prev {
    left: 0 !important;
}
.gallerySwiper .swiper-button-next {
    right: 0 !important;
}
@media (max-width: 768px) {
    .gallerySwiper {
        padding: 0 10px 50px 10px !important;
    }
}

/* Floating Instagram Button */
.floating-instagram {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 2px 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
    text-decoration: none;
}
.floating-instagram:hover {
    transform: scale(1.1);
    color: white;
}
@media (max-width: 768px) {
    .floating-instagram {
        width: 50px;
        height: 50px;
        font-size: 30px;
        bottom: 80px;
        right: 20px;
    }
}
