/* --- Basic Reset --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #050510; 
    display: flex;
    justify-content: center; 
    align-items: flex-start; 
    /* Using min-height: 100dvh (Dynamic Viewport Height) 
       to handle mobile browser address bars perfectly */
    min-height: 100dvh; 
    width: 100vw;
    overflow-x: hidden;
}

/* --- The Mobile App Container --- */
.mobile-container {
    width: 100%;
    max-width: 480px; 
    /* Changed to 100dvh to ensure it stretches 
       exactly to the bottom of the visible screen */
    min-height: 100dvh; 
    position: relative;
    overflow-x: hidden; 
    overflow-y: auto;   
    background-color: #000;
    scrollbar-width: none; 
    display: flex;
    flex-direction: column;
}
.mobile-container::-webkit-scrollbar {
    display: none; 
}

/* --- Fixed, Non-Repeating Background --- */
.bg-base {
    position: fixed; 
    top: 0;
    left: 0;
    /* Using 100vw and 100dvh ensures it stays locked 
       to the full screen size regardless of scrolling */
    width: 100vw;
    height: 100dvh; 
    background-image: url('images/main_bg.png'); 
    /* "cover" is good, but let's add a safe center-center 
       to ensure no edges show if the image is slightly small */
    background-size: cover; 
    background-position: center center; 
    background-repeat: no-repeat; 
    z-index: 0;
    
    animation: nebulaPulse 12s infinite alternate ease-in-out;
}

@keyframes nebulaPulse {
    0% { filter: brightness(1) saturate(1); }
    100% { filter: brightness(1.15) saturate(1.2); } 
}

/* --- Scattered Stars Container & Base Styles --- */
/* --- Scattered Stars: Panning & Twinkle Fix --- */
.stars-pan-wrapper {
    position: fixed;
    top: 0;
    /* Centers it and respects your 480px desktop limit */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px; 
    height: 100vh;
    z-index: 2; /* Keeps it above the light rays */
    pointer-events: none;
    overflow: hidden; /* Hides the extra stars off-screen */
}

/* The element that actually slides to the left */
.stars-pan-mover {
    width: 200%; /* Twice as wide as the screen */
    height: 100%;
    display: flex;
    animation: panStars 150s linear infinite; /* 150s is extremely slow and peaceful */
}

@keyframes panStars {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Slides exactly one screen width, then loops */
}

.scattered-stars-container {
    width: 50%; /* Takes up exactly one screen width inside the mover */
    height: 100%;
    position: relative;
}

.organic-star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    /* Added "both" to fix the blinking issue on load */
    animation: organicTwinkle infinite alternate ease-in-out both;
}

/* Different sizes for 3D depth */
.star-small { width: 1px; height: 1px; }
.star-medium { width: 2px; height: 2px; }
.star-large { width: 3px; height: 3px; box-shadow: 0 0 4px 1px rgba(255, 255, 255, 0.8); }

@keyframes organicTwinkle {
    /* Changed starting opacity to 0 so they fade in smoothly */
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1.2); opacity: 1; }
}

/* --- Shooting Stars --- */
.shooting-stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; 
    z-index: 2;
    pointer-events: none;
}

.shooting-star {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,1), transparent);
    transform: rotate(45deg); 
    opacity: 0;
}

.shooting-star-animate {
    animation: shoot linear forwards;
}

@keyframes shoot {
    0% { transform: rotate(45deg) translateX(0); opacity: 1; }
    100% { transform: rotate(45deg) translateX(800px); opacity: 0; }
}

/* --- Content Layer --- */
.content {
    position: relative;
    z-index: 10; 
}


/* --- NEW: Dynamic Light Ray Overlays --- */
/* --- Dynamic Light Ray Overlays (Visibility Fix) --- */
.light-ray {
    position: fixed;
    pointer-events: none; 
    z-index: 1; 
    /* Changed to screen for a brighter, more reliable glow */
    mix-blend-mode: screen; 
    filter: blur(40px); 
}

.golden-ray {
    top: -10%;
    left: -10%;
    width: 80%;
    height: 60%;
    /* Increased the opacity significantly so you can definitely see it */
    background: radial-gradient(circle at top left, rgba(255, 180, 50, 0.8) 0%, transparent 60%);
    animation: goldenPulse 6s infinite alternate ease-in-out;
}

