/* --- Pascal Media Modern Global Styles --- */
:root {
--dark-green: #254236;
    --accent: #254236;
    --cream: rgb(248, 248, 248);
    --white: #f9f8f3;
    --black: #111;
    --shadow: 0 8px 32px rgba(37,66,54,0.08);
    --gold: #C8A96A;
    --taupe: #234b3b;
    --solid-brown: #5D4037; /* New brown color */
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--dark-green);
    background: var(--cream);
    min-height: 100vh;

}

nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 5% 5px 5%;
    background-color: var(--dark-green);
    position: sticky;
    top: 0;
    z-index: 100;
    align-items: center;
    box-shadow: 0 2px 12px rgba(37,66,54,0.08);
    height: 10px;
    position: relative;
}

.nav-logo {
    height: 200px;
    width: auto;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--cream);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 30px;
}

.nav-links li + li::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.3);
}

.nav-links a {
    text-decoration: none;
    color: var(--cream);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.hero {
    position: relative;
    height: 100vh;
    border-radius: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    background: transparent;
    box-shadow: none;
}

#heroVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}

.hero-overlay {
    background: rgba(37, 66, 48, 0.25);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0;
}

.content-section {
    padding: 80px 10%;
    text-align: center;
    background: linear-gradient(120deg, var(--cream) 60%, var(--taupe) 100%);
    border-radius: 24px;
    box-shadow: var(--shadow);
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 1. Property Highlights: Fully Transparent and No Gradient */
.content-section.transparent-bg {
    background: transparent !important;
    background-image: none !important; 
    box-shadow: none !important;
    border: none !important;
    color: var(--dark-green);
}

/* 2. Bookings: The Entire Section background becomes Solid Textured Brown */
/* Fixed: Combined background properties and added a max-width for better layout */

/* --- The Solid Bridge Panel --- */

.booking-bridge {
    background-color: var(--solid-brown) !important;
    /* Adds the grain/noise texture */
    background-image: 
        repeating-radial-gradient(circle at 0 0, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 0, transparent 100%) !important;
    background-size: 3px 3px;
    
    padding: 60px 40px;
    border-radius: 40px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

/* Force all text inside the bridge to be white */
.booking-bridge h2,
.booking-bridge .section-intro,
.booking-bridge h3,
.booking-bridge .booking-label,
.booking-bridge .calendar-header-title,
.booking-bridge .calendar-day-name,
.booking-bridge .booking-note {
    color: #ffffff !important;
}

/* The Glass Calendar Box sitting on top of the brown */
.booking-panel {
    background: rgba(0, 0, 0, 0.2) !important; /* Slight dark tint */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 540px;
}

/* 3. Refined Text Contrast for the Brown Section */
.content-section.booking-bg h2,
.content-section.booking-bg .section-intro,
.content-section.booking-bg .booking-label,
.content-section.booking-bg .calendar-header-title,
.content-section.booking-bg .calendar-day-name {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 4. The Calendar & Form Panel (Glassmorphism effect over brown) */
.booking-panel {
    background: rgba(0, 0, 0, 0.25) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
}

/* 5. Calendar Day Interaction */
.calendar-day {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.calendar-day.available:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px);
}

/* --- FIXED CODE --- */
.calendar-day.selected, 
.calendar-day.selected:focus, 
.calendar-day.selected:active,
.time-slot.selected,
.time-slot.selected:focus {
    background-color: #DAA520 !important; /* Pure Yellow */
    color: var(--black) !important;             /* Black text for contrast */
    border-color: #B8860B !important;      /* Keeps your Pascal Gold border */
    outline: none !important;               /* REMOVES THE BROWN FOCUS BOX */
    box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
}


.package-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    flex-wrap: nowrap;
    flex-direction: row;
    padding-top: 50px; /* <--- ADD THIS HERE for Desktop */
}

/* 1. Reset Recent Property Highlights (Transparent, No Green Gradient) */
.content-section.transparent-bg {
    background: transparent !important;
    background-image: none !important; 
    box-shadow: none;
    color: var(--dark-green);
}

/* The Calendar Box: Make it slightly darker so it pops from the section background */
.package-card, .booking-panel {
    background: rgba(0, 0, 0, 0.2) !important; /* Dark tint to show texture from behind */
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: left;
    max-width: 540px;
    width: 100%;
    position: relative;
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Ensure all text inside the Booking Section is white */
.booking-bg h2, 
.booking-bg .booking-label, 
.booking-bg .calendar-header-title, 
.booking-bg .calendar-day-name {
    color: #ffffff !important;
}

/* 3. Fix the Calendar Labels to be visible on brown */
.booking-bg h2, 
.booking-label, 
.calendar-header-title, 
.calendar-day-name {
    color: #ffffff !important;
}

/* 4. Remove Green Gradient from Booking Section Background */
.content-section.booking-bg {
    background-image: none !important;
    background-color: transparent;
}

.package-card h3, .booking-panel h3 {
    margin-top: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 24px;
}

.package-card .price {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 24px 0;
    text-shadow: none;
    line-height: 1.4;
}

.package-card .price strong {
    font-size: 2rem;
    color: #D4AF37;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.booking-label, .package-list li {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-two-column {
    display: flex;
    gap: 24px;
    margin-bottom: 12px;
}

.booking-two-column > div {
    margin-bottom: 0;
    margin-right: 18px;
}

.booking-two-column > div:last-child {
    margin-right: 0;
}

.booking-panel input,
.booking-panel select,
.booking-panel textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--accent);
    font-size: 1rem;
    background: #f8f8f8;
    margin-bottom: 18px;
    transition: border-color 0.2s;
    outline: none;
}

.booking-panel input:focus,
.booking-panel select:focus,
.booking-panel textarea:focus {
    border-color: var(--accent);
}

.btn-main, .btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 220px;
    background: linear-gradient(135deg, var(--gold) 0%, #e6b800 50%, var(--gold) 100%);
    color: var(--dark-green);
    border: 2px solid rgba(200,169,106,0.3);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 24px;
    text-decoration: none;
    box-shadow: 
        0 12px 40px rgba(200,169,106,0.4),
        0 4px 16px rgba(200,169,106,0.3),
        inset 0 1px 0 rgba(255,255,255,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.05em;
    outline: none;
    cursor: pointer;
    margin-top: 24px;
    position: relative;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    text-align: center;
}

.btn-main:hover, .btn-book:hover {
    background: linear-gradient(135deg, var(--dark-green) 0%, #1a3a20 50%, var(--dark-green) 100%);
    color: var(--gold);
    box-shadow: 
        0 20px 60px rgba(37,66,54,0.5),
        0 8px 24px rgba(37,66,54,0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transform: translateY(-4px) scale(1.02);
}

.btn-main:hover, .btn-book:hover {
    background: var(--dark-green);
    color: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 4px 18px rgba(37,66,54,0.18);
    transform: translateY(-2px);
}

.booking-note {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.7);
    color: #254236;
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 2px 8px rgba(37,66,54,0.04);
    backdrop-filter: blur(1px);
}

iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(37,66,54,0.08);
}

/* --- Calendar & Time Slot Styles (imported from style.css) --- */
.calendar-embed,
.form-embed {
    background-color: rgba(0,0,0,0.25);
    border-radius: 16px;
    padding: 10px;
}

.calendar-shell {
    background-color: rgba(0,0,0,0.16);
    border-radius: 18px;
    padding: 16px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.calendar-header-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.calendar-nav-btn {
    border: none;
    background: transparent;
    color: var(--cream);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px 8px;
    border-radius: 999px;
}

.calendar-nav-btn:hover {
    background-color: rgba(255,255,255,0.08);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
    font-size: 0.8rem;
}

.calendar-day-name {
    text-align: center;
    opacity: 0.7;
}

.calendar-day {
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: rgba(0,0,0,0.18);
    transition: background 0.15s ease, transform 0.05s ease;
}

.calendar-day.disabled {
    opacity: 0.25;
    cursor: default;
}

.calendar-day.available:hover {
    background-color: rgba(255,255,255,0.15);
    transform: translateY(-1px);
}

.calendar-day.selected, .time-slot.selected {
    background-color: #e1c142 !important; /* Deep green */
    color: var(--black) !important;
    border-color: var(--gold) !important;
}

.calendar-day.today {
    outline: 1px solid rgba(255,255,255,0.4);
}

.time-slot-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.time-slot {
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 8px 16px;
    font-size: 0.95rem;
    cursor: pointer;
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    font-weight: 500;
}

.time-slot.selected {
    background-color: var(--accent);
    color: var(--cream);
    border-color: var(--accent);
}

.time-slot:hover {
    background: rgba(255,255,255,0.3);
    color: #ffffff;
}

@media (max-width: 768px) {
    .package-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    flex-wrap: nowrap;
    flex-direction: row;
    padding-top: 80px; /* <--- ADD THIS LINE (Adjust the 80px to move them more or less) */
}
}

/* --- Fixed Buttons --- */
.fixed-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.back-to-top, .book-now-popup {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.back-to-top {
    background: var(--gold);
    color: var(--dark-green);
}

.back-to-top:hover {
    background: var(--dark-green);
    color: var(--gold);
    transform: translateY(-3px);
}

.book-now-popup {
    background: var(--dark-green);
    color: var(--gold);
    font-size: 14px;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    line-height: 1.2;
    width: auto;
    height: auto;
    border-radius: 30px;
    padding: 12px 20px;
}

.book-now-popup:hover {
    background: var(--gold);
    color: var(--dark-green);
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .content-section {
        padding: 60px 7%;
    }
    .booking-layout {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .booking-panel, .package-card {
        padding: 24px 8px;
    }
    .booking-two-column {
        flex-direction: column;
    }
    .booking-two-column > div {
        margin-right: 0;
        margin-bottom: 18px;
    }
    .fixed-buttons {
        bottom: 20px;
        right: 20px;
    }
    .back-to-top, .book-now-popup {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Smaller buttons for package booking - reduced padding by one unit (14px 24px -> 12px 20px), font-size unchanged */
.package-grid .btn-book {\n    padding: 12px 20px !important;\n}\n\n/* Transparent hero button */\n.hero .btn-main {\n    background: transparent !important;\n    backdrop-filter: blur(10px);\n    border: 2px solid rgba(255, 255, 255, 0.4) !important;\n    color: var(--white) !important;\n    text-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;\n}\n\n.hero .btn-main:hover {\n    background: rgba(255, 255, 255, 0.15) !important;\n    border-color: var(--gold) !important;\n    color: var(--white) !important;\n    transform: translateY(-4px) !important;\n}

/* Custom Styles for New Form Fields */
.booking-panel select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.booking-two-column {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
}

.booking-two-column input, 
.booking-two-column select {
    flex: 1;
}

@media (max-width: 600px) {
    .booking-two-column {
        flex-direction: column;
        gap: 0;
    }
}

.booking-terms {
    display: flex;
    align-items: center; /* Vertical centering */
    justify-content: center; /* Horizontal centering for your layout */
    gap: 12px;
    margin: 30px 0;
    color: #ffffff;
    cursor: pointer;
    width: 100%;
}

.booking-terms input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: #C8A96A; /* This turns the checkmark Pascal Gold */
}

.booking-terms label {
    font-size: 0.95rem;
    cursor: pointer;
    user-select: none;
}

#thank-you-popup {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

/* Ensure the button matches the high-end home page style */
.btn-main {
    background: linear-gradient(135deg, #C8A96A 0%, #e6b800 50%, #C8A96A 100%) !important;
    color: #111 !important;
    padding: 16px 35px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-decoration: none;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 40px rgba(200, 169, 106, 0.4) !important;
    display: inline-block;
    border: none;
}

.btn-main:hover {
    transform: translateY(-3px);
    background: #254236 !important; /* Turns Dark Green on hover */
    color: #C8A96A !important;      /* Text turns Gold on hover */
    box-shadow: 0 15px 45px rgba(37, 66, 54, 0.2) !important;
}

/* --- MODERN FOOTER STYLES --- */
.main-footer {
    background-color: var(--dark-green);
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
    border-top: 2px solid var(--gold);
}

.footer-content p {
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 15px;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 10px;
}

.social-links a {
    color: var(--gold); /* Your brand gold */
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #e6b800; /* Brighter yellow/gold on hover */
    transform: translateY(-3px);
    filter: drop-shadow(0 5px 15px rgba(200, 169, 106, 0.4));
}

/* --- Detached About Section Layout --- */
.about-master {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}

.about-text-panel {
    background: rgba(37, 66, 54, 0.05);
    border: 1px solid rgba(200, 169, 106, 0.2);
    border-radius: 20px;
    padding: 60px;
    width: 65%; /* Constrains text to the left side */
    z-index: 2;
}

.about-image-container {
    position: absolute; /* Detaches image from the panel's height */
    right: 0;
    width: 40%;
    z-index: 5;
}

.about-image-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: none;
    border: none;
    margin: 0 !important; /* Overrides any previous negative margins */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-master {
        flex-direction: column;
    }
    .about-text-panel {
        width: 100%;
        padding: 40px 20px;
    }
    .about-image-container {
        position: relative; /* Puts image back in normal flow for mobile */
        width: 90%;
        margin: -30px auto 0 auto; /* Pulls image up slightly to overlap the panel */
    }
}

#about {
    position: relative;
    z-index: 10;
}

.package-card.js-parallax {
    will-change: transform;
    /* Remove 'transition: transform' so it doesn't "slide" into place on load */
    transition: opacity 0.6s ease-out !important; 
    transform: translate3d(0, 0, 0);
}

/* --- Fix for disappearing First/Last Name fields --- */
.booking-two-column {
    display: flex;
    gap: 20px;
    width: 100%;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Force the name containers to take up space */
.booking-two-column {
    display: flex !important;
    gap: 20px !important;
    width: 100% !important;
    min-height: 80px !important; /* Forces the area to stay open */
}

.form-group {
    flex: 1 !important;
    min-width: 150px !important;
}

.form-group input {
    height: 45px !important; /* Ensures the input has a physical height */
    opacity: 1 !important;
    visibility: visible !important;
}

/* --- Fix for First/Last Name Visibility --- */
.booking-two-column {
    display: flex !important;
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
}

.booking-two-column .form-group {
    flex: 1; /* Makes both fields equal width */
    opacity: 1 !important; /* Forces visibility bypasses animation lock */
    transform: none !important;
}

.form-group input {
    width: 100%;
    display: block;
    box-sizing: border-box;
}

/* Force the name row to appear and stay side-by-side */
#name-row {
    display: flex !important;
    gap: 20px !important;
    width: 100% !important;
    opacity: 1 !important; /* Forces visibility bypasses animation lock */
    transform: none !important;
    margin-bottom: 20px;
}

#name-row .form-group {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

#name-row input {
    width: 100% !important;
    display: block !important;
}

.package-card.js-parallax {
    will-change: transform;
    /* This ensures the card starts at its 'natural' position 
       before the script moves it */
    transform: translate3d(0, 0, 0); 
}

.package-card.js-parallax {
    will-change: transform;
    /* Remove 'transform' from transition to prevent the "slide/snap" effect */
    transition: opacity 0.6s ease-out !important; 
    /* Ensures they have a starting point before JS kicks in */
    transform: translate3d(0, 0, 0);
}

/* Abstract 3D Lines Background for Featured Section */
#featured {
    position: relative;
    background-color: var(--cream); /* Base color */
    /* This SVG creates a subtle, abstract grid/line pattern */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm-45 37c5.523 0 10-4.477 10-10s-4.477-10-10-10-10 4.477-10 10 4.477 10 10 10zm54 47c11.046 0 20-8.954 20-20s-8.954-20-20-20-20 8.954-20 20 8.954 20 20 20z' fill='%23254236' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    overflow: hidden;
}

/* Optional: Add a subtle glow behind the cards to make them pop against the lines */
#featured .featured-container {
    position: relative;
    z-index: 2;
}

#featured::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 169, 106, 0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
    pointer-events: none;
}

