/* ==========================================================================
   Armin Luxury Suite - Premium Style Sheet
   Aesthetic Dark & Gold Theme (Obsidian, Champagne Gold, Cream White)
   ========================================================================== */

/* --- Design Tokens / CSS Variables --- */
:root {
    /* Color Palette */
    --color-bg-darker: #070708;
    --color-bg-dark: #0f0f11;
    --color-bg-light: #16161a;
    --color-primary: #c5a880; /* Champagne Gold / Bronze Muted */
    --color-primary-bright: #d4af37; /* Bright Gold */
    --color-primary-dark: #8e7453;
    --color-text-light: #faf9f6; /* Warm White / Cream */
    --color-text-muted: #b5b3b0; /* Warm Muted Gray */
    --color-text-dark: #1f1f1f;
    --color-whatsapp: #25d366;
    
    /* Layout & Spacing */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-quick: all 0.2s ease;
    --box-shadow-lux: 0 20px 40px rgba(0, 0, 0, 0.5);
    --border-lux: 1px solid rgba(197, 168, 128, 0.15);
    --glass-bg: rgba(15, 15, 17, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.06);
    --glass-blur: blur(16px) saturate(140%);
}

/* --- Global Reset & HTML Standards --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-quick);
}

ul {
    list-style: none;
}

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

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* --- Base Layout Classes --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-darker {
    background-color: var(--color-bg-darker);
}

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

.rounded {
    border-radius: 12px;
}

.shadow {
    box-shadow: var(--box-shadow-lux);
}

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

/* --- Typography System --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-text-light);
}

/* --- Button Component --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: var(--color-bg-darker);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.5);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-bright) 100%);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-primary);
}

.btn-outline:hover {
    background: rgba(197, 168, 128, 0.1);
    color: var(--color-primary-bright);
    border-color: var(--color-primary-bright);
    transform: translateY(-3px);
}

.btn-wa {
    background-color: var(--color-whatsapp);
    color: var(--color-text-light);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
    background-color: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-wa-submit {
    background: linear-gradient(135deg, #128c7e 0%, var(--color-whatsapp) 100%);
    color: var(--color-text-light);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    font-size: 0.9rem;
    padding: 16px 32px;
}

.btn-wa-submit:hover {
    background: linear-gradient(135deg, var(--color-whatsapp) 0%, #34e073 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.btn-nav-wa {
    background: var(--glass-bg);
    color: var(--color-whatsapp);
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 10px 18px;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.btn-nav-wa:hover {
    background: var(--color-whatsapp);
    color: var(--color-text-light);
    border-color: var(--color-whatsapp);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.btn-block {
    display: flex;
    width: 100%;
}

.icon-right {
    margin-left: 8px;
}

/* --- Section Headers --- */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-primary);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.header-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    margin: 15px auto 0 auto;
}

/* ==========================================================================
   Preloader Component
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-darker);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

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

.preloader-title {
    font-size: 3.5rem;
    letter-spacing: 15px;
    margin-left: 15px;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeUpIn 1.2s ease forwards;
}

.preloader-divider {
    width: 0px;
    height: 1px;
    background-color: var(--color-primary);
    margin: 15px auto;
    animation: extendLine 1s ease 0.4s forwards;
}

.preloader-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 8px;
    margin-left: 8px;
    color: var(--color-text-muted);
    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(197, 168, 128, 0.1);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    margin: 40px auto 0 auto;
    animation: spin 1s infinite linear;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards, spin 1s infinite linear;
}

/* ==========================================================================
   Navigation Bar (Header)
   ========================================================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: transparent;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

#main-header.scrolled {
    height: 75px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #fff;
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-top: 2px;
}

.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text-light);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-light);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Mobile Navigation Drawer
   ========================================================================== */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background-color: var(--color-bg-darker);
    border-left: var(--glass-border);
    z-index: 1100;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}

.mobile-drawer.open {
    right: 0;
}

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

.drawer-close {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.drawer-close:hover {
    color: var(--color-primary);
}

.drawer-menu {
    margin: 60px 0;
}

.drawer-menu ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.drawer-link {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.drawer-link:hover {
    color: var(--color-primary);
    padding-left: 10px;
}

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

.drawer-footer p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-bg-darker);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* We'll set background image dynamically or default to a elegant fallback gradient if not found */
    background-image: linear-gradient(rgba(7, 7, 8, 0.4), rgba(7, 7, 8, 0.8)), url('images/pool_night.jpg');
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, var(--color-bg-darker) 90%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 5px;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero-desc {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Scroll Mouse Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
    color: var(--color-text-muted);
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.7;
}

.mouse-scroll {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-text-muted);
    border-radius: 12px;
    position: relative;
    opacity: 0.7;
}

.mouse-scroll::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 2px;
    animation: scrollMouse 1.8s infinite ease-in-out;
}

/* ==========================================================================
   Concept Section
   ========================================================================== */
.concept-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.concept-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.concept-text p {
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(197, 168, 128, 0.1);
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-family: var(--font-body);
    font-weight: 600;
}

.feature-info p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}

.concept-visual {
    position: relative;
}

.main-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.main-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(197, 168, 128, 0.3);
    border-radius: 12px;
    pointer-events: none;
    box-sizing: border-box;
}

.visual-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: var(--color-bg-darker);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--box-shadow-lux);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.2);
    animation: float 4s ease-in-out infinite;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* ==========================================================================
   Suites Section
   ========================================================================== */
.suite-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.suite-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow-lux);
}

.suite-img-wrapper img {
    transition: transform 10s ease;
}

.suite-img-wrapper:hover img {
    transform: scale(1.1);
}

.suite-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(7,7,8,0.5), transparent);
    z-index: 1;
}