.rainbow-ray {
    bottom: -10%;
    right: -20%;
    width: 90%;
    height: 70%;
    /* Increased the opacity here as well */
    background: linear-gradient(-45deg, rgba(0, 255, 255, 0.5), rgba(255, 0, 255, 0.6), transparent 60%);
    animation: rainbowPulse 8s infinite alternate-reverse ease-in-out;
}

@keyframes goldenPulse {
    0% { opacity: 0.5; transform: scale(0.9) translate(0, 0); }
    100% { opacity: 1; transform: scale(1.15) translate(25px, 25px); }
}

@keyframes rainbowPulse {
    0% { opacity: 0.6; transform: scale(0.95) rotate(0deg); }
    100% { opacity: 1; transform: scale(1.1) rotate(-8deg); }
}




/* --- Golden-Red Top Stars --- */
.top-nebula-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 35dvh; /* Only covers the top section */
    z-index: 3;    /* Sits just behind the Logo/Title */
    pointer-events: none;
    overflow: hidden;
}

/* --- Golden-Red Top-Left Stars --- */
.nebula-star {
    position: absolute;
    border-radius: 50%;
    /* Ensure they stay above the nebula but behind the content */
    z-index: 5; 
    animation: nebulaTwinkle infinite alternate ease-in-out;
}

@keyframes nebulaTwinkle {
    0% { 
        opacity: 0.2; 
        filter: brightness(0.7);
        transform: scale(0.9); /* Slightly smaller at dim */
    }
    100% { 
        opacity: 1; 
        filter: brightness(1.3);
        transform: scale(1); /* Stays at original tiny size at full glow */
    }
}


/* --- FULL SCREEN SINGLE-PAGE LAYOUT --- */

/* --- Fix the Parent Container --- */
.full-screen-layout {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    height: 100dvh; 
    width: 100%;
    padding: 0 2vw 2dvh 2vw; 
    color: white;
    /* CHANGE: Apply our new premium font to the whole layout */
    font-family: 'Montserrat', sans-serif; 
    text-align: center;
}

/* Common Text Styling */
/* Common Text Styling */
.section-title { 
    font-size: 3.0vw; 
    font-weight: 600;
    letter-spacing: 1px; 
    margin-bottom: 1dvh; 
    text-shadow: 
        0px 2px 4px rgba(0, 0, 0, 1), 
        0px 0px 10px rgba(0, 0, 0, 0.9),
        0px 0px 20px rgba(0, 0, 0, 0.7); 
        
    /* NEW: Required so the shadow cloud knows exactly where to center itself */
    position: relative; 
    z-index: 1; /* Keeps the text on top of the cloud */
}

/* THE FIX: The soft, dark elliptical cloud behind the section titles */
.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers the cloud exactly on the text */
    
    width: 60vw; /* Wide enough to protect the whole word */
    height: 10dvh; /* Tall enough to give a soft fade vertically */
    
    /* The dark gradient cloud */
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.25) 50%, transparent 75%);
    
    z-index: -1; /* Pushes the cloud behind the text */
    pointer-events: none;
}

/* --- 1. Header (Takes ~25% height) --- */
/* --- 2. Fix the Hero Section --- */
/* --- 2. Fix the Hero Section --- */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; 
    padding-top: 3.0dvh; 
    gap: 0; 
    height: 25dvh; 
    width: 100%; 
    position: relative; /* CRITICAL: Allows us to position the shadow perfectly inside */
    background: none; /* Removed the wide background we added previously */
}

/* THE FIX: A precisely sized dark cloud that only sits behind the logo and text */
.hero-section::before {
    content: '';
    position: absolute;
    top: 11dvh; /* Adjust this to move the shadow up or down */
    left: 50%;
    transform: translateX(-50%);
    width: 70vw; /* Keeps the shadow tight horizontally */
    height: 13dvh; /* Keeps the shadow tight vertically (stops before the button) */
    
    /* NEW: Changed opacity values from 0.85/0.4 to 0.5/0.25 for a lighter look */
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.25) 50%, transparent 65%);
    z-index: -1; /* Puts the shadow behind the text and logo */
    pointer-events: none; /* Ensures it doesn't block any clicks */
}

