
        *{
            margin:0;
            padding:0;
            box-sizing:border-box;
            font-family:'Poppins', sans-serif;
        }

        html{
            scroll-behavior:smooth;
        }

        body{
            overflow-x:hidden;
            background:#000;
        }

        /* =========================================================
           HERO SECTION
        ========================================================= */

        .hero{
            width:100%;
            height:100vh;
            position:relative;
            overflow:hidden;

            background:
            linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
            url('../img/hero_img_01.jpeg');

            background-size:cover;
            background-position:center;
            background-repeat:no-repeat;
        }

           .no_bg_hero{
            width:100%;
            height:10vh;
            position:relative;
            overflow:hidden;
            background-size:cover;
            background-position:center;
            background-repeat:no-repeat;
        }

        /* LOGO */

        .logo{
            position:absolute;
            top:25px;
            left:35px;
            z-index:10;
            color:#fff;
        }

        .logo h1{
            font-size:55px;
            line-height:45px;
            font-family:cursive;
        }

        .logo span{
            display:block;
            text-align:center;
            letter-spacing:5px;
            margin-top:8px;
            font-size:14px;
        }

        /* MENU */

        .menu{
            position:absolute;
            top:35px;
            right:35px;
            z-index:10;
            cursor:pointer;
        }

        .menu span{
            display:block;
            width:35px;
            height:3px;
            background:#fff;
            margin:7px 0;
        }

        /* SOCIAL */

        .social{
            position:absolute;
            left:30px;
            top:50%;
            transform:translateY(-50%);
            z-index:10;

            display:flex;
            flex-direction:column;
            align-items:center;
            gap:10px;
        }

        .social a{
            color:#fff;
            text-decoration:none;
            font-size:20px;
            transition:0.3s;
        }

        .social a:hover{
            color:#c88a45;
        }

        .book-text{
            color:#fff;
            writing-mode:vertical-rl;
            transform:rotate(180deg);
            margin-top:10px;
            font-size:15px;
        }

        /* HERO CONTENT */

        .hero-content{
            position:absolute;
            top:50%;
            left:18%;
            transform:translateY(-50%);
            z-index:5;

            color:#fff;
            max-width:700px;
        }

        .hero-content h1{
            font-size:85px;
            line-height:95px;
            margin-bottom:25px;
            font-weight:700;
        }

        .hero-content p{
            font-size:24px;
            line-height:40px;
            color:#f2f2f2;
            margin-bottom:35px;
        }

        .hero-btn{
            display:inline-block;
            background:#c88a45;
            color:#fff;
            text-decoration:none;

            padding:18px 40px;

            font-size:15px;
            font-weight:700;
            letter-spacing:3px;

            transition:0.4s;
        }

        .hero-btn:hover{
            background:#a56f35;
        }

        /* FLOAT BUTTON */

        .floating{
            position:absolute;
            bottom:25px;
            right:25px;

            width:55px;
            height:55px;

            border-radius:50%;
            background:#111;

            display:flex;
            align-items:center;
            justify-content:center;

            color:#fff;
            font-size:24px;

            z-index:10;
        }

        /* =========================================================
           ROOMS SECTION
        ========================================================= */

        .rooms-section{
            position:relative;
            min-height:100vh;
            padding-bottom:120px;

            background:
            linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
            url('../img/hero_05.png');

            background-size:cover;
            background-position:center;
            background-attachment:fixed;
        }

        /* TOP INFO */

        .top-info{
            display:grid;
            grid-template-columns:repeat(3,1fr);
        }

        .info-box{
            background:#9f6f35;
            padding:40px;
            color:#fff;

            display:flex;
            align-items:center;
            gap:20px;
        }

        .info-box.dark{
            background:#7a5424;
        }

        .info-box.darker{
            background:#5a3915;
        }

        .info-icon{
            font-size:45px;
        }

        .info-box h4{
            font-size:22px;
            margin-bottom:6px;
        }

        .info-box p{
            font-size:16px;
            opacity:0.9;
        }

        /* SECTION TITLE */

        .section-title{
            text-align:center;
            margin-top:70px;
            margin-bottom:70px;
            color:#fff;
        }

        .section-title h2{
            font-size:65px;
            font-weight:700;
        }

        .section-line{
            width:70px;
            height:3px;
            background:#c88a45;
            margin:20px auto 0;
        }

        /* ROOM CONTAINER */

        .rooms-container{
            width:82%;
            margin:auto;

            display:grid;
            grid-template-columns:repeat(3,1fr);
            gap:35px;
        }

        /* ROOM CARD */

        .room-card{
            background:rgba(0,0,0,0.45);
            backdrop-filter:blur(3px);

            overflow:hidden;

            transition:0.5s;
        }

        .room-card:hover{
            transform:translateY(-10px);
        }

        .room-image{
            position:relative;
            overflow:hidden;
        }

        .room-image img{
            width:100%;
            height:320px;
            object-fit:cover;

            transition:0.5s;
        }

        .room-card:hover img{
            transform:scale(1.08);
        }

        .room-tag{
            position:absolute;
            top:15px;
            right:15px;

            background:#c88a45;
            color:#fff;

            padding:8px 18px;

            font-size:12px;
            letter-spacing:2px;
        }

        .room-content{
            padding:30px;
        }

        .room-meta{
            display:flex;
            gap:25px;

            color:#fff;
            margin-bottom:20px;

            font-size:16px;
        }

        .room-content h3{
            color:#fff;
            font-size:34px;
            margin-bottom:20px;
            letter-spacing:3px;
        }

        .room-content p{
            color:#ddd;
            line-height:34px;
            font-size:18px;
            margin-bottom:35px;
        }

        .book-btn{
            display:block;
            text-align:center;

            border:1px solid rgba(255,255,255,0.3);

            color:#fff;
            text-decoration:none;

            padding:16px;

            letter-spacing:3px;
            font-weight:600;

            transition:0.4s;
        }

        .book-btn:hover{
            background:#c88a45;
            border-color:#c88a45;
        }

        /* =========================================================
           SCROLL ANIMATION
        ========================================================= */

        .reveal{
            opacity:0;
            transform:translateY(100px);
            transition:1s ease;
        }

        .reveal.active{
            opacity:1;
            transform:translateY(0);
        }

        .delay{
            transition-delay:0.2s;
        }

        .delay2{
            transition-delay:0.4s;
        }

        /* =========================================================
           RESPONSIVE
        ========================================================= */

        @media(max-width:1200px){

            .rooms-container{
                width:92%;
            }

            .hero-content h1{
                font-size:70px;
                line-height:80px;
            }
        }

        @media(max-width:992px){

            .top-info{
                grid-template-columns:1fr;
            }

            .rooms-container{
                grid-template-columns:1fr;
            }

            .hero-content{
                left:10%;
                right:10%;
            }

            .hero-content h1{
                font-size:55px;
                line-height:65px;
            }

            .section-title h2{
                font-size:45px;
            }
        }

        @media(max-width:768px){

            .hero-content h1{
                font-size:42px;
                line-height:52px;
            }

            .hero-content p{
                font-size:18px;
                line-height:30px;
            }

            .logo h1{
                font-size:40px;
            }

            .social{
                left:10px;
            }
        }

        /* =========================================================
   FOOTER
========================================================= */

