/* CSS RESET & VARIABLES */
:root {
    --bg-color: #071a10;
    --gold-accent: #c9a84c;
    --gold-hover: #b08f3b;
    --text-white: #ffffff;
    --text-muted: #a3b8ad;
    --card-bg: #0d2619;
    --glass-bg: rgba(13, 38, 25, 0.45);
    --glass-border: rgba(201, 168, 76, 0.15);
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Poppins', sans-serif;
    --radius: 18px;
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-sans);
    overflow-x: hidden;
    line-height: 1.6;
}

/* UTILITIES & TYPOGRAPHY */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
}

.section-title-tag {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--gold-accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
    font-weight: 600;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subheading {
    font-family: var(--font-sans);
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

.btn-gold {
    display: inline-block;
    background-color: var(--gold-accent);
    color: var(--bg-color);
    padding: 1rem 2.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--gold-accent);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold-accent);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-accent);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
}

.btn-outline-gold:hover {
    border-bottom: 1px solid var(--gold-accent);
    gap: 0.8rem;
}

/* ==========================
   TOP BAR
========================== */

.top-bar {
    background: #071a10f2;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 14px;
    color: #fff;
    padding: 10px 0;
    position: relative;
    z-index: 999;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact,
.top-bar-social {
    display: flex;
    align-items: center;
}

.top-bar-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
}

.top-bar-contact a:hover {
    color: #D4AF37;
}

.top-bar-contact i {
    color: #D4AF37;
    font-size: 14px;
}

.separator {
    margin: 0 18px;
    color: rgba(255,255,255,.35);
}

.top-bar-social {
    gap: 12px;
}

.top-social-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(212,175,55,.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    text-decoration: none;
    transition: all .35s ease;
}

.top-social-icon:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212,175,55,.35);
}

/* ==========================
   Responsive
========================== */

@media (max-width:768px){

    .top-bar{
        padding:12px 0;
    }

    .top-bar-container{
        flex-direction: column;
        gap:12px;
        text-align:center;
    }

    .top-bar-contact{
        flex-direction: column;
        gap:10px;
    }

    .separator{
        display:none;
    }

    .top-bar-social{
        justify-content:center;
    }

}
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}
.top-bar{
    transition: all .3s ease;
    overflow: hidden;
}

.top-bar.hide{
    max-height:0;
    opacity:0;
    padding:0;
}
.top-bar.hide{
    display: none;
}
/* HEADER & NAVIGATION */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 0 0;
}
header.sticky {
    background-color: rgba(7, 26, 16, 0.95);
    backdrop-filter: blur(10px);
    padding: 0 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--glass-border);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Update or add these properties to your existing .logo styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.logo-img {
    width: auto;
    height: 120px; /* Adjust this height to match your navbar style seamlessly */
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.85;
    color: #ffff;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-accent);
    opacity: 1;
}

.nav-btn .btn-gold {
    padding: 0.7rem 1.8rem;
    font-size: 0.8rem;
}

.nav-menu .mobile-only-btn {
    display: none;
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    color: var(--gold-accent);
}

/* HERO SECTION - STRICT LEFT ALIGNED FIXED LAYOUT */
.hero {
    height: 100vh;
    position: relative;
    background: linear-gradient(to right, rgb(3 12 7 / 87%) 35%, rgba(7, 26, 16, 0.4) 100%), url(images/hero.png) no-repeat center center / cover;
    display: flex;
    align-items: center;
    text-align: left;
    padding-top: 80px;
}

.hero .container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.hero-content {
    max-width: 800px;
    margin-left: 0;
    margin-right: auto;
    padding-top: 100px;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: left;
}

.hero-content h1 span {
    color: var(--gold-accent);
    font-style: italic;
}

.hero-content p {
    font-size: 1.0rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-align: left;
}

/* WIDGET: BOOKING */
.booking-widget-container {
    position: relative;
    margin-top: -30px;
    z-index: 10;
}

.booking-widget {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 2rem;
    align-items: flex-end;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.input-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-accent);
    font-weight: 500;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    right: 1rem;
    color: var(--gold-accent);
    pointer-events: none;
    font-size: 0.9rem;
}