/* --- 3. Pull the Logo Upwards --- */
.main-logo { 
    height: 18dvh; 
    max-width: 18vw; 
    object-fit: contain; 
    /* NEW: Use negative margin-top to literally pull the image up, bypassing any transparent space inside the PNG file itself! */
    margin-top: -3dvh; 
    /* Keep your negative bottom margin to pull the text up */
    margin-bottom: -1dvh; 

    /* THE FIX: Adds a soft, subtle glow around the logo */
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
}

.main-title { 
    font-size: 4.0vw; 
    font-weight: 600; 
    letter-spacing: 0.05em; 
    line-height: 1.0; 
    text-transform: uppercase; 
    
    /* We also tighten the text shadow so the letters have a solid, crisp dark outline against the new dark background */
    text-shadow: 
        0px 2px 4px rgba(0, 0, 0, 1), 
        0px 0px 10px rgba(0, 0, 0, 0.9),
        0px 0px 20px rgba(0, 0, 0, 0.7); 
}


.subtitle { 
    font-size: 1.8vw; 
    font-weight: 400; /* Lighter weight to contrast with the bold title */
    letter-spacing: 0.00em; /* Slightly spaced out */
    color: #eeeeee; /* Brighter white so it's readable */
    margin-top: 0.4dvh; /* Gives it a tiny bit of breathing room below the title */
}
/* --- THE NEON GRADIENT PILL BUTTON --- */
.book-btn {
    margin-top: 0.0dvh; 
    
    /* Size the image appropriately */
    height: 7dvh; 
    width: auto;
    max-width: 80vw;
    object-fit: contain;
    
    /* We REMOVED border-radius and box-shadow from here because drop-shadow handles it naturally */
    
    cursor: pointer; 
    animation: orbitingGlow 4s linear infinite;
}

/* THE FIX: Switched from box-shadow to filter: drop-shadow() so it perfectly hugs the PNG pixels! */
@keyframes orbitingGlow {
    0% {
        filter: drop-shadow(-8px 0 10px rgba(0, 206, 209, 0.8)) drop-shadow(8px 0 10px rgba(164, 0, 81, 0.8));
    }
    25% {
        filter: drop-shadow(0 -8px 10px rgba(0, 206, 209, 0.8)) drop-shadow(0 8px 10px rgba(164, 0, 81, 0.8));
    }
    50% {
        filter: drop-shadow(8px 0 10px rgba(0, 206, 209, 0.8)) drop-shadow(-8px 0 10px rgba(164, 0, 81, 0.8));
    }
    75% {
        filter: drop-shadow(0 8px 10px rgba(0, 206, 209, 0.8)) drop-shadow(0 -8px 10px rgba(164, 0, 81, 0.8));
    }
    100% {
        filter: drop-shadow(-8px 0 10px rgba(0, 206, 209, 0.8)) drop-shadow(8px 0 10px rgba(164, 0, 81, 0.8));
    }
}
/* =========================================
   2. PILLARS SECTION (Takes ~30% height)
   ========================================= */

.pillars-section { 
    margin-top: 0dvh; 
    height: 30dvh; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}

.pillars-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65%; 
    gap: 0vw; 
    padding: 0 8vw; 
}

/* --- THE FIX: Make links the structural flex items --- */
.pillar-link {
    flex: 1; /* Takes up equal space in the row */
    display: flex; 
    justify-content: center;
    align-items: center;
    height: 100%; 
    text-decoration: none;
    -webkit-tap-highlight-color: transparent; /* Removes blue tap highlight on mobile */
}

/* The image simply fills its new anchor container */
.pillar-tile {
    width: 100%; 
    height: 100%;
    object-fit: contain; 
}

/* --- THE FIX: Individual Neon Glows for each tile --- */
.tile-cyan {
    filter: drop-shadow(0 0 12px rgba(0, 255, 255, 0.7));
}

.tile-magenta {
    filter: drop-shadow(0 0 12px rgba(255, 0, 255, 0.7));
}

.tile-orange {
    filter: drop-shadow(0 0 12px rgba(255, 165, 0, 0.7));
}

