/* ==========================================================================
   CITYSCAPE SERVICES - CORE DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
    /* Brand Palette */
    --primary-900: #070F2B;
    --primary-800: #0B192C;
    --primary-700: #1B1A55;
    --primary-600: #1E3E62;
    --primary-500: #0066FF;
    --primary-400: #3B82F6;
    --primary-100: #EFF6FF;
    
    /* Accent & Warm Highlights */
    --accent-gold: #F59E0B;
    --accent-orange: #FF6500;
    --accent-orange-glow: rgba(255, 101, 0, 0.25);
    --accent-green: #10B981;
    
    /* Neutral & Backgrounds */
    --bg-page: #F8FAFC;
    --bg-surface: #FFFFFF;
    --bg-surface-alt: #F1F5F9;
    --bg-dark: #0B192C;
    --bg-darker: #060E1A;
    --border-color: #E2E8F0;
    --border-focus: #3B82F6;
    
    /* Typography */
    --text-main: #1E293B;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --text-white: #FFFFFF;
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing & Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    
    /* Elevations & Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 8px 24px -4px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px -8px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 30px 60px -12px rgba(15, 23, 42, 0.2);
    --shadow-glow: 0 0 25px rgba(0, 102, 255, 0.35);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-page);
    line-height: 1.65;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--primary-500);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-400);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.25;
    font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 4vw + 1rem, 3.75rem); }
h2 { font-size: clamp(1.8rem, 3vw + 0.5rem, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2vw + 0.3rem, 1.85rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Helper Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary-500) !important; }
.text-warning { color: var(--accent-gold) !important; }
.text-danger { color: #EF4444 !important; }
.text-success { color: var(--accent-green) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-white { color: #FFFFFF !important; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.section-padding { padding: 5.5rem 0; }
.section-padding-sm { padding: 3.5rem 0; }
.bg-light { background-color: var(--bg-surface-alt); }
.bg-white { background-color: var(--bg-surface); }
.bg-dark { background-color: var(--bg-dark); color: #FFF; }

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

/* Top Announcement Bar */
.top-bar {
    background: var(--primary-900);
    color: #94A3B8;
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-left .divider {
    opacity: 0.4;
}

.top-link {
    color: #CBD5E1;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
}

.top-link:hover {
    color: #FFFFFF;
}

.top-link.whatsapp-top {
    color: #34D399;
}

.top-link.whatsapp-top:hover {
    color: #6EE7B7;
}

/* Main Header */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all var(--transition-base);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    padding: 0.15rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.site-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

.site-logo:hover .logo-img {
    transform: scale(1.03);
}

/* Desktop Nav */
.desktop-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-orange));
    border-radius: 2px;
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-500);
}

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

/* Header Action Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.btn-phone-quick {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-800);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    background: var(--bg-surface-alt);
    transition: all var(--transition-fast);
}

.btn-phone-quick:hover {
    background: var(--primary-100);
    color: var(--primary-500);
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-500) 0%, #0052cc 100%);
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.45);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #E65A00 100%);
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(255, 101, 0, 0.35);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 101, 0, 0.5);
}

.btn-outline-white {
    background: transparent;
    color: #FFFFFF !important;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
    background: #FFFFFF;
    color: var(--primary-800) !important;
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-500) !important;
    border-color: var(--primary-500);
}

.btn-outline-primary:hover {
    background: var(--primary-500);
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.88rem;
}

.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Mobile Hamburger Menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-box {
    width: 28px;
    height: 20px;
    display: inline-block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 28px;
    height: 3px;
    background-color: var(--primary-800);
    border-radius: 3px;
    position: absolute;
    transition: all var(--transition-fast);
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before {
    content: '';
    top: -8px;
}

.hamburger-inner::after {
    content: '';
    bottom: -8px;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    transition: visibility var(--transition-base);
}

.mobile-drawer.active {
    visibility: visible;
}

.mobile-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 25, 44, 0.65);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.mobile-drawer.active .mobile-drawer-overlay {
    opacity: 1;
}

.mobile-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 360px;
    height: 100%;
    background: #FFFFFF;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: 10;
    overflow-y: auto;
}

.mobile-drawer.active .mobile-drawer-content {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
}

.mobile-nav-list {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-list a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.mobile-nav-list a.active,
.mobile-nav-list a:hover {
    background: var(--primary-100);
    color: var(--primary-500);
}

.mobile-drawer-footer {
    margin-top: auto;
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-surface-alt);
}

.mobile-contact-info p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    padding: 6rem 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 15, 43, 0.92) 0%, rgba(11, 25, 44, 0.82) 60%, rgba(0, 102, 255, 0.35) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: #F8FAFC;
    margin-bottom: 1.5rem;
}

.hero-title {
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #60A5FA 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #E2E8F0;
    line-height: 1.7;
    margin-bottom: 2.2rem;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #CBD5E1;
}

.trust-item i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* Hero Right: Booking Form Card */
.hero-form-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--text-main);
    position: relative;
}