.booking-widget input, .booking-widget select {
    width: 100%;
    background: rgba(7, 26, 16, 0.6);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 6px;
    padding: 1rem;
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
    appearance: none;
    transition: var(--transition);
}

/* ABOUT SECTION */
.about {
    padding: 10rem 0 5rem 0;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.about-left {
    flex: 1;
}

.about-left p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.about-right {
    flex: 1;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 550px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transform: scale(0.95);
    opacity: 0.9;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}

.about-wrapper:hover .about-right {
    transform: scale(1);
    opacity: 1;
}

/* COUNTER SECTION */
.counters {
    padding: 3rem 0;
    background: linear-gradient(to right, #05140c, #0d2619, #05140c);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.counter-item i {
    font-size: 2.2rem;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
}

.counter-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--text-white);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ROOMS SECTION */
.rooms {
    padding: 8rem 0;
}

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

.room-card {
    background-color: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.05);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

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

.room-image img {
    transition: var(--transition);
}

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

.room-info {
    padding: 2rem;
}

.room-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.room-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* SERVICES SECTION */
.services {
    padding: 8rem 0;
    background-color: #05140c;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.service-card:hover {
    background: linear-gradient(145deg, #0d2619, #071a10);
    border-color: var(--gold-accent);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* WHY CHOOSE US */
.why-us {
    padding: 8rem 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-card {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.08));
    transition: var(--transition);
    z-index: -1;
}

.why-card:hover::before {
    top: 0;
}

.why-card:hover {
    border-color: var(--gold-accent);
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(201, 168, 76, 0.1);
}

.why-icon-box {
    width: 70px;
    height: 70px;
    border: 1px solid var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--gold-accent);
    font-size: 1.5rem;
    transition: var(--transition);
}

.why-card:hover .why-icon-box {
    background-color: var(--gold-accent);
    color: var(--bg-color);
    transform: rotateY(360deg);
}

.why-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* FAQ SECTION */
.faq {
    padding: 8rem 0;
    background-color: #05140c;
}

.faq-wrapper {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.faq-left {
    flex: 0.9;
    height: 600px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.faq-right {
    flex: 1.1;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding-bottom: 1.25rem;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 0;
}

.faq-question {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    transition: var(--transition);
}

.faq-header:hover .faq-question {
    color: var(--gold-accent);
}

.faq-icon {
    color: var(--gold-accent);
    font-size: 1rem;
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 1rem 0 0.5rem 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* TESTIMONIALS */
.testimonials {
    padding: 8rem 0;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

.testimonial-track {
    display: flex;
    gap: 2.5rem;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: max-content;
}

.testimonial-card {
    background-color: var(--card-bg);
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(201, 168, 76, 0.05);
    width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.review-text {
    color: var(--text-white);
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.guest-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guest-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold-accent);
}

.guest-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
}

/* CTA SECTION */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(rgb(7 26 16 / 48%), #000000c7), url(images/room2.png) no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
    text-align: center;
}
.cta-content {
    max-width: 650px;
    margin: 0 auto;
}

.cta-content .section-heading {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* GALLERY SECTION */
.gallery {
    padding: 8rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    cursor: pointer;
}

.gallery-item.col-span-2 { grid-column: span 2; }
.gallery-item.row-span-2 { grid-row: span 2; }

.gallery-item img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* LIGHTBOX COMPONENT */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 15, 10, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    border: 2px solid var(--gold-accent);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.2);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--text-white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--gold-accent);
}

/* FOOTER */
footer {
    background-color: #040f0a;
    padding: 6rem 0 2rem 0;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-about .logo-img {
    height: 150px; /* Slightly larger presentation for the footer area layout */
    width: auto;
    object-fit: contain;
}
.footer-about p { color: var(--text-muted); font-size: 0.95rem; max-width: 280px; }
.footer-title { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: var(--gold-accent); margin-bottom: 1.75rem; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold-accent); padding-left: 5px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 1rem; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.footer-contact i { color: var(--gold-accent); margin-top: 3px; }

.social-icons { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-icon { width: 40px; height: 40px; border: 1px solid var(--glass-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: var(--transition); }
.social-icon:hover { border-color: var(--gold-accent); color: var(--gold-accent); background-color: rgba(201, 168, 76, 0.05); }

.footer-bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.footer-bottom span a { color: var(--gold-accent); }

/* RESPONSIVE DESIGN & MOBILE DRAWER FIXES */
@media (max-width: 1200px) {
    .container { padding: 0 2rem; }
    .hero-content h1 { font-size: 4rem; }
    .about-wrapper { gap: 3rem; }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

@media (max-width: 992px) {
    .hero {
        background: linear-gradient(to right, rgba(7, 26, 16, 0.95) 60%, rgba(7, 26, 16, 0.6) 100%), 
                    url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&q=80&w=1400') no-repeat center center/cover;
    }
    .hero-content h1 { font-size: 3.5rem; text-align: left; }
    .hero-content p { font-size: 1.1rem; text-align: left; }

    .mobile-menu-toggle {
        display: block !important;
        position: relative;
        z-index: 1002;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #05140c;
        border-left: 1px solid var(--glass-border);
        flex-direction: column;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        z-index: 1001;
    }

    .nav-menu.open {
        right: 0 !important;
    }

    .nav-btn {
        display: none;
    }
    
    .nav-menu .mobile-only-btn {
        display: block;
        width: 100%;
    }

    .booking-widget { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .about-wrapper { flex-direction: column; }
    .about-right { height: 400px; width: 100%; }
    .counters-grid { grid-template-columns: repeat(2, 1fr); }
    .rooms-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-wrapper { flex-direction: column; }
    .faq-left { display: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

@media (max-width: 576px) {
    .container { padding: 0 1.5rem; }
    .hero-content h1 { font-size: 2.8rem; }
    .booking-widget { grid-template-columns: 1fr; }
    .counters-grid { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .gallery-item.col-span-2 { grid-column: auto; }
    .gallery-item.row-span-2 { grid-row: auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; }
}


/* ------ ABOUT SECTION ---- */

/* ==========================================================================
   ABOUT US DEDICATED PAGE LAYOUTS
   ========================================================================== */

/* Inner Page Hero Header Banner Setup */
.inner-hero {
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(#000000, #000000b5), url(images/banner.png) no-repeat center center / cover;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

.inner-hero h1 {
    font-family: var(--font-serif);
    font-size: 4.4rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.inner-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
}

/* Page Deep Story Blocks Layout */
.about-page-story {
    padding: 8rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.story-left p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.story-right .story-img-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    height: 480px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.4);
    border: 1px solid var(--glass-border);
}

/* Core Brand Values Segment */
.core-values {
    padding: 8rem 0;
    /*background-color: ;*/
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.value-card {
    background-color: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--gold-accent);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(201, 168, 76, 0.08);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN REFINEMENTS FOR ABOUT PAGE
   ========================================================================== */
@media (max-width: 992px) {
    .inner-hero h1 { font-size: 3.5rem; }
    .story-grid { grid-template-columns: 1fr; gap: 3rem; }
    .story-right .story-img-wrapper { height: 350px; }
    .values-grid { grid-template-columns: 1fr; }
}
/* ==========================================================================
   MISSION, VISION, & WHO WE ARE FLEX STYLES
   ========================================================================== */

.mv-flex-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #05140c 0%, #05140c 100%);
    border-top: 1px solid var(--glass-border);
}

.mv-flex-wrapper {
    display: flex;
    gap: 5rem;
    align-items: center;
}

/* Text Column Properties */
.mv-text-column {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.mv-block {
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid rgba(201, 168, 76, 0.15);
    transition: var(--transition);
}

.mv-block:hover {
    border-left-color: var(--gold-accent);
    transform: translateX(5px);
}

.mv-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.mv-number {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-accent);
    letter-spacing: 2px;
}

.mv-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-white);
}

.mv-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 650px;
}

/* Flex Image Column Layout */
.mv-image-column {
    flex: 0.8;
    position: relative;
}

.mv-image-container {
    position: relative;
    height: 600px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.mv-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.mv-image-container:hover img {
    transform: scale(1.04);
}

/* Premium Floating Badge overlaying the Image */
.mv-image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(4, 15, 10, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid var(--gold-accent);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.mv-image-badge h4 {
    font-family: var(--font-serif);
    color: var(--gold-accent);
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.mv-image-badge p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-white);
}

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
    .mv-flex-wrapper {
        flex-direction: column-reverse; /* Keeps textual importance on top across mobile layouts */
        gap: 4rem;
    }
    
    .mv-image-column {
        width: 100%;
    }
    
    .mv-image-container {
        height: 400px;
    }
}


/* ==========================================================================
   ADDED LUXURY MODULE CONFIGURATIONS
   ========================================================================== */
.section-padding { padding: 7.5rem 0; }
.bg-black-tint { background-color: #05140c; }

.center-section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

/* Glassmorphism Structural Cards */
.premium-glass-card {
    background: #071a0f;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* Why Choose Us Grid Structures */
.hex-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.feature-lift-card { text-align: center; padding: 4rem 2.5rem; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.feature-lift-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.08);
}
.feature-vector { font-size: 2.5rem; color: #D4AF37; margin-bottom: 1.5rem; display: block; }
.feature-lift-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.85rem; margin: 0 0 1rem 0; font-weight: 500; color: #FFFFFF; }
.feature-lift-card p { color: #A0A0A0; font-size: 0.95rem; line-height: 1.7; margin: 0; }

/* Inlined Amenities Layout Blueprint */
.amenities-matrix-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.amenity-inline-node {
    background: #071a0f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.8rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.3s ease;
}
.amenity-inline-node:hover { border-color: #D4AF37; background: rgba(212, 175, 55, 0.03); }
.amenity-inline-node i { font-size: 1.5rem; color: #D4AF37; }
.amenity-inline-node span { font-size: 1.05rem; font-weight: 500; color: #FFFFFF; letter-spacing: 0.5px; }


/* Responsiveness Media Adaptations */
@media (max-width: 1200px) {
    .hex-features-grid, .testimonials-tri-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-matrix-layout { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .hex-features-grid, .testimonials-tri-grid, .amenities-matrix-layout { grid-template-columns: 1fr; gap: 2rem; }
    .section-padding { padding: 5rem 0; }
}

/*----------------Rooms Section---------------*/

/* ==========================================================================
   ACCOMMODATIONS STYLING ENGINES
   ========================================================================== */
.rooms-showcase-stack {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.room-horizontal-card {
    display: grid;
    grid-template-columns: 45% 55%;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.room-card-img {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
}

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

.room-tag-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: #121212;
    color: #D4AF37;
    border: 1px solid #D4AF37;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.room-tag-badge.gold-badge {
    background: #D4AF37;
    color: #0B0B0B;
}

.room-card-details {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-card-details h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: #FFFFFF;
    margin: 0.5rem 0 1.2rem 0;
    font-weight: 600;
}

.room-card-details p {
    color: #A0A0A0;
    font-size: 0.98rem;
    line-height: 1.75;
    margin: 0 0 2rem 0;
}

/* Specs Internal Grid Matrix */
.room-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1.8rem;
}

.spec-node {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #FFFFFF;
    font-size: 0.92rem;
}

.spec-node i {
    color: #D4AF37;
    font-size: 1.1rem;
    width: 20px;
}

/* Premium Perks Strip */
.room-perks-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.room-perks-inline span {
    font-size: 0.85rem;
    color: #A0A0A0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.room-perks-inline i {
    color: #D4AF37;
    font-size: 0.8rem;
}

/* Card Action Strip Elements */
.room-action-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding-top: 1.8rem;
}

.room-pricing .price-label {
    font-size: 0.78rem;
    color: #A0A0A0;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.room-pricing .price-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #D4AF37;
    margin: 0.2rem 0 0 0;
    font-weight: 600;
}

.room-pricing .price-amount span {
    font-size: 0.9rem;
    color: #A0A0A0;
    font-weight: 400;
}

/* Responsive Overrides for Media Engine */
@media (max-width: 992px) {
    .room-horizontal-card {
        grid-template-columns: 1fr;
    }
    .room-card-img {
        min-height: 300px;
    }
    .room-card-details {
        padding: 2.5rem;
    }
}
/* ==========================================================================
   GEOMETRIC ANGULAR CTA STYLES
   ========================================================================== */
.geometric-cta-layer {
    position: relative;
    width: 100%;
    background-color: #051412;
    overflow: hidden;
}

.geo-split-wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 680px;
    position: relative;
}

/* Left Pane Configuration */
.geo-content-pane {
    position: relative;
    background: #05140c;
    padding: 8rem 8% 8rem 12%;
    display: flex;
    align-items: center;
    z-index: 3;
}

/* Internal Luxury Accent Line Frame Box */
.geo-internal-frame {
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 40px;
    right: -40px; /* Extends past the bound to meet the slant edge */
    border: 1px solid rgba(212, 175, 55, 0.2);
    pointer-events: none;
    z-index: 1;
}

.geo-text-holder {
    position: relative;
    z-index: 5;
    max-width: 500px;
}

.geo-content-pane .cta-giant-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    line-height: 1.15;
    color: #FFFFFF;
    font-weight: 600;
    margin: 0.5rem 0 1.5rem 0;
}

.geo-content-pane .cta-descriptive-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: #9cb0ac;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Right Pane Image Masking Setup */
.geo-image-pane {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* This creates the hard geometric slant edge cut */
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    margin-left: -15%;
    width: 115%;
}

.geo-image-pane img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Crisp Gold Edge Border Pin along the geometric cut line */
.geo-slanted-divider {
    position: absolute;
    top: 0;
    left: 15%;
    width: 3px;
    height: 100%;
    background: #D4AF37;
    z-index: 4;
    transform: skewX(-9.5deg); /* Matches polygon angle mapping natively */
    transform-origin: top left;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Responsive Structural Modifications */
@media (max-width: 1024px) {
    .geo-content-pane .cta-giant-heading { font-size: 3rem; }
    .geo-internal-frame { top: 20px; bottom: 20px; left: 20px; right: -20px; }
}

@media (max-width: 992px) {
    .geo-split-wrapper {
        grid-template-columns: 1fr;
    }
    .geo-content-pane {
        padding: 6rem 2.5rem;
    }
    .geo-internal-frame {
        right: 20px; /* Snap frame back into standard box container on mobile stacks */
    }
    .geo-image-pane {
        height: 400px;
        clip-path: none; /* Drop the dynamic structural clip on stacked lists */
        margin-left: 0;
        width: 100%;
    }
    .geo-slanted-divider {
        display: none;
    }
    /* Simple solid bar substitution fallback */
    .geo-content-pane {
        border-bottom: 4px solid #D4AF37;
    }
}

@media (max-width: 576px) {
    .geo-content-pane .cta-giant-heading { font-size: 2.4rem; }
    .geo-image-pane { height: 300px; }
}

/*--------------Service section----------*/

/* ==========================================================================
   ISOLATED PREMIUM SERVICES LAYOUT SYSTEM (CONFLICT FREE)
   ========================================================================== */
.luxury-dark-theme {
    background-color: #071a10 !important;
    color: #A0A0A0 !important;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Fluid Container Wrapper */
.srv-fluid-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Dedicated Service Page Header Hero */
.srv-hero-banner {
    background: linear-gradient(180deg, #121212 0%, #0B0B0B 100%);
    padding: 11rem 0 5rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.srv-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.srv-pre-tag {
    font-family: 'Poppins', sans-serif;
    color: #D4AF37;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.srv-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: #FFFFFF;
    font-weight: 600;
    margin: 0 0 1.2rem 0;
    line-height: 1.2;
}

.srv-sub-paragraph {
    color: #A0A0A0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Core Structural Display Blocks */
.srv-showcase-wrapper {
    padding: 7rem 0;
    background-color: #071a10;
}

.srv-modular-block-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important; /* Forces strict, unbreakable split grids */
    gap: 5rem !important;
    align-items: center !important;
    margin-bottom: 8rem;
    width: 100%;
}

.srv-modular-block-card:last-child {
    margin-bottom: 0;
}

/* Alternate Orientation Swap Engine */
.srv-modular-block-card.srv-reverse-layout {
    grid-template-columns: repeat(2, 1fr) !important;
}
.srv-modular-block-card.srv-reverse-layout .srv-media-viewport {
    order: 2 !important; /* Swaps positioning natively without layout collapse */
}
.srv-modular-block-card.srv-reverse-layout .srv-content-viewport {
    order: 1 !important;
}

/* Graphic Viewport Shield */
.srv-media-viewport {
    position: relative;
    height: 440px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.srv-media-viewport img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.srv-modular-block-card:hover .srv-media-viewport img {
    transform: scale(1.04);
}

/* Content Panel Text Engine */
.srv-content-viewport {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.srv-card-tag {
    font-size: 0.8rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.srv-card-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    color: #FFFFFF;
    font-weight: 600;
    margin: 0 0 1.2rem 0;
    line-height: 1.2;
}

.srv-card-desc {
    font-size: 0.98rem;
    color: #A0A0A0;
    line-height: 1.8;
    margin: 0 0 2rem 0;
}

/* Bullet Point Row Configurations */
.srv-bullet-matrix {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.srv-bullet-node {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.srv-bullet-node i {
    color: #D4AF37;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.srv-bullet-node span {
    color: #E0E0E0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* ==========================================================================
   BREAKPOINTS FOR MOBILE PLATFORMS
   ========================================================================== */
@media (max-width: 992px) {
    .srv-modular-block-card, 
    .srv-modular-block-card.srv-reverse-layout {
        grid-template-columns: 1fr !important; /* Collapses rows back into neat clean vertical block columns */
        gap: 2.5rem !important;
        margin-bottom: 5rem;
    }
    
    .srv-modular-block-card.srv-reverse-layout .srv-media-viewport {
        order: 1 !important; /* Enforces that image always loads first sequentially on mobile screen stacks */
    }
    .srv-modular-block-card.srv-reverse-layout .srv-content-viewport {
        order: 2 !important;
    }
    
    .srv-media-viewport {
        height: 350px;
    }
    
    .srv-main-title {
        font-size: 2.8rem;
    }
    
    .srv-card-heading {
        font-size: 2.1rem;
    }
}

@media (max-width: 576px) {
    .srv-hero-banner {
        padding: 9rem 0 4rem 0;
    }
    .srv-main-title {
        font-size: 2.2rem;
    }
    .srv-media-viewport {
        height: 260px;
    }
    .srv-card-heading {
        font-size: 1.75rem;
    }
    .srv-showcase-wrapper {
        padding: 4rem 0;
    }
}


/*----------Contact page-----*/

/* ==========================================================================
   CONTACT PAGE SPECIFIC ARCHITECTURES
   ========================================================================== */
.cnt-main-section {
    padding: 6rem 0;
    background-color: #071a10;
}

.cnt-fluid-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.cnt-split-layout {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 4rem;
    align-items: start;
}

/* Details Panel Style Parameters */
.cnt-pane-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    color: #FFFFFF;
    font-weight: 600;
    margin: 0.5rem 0 1.2rem 0;
}

.cnt-pane-desc {
    font-size: 0.98rem;
    color: #A0A0A0;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.cnt-info-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cnt-info-node {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem !important;
    border-radius: 12px;
}

.cnt-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cnt-icon-box i {
    color: #D4AF37;
    font-size: 1.2rem;
}

.cnt-text-box h4 {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 0.3rem 0;
}

.cnt-text-box p {
    font-size: 0.9rem;
    color: #A0A0A0;
    margin: 0;
    line-height: 1.5;
}

.cnt-text-box p a {
    color: #A0A0A0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cnt-text-box p a:hover {
    color: #D4AF37;
}

/* Luxury Interactive Input Form Customization */
.cnt-form-pane {
    padding: 3.5rem !important;
    border-radius: 16px;
}

.cnt-luxury-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.cnt-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.cnt-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cnt-input-group label {
    font-size: 0.82rem;
    color: #E0E0E0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.cnt-input-group input,
.cnt-input-group textarea {
    background-color: #06170e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 1rem 1.2rem;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.cnt-input-group input:focus,
.cnt-input-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    background-color: #161616;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.cnt-submit-btn {
    border: none;
    padding: 1.1rem 2rem !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem !important;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 1rem;
    border-radius: 4px;
}

/* Full Width Map Components */
.cnt-map-section {
    width: 100%;
    background-color: #071a10;
}

.cnt-map-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.cnt-map-viewport {
    width: 100%;
    height: 480px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    filter: grayscale(1) invert(0.9) contrast(1.2); /* Inverts map color profiles to sleek luxury dark */
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 992px) {
    .cnt-split-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .cnt-form-pane {
        padding: 2.5rem !important;
    }
}

@media (max-width: 600px) {
    .cnt-form-row {
        grid-template-columns: 1fr;
    }
    .cnt-submit-btn {
        width: 100%;
        text-align: center;
    }
    .cnt-map-viewport {
        height: 350px;
    }
}



/* ==========================================================================
   FOOTER DOUBLE LOGO BALANCING ARCHITECTURE
   ========================================================================== */
/* ==========================================================================
   FOOTER TRIPLE-ZONE LEGAL COMPLIANCE STYLING
   ========================================================================== */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2.5rem;
    margin-top: 3rem;
    text-align: center;
}

/* Left Zone: Hotel Brand */
.footer-bottom-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-mini-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
}

.footer-bottom-left p {
    font-size: 0.85rem;
    color: #8A8A8A;
    margin: 0;
}

/* Center Zone: Legal Documents Nav Array */
.footer-bottom-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.legal-link {
    font-size: 0.82rem;
    font-family: 'Poppins', sans-serif;
    color: #8A8A8A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #D4AF37; /* Elegant gold crossover hover trace */
}

.legal-split {
    color: rgba(212, 175, 55, 0.3);
    font-size: 0.7rem;
    user-select: none;
}

/* Right Zone: Developer Signature System */
.footer-bottom-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.footer-bottom-right p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666666;
    margin: 0;
}

.mckbytes-credit-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.mckbytes-credit-link:hover {
    transform: translateY(-2px);
}

.mckbytes-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Tri-Axis Flex Balance on Medium & Desktop Panels */
@media (min-width: 992px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .footer-bottom-left {
        flex-direction: row;
        gap: 1.5rem;
    }
    .footer-bottom-right {
        align-items: flex-end;
    }
}
.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-left,
.footer-bottom-center,
.footer-bottom-right {
    display: flex;
    align-items: center;
    padding-right: 50px;

}

.footer-bottom-center {
    gap: 20px;
}

.footer-bottom a {
    color: #c9a44c;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}
.footer-bottom-right img{
    height:25px;
    width:auto;
    display:block;
}
/* ==========================================================================
   FLOATING PREMIUM WHATSAPP CUSTOM WIDGET 
   ========================================================================== */
.luxury-whatsapp-anchor {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 9999; /* Guarantees layout prioritization over maps, footers, and dividers */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

/* Core Rounded Vector Icon Base Sphere */
.wa-icon-sphere {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #25D366; /* Authentic WhatsApp Core Hex */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.wa-icon-sphere i {
    color: #FFFFFF;
    font-size: 2.1rem;
    transition: transform 0.4s ease;
}

/* Ambient Pulse Shimmer Ring Layer */
.wa-pulse-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.4;
    animation: luxuryWaPulse 2.3s infinite ease-out;
    pointer-events: none;
}

/* Elite Luxury Brand Tool-tip */
.wa-tooltip-tag {
    position: absolute;
    right: 75px;
    background-color: #121212;
    border: 1px solid rgba(212, 175, 55, 0.3); /* Gold Frame trace */
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(15px);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* ==========================================================================
   INTERACTIVE HOVER & MICRO-ANIMATION STATES
   ========================================================================== */
.luxury-whatsapp-anchor:hover .wa-icon-sphere {
    transform: translateY(-4px);
    background-color: #20ba59;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}

.luxury-whatsapp-anchor:hover .wa-icon-sphere i {
    transform: scale(1.08) rotate(5deg);
}

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

/* Native Vector Radial Pulsation Keyframe Loop */
@keyframes luxuryWaPulse {
    0% {
        transform: scale(1);
        opacity: 0.45;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* ==========================================================================
   RESPONSIVE ADAPTATION ON MOBILE SHIELDS
   ========================================================================== */
@media (max-width: 576px) {
    .luxury-whatsapp-anchor {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    .wa-icon-sphere i {
        font-size: 1.8rem;
    }
    /* Suppress text tags on mobile viewports to prevent layout clamping */
    .wa-tooltip-tag {
        display: none !important;
    }
}