/* --- 3. Gallery (Reduced Height & Custom Gradient Border) --- */
.gallery-section { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    height: 30dvh; /* REDUCED: Was 40dvh, now more compact */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr); 
    grid-template-rows: repeat(12, 1fr); 
    gap: 1px; 
    
    width: 80vw; 
    height: 95%;
    border-radius: 5px; 
    padding: 0.5px; /* Added a tiny bit of padding so the border doesn't look choked */
    
    background: 
        linear-gradient(#050510, #050510) padding-box,
        conic-gradient(
            from 0deg, 
            rgba(0, 206, 209, 0.5), /* Cyan Top-Right */
            rgba(255, 215, 0, 0.5) 90deg, /* Gold Bottom-Right */
            rgba(0, 0, 0, 0.5) 180deg, /* Black Bottom-Left */
            rgba(255, 0, 255, 0.5) 270deg, /* Magenta Top-Left */
            rgba(0, 206, 209, 0.5)
        ) border-box;
    
    border: 1.5px solid transparent; 
    
    /* THE MASTER GLOW: Layered drop-shadows for each corner */
    filter: 
        drop-shadow(-8px -8px 12px rgba(255, 0, 255, 0.3)) /* Magenta Glow (Top-Left) */
        drop-shadow(8px -8px 12px rgba(0, 206, 209, 0.3))  /* Cyan Glow (Top-Right) */
        drop-shadow(8px 8px 12px rgba(255, 215, 0, 0.3));  /* Gold Glow (Bottom-Right) */

    overflow: hidden; 
}

.gallery-item {
    background-color: rgba(255, 255, 255, 0.05); 
    background-size: cover;
    background-position: center;
    border: none; 
    border-radius: 0;
    overflow: hidden !important; /* Ensures image doesn't bleed out */
}

/* --- EXACT 13-IMAGE MASONRY MAPPING --- */

/* TOP ROW AREA */
/* 1. 4 columns, 4 rows */
.gallery-item:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 5; }
/* 2. 5 columns, 3 rows */
.gallery-item:nth-child(2) { grid-column: 5 / 10; grid-row: 1 / 4; }
/* 3. 3 columns, 4 rows */
.gallery-item:nth-child(3) { grid-column: 10 / 13; grid-row: 1 / 5; }

/* MIDDLE SECTION AREA */
/* 4. 2 columns, 3 rows (tucked under item 2) */
.gallery-item:nth-child(4) { grid-column: 1 / 3; grid-row: 5 / 8; }
/* 5. 2 columns, 4 rows */
.gallery-item:nth-child(5) { grid-column: 3 / 5; grid-row: 5 / 9; }
/* 6. 5 columns, 4 rows (starts on far left) */
.gallery-item:nth-child(6) { grid-column: 5 / 10; grid-row: 4 / 8; }
/* 7. 3 columns, 3 rows (far right) */
.gallery-item:nth-child(7) { grid-column: 10 / 13; grid-row: 5 / 8; }

/* LOWER & BOTTOM AREA */
/* 8. 2 columns, 5 rows */
.gallery-item:nth-child(8) { grid-column: 1 / 3; grid-row: 8 / 13; }
/* 9. 2 columns, 4 rows */
.gallery-item:nth-child(9) { grid-column: 3 / 5; grid-row: 9 / 13; }
/* 10. 2 columns, 5 rows */
.gallery-item:nth-child(10) { grid-column: 5 / 7; grid-row: 8 / 13; } /* Overflows slightly for edge-to-edge feel */
/* 11. 2 columns, 2 rows */
.gallery-item:nth-child(11) { grid-column: 7 / 9; grid-row: 8 / 10; }
/* 12. 2 columns, 3 rows */
.gallery-item:nth-child(12) { grid-column: 7 / 9; grid-row: 10 / 13; }
/* 13. 4 columns, 5 rows */
.gallery-item:nth-child(13) { grid-column: 9 / 13; grid-row: 8 / 13; }

/* NOTE: Because some items have 5 rows, we extend the grid rows 
   implicitly to keep the 12x12 proportions looking balanced. */

   /* Subtle depth effect when the user interacts with the gallery */
.gallery-item:active {
    transform: scale(0.98);
    filter: brightness(1.2);
    z-index: 20;
    transition: transform 0.1s ease;
}

/* --- 4. Footer (Takes ~10% height) --- */
/* --- 4. Footer (Takes ~10% height) --- */
/* Adjusting the footer height to accommodate the extra lines */
.site-footer {
    height: 15dvh; /* Allow it to grow naturally with the content */
    padding: 3dvh 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0dvh;
    position: relative;
    z-index: 10;
}