.footer{
    background:#111;
    color:#fff;
    position:relative;
}

/* TOP FOOTER */

.footer-top{
    width:85%;
    margin:auto;
    padding:100px 0 70px;

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:60px;
}

/* FOOTER LOGO */

.footer-logo{
    font-size:42px;
    margin-bottom:25px;
    color:#c88a45;
}

/* TEXT */

.footer-text{
    color:#ccc;
    line-height:32px;
    font-size:17px;
    margin-bottom:30px;
}

/* TITLES */

.footer-box h3{
    font-size:28px;
    margin-bottom:30px;
    position:relative;
}

.footer-box h3::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;

    width:50px;
    height:3px;

    background:#c88a45;
}

/* LINKS */

.footer-links{
    list-style:none;
}

.footer-links li{
    margin-bottom:18px;
}

.footer-links a{
    color:#ccc;
    text-decoration:none;
    font-size:17px;

    transition:0.3s;
}

.footer-links a:hover{
    color:#c88a45;
    padding-left:8px;
}

/* SOCIAL */

.footer-social{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.footer-social a{
    text-decoration:none;
    color:#fff;

    border:1px solid rgba(255,255,255,0.2);

    padding:12px 18px;

    transition:0.3s;
}

.footer-social a:hover{
    background:#c88a45;
    border-color:#c88a45;
}

/* CONTACT */

.contact-item{
    color:#ccc;
    margin-bottom:22px;
    line-height:30px;
    font-size:17px;
}

/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter{
    border-top:1px solid rgba(255,255,255,0.08);
    border-bottom:1px solid rgba(255,255,255,0.08);

    padding:45px 0;
}

.newsletter-content{
    width:85%;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.newsletter-content h2{
    font-size:38px;
    margin-bottom:10px;
}

.newsletter-content p{
    color:#bbb;
    font-size:17px;
}

/* FORM */

.newsletter-form{
    display:flex;
    width:550px;
    max-width:100%;
}

.newsletter-form input{
    flex:1;

    height:65px;

    border:none;
    outline:none;

    padding:0 20px;

    font-size:16px;

    background:#1a1a1a;
    color:#fff;
}

.newsletter-form button{
    border:none;
    background:#c88a45;
    color:#fff;

    padding:0 35px;

    font-weight:700;
    letter-spacing:2px;

    cursor:pointer;
    transition:0.3s;
}

.newsletter-form button:hover{
    background:#a56f35;
}

/* =========================================================
   BOTTOM FOOTER
========================================================= */

.footer-bottom{
    width:85%;
    margin:auto;

    padding:30px 0;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.footer-bottom p{
    color:#aaa;
    font-size:15px;
}

.bottom-links{
    display:flex;
    gap:25px;
}

.bottom-links a{
    color:#aaa;
    text-decoration:none;
    transition:0.3s;
}

.bottom-links a:hover{
    color:#c88a45;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .footer-top{
        grid-template-columns:1fr 1fr;
    }

    .newsletter-content{
        flex-direction:column;
        align-items:flex-start;
    }

    .newsletter-form{
        width:100%;
    }
}

@media(max-width:768px){

    .footer-top{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .bottom-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .newsletter-content h2{
        font-size:30px;
    }

    .newsletter-form{
        flex-direction:column;
        gap:15px;
    }

    .newsletter-form button{
        height:60px;
    }
}

/* 
.carousel-item {
    padding: 20px 0;
}

.room-card {
    max-width: 950px;
    margin: auto;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .room-card {
        flex-direction: column;
    }

    .room-image img {
        height: 250px;
    }
} */

#preloader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    flex-direction: column;
    overflow: hidden;
}

/* container */
.loader-content {
    text-align: center;
}

/* DRONE BASE STATE */
.drone {
    width: 130px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.2));
    animation: hoverIdle 2s ease-in-out infinite;
}

/* TEXT */
.loading-text {
    color: #fff;
    margin-top: 15px;
    font-family: Poppins, sans-serif;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* idle hover */
@keyframes hoverIdle {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* TAKEOFF STATE */
#preloader.takeoff .drone {
    animation: takeOff 1.2s ease-in forwards;
}

#preloader.takeoff .loading-text {
    opacity: 0;
    transition: 0.4s ease;
}

/* DRONE TAKEOFF MOTION */
@keyframes takeOff {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    40% {
        transform: translateY(-30px) scale(1.05);
    }

    100% {
        transform: translateY(-200px) scale(0.8);
        opacity: 0;
    }
}

/* FINAL FADE OUT */
#preloader.fade-out {
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