@keyframes backgroundDrift {
    from { background-position: 0 0; }
    to { background-position: 100px 100px; }
}

#featured {
    animation: backgroundDrift 60s linear infinite;
}

.js-parallax {
    will-change: transform;
    /* This is critical: remove the 'transform' transition. 
       If it's there, the card 'slides' from 0 to its spot, which looks like a snap. */
    transition: opacity 0.6s ease-out !important; 
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden; /* Standard pro-coder trick for smoother movement */
}

#packages {
    padding: 20px 0 !important; /* Minimal vertical padding */
    background-color: var(--cream);
    overflow: hidden; /* Clips any extra space created by moving cards */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.packages-container {
    max-width: 1000px; /* Constrains the surface width */
    margin: 0 auto !important;
    padding: 20px !important;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- BOTTOM NAVIGATION BUTTONS OVERHAUL --- */

/* 1. WhatsApp Button (Bottom Left) */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Moved to left */
    right: auto; /* Reset right */
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
}

/* 2. Book Now Button (Stacked above WhatsApp on the Left) */
/* Note: Adjust the class name '.book-now-btn' to match whatever class your button uses */
.book-now-fixed, .book-now-btn {
    position: fixed;
    bottom: 85px; /* Sits exactly above the WhatsApp button */
    left: 20px;
    background-color: var(--gold);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}



/* Mobile Adjustments */
@media (max-width: 768px) {
    .whatsapp-float span, .book-now-fixed span { 
        display: none; /* Icons only on mobile to save space */
    }
    .whatsapp-float, .book-now-fixed {
        padding: 15px;
        border-radius: 50%;
    }
}