/* THE FIX: A wide, dark cloud protecting the entire footer area */
.site-footer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 80vw; /* Wide enough to cover the text and all icons */
    height: 15dvh; /* Tall enough to cover both rows */
    
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 75%);
    
    z-index: -1; 
    pointer-events: none;
}

/* The footer logo text from your image */
.footer-logo-text { 
    font-size: 3.0vw;
    font-weight: 600; 
    letter-spacing: 1px; 
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* --- Footer Contact Styling (Split Lines) --- */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px; /* Space between address and phone */
    margin: 0dvh 0;
    padding: 0 5vw;
}

.contact-line {
    font-size: 2.0vw; /* Adjusted for better readability on two lines */
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    line-height: 1.0; /* Adds breathing room between the two address lines */
    text-align: center;
}

.phone-line {
    font-size: 3vw;
    font-weight: 400;
    letter-spacing: 1px;
    color: #ffffff;
    margin-top: 2px;
}

/* Removes underline and default colors from auto-detected phone links */
a[href^="tel:"] {
    text-decoration: none !important;
    color: inherit !important;
}

/* Specifically targeting any links inside your phone-line class */
.phone-line a {
    text-decoration: none !important;
    color: inherit !important;
}

/* Overrides iOS Safari's stubborn data detectors */
a[x-apple-data-detectors] {
    color: inherit !important;
    text-decoration: none !important;
    font-size: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

.clean-phone-link {
    color: #ffffff !important;
    text-decoration: none !important;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 6vw; /* Spacing between different icons */
}

/* 1. Facebook: Transparent bubble style */
/* Facebook: Solid White Bubble with Bottom-Aligned 'f' */
.fb-bubble-solid {
    display: flex;
    align-items: flex-end; /* Aligns the icon to the bottom */
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: #ffffff; /* Solid White Background */
    border-radius: 50%;
    text-decoration: none;
    overflow: hidden; /* Crucial: Clips the bottom of the icon */
    transition: transform 0.2s ease;
}

.fb-bubble-solid i {
    color: #000000; /* Black 'f' */
    font-size: 17px; /* Slightly larger to ensure it hits the edges */
    /* Pulls the icon down 2px so the stem 'disappears' into the bottom curve */
    margin-bottom: -1px; 
    /* Centers the 'f' horizontally since the icon is naturally slightly off-center */
    margin-left: -1px; 
}

/* Hover effect */
.fb-bubble-solid:active {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* 2. Plain Icons: No background or border */
.icon-plain {
    color: white;
    font-size: 18px;
    text-decoration: none;
    opacity: 0.9;
    transition: transform 0.2s;
}

.icon-plain:active {
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* 3. Copyright/Contact Line */
.footer-copyright {
    font-size: 1.4vw;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- WhatsApp Float (Custom Glow) --- */
/* --- WhatsApp Float (Custom Glow) --- */
.whatsapp-float {
    position: fixed; /* THE FIX: Changed from absolute to fixed */
    bottom: 2dvh;
    right: 5vw;
    width: 35px;
    height: 35px;
    z-index: 100;
    /* Neon green glow to make it pop like the image */
    filter: drop-shadow(0 0 10px rgba(37, 211, 102, 0.6));
    transition: transform 0.3s ease;
}

.whatsapp-float:active {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(37, 211, 102, 0.9));
}

.whatsapp-float img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
}


/* --- CUSTOM GLIGHTBOX STYLING (Smaller Video & Transparent Background) --- */

/* 1. Make the dark background overlay more see-through */
.glightbox-container .goverlay {
    /* The 0.7 means it's 70% black and 30% transparent. Change to 0.5 for even more transparency! */
    background: rgba(0, 0, 0, 0.5) !important; 
}

/* 2. Shrink the video player and add a cool theme-matching border */
.glightbox-container .gslide-media {
    max-width: 80vw !important; /* Prevents the video from touching the edges of the screen */
    max-height: 100% !important; /* Keeps the video from getting too tall */
    margin: 0 auto; /* Centers the video perfectly */
    
    /* OPTIONAL: Adds a premium border and shadow to match your site's neon vibe */
    border: 2px solid rgba(0, 206, 209, 0.5) !important; 
    border-radius: 12px !important; 
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.8) !important;
    overflow: hidden !important;
}

/* 3. Move the close (X) button slightly so it doesn't overlap the new smaller video */
.glightbox-clean .gclose {
    right: 15px !important;
    top: 15px !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
    border-radius: 50%;
}











/* =========================================
   NEW: BOOKING PAGE STYLES
   ========================================= */

/* Allow the booking page to fit dynamically */
.scroll-layout {
    display: flex;
    flex-direction: column;
    height: 100dvh; /* Changed to strictly fill viewport height */
    width: 100%;
    padding: 0 4vw; 
    color: white;
    font-family: 'Montserrat', sans-serif; 
    text-align: center;
    overflow: hidden; /* Prevents scrollbars */
}

/* Made hero more compact */
.compact-hero {
    height: 10dvh;
    padding-top: 0dvh;
}
.small-logo {
    height: 9dvh;
    margin-top: 0dvh;
}

.booking-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex-grow: 1;
}