/* =========================================================
   FULL SCREEN GLASS NAV
========================================================= */

  /* =========================================================
           FULL SCREEN GLASS NAV - FIXED FOR SMALL SCREENS (NO HIDDEN ISSUES)
        ========================================================= */
        .top-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.92);
            backdrop-filter: blur(18px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.5s ease, visibility 0.5s ease;
            overflow-y: auto;        /* allows scroll if content overflows (very safe) */
            padding: 20px;
        }

        .top-nav.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 40px;
            color: #fff;
            cursor: pointer;
            z-index: 100;
        }

        .nav-logo {
            color: #fff;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            animation: logoGlow 2s infinite;
        }

        @keyframes logoGlow {
            0%,100% { text-shadow: 0 0 5px #fff; }
            50% { text-shadow: 0 0 20px #00c2ff; }
        }

        .lang-switch {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
        }

        .lang-switch button {
            background: transparent;
            border: 1px solid #fff;
            color: #fff;
            padding: 5px 10px;
            cursor: pointer;
            transition: 0.3s;
        }

        .lang-switch button.active,
        .lang-switch button:hover {
            background: #00c2ff;
            border-color: #00c2ff;
        }

        .nav-links {
            list-style: none;
            padding: 0;
            text-align: center;
        }

        .nav-links li {
            margin: 15px 0;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.5s forwards;
        }

        .top-nav.active .nav-links li:nth-child(1) { animation-delay: 0.2s; }
        .top-nav.active .nav-links li:nth-child(2) { animation-delay: 0.3s; }
        .top-nav.active .nav-links li:nth-child(3) { animation-delay: 0.4s; }
        .top-nav.active .nav-links li:nth-child(4) { animation-delay: 0.5s; }
        .top-nav.active .nav-links li:nth-child(5) { animation-delay: 0.6s; }
        .top-nav.active .nav-links li:nth-child(6) { animation-delay: 0.7s; }

        .nav-links a {
            color: #fff;
            font-size: 28px;
            text-decoration: none;
            transition: 0.3s;
        }

        .nav-links a:hover {
            color: #00c2ff;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .nav-book {
            margin-top: 30px;
            padding: 12px 25px;
            background: #00c2ff;
            color: #000;
            text-decoration: none;
            font-weight: 600;
            border-radius: 30px;
            transition: 0.3s;
        }

        .nav-book:hover {
            background: #fff;
        }

        /* force all menu content visible and clickable on small screens */
        @media (max-width: 768px) {
            .nav-links a {
                font-size: 22px;
            }
            .close-btn {
                top: 15px;
                right: 20px;
                font-size: 36px;
            }
            .top-nav {
                justify-content: center;
                padding: 30px 20px;
            }
            .nav-links li {
                margin: 12px 0;
            }
        }


/* =========================================================
   LUXURY ROOMS SECTION
========================================================= */

.luxury-rooms-section{
    position:relative;
    width:100%;
    padding:100px 5%;
    overflow:hidden;
    background:url('https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
}

.rooms-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
}

.rooms-container{
    position:relative;
    z-index:2;
    max-width:1600px;
    margin:auto;
}

/* =========================================================
   TITLE
========================================================= */

.rooms-title{
    text-align:center;
    margin-bottom:70px;
}

.rooms-title h2{
    color:#fff;
    font-size:52px;
    font-weight:700;
    margin-bottom:15px;
    letter-spacing:2px;
}

.title-line{
    width:90px;
    height:3px;
    background:#d89b47;
    margin:auto;
}

/* =========================================================
   4 COLUMN GRID
========================================================= */

.rooms-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:30px;
}

/* =========================================================
   ROOM CARD
========================================================= */

.room-card{
    background:rgba(20,20,20,0.65);
    backdrop-filter:blur(6px);
    overflow:hidden;
    transition:0.4s ease;
    border:1px solid rgba(255,255,255,0.08);
}

.room-card:hover{
    transform:translateY(-10px);
}

.room-image{
    position:relative;
    width:100%;
    height:260px;
    overflow:hidden;
}

.room-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

.room-card:hover img{
    transform:scale(1.08);
}

/* =========================================================
   BADGE
========================================================= */

.room-badge{
    position:absolute;
    top:15px;
    right:15px;
    background:#d89b47;
    color:#fff;
    font-size:11px;
    letter-spacing:2px;
    padding:8px 14px;
    font-weight:600;
}

/* =========================================================
   CONTENT
========================================================= */

.room-content{
    padding:25px;
    color:#fff;
}

.room-meta{
    display:flex;
    gap:20px;
    margin-bottom:18px;
    font-size:15px;
    color:#ddd;
}

.room-content h3{
    font-size:28px;
    letter-spacing:3px;
    margin-bottom:20px;
}

.room-content p{
    line-height:1.8;
    color:#ddd;
    margin-bottom:28px;
    font-size:15px;
}

/* =========================================================
   BUTTON
========================================================= */

.book-btn{
    display:block;
    width:100%;
    text-align:center;
    padding:14px;
    border:1px solid rgba(255,255,255,0.2);
    color:#fff;
    text-decoration:none;
    letter-spacing:2px;
    transition:0.4s ease;
    font-weight:600;
}

.book-btn:hover{
    background:#d89b47;
    border-color:#d89b47;
}

/* =========================================================
   LARGE TABLET
========================================================= */

@media(max-width:1400px){

    .rooms-grid{
        grid-template-columns:repeat(3, 1fr);
    }
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:992px){

    .rooms-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .rooms-title h2{
        font-size:42px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .luxury-rooms-section{
        padding:70px 20px;
    }

    .rooms-grid{
        grid-template-columns:1fr;
    }

    .room-image{
        height:220px;
    }

    .room-content{
        padding:22px;
    }

    .room-content h3{
        font-size:22px;
    }

    .room-content p{
        font-size:14px;
    }

    .rooms-title h2{
        font-size:34px;
    }
}

/* about page style */

/* --- Global Overrides isolated by container layout hierarchy --- */
.about-body-reset {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    color: #ffffff;
    overflow-x: hidden;
}

.about-body-reset *, 
.about-body-reset *::before, 
.about-body-reset *::after {
    box-sizing: border-box;
}

/* --- Hero Section Background Style --- */
.about-hero-container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    /* Main atmospheric background image blurred slightly natively via blend overlay look */
    background: linear-gradient(rgba(24, 20, 16, 0.78), rgba(24, 20, 16, 0.85)), 
                url('../img/drone_01.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-bottom: 80px;
}

/* --- Header & Layout Elements --- */
.about-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    position: relative;
    z-index: 10;
}

.about-logo {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    letter-spacing: 2px;
}

.about-logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    font-weight: bold;
}

.about-logo-sub {
    font-size: 10px;
    text-align: center;
    opacity: 0.8;
    margin-top: -2px;
}

.about-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-bar {
    width: 28px;
    height: 1.5px;
    background-color: #ffffff;
    transition: 0.3s;
}

/* --- Sticky Social Floating Sidebar --- */
.about-social-sidebar {
    position: fixed;
    left: 30px;
    bottom: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.about-social-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.about-social-link:hover {
    color: #cca474;
}

.about-sidebar-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 10px 0;
}

.about-book-now-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* --- Layout Main Wrapper --- */
.about-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Branding Header Row --- */
.about-branding-center {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 60px;
}

.about-brand-cursive {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #cca474;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: -5px;
    text-transform: capitalize;
}

.about-brand-main {
    font-size: 42px;
    letter-spacing: 9px;
    font-weight: 400;
    margin: 0;
    color: #ffffff;
}

/* --- Mid Split Frame Block --- */
.about-split-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

/* Collage System */
.about-image-collage {
    position: relative;
    display: flex;
    height: 380px;
}