.hero-form-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.hero-form-header h3 {
    color: var(--primary-900);
    font-size: 1.55rem;
    margin-bottom: 0.4rem;
}

.hero-form-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.15rem;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1.1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    background-color: var(--bg-surface-alt);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    background-color: #FFFFFF;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.12);
}

textarea.form-control {
    resize: vertical;
    min-height: 90px;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.9rem;
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar-section {
    background: #FFFFFF;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 10;
    margin-top: -2.5rem;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0 1rem;
    border-right: 1px solid var(--border-color);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: var(--primary-100);
    color: var(--primary-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-info h3 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary-900);
    line-height: 1.1;
}

.stat-info p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3.5rem auto;
}

.section-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--primary-100);
    color: var(--primary-500);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 0.85rem;
}

.section-title {
    color: var(--primary-900);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   ABOUT & WELCOME SECTIONS
   ========================================================================== */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-col-grid.reverse {
    direction: rtl;
}

.two-col-grid.reverse > * {
    direction: ltr;
}

.visual-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.visual-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.visual-image-wrapper:hover .visual-image {
    transform: scale(1.04);
}

.floating-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.floating-badge .badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-orange);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.floating-badge h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-900);
}

.floating-badge p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.content-block h2 {
    color: var(--primary-900);
    margin-bottom: 1.25rem;
}

.content-block .lead-text {
    font-size: 1.12rem;
    font-weight: 500;
    color: var(--primary-600);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.feature-check-list {
    margin: 1.75rem 0 2.2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.feature-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 1rem;
    color: var(--text-main);
}

.feature-check-list li i {
    color: var(--accent-green);
    margin-top: 0.25rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   AMENITIES & FACILITIES GRID (12 ICONS)
   ========================================================================== */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.amenity-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-400);
}

.amenity-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-surface-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.35rem;
    transition: all var(--transition-fast);
    padding: 12px;
}

.amenity-icon-box img {
    max-width: 52px;
    max-height: 52px;
    object-fit: contain;
}

.amenity-card:hover .amenity-icon-box {
    background: var(--primary-100);
    transform: scale(1.1);
}

.amenity-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-900);
    margin-bottom: 0.5rem;
}

.amenity-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   TRUST PILLARS (CO-LIVING VALUES)
   ========================================================================== */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.pillar-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.8rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-orange));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--primary-100);
    color: var(--primary-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.pillar-card h3 {
    font-size: 1.3rem;
    color: var(--primary-900);
    margin-bottom: 0.85rem;
}

.pillar-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ==========================================================================
   ROOM OPTIONS SHOWCASE
   ========================================================================== */
.room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.room-card {
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-400);
}

.room-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.room-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.room-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-900);
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.room-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-content h3 {
    font-size: 1.45rem;
    color: var(--primary-900);
    margin-bottom: 0.5rem;
}

.room-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.room-features span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-700);
    background: var(--primary-100);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.room-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.room-price .starting-at {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.room-price .price-val {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-900);
}

.room-price .price-period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FACILITIES PAGE SPECIFICS
   ========================================================================== */
.page-banner {
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 100%);
    color: #FFFFFF;
    padding: 4.5rem 0;
    text-align: center;
    position: relative;
}

.page-banner h1 {
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #94A3B8;
}

.breadcrumb-nav a {
    color: #CBD5E1;
}

.breadcrumb-nav a:hover {
    color: #FFFFFF;
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    margin-top: 2.5rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
}

.comparison-table th, 
.comparison-table td {
    padding: 1.25rem 1.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--bg-surface-alt);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--primary-900);
}

.comparison-table th.highlight-col,
.comparison-table td.highlight-col {
    background: rgba(0, 102, 255, 0.04);
    font-weight: 600;
}