/* Reduced gaps and margins to fit one screen */
.booking-form {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 5px; /* Reduced gap */
    margin-top: 1dvh;
}

/* --- THE FLOATING LABEL TRICK --- */
.input-group {
    position: relative;
    width: 100%;
}

/* Sizing, Centering, and internal text alignment */
.input-group input,
.input-group textarea {
    width: 80%; 
    box-sizing: border-box; /* NEW: Forces padding to stay inside the width */
    height: 38px; /* Tighter height */
    background: rgba(0, 0, 0, 0.4);
    border: 1.5px solid rgba(0, 206, 209, 0.5);
    border-radius: 8px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px; /* Slightly smaller text */
    padding: 8px 15px; /* Tighter padding */
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    
    margin: 0 auto; 
    display: block; 
}



/* Overriding height for text area */
.input-group textarea {
    height: 60px; /* Reduced height */
    resize: none;
}

/* The Label aligned to match centered inputs */
.input-group label {
    position: absolute;
    left: calc(10% + 15px); /* 10% offset + 15px padding aligns it perfectly */
    top: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: 0.3s ease all;
    pointer-events: none; 
}

/* The Magic: Text-shadow acts as a border eraser! */
.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -8px;
    left: calc(10% + 10px); 
    font-size: 12px;
    color: #00ced1;
    padding: 0 5px;
    font-weight: 600;
    background-color: transparent; /* No blocky background */
    
    /* This shadow creates a tight mask around the letters to hide the border */
    text-shadow:
        -2px -2px 0 #050510,  2px -2px 0 #050510,
        -2px  2px 0 #050510,  2px  2px 0 #050510,
        -3px  0   0 #050510,  3px  0   0 #050510;
}

/* Date input fixes */
/* Date input fixes */
.input-group input[type="date"] {
    color: transparent; 
    -webkit-appearance: none; /* NEW: Strips away default Apple/Android styling */
    appearance: none;         /* NEW: Standard version of the above rule */
    width: 80%;               /* NEW: Reinforce the width restriction */
}
.input-group input[type="date"]:focus,
.input-group input[type="date"]:valid {
    color: white;
}
.input-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Glow when focused */
.input-group input:focus,
.input-group textarea:focus {
    border-color: #00ced1;
    box-shadow: 0 0 10px rgba(0, 206, 209, 0.3);
}

/* --- SUBMIT BUTTON --- */
.submit-glow-btn {
    background: transparent;
    border: 1px solid white;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 1.5px;
    padding: 5px; /* Reduced padding */
    border-radius: 6px; /* Rectangular shape matching inputs */
    width: 60%; /* Match inputs width */
    margin: 5px auto 0 auto; /* Centered */
    display: block;
    cursor: pointer;
    
    animation: orbitingGlow 4s linear infinite;
    transition: transform 0.2s;
}

.submit-glow-btn:active {
    transform: scale(0.95);
}