.about-img-box {
    position: absolute;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-back {
    width: 250px;
    height: 340px;
    left: 10%;
    top: 0;
    z-index: 1;
}

.about-img-front {
    width: 230px;
    height: 320px;
    left: 45%;
    top: 30px;
    z-index: 2;
}

/* Description Typography Block */
.about-text-description {
    padding-left: 20px;
}

.about-desc-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
}

.about-accent-line-short {
    width: 50px;
    height: 2px;
    background-color: #cca474;
    margin-bottom: 25px;
}

.about-desc-paragraph {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    margin-bottom: 30px;
    text-align: justify;
}

.about-btn-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-btn-action i {
    font-size: 9px;
    color: #cca474;
}

.about-btn-action:hover {
    background-color: #cca474;
    border-color: #cca474;
    color: #121212;
}

.about-btn-action:hover i {
    color: #121212;
}

/* --- Grid Section Component --- */
.about-facilities-section {
    margin-top: 60px;
}

.about-facilities-title {
    text-align: center;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.about-accent-line-center {
    width: 40px;
    height: 2px;
    background-color: #cca474;
    margin: 0 auto 50px auto;
}

.about-facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 50px;
    row-gap: 40px;
}

.about-facility-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-icon-box {
    background-color: #dfb17b;
    color: #121212;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.about-facility-info h4 {
    margin: 0 0 8px 0;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.about-facility-info p {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
}

/* --- Perfect Responsiveness Media Queries --- */

@media (max-width: 1024px) {
    .about-facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-split-section {
        gap: 30px;
    }
    .about-img-back { left: 5%; }
    .about-img-front { left: 45%; }
}

@media (max-width: 768px) {
    .about-header {
        padding: 20px 30px;
    }
    .about-social-sidebar {
        display: none; /* Hide sticky text ribbon on small screens for visual layout breathing space */
    }
    .about-content-wrapper {
        padding: 0 30px;
    }
    .about-split-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-image-collage {
        justify-content: center;
        height: 360px;
    }
    .about-img-back {
        left: 15%;
    }
    .about-img-front {
        left: 48%;
    }
    .about-text-description {
        padding-left: 0;
        text-align: center;
    }
    .about-accent-line-short {
        margin: 0 auto 25px auto;
    }
    .about-desc-paragraph {
        text-align: center;
    }
}

@media (max-width: 580px) {
    .about-facilities-grid {
        grid-template-columns: 1fr;
        row-gap: 35px;
    }
    .about-brand-main {
        font-size: 32px;
        letter-spacing: 5px;
    }
    .about-image-collage {
        height: 310px;
    }
    .about-img-back {
        width: 180px;
        height: 260px;
        left: 10%;
    }
    .about-img-front {
        width: 170px;
        height: 240px;
        left: 48%;
        top: 40px;
    }
}

/* the css for contact page  */
/* --- Global Body Setup & Canvas Standardization --- */
.contact-body-reset {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    background-color: #0c0f12;
    color: #ffffff;
    overflow-x: hidden;
}

.contact-body-reset *,
.contact-body-reset *::before,
.contact-body-reset *::after {
    box-sizing: border-box;
}

/* --- Hero Frame Canvas Structure with Full Overlay Background styling --- */
.contact-main-hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    /* Rich natural environment layout mirroring template file specifications */
    background: linear-gradient(rgba(14, 18, 22, 0.55), rgba(10, 14, 18, 0.7)), 
                url('../img/contact_bg_01.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* --- Layout Navigation Top Level Branding Elements --- */
.contact-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 45px;
    position: relative;
    z-index: 10;
}

.contact-logo-block {
    display: flex;
    flex-direction: column;
    letter-spacing: 2px;
}

.contact-logo-cursive {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    font-weight: bold;
    color: #ffffff;
}

.contact-logo-subtext {
    font-size: 10px;
    text-align: center;
    opacity: 0.85;
    margin-top: -3px;
    color: #ffffff;
}

.contact-burger-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.contact-burger-line {
    width: 26px;
    height: 1.5px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* --- Floating Absolute Layout Sidebar Ribbon Component --- */
.contact-left-sidebar {
    position: fixed;
    left: 30px;
    bottom: 12%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 10;
}

.contact-social-icon {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-social-icon:hover {
    color: #dfb17b;
}

.contact-sidebar-line {
    width: 1px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.25);
    margin: 8px 0;
}

.contact-vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* --- Grid Flow Central Core Wrapper Layout Architecture --- */
.contact-layout-wrapper {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 40px 100px 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- Header Section Branding Component Titles --- */
.contact-titles-centered {
    text-align: center;
    margin-bottom: 45px;
}

.contact-title-cursive {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #dfb17b;
    font-size: 30px;
    font-weight: 400;
    margin: 0 0 -8px 0;
    text-transform: capitalize;
}

.contact-title-bold {
    font-size: 40px;
    letter-spacing: 8px;
    font-weight: 500;
    margin: 0;
    color: #ffffff;
}

/* --- Central Panel Grid Container Framework Layout --- */
.contact-dashboard-panel {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    background-color: rgba(20, 24, 28, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
    min-height: 520px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45);
}

/* Left Section Panels Elements Setup */
.contact-left-form-panel {
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-offices-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 25px;
}

.contact-office-heading {
    font-size: 13px;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info-item {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.contact-label-gold {
    color: #dfb17b;
    font-weight: 400;
    display: inline-block;
    width: 65px;
}

/* Interactive Input Elements Fields Layout Layout */
.contact-interactive-form {
    display: flex;
    flex-direction: column;
}

.contact-form-heading {
    font-size: 13px;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.contact-form-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-fields-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-input-group, .contact-textarea-group {
    width: 100%;
}

.contact-input-field {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    outline: none;
    transition: all 0.3s ease;
}

.contact-input-field:focus {
    border-color: #dfb17b;
    background-color: rgba(255, 255, 255, 0.08);
}

.contact-textarea-field {
    width: 100%;
    height: 129px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    outline: none;
    resize: none;
    transition: all 0.3s ease;
}

.contact-textarea-field:focus {
    border-color: #dfb17b;
    background-color: rgba(255, 255, 255, 0.08);
}

/* Captcha Components & Submit Styling */
.contact-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-recaptcha-mock {
    background-color: #f9f9f9;
    color: #000000;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    width: 270px;
    height: 74px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
}

.contact-captcha-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-captcha-checkbox {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.contact-captcha-label {
    font-size: 13px;
    font-family: Roboto, Arial, sans-serif;
    font-weight: 400;
    color: #212529;
}

.contact-captcha-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.contact-captcha-logo {
    width: 28px;
    height: 28px;
}

.contact-captcha-subtext {
    font-size: 8px;
    color: #555555;
    font-weight: 500;
    margin-top: 2px;
}

.contact-captcha-policy-links {
    font-size: 7px;
    color: #777777;
    margin-top: 1px;
}

.contact-captcha-policy-links a {
    color: #777777;
    text-decoration: none;
}

.contact-submit-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    padding: 13px 28px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background-color: #dfb17b;
    border-color: #dfb17b;
    color: #0c0f12;
}

/* Right Side Map Container Panel Properties */
.contact-right-map-panel {
    width: 100%;
    height: 100%;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-map-frame-container {
    width: 100%;
    height: 100%;
    min-height: 100%;
}

.contact-embedded-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(0.2) contrast(1.05);
}

/* --- Layout Base Global Footer Element Architecture --- */
.contact-footer-bar {
    width: 100%;
    background-color: rgba(10, 12, 14, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 50px;
    z-index: 5;
}

.contact-copyright-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-footer-link {
    color: #dfb17b;
    text-decoration: none;
}

.contact-footer-social-group {
    display: flex;
    gap: 18px;
}

.contact-foot-link {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-foot-link:hover {
    color: #dfb17b;
}

/* --- Complete Responsiveness Media Query Breakpoints --- */

@media (max-width: 1140px) {
    .contact-dashboard-panel {
        grid-template-columns: 1fr; /* Stack panels vertically on smaller viewports */
    }
    .contact-right-map-panel {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        height: 380px;
    }
}

@media (max-width: 768px) {
    .contact-header-bar {
        padding: 20px 30px;
    }
    .contact-left-sidebar {
        display: none; /* Hide sticky fixed vertical ribbons on smaller tablet scales */
    }
    .contact-layout-wrapper {
        padding: 20px 20px 60px 20px;
    }
    .contact-left-form-panel {
        padding: 30px;
    }
    .contact-footer-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 30px;
    }
}

@media (max-width: 580px) {
    .contact-offices-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .contact-form-split-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .contact-textarea-field {
        height: 110px;
    }
    .contact-action-row {
        flex-direction: column;
        align-items: stretch;
    }
    .contact-recaptcha-mock {
        width: 100%;
        max-width: 270px;
        margin: 0 auto;
    }
    .contact-submit-btn {
        width: 100%;
        text-align: center;
    }
    .contact-title-bold {
        font-size: 32px;
        letter-spacing: 5px;
    }
}

/* gallery page style */

/* --- Canvas Normalization & Structural Resets --- */
.gallery-body-reset {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    background-color: #0e1317;
    color: #ffffff;
    overflow-x: hidden;
}

.gallery-body-reset *,
.gallery-body-reset *::before,
.gallery-body-reset *::after {
    box-sizing: border-box;
}

/* --- Ambient Main Background Component Wrapper Styling --- */
.gallery-hero-container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    /* Soft out-of-focus background treatment echoing template specs */
    background: linear-gradient(rgba(14, 19, 23, 0.45), rgba(10, 14, 18, 0.55)), 
                url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-bottom: 80px;
}

/* --- Header Layout Structural Elements --- */
.gallery-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    position: relative;
    z-index: 10;
}

.gallery-logo-block {
    display: flex;
    flex-direction: column;
    letter-spacing: 2px;
}

.gallery-logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    font-weight: bold;
    color: #ffffff;
}

.gallery-logo-sub {
    font-size: 10px;
    text-align: center;
    opacity: 0.8;
    margin-top: -3px;
    color: #ffffff;
}

.gallery-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.gallery-burger-line {
    width: 26px;
    height: 1.5px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* --- Fixed Absolute Floating Left Sidebar Ribbon Component --- */
.gallery-vertical-sidebar {
    position: fixed;
    left: 30px;
    bottom: 12%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 10;
}

.gallery-social-icon {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gallery-social-icon:hover {
    color: #cca474;
}

.gallery-sidebar-divider {
    width: 1px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.25);
    margin: 8px 0;
}

.gallery-book-now-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* --- Content Alignments Structural Framework --- */
.gallery-content-wrapper {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 50px 40px 80px; /* Accounts beautifully for side ribbon constraints */
}

/* --- Advanced Masonry Spatial Grid Configuration Engine --- */
.gallery-masonry-grid {
    display: grid;
    /* Balanced 3-column structural layout logic */
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
}

/* Core Base Gallery Tile Properties */
.gallery-grid-item {
    position: relative;
    overflow: hidden;
    background-color: #0c0f12;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Elegant Micro-Interaction Hover States */
.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 19, 23, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item-overlay i {
    color: #ffffff;
    font-size: 22px;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.gallery-grid-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-grid-item:hover .gallery-item-overlay i {
    transform: scale(1);
}

/* Masonry Aspect Ratio Blueprint Multi-row Track Spans */
.gallery-size-standard {
    grid-row: span 1;
}

.gallery-size-tall {
    grid-row: span 2;
}

.gallery-size-wide {
    grid-column: span 2;
    grid-row: span 1;
}

/* --- Lightbox Structural Portal View Overlay Component --- */
.gallery-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 14, 18, 0.95);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 40px;
}

.gallery-lightbox-modal.gallery-portal-active {
    opacity: 1;
    pointer-events: auto;
}

.gallery-lightbox-content {
    max-width: 90%;
    max-height: 85%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.gallery-lightbox-img {
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Portal UI Buttons */
.gallery-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 44px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.gallery-lightbox-close:hover {
    color: #cca474;
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

.gallery-lightbox-nav:hover {
    background-color: #cca474;
    border-color: #cca474;
    color: #0e1317;
}

.gallery-nav-left { left: 40px; }
.gallery-nav-right { right: 40px; }

/* --- Responsive Media Query Breakpoints Layout System --- */

@media (max-width: 1024px) {
    .gallery-content-wrapper {
        padding: 20px 40px 40px 40px;
    }
    .gallery-vertical-sidebar {
        display: none; /* Hide sticky left ribbon track for breathing room on mobile */
    }
    .gallery-masonry-grid {
        grid-template-columns: repeat(2, 1fr); /* Transition seamlessly into 2 column tracks */
        grid-auto-rows: 220px;
    }
    .gallery-size-wide {
        grid-column: span 2; /* Main landscape item takes precedence */
    }
}

@media (max-width: 768px) {
    .gallery-header-bar {
        padding: 20px 30px;
    }
    .gallery-content-wrapper {
        padding: 10px 20px 40px 20px;
    }
    .gallery-lightbox-nav {
        padding: 12px 16px;
        font-size: 14px;
    }
    .gallery-nav-left { left: 15px; }
    .gallery-nav-right { right: 15px; }
}

@media (max-width: 580px) {
    .gallery-masonry-grid {
        grid-template-columns: 1fr; /* Downscales safely to single uniform rows flow on mobile */
        grid-auto-rows: 250px;
    }
    .gallery-size-tall, .gallery-size-wide {
        grid-row: span 1;
        grid-column: span 1;
    }
}

/* service page style */

/* --- Canvas Normalization & Structural Resets --- */
.service-body-reset {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    background-color: #0c0f12;
    color: #ffffff;
    overflow-x: hidden;
}

.service-body-reset *,
.service-body-reset *::before,
.service-body-reset *::after {
    box-sizing: border-box;
}

/* --- Ambient Main Background Component Wrapper Styling --- */
.service-hero-container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    background: linear-gradient(rgba(14, 18, 22, 0.45), rgba(10, 14, 18, 0.65)), 
                url('https://images.unsplash.com/photo-1618773928121-c32242e63f39?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* --- Header Layout Structural Elements --- */
.service-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 45px;
    position: relative;
    z-index: 10;
}

.service-logo-block {
    display: flex;
    flex-direction: column;
    letter-spacing: 2px;
}

.service-logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    font-weight: bold;
    color: #ffffff;
}

.service-logo-sub {
    font-size: 10px;
    text-align: center;
    opacity: 0.85;
    margin-top: -3px;
    color: #ffffff;
}

.service-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.service-burger-line {
    width: 26px;
    height: 1.5px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* --- Fixed Absolute Floating Left Sidebar Ribbon Component --- */
.service-vertical-sidebar {
    position: fixed;
    left: 30px;
    bottom: 12%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 10;
}

.service-social-icon {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-social-icon:hover {
    color: #dfb17b;
}

.service-sidebar-divider {
    width: 1px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.25);
    margin: 8px 0;
}

.service-book-now-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* --- Layout Main Content Flow Constraints Wrapper --- */
.service-content-wrapper {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 40px 80px 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- Branding Header Central Headers --- */
.service-titles-centered {
    text-align: center;
    margin-bottom: 35px;
}

.service-title-cursive {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #dfb17b;
    font-size: 30px;
    font-weight: 400;
    margin: 0 0 -8px 0;
    text-transform: capitalize;
}

.service-title-bold {
    font-size: 40px;
    letter-spacing: 8px;
    font-weight: 500;
    margin: 0;
    color: #ffffff;
}

/* --- Central Panel Grid Dashboard Card --- */
.service-dashboard-panel {
    background-color: rgba(24, 28, 32, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45);
    padding: 40px;
}

/* Slider Frame Block Components */
.service-slider-row {
    margin-bottom: 30px;
}

.service-slider-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-slide-img {
    height: 250px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.service-dot {
    width: 5px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-dot-active {
    background-color: #dfb17b;
    width: 12px;
    border-radius: 3px;
}

/* Meta Specs Row Bar Setup */
.service-specs-bar {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 10px;
    margin-bottom: 40px;
}

.service-spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 50px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.service-spec-item i {
    color: #dfb17b;
    font-size: 16px;
}

.service-book-btn {
    margin-left: auto;
    background-color: #dfb17b;
    color: #0c0f12;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 10px 24px;
    transition: background-color 0.3s ease;
}

.service-book-btn:hover {
    background-color: #ffffff;
}

/* Split content text block sections */
.service-info-split-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.service-column-heading {
    font-size: 13px;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.service-overview-paragraph {
    font-size: 12px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    text-align: justify;
    margin: 0;
}

.service-facilities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-facility-item {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 300;
}

.service-facility-item i {
    color: #dfb17b;
    font-size: 10px;
}

/* --- Layout Base Global Footer Element Architecture --- */
.service-footer-bar {
    width: 100%;
    background-color: rgba(10, 12, 14, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 50px;
    z-index: 5;
}

.service-copyright-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.service-footer-link {
    color: #dfb17b;
    text-decoration: none;
}

.service-footer-social-group {
    display: flex;
    gap: 18px;
}

.service-foot-link {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-foot-link:hover {
    color: #dfb17b;
}

/* --- Complete Responsiveness Media Query Breakpoints --- */

@media (max-width: 1024px) {
    .service-info-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .service-header-bar {
        padding: 20px 30px;
    }
    .service-vertical-sidebar {
        display: none; /* Hide left ribbon track for breathing room on mobile */
    }
    .service-content-wrapper {
        padding: 20px 20px 60px 20px;
    }
    .service-dashboard-panel {
        padding: 25px;
    }
    .service-slider-container {
        grid-template-columns: 1fr; /* Image tracks stack vertically on tablets */
        gap: 15px;
    }
    .service-slide-img {
        height: 220px;
    }
    .service-specs-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px 5px;
    }
    .service-spec-item {
        margin-right: 0;
    }
    .service-book-btn {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    .service-footer-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 30px;
    }
}

@media (max-width: 580px) {
    .service-title-bold {
        font-size: 32px;
        letter-spacing: 5px;
    }
}

/* term and condition */

/* --- Canvas Normalization & Structural Resets --- */
.terms-body-reset {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    background-color: #0c0f12;
    color: #ffffff;
    overflow-x: hidden;
}

.terms-body-reset *,
.terms-body-reset *::before,
.terms-body-reset *::after {
    box-sizing: border-box;
}

/* --- Ambient Main Background Component Wrapper Styling --- */
.terms-hero-container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    background: linear-gradient(rgba(14, 18, 22, 0.5), rgba(10, 14, 18, 0.7)), 
                url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* --- Header Layout Structural Elements --- */
.terms-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 45px;
    position: relative;
    z-index: 10;
}

.terms-logo-block {
    display: flex;
    flex-direction: column;
    letter-spacing: 2px;
}

.terms-logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    font-weight: bold;
    color: #ffffff;
}

.terms-logo-sub {
    font-size: 10px;
    text-align: center;
    opacity: 0.85;
    margin-top: -3px;
    color: #ffffff;
}

.terms-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.terms-burger-line {
    width: 26px;
    height: 1.5px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* --- Fixed Absolute Floating Left Sidebar Ribbon Component --- */
.terms-vertical-sidebar {
    position: fixed;
    left: 30px;
    bottom: 12%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 10;
}

.terms-social-icon {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-social-icon:hover {
    color: #dfb17b;
}

.terms-sidebar-divider {
    width: 1px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.25);
    margin: 8px 0;
}

.terms-book-now-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* --- Layout Main Content Flow Constraints Wrapper --- */
.terms-content-wrapper {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 40px 80px 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- Branding Header Central Headers --- */
.terms-titles-centered {
    text-align: center;
    margin-bottom: 35px;
}

.terms-title-cursive {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #dfb17b;
    font-size: 30px;
    font-weight: 400;
    margin: 0 0 -8px 0;
    text-transform: capitalize;
}

.terms-title-bold {
    font-size: 40px;
    letter-spacing: 8px;
    font-weight: 500;
    margin: 0;
    color: #ffffff;
}

/* --- Central Panel Grid Dashboard Card --- */
.terms-dashboard-panel {
    background-color: rgba(24, 28, 32, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45);
    padding: 50px;
}

/* Split Column Layout Architecture */
.terms-layout-split-grid {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 50px;
}

/* Left Nav Column */
.terms-nav-column {
    position: sticky;
    top: 40px;
    height: fit-content;
}

.terms-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.terms-nav-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    padding-left: 0;
}

.terms-nav-link:hover, .terms-link-active {
    color: #dfb17b;
    padding-left: 8px;
}

/* Right Content Text Column */
.terms-text-column {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.terms-content-block {
    scroll-margin-top: 40px;
}

.terms-block-heading {
    font-size: 15px;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.terms-accent-line {
    width: 40px;
    height: 1.5px;
    background-color: #dfb17b;
    margin-bottom: 20px;
}

.terms-paragraph {
    font-size: 12.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    text-align: justify;
    margin: 0 0 15px 0;
}

.terms-paragraph:last-child {
    margin-bottom: 0;
}

/* --- Layout Base Global Footer Element Architecture --- */
.terms-footer-bar {
    width: 100%;
    background-color: rgba(10, 12, 14, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 50px;
    z-index: 5;
}

.terms-copyright-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.terms-footer-link {
    color: #dfb17b;
    text-decoration: none;
}

.terms-footer-social-group {
    display: flex;
    gap: 18px;
}

.terms-foot-link {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-foot-link:hover {
    color: #dfb17b;
}

/* --- Complete Responsiveness Media Query Breakpoints --- */

@media (max-width: 992px) {
    .terms-layout-split-grid {
        grid-template-columns: 1fr; /* Stacks column sections into single flow hierarchy */
        gap: 40px;
    }
    .terms-nav-column {
        position: relative;
        top: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 25px;
    }
    .terms-nav-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px 25px;
    }
}

@media (max-width: 768px) {
    .terms-header-bar {
        padding: 20px 30px;
    }
    .terms-vertical-sidebar {
        display: none; /* Safely hide left layout track ribbons on tablets */
    }
    .terms-content-wrapper {
        padding: 20px 20px 60px 20px;
    }
    .terms-dashboard-panel {
        padding: 30px 25px;
    }
    .terms-footer-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 30px;
    }
}

@media (max-width: 580px) {
    .terms-title-bold {
        font-size: 32px;
        letter-spacing: 4px;
    }
    .terms-nav-list {
        flex-direction: column;
        gap: 12px;
    }
}

@media(max-width:768px){
    
    .hide-mobile{
        display:none;
    }

    .fix-mobile {
        margin-top: 15%;
    }

}

.video-frame video{
    width:100%;
    height:100%;
    object-fit:cover; /* fills frame nicely */
    display:block;
}

/* --- Canvas Normalization & Structural Resets --- */
.rooms-body-reset {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    background-color: #0c0f12;
    color: #ffffff;
    overflow-x: hidden;
}

.rooms-body-reset *,
.rooms-body-reset *::before,
.rooms-body-reset *::after {
    box-sizing: border-box;
}

/* --- Ambient Main Background Component Wrapper Styling --- */
.rooms-hero-container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* --- Header Layout Structural Elements --- */
.rooms-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 45px;
    position: relative;
    z-index: 10;
}

.rooms-logo-block {
    display: flex;
    flex-direction: column;
    letter-spacing: 2px;
}

.rooms-logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    font-weight: bold;
    color: #ffffff;
}

.rooms-logo-sub {
    font-size: 10px;
    text-align: center;
    opacity: 0.85;
    margin-top: -3px;
    color: #ffffff;
}

.rooms-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.rooms-burger-line {
    width: 26px;
    height: 1.5px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* --- Fixed Absolute Floating Left Sidebar Ribbon Component --- */
.rooms-vertical-sidebar {
    position: fixed;
    left: 30px;
    bottom: 12%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 10;
}

.rooms-social-icon {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rooms-social-icon:hover {
    color: #dfb17b;
}

.rooms-sidebar-divider {
    width: 1px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.25);
    margin: 8px 0;
}

.rooms-book-now-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* --- Layout Main Content Flow Constraints Wrapper --- */
.rooms-content-wrapper {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 40px 80px 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- Branding Header Central Titles --- */
.rooms-titles-centered {
    text-align: center;
    margin-bottom: 40px;
}

.rooms-title-cursive {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #dfb17b;
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 -8px 0;
    text-transform: capitalize;
}

.rooms-title-bold {
    font-size: 38px;
    letter-spacing: 6px;
    font-weight: 500;
    margin: 0;
    color: #ffffff;
}

/* --- Catalog Grid Display System --- */
.rooms-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

/* Isolated Card Structures */
.rooms-card {
    background-color: rgba(24, 28, 32, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.rooms-card:hover {
    transform: translateY(-5px);
    border-color: rgba(223, 177, 123, 0.4);
}

/* Card Visual Media Block */
.rooms-card-media {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.rooms-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rooms-card:hover .rooms-card-media img {
    transform: scale(1.05);
}

/* "Only X Rooms Left" Alert Ribbon Badge */
.rooms-badge-alert {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #dfb17b;
    color: #0c0f12;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 12px;
}

/* Quick Specs Ribbon Layout */
.rooms-card-specs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 20px;
    gap: 20px;
}

.rooms-spec-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.rooms-spec-meta i {
    color: rgba(255, 255, 255, 0.4);
}

/* Card Content Description Blocks */
.rooms-card-body {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rooms-item-title {
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 14px 0;
}

.rooms-item-desc {
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    margin: 0 0 24px 0;
}

/* Bottom Actions Row */
.rooms-action-link {
    margin-top: auto;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.rooms-action-link i {
    font-size: 9px;
    color: #dfb17b;
    transition: transform 0.3s ease;
}

.rooms-card:hover .rooms-action-link {
    color: #dfb17b;
}

.rooms-card:hover .rooms-action-link i {
    transform: translateX(4px);
}

/* --- Layout Base Global Footer Element Architecture --- */
.rooms-footer-bar {
    width: 100%;
    background-color: rgba(10, 12, 14, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 50px;
    z-index: 5;
}

.rooms-copyright-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.rooms-footer-link {
    color: #dfb17b;
    text-decoration: none;
}

.rooms-footer-social-group {
    display: flex;
    gap: 18px;
}

.rooms-foot-link {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rooms-foot-link:hover {
    color: #dfb17b;
}

/* --- Complete Responsiveness Media Query Breakpoints --- */

@media (max-width: 1024px) {
    .rooms-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .rooms-header-bar {
        padding: 20px 30px;
    }
    .rooms-vertical-sidebar {
        display: none; /* Hide left ribbon track on tablets and small screens */
    }
    .rooms-content-wrapper {
        padding: 20px 20px 60px 20px;
    }
    .rooms-catalog-grid {
        grid-template-columns: 1fr; /* Transitions down into a single card column loop */
        gap: 25px;
    }
    .rooms-footer-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 30px;
    }
}

@media (max-width: 480px) {
    .rooms-title-bold {
        font-size: 30px;
        letter-spacing: 4px;
    }
    .rooms-card-media {
        height: 180px;
    }
}

/* --- Dedicated Stylesheet Isolation Layer for ZanzibarDroneVista --- */

/* Modal Content Panel Wrapper Container (Replicating glass element from image_033766.png) */
.drone-book-glass-card {
    background-color: rgba(36, 33, 31, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 0px !important; /* Premium sharp architectural styling edges */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65) !important;
    padding: 25px 15px !important;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif !important;
}

/* Header Alignment Elements */
.drone-book-card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding-bottom: 20px !important;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drone-book-header-titles {
    display: flex;
    flex-direction: column;
}

.drone-book-cursive {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #dfb17b;
    font-size: 18px;
    letter-spacing: 1px;
}

.drone-book-main-title {
    font-size: 22px !important;
    font-weight: 500 !important;
    letter-spacing: 4px !important;
    color: #ffffff !important;
    margin: 4px 0 0 0 !important;
}

/* Custom Vector/X Close Navigation button overrides */
.drone-book-close-btn {
    filter: invert(1) grayscale(1) brightness(2);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.drone-book-close-btn:hover {
    opacity: 1;
}

/* Structural Grid Sections */
.drone-book-card-body {
    padding: 20px 0 !important;
}

/* Typography Label Resets matching mockup formatting */
.drone-book-label {
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 10px !important;
    font-weight: 500 !important;
    display: block;
}

/* Standardized Custom Input Elements Architecture */
.drone-book-input, 
.drone-book-textarea {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 0px !important;
    color: #ffffff !important;
    font-size: 13px !important;
    padding: 12px 14px !important;
    font-weight: 300 !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
}

.drone-book-input::placeholder,
.drone-book-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

.drone-book-input:focus, 
.drone-book-textarea:focus {
    border-color: #dfb17b !important;
    box-shadow: none !important;
    background-color: rgba(255, 255, 255, 0.02) !important;
}

/* Custom Dynamic Dropdown Component Options Override styling styling */
.drone-book-input option {
    background-color: #24211f !important;
    color: #ffffff !important;
}

/* Custom Minimalist Mock Captcha Container styling from image_033766.png */
.drone-book-captcha-wrapper {
    background-color: #ffffff;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    padding: 10px 14px;
    height: 74px;
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
}

.drone-book-captcha-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.drone-book-checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    user-select: none;
    padding-left: 32px;
}

.drone-book-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.drone-book-checkmark {
    position: absolute;
    top: -12px;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #ffffff;
    border: 2px solid #c1c1c1;
    border-radius: 2px;
}

.drone-book-checkbox-container:hover input ~ .drone-book-checkmark {
    border-color: #b2b2b2;
}

.drone-book-checkbox-container input:checked ~ .drone-book-checkmark {
    background-color: #ffffff;
    border-color: #4a90e2;
}

.drone-book-checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 8px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid #00aa47;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.drone-book-checkbox-container input:checked ~ .drone-book-checkmark::after {
    display: block;
}

.drone-book-captcha-text {
    font-size: 13px;
    color: #000000;
    font-family: Roboto, Arial, sans-serif;
    font-weight: 400;
}

.drone-book-captcha-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.drone-book-captcha-icon {
    font-size: 16px;
    color: #4a90e2;
    margin-bottom: 4px;
}

.drone-book-captcha-subtext {
    font-size: 8px;
    color: #555555;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Premium Main Call to Action Button */
.drone-book-submit-btn {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    padding: 15px 30px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 3px !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.drone-book-submit-btn:hover {
    background-color: #dfb17b !important;
    border-color: #dfb17b !important;
    color: #1c1917 !important;
}

/* Modal Bottom Structural Close row */
.drone-book-card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding-top: 15px !important;
}

.drone-book-close-secondary-btn {
    background: none !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    transition: color 0.3s ease;
}

.drone-book-close-secondary-btn:hover {
    color: #ffffff !important;
}

/* --- Responsive Device Layout Breakpoints --- */
@media (max-width: 767px) {
    .drone-book-glass-card {
        padding: 15px 5px !important;
    }
    .drone-book-main-title {
        font-size: 17px !important;
        letter-spacing: 2px !important;
    }
    .drone-book-submit-btn {
        padding: 12px 20px !important;
    }
}

.floating-btn {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    animation: float 2s ease-in-out infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn i {
    color: #fff;
    font-size: 32px;
}

.floating-btn img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

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

/* Mobile */
@media (max-width: 768px) {
    .floating-btn {
        width: 55px;
        height: 55px;
        right: 15px;
        bottom: 20px;
    }

    .floating-btn i {
        font-size: 28px;
    }

    .floating-btn img {
        width: 32px;
        height: 32px;
    }
}

.hide-mobile {
    display: block;
}

@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }
}



/* =========================
   IMAGE PREVIEW MODAL
========================= */

.image-preview-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
}

.image-preview-modal.active {
    opacity: 1;
    pointer-events: all;
}

.image-preview-content {
    max-width: 90%;
    max-height: 90vh;
    text-align: center;
    position: relative;
}

.image-preview-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain; /* IMPORTANT: keeps original aspect */
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

.image-preview-text {
    color: #fff;
    margin-top: 15px;
}

.image-preview-text h2 {
    margin-bottom: 10px;
    color: #c88a45;
}

.image-close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #c88a45;
    border: none;
    color: #000;
    font-size: 26px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}