.suite-description h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.suite-description p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.suite-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 3px;
    display: block;
    margin-bottom: 8px;
}

.suite-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.spec-card {
    background: var(--color-bg-light);
    border: var(--border-lux);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.spec-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary-bright);
    background: rgba(197,168,128,0.05);
}

.spec-card i {
    font-size: 1.2rem;
    color: var(--color-primary);
}

.spec-card span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.suite-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.price-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* ==========================================================================
   Photo Gallery Section (Grid with Lightbox)
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
}

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

/* Grid layout variations for luxury look */
.gallery-item.large {
    grid-column: span 3;
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    grid-column: span 3;
}

.gallery-item:nth-child(3) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
}

.gallery-item:nth-child(5) {
    grid-column: span 2;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(7, 7, 8, 0.95) 0%, rgba(7, 7, 8, 0.4) 60%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 24px;
}

.gallery-info {
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary-bright);
    margin-bottom: 4px;
    display: block;
}

.gallery-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.gallery-icon-btn {
    width: 44px;
    height: 44px;
    background-color: var(--color-primary);
    color: var(--color-bg-darker);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transform: scale(0.6);
    transition: var(--transition-smooth);
}

/* Hover States */
.gallery-item:hover img {
    transform: scale(1.08);
}

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

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-item:hover .gallery-icon-btn {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================================================
   Booking & Contact Section
   ========================================================================== */
.booking-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

.booking-form-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    padding: 48px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow-lux);
}

/* Luxury card gold glow */
.card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.card-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    display: block;
    margin-bottom: 8px;
}

.booking-form-card h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.form-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--color-primary);
    font-size: 0.9rem;
}

.form-group input, .form-group select {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 14px 18px;
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-quick);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--color-primary-bright);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

/* Form fields date styling */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) sepia(50%) saturate(100%) hue-rotate(5deg);
    cursor: pointer;
}

/* Contact details block */
.contact-details h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-intro {
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-bg-light);
    border: var(--border-lux);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.info-text h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-text p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}

.info-text a:hover {
    color: var(--color-primary-bright);
}

/* Map container stylings */
.map-container {
    height: 200px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-container iframe {
    filter: grayscale(1) invert(0.9) contrast(1.1); /* Elegant dark map effect */
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.map-container:hover iframe {
    filter: none;
    opacity: 1;
}

/* ==========================================================================
   Footer Component
   ========================================================================== */
footer {
    background-color: var(--color-bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: 24px;
}

.footer-links h4, .footer-social h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-primary-bright);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.social-icons a:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-darker);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.3);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

/* ==========================================================================
   Persistent Floating WhatsApp Button
   ========================================================================== */
.floating-wa-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    color: var(--color-text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-smooth);
    animation: waPulse 2s infinite;
}

.floating-wa-btn:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #1ebe57;
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
}

/* WA Button Tooltip */
.floating-wa-btn .tooltip-text {
    visibility: hidden;
    width: 140px;
    background-color: var(--color-bg-darker);
    color: var(--color-text-light);
    text-align: center;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(197, 168, 128, 0.2);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: var(--box-shadow-lux);
}

.floating-wa-btn:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* ==========================================================================
   Lightbox Gallery Modal Component
   ========================================================================== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 7, 8, 0.95);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: transparent;
    border: none;
    color: var(--color-text-light);
    font-size: 2rem;
    cursor: pointer;
    z-index: 2010;
}

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

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-quick);
    z-index: 2010;
}

.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-darker);
    border-color: var(--color-primary);
}

.lightbox-content-wrapper {
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content-wrapper img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.lightbox-caption {
    margin-top: 24px;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 1px;
    text-align: center;
}

/* ==========================================================================
   Animations Keyframes
   ========================================================================== */
@keyframes spin {
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes scrollMouse {
    0% { top: 6px; opacity: 0; }
    30% { opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes extendLine {
    from { width: 0; }
    to { width: 120px; }
}

/* --- Scroll Reveal Animations classes --- */
.reveal, .scroll-reveal, .scroll-reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-left, .scroll-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-right, .scroll-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active, .scroll-reveal.active, 
.reveal-left.active, .scroll-reveal-left.active, 
.reveal-right.active, .scroll-reveal-right.active,
.scroll-reveal-up.active {
    opacity: 1;
    transform: translate(0);
}

/* ==========================================================================
   Language Switcher
   ========================================================================== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.drawer-lang {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 20px 0 10px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-item {
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-quick);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lang-item:hover, .lang-item.active {
    color: var(--color-primary-bright);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.15);
    font-weight: 300;
}

/* ==========================================================================
   Responsive Breakpoints / Media Queries
   ========================================================================== */

/* Laptop / Small Desktop (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .hero-section {
        background-attachment: scroll;
    }
    
    .concept-grid, .suite-detail-grid, .booking-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .concept-visual {
        order: -1;
    }
    
    .visual-badge {
        bottom: 20px;
        right: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 200px;
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .gallery-item:nth-child(2) {
        grid-column: span 2;
    }
}

/* Tablets (max-width: 768px) */
@media screen and (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .suite-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-item:nth-child(2) {
        grid-column: span 2;
    }
    
    .gallery-item:nth-child(3) {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .booking-form-card {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .floating-wa-btn {
        bottom: 24px;
        right: 24px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    
    .floating-wa-btn .tooltip-text {
        display: none; /* Hide on small viewports */
    }
    
    .lightbox-prev, .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .lightbox-prev { left: 16px; }
    .lightbox-next { right: 16px; }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
    }
}

/* Small Mobiles (max-width: 480px) */
@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .visual-badge {
        display: none; /* Remove to save space */
    }
    
    .suite-specs-grid {
        grid-template-columns: 1fr;
    }
    
    .suite-action {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        text-align: center;
    }
}