.comparison-table td i.fa-circle-check {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.comparison-table td i.fa-circle-xmark {
    color: #EF4444;
    font-size: 1.2rem;
}

/* ==========================================================================
   GALLERY PAGE SPECIFICS
   ========================================================================== */
.gallery-filter-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.gallery-filter-btn {
    background: #FFFFFF;
    color: var(--text-main);
    border: 1.5px solid var(--border-color);
    padding: 0.6rem 1.4rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--primary-500);
    color: #FFFFFF;
    border-color: var(--primary-500);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 15, 43, 0.9) 0%, rgba(7, 15, 43, 0.2) 60%, transparent 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    color: #FFFFFF;
    transition: opacity var(--transition-base);
}

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

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

.gallery-overlay h4 {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.gallery-overlay p {
    font-size: 0.85rem;
    color: #E2E8F0;
    margin: 0;
}

.gallery-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #FFFFFF;
    transition: all var(--transition-base);
}

.gallery-item:hover .gallery-zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(7, 15, 43, 0.94);
    backdrop-filter: blur(12px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

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

.lightbox-content {
    max-width: 900px;
    width: 100%;
    text-align: center;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    margin: 0 auto;
}

.lightbox-caption {
    color: #FFFFFF;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #FFFFFF;
    font-size: 2.2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

.lightbox-nav-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

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

/* ==========================================================================
   CONTACT US & FAQ ACCORDION
   ========================================================================== */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-400);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-100);
    color: var(--primary-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem auto;
}

.contact-card h4 {
    font-size: 1.2rem;
    color: var(--primary-900);
    margin-bottom: 0.6rem;
}

.contact-card p, .contact-card a {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
}

.map-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    height: 100%;
    min-height: 480px;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-900);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    transition: transform var(--transition-fast);
    font-size: 0.95rem;
    color: var(--primary-500);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
    background: var(--bg-surface-alt);
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 1.25rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.7;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background: var(--bg-dark);
    color: #94A3B8;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-orange), var(--accent-gold));
}

.footer-top {
    padding: 5rem 0 3.5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1fr 1.3fr;
    gap: 3rem;
}

.footer-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
}

.footer-bio {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #CBD5E1;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #CBD5E1;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.badge-tag i {
    color: var(--accent-gold);
}

.footer-heading {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2.5px;
    background: var(--primary-500);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #94A3B8;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--primary-400);
    transition: transform var(--transition-fast);
}

.footer-links a:hover {
    color: #FFFFFF;
    transform: translateX(4px);
}

.footer-links a:hover i {
    transform: translateX(2px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    font-size: 0.9rem;
    color: #CBD5E1;
}

.footer-contact-list li i {
    color: var(--primary-400);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact-list strong {
    display: block;
    color: #FFFFFF;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.15rem;
}

.footer-contact-list a {
    color: #CBD5E1;
}

.footer-contact-list a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    background: var(--bg-darker);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.88rem;
}

.copyright-text {
    margin: 0;
    color: #94A3B8;
}

.copyright-text strong {
    color: #FFFFFF;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.footer-bottom-links a {
    color: #94A3B8;
}

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

/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */
.floating-cta-container {
    position: fixed;
    bottom: 30px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 1500;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF !important;
    font-size: 1.6rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    border: none;
    position: relative;
    transition: all var(--transition-base);
}

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

.btn-whatsapp {
    background: #25D366;
}

.btn-whatsapp:hover {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp .badge-online {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: #10B981;
    border: 2.5px solid #FFFFFF;
    border-radius: 50%;
}

.btn-call {
    background: var(--primary-500);
    display: none; /* Shown on mobile */
}

.btn-back-to-top {
    background: var(--primary-900);
    font-size: 1.15rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
}

.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-tooltip {
    position: absolute;
    right: 68px;
    background: var(--primary-900);
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
}

/* ==========================================================================
   TOAST ALERTS
   ========================================================================== */
.toast-container {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.95rem;
    font-weight: 600;
    min-width: 280px;
    border-left: 5px solid var(--primary-500);
    animation: toastSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transition: opacity 0.3s, transform 0.3s;
}

.toast.success { border-left-color: var(--accent-green); }
.toast.error { border-left-color: #EF4444; }

@keyframes toastSlideIn {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .room-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .desktop-nav, .btn-phone-quick {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .btn-call {
        display: flex;
    }
    .top-bar {
        display: none;
    }
    .section-padding {
        padding: 3.5rem 0;
    }
    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .stats-bar-section {
        margin-top: 0;
        border-radius: var(--radius-md);
        padding: 1.5rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1.25rem;
    }
    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    .contact-layout-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .hero-form-card {
        padding: 1.75rem 1.25rem;
    }
}