/* --- SUCCESS MESSAGE --- */
.success-message {
    text-align: center;
    margin-top: 5dvh;
    animation: fadeIn 0.5s ease-in;
}
.success-message i {
    font-size: 50px;
    color: #00ced1;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(0, 206, 209, 0.8));
}
.success-message h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}
.success-message p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 20px;
}
.back-home-btn {
    color: #00ced1;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #00ced1;
    padding-bottom: 2px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


/* =========================================
   NEW: BACK BUTTON STYLES
   ========================================= */
.back-button-top {
    position: absolute;
    top: 10px;       /* Pushes it down 20px from the top */
    left: 10px;      /* Pushes it 20px in from the left */
    color: #ffffff;  /* White color */
    font-size: 24px; /* Size of the arrow icon */
    text-shadow: 0 0 10px rgba(0, 206, 209, 0.8); /* Your specific neon glow */
    text-decoration: none; /* Removes underline from the link */
    z-index: 100;    /* Ensures it stays above other elements */
}


















/* =========================================
   NEW: PILLAR DETAIL PAGES STYLES
   ========================================= */
.pillar-detail-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
    padding: 0 4vw;
    margin-top: 1dvh;
}

.pillar-detail-img {
    height: 12dvh; /* Keeps the image proportional and ensures it fits on one screen */
    margin-bottom: 1.5dvh;
    object-fit: contain;
}

.pillar-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5dvh;
    line-height: 1.4;
    text-align: center;
}

.pillar-features {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin: 0 auto;
}

.pillar-features li {
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.pillar-features li i {
    color: #00ced1; /* Cyan checkmarks */
    margin-right: 10px;
    filter: drop-shadow(0 0 5px rgba(0, 206, 209, 0.8));
}








/* Desktop starts below */












/* desktop starts here */









/* =========================================
   NEW: DESKTOP / WIDE SCREEN STYLES
   ========================================= */

/* A wider container that allows vertical scrolling */
.desktop-container {
    width: 100%;
    max-width: 1000px; /* Wide enough for desktop, but keeps images sharp */
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto; /* ENABLES SCROLLING! */
    background-color: transparent;
    display: flex;
    flex-direction: column;
    margin: 0 auto; /* Centers the whole app on ultrawide monitors */
}

/* Allow the background stars to fill this wider container */
.desktop-container .stars-pan-wrapper {
    max-width: 1000px; 
}

/* The flowing, scrollable layout */
.desktop-layout {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Removed space-between to allow natural scrolling */
    min-height: 100vh;
    width: 100%;
    padding: 5vh 5vw;
    gap: 10vh; /* Adds beautiful breathing room between your sections */
    color: white;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

/* --- Scaling Up Text & Elements for Desktop --- */

.desktop-layout .section-title {
    font-size: 36px; /* Fixed larger sizes so it doesn't look weirdly huge or small */
    margin-bottom: 4vh;
}

.desktop-layout .main-title {
    font-size: 52px;
    line-height: 1.2;
    margin-top: 10px;
}

.desktop-layout .subtitle {
    font-size: 20px;
    margin-top: 2vh;
}

/* Let the Hero Section grow naturally */
.desktop-layout .hero-section {
    height: auto; 
    min-height: 35vh;
}

.desktop-layout .main-logo {
    height: 150px;
    max-width: 300px;
    margin-bottom: 2vh;
}

.desktop-layout .book-btn {
    height: 70px; /* Slightly larger button */
    margin-top: 3vh;
}

/* Let Pillars have proper breathing room */
.desktop-layout .pillars-section {
    height: auto;
}
.desktop-layout .pillars-row {
    gap: 2vw; /* Spread them out a bit more */
    padding: 0 2vw;
    height: 180px; /* Fixed height for the images */
}

/* Fix the Gallery height for desktop scrolling */
.desktop-layout .gallery-section {
    height: auto;
}
.desktop-layout .gallery-grid {
    height: 600px; /* Large, impressive masonry grid */
    width: 100%;
}

/* Make Footer legible on big screens */
.desktop-layout .site-footer {
    height: auto;
    padding: 5vh 0 10vh 0; /* Extra padding at bottom for scroll clearance */
    gap: 2vh;
}
.desktop-layout .footer-logo-text {
    font-size: 32px;
}
.desktop-layout .contact-line {
    font-size: 16px;
    line-height: 1.6;
}
.desktop-layout .phone-line {
    font-size: 24px;
    margin-top: 10px;
}
.desktop-layout .social-icons {
    gap: 30px;
    margin-top: 2vh;
}
.desktop-layout .footer-copyright {
    font-size: 12px;
    margin-top: 2vh;
}

.footer-company-link,
.footer-company-link:link,
.footer-company-link:visited,
.footer-company-link:hover,
.footer-company-link:focus,
.footer-company-link:active {
    color: inherit !important;
    text-decoration: none !important;
}









