/* ==========================================================================
   URBAN STAY - PREMIUM BOYS HOSTEL
   CSS Design System & Stylesheet
   Color Palette: Navy (#0B1F3A) + Champagne Gold (#C9A227) + White (#FFFFFF)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & ROOT VARIABLES
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --primary-navy: #0B1F3A;
    --navy-dark: #061224;
    --navy-light: #162E50;
    --navy-card: #0F284B;
    
    --champagne-gold: #C9A227;
    --gold-light: #E5C158;
    --gold-dark: #9A7B1C;
    --gold-glow: rgba(201, 162, 39, 0.25);
    
    --white: #FFFFFF;
    --soft-background: #F7F8FA;
    --surface-card: #FFFFFF;
    
    --text-primary: #172033;
    --text-secondary: #667085;
    --text-muted: #94A3B8;
    --text-on-dark: #E2E8F0;
    
    --border-color: #E2E8F0;
    --border-gold: rgba(201, 162, 39, 0.35);
    --border-gold-solid: #C9A227;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.05);
    --shadow-md: 0 8px 24px rgba(11, 31, 58, 0.08);
    --shadow-lg: 0 16px 40px rgba(11, 31, 58, 0.12);
    --shadow-gold: 0 8px 24px rgba(201, 162, 39, 0.28);
    
    /* Border Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Heights */
    --navbar-height: 80px;
    --mobile-bar-height: 64px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-navy);
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

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

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

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

.section-padding {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
}

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

.section-header .subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--champagne-gold);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Text Highlights & Badges */
.text-gold {
    color: var(--champagne-gold) !important;
}

.badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    color: var(--champagne-gold);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   3. BUTTONS & UI CONTROLS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--champagne-gold) 100%);
    color: var(--primary-navy);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--champagne-gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.45);
}

.btn-navy {
    background-color: var(--primary-navy);
    color: var(--white);
}

.btn-navy:hover {
    background-color: var(--navy-light);
    color: var(--champagne-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-gold {
    background: transparent;
    border-color: var(--champagne-gold);
    color: var(--champagne-gold);
}

.btn-outline-gold:hover {
    background: var(--champagne-gold);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

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

.btn-outline-navy:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    font-weight: 600;
}

.btn-whatsapp:hover {
    background-color: #1EBE5D;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* --------------------------------------------------------------------------
   4. NAVIGATION BAR
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: 1000;
    background: rgba(11, 31, 58, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(6, 18, 36, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 72px;
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand img {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--champagne-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--champagne-gold);
    transition: width var(--transition-fast);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-phone {
    display: flex;
    flex-direction: column;
    text-align: right;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
}

.nav-phone a {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-phone a:hover {
    color: var(--champagne-gold);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Offcanvas Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--navy-dark);
    z-index: 1100;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right var(--transition-normal);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--border-gold);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.mobile-nav-header img {
    height: 42px;
}

.mobile-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.mobile-links a {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-links a.active,
.mobile-links a:hover {
    color: var(--champagne-gold);
    padding-left: 0.5rem;
}

.mobile-nav-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.mobile-contact-item i {
    color: var(--champagne-gold);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    padding-top: calc(var(--navbar-height) + 4rem);
    padding-bottom: 6rem;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-navy) 60%, #102A4E 100%);
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, rgba(11, 31, 58, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, var(--white), transparent);
    pointer-events: none;
    opacity: 0.1;
}

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

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

.hero-tag {
    margin-bottom: 1.2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-title span {
    color: var(--champagne-gold);
    display: block;
}

.hero-subheading {
    font-size: 1.35rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 2.2rem;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.hero-phone-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.phone-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: var(--radius-full);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.phone-chip i {
    color: var(--champagne-gold);
}

.phone-chip:hover {
    background: rgba(201, 162, 39, 0.2);
    border-color: var(--champagne-gold);
    color: var(--white);
}

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

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(201, 162, 39, 0.2);
    border: 2px solid var(--border-gold);
}

.hero-image-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.hero-floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--navy-dark);
    border: 2px solid var(--champagne-gold);
    padding: 1.2rem 1.6rem;
    border-radius: var(--radius-md);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-floating-badge i {
    font-size: 2.2rem;
    color: var(--champagne-gold);
}

.hero-floating-badge .badge-text {
    display: flex;
    flex-direction: column;
}

.hero-floating-badge .badge-text strong {
    font-size: 1.1rem;
    color: var(--white);
}

.hero-floating-badge .badge-text span {
    font-size: 0.85rem;
    color: var(--champagne-gold);
}

/* --------------------------------------------------------------------------
   6. QUICK TRUST BAR
   -------------------------------------------------------------------------- */
.trust-bar-wrapper {
    margin-top: -3.5rem;
    position: relative;
    z-index: 10;
}

.trust-bar {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--champagne-gold);
    padding: 1.8rem 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.5rem;
}

.trust-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(11, 31, 58, 0.04);
    border: 1.5px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.trust-item:hover .trust-icon {
    background: var(--primary-navy);
    color: var(--champagne-gold);
    transform: scale(1.05);
}

.trust-info h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.15rem;
}

.trust-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   7. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-section {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
}

.about-feature-card {
    background: var(--soft-background);
    padding: 1.2rem 1.4rem;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--champagne-gold);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.about-feature-card i {
    color: var(--champagne-gold);
    font-size: 1.2rem;
}

.about-image-stack {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--white);
}

/* --------------------------------------------------------------------------
   8. ROOMS SECTION
   -------------------------------------------------------------------------- */
.rooms-section {
    background-color: var(--soft-background);
}

.attached-bathroom-highlight {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border: 1.5px solid var(--border-gold);
    box-shadow: var(--shadow-md);
}

.attached-bathroom-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.attached-bathroom-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid var(--champagne-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--champagne-gold);
    font-size: 1.6rem;
    flex-shrink: 0;
}

.attached-bathroom-text h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.attached-bathroom-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

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

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
}

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

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

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

.room-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(11, 31, 58, 0.9);
    color: var(--champagne-gold);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid var(--champagne-gold);
    backdrop-filter: blur(4px);
}

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

.room-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

.room-attached-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #10B981;
    font-weight: 600;
    margin-bottom: 1rem;
}

.room-features-list {
    margin-bottom: 1.5rem;
}

.room-features-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.room-features-list li i {
    color: var(--champagne-gold);
    font-size: 0.85rem;
}

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

.room-price-box {
    display: flex;
    flex-direction: column;
}

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

.room-price-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-navy);
}

/* --------------------------------------------------------------------------
   9. FACILITIES SECTION
   -------------------------------------------------------------------------- */
.facilities-section {
    background-color: var(--white);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.facility-card {
    background: var(--soft-background);
    border-radius: var(--radius-md);
    padding: 2rem 1.6rem;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--champagne-gold), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.facility-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: var(--border-gold);
    transform: translateY(-5px);
}

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

.facility-icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem auto;
    border-radius: 50%;
    background: var(--primary-navy);
    color: var(--champagne-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(11, 31, 58, 0.15);
    transition: transform var(--transition-fast);
}

.facility-card:hover .facility-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.facility-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: var(--primary-navy);
}

.facility-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   10. WHY CHOOSE URBAN STAY (NUMBERED CARDS)
   -------------------------------------------------------------------------- */
.why-section {
    background: linear-gradient(180deg, var(--primary-navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    position: relative;
}

.why-section .section-header h2 {
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.why-card {
    background: var(--navy-card);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: var(--radius-md);
    padding: 2.2rem 1.8rem;
    position: relative;
    transition: all var(--transition-normal);
}

.why-card:hover {
    border-color: var(--champagne-gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(201, 162, 39, 0.15);
}

.why-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--champagne-gold);
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.9;
}

.why-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

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

/* --------------------------------------------------------------------------
   11. LOCATION SECTION
   -------------------------------------------------------------------------- */
.location-section {
    background-color: var(--soft-background);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.location-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--champagne-gold);
}

.location-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 0.2rem;
}

.location-subtitle {
    font-size: 1rem;
    color: var(--champagne-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.location-details-list {
    margin-bottom: 2rem;
}

.location-details-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.location-details-item i {
    color: var(--champagne-gold);
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.location-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.map-container {
    height: 420px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
}

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

/* --------------------------------------------------------------------------
   12. RULES & 9:30 PM NIGHT ENTRY HIGHLIGHT
   -------------------------------------------------------------------------- */
.rules-section {
    background-color: var(--white);
}

/* Highlighted Entry Time Banner */
.night-entry-card {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-navy) 100%);
    border: 2px solid var(--champagne-gold);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    color: var(--white);
    margin-bottom: 3.5rem;
    box-shadow: var(--shadow-lg), 0 0 25px rgba(201, 162, 39, 0.2);
    position: relative;
    overflow: hidden;
}

.night-entry-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
}

.night-entry-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.15);
    border: 2px solid var(--champagne-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--champagne-gold);
    font-size: 2.5rem;
}

.night-entry-text h3 {
    color: var(--champagne-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.4rem;
}

.night-entry-time {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.night-entry-copy {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    max-width: 680px;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.rule-card {
    background: var(--soft-background);
    padding: 1.5rem 1.6rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-navy);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all var(--transition-fast);
}

.rule-card:hover {
    background: var(--white);
    border-left-color: var(--champagne-gold);
    box-shadow: var(--shadow-sm);
}

.rule-card i {
    color: var(--champagne-gold);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.rule-card p {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0;

}

/* --------------------------------------------------------------------------
   13. FAQ ACCORDION SECTION
   -------------------------------------------------------------------------- */
.faq-section {
    background-color: var(--soft-background);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item.active {
    border-color: var(--champagne-gold);
    box-shadow: var(--shadow-sm);
}

.faq-header {
    width: 100%;
    padding: 1.3rem 1.6rem;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(11, 31, 58, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 0.85rem;
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--champagne-gold);
    color: var(--primary-navy);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-content {
    padding: 0 1.6rem 1.4rem 1.6rem;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   14. REGISTRATION / ENQUIRY FORM
   -------------------------------------------------------------------------- */
.enquiry-section {
    background-color: var(--white);
}

.enquiry-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    border-top: 5px solid var(--champagne-gold);
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group.full-width {
    grid-column: span 2;
}

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

.form-group label span.required {
    color: #EF4444;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.1rem;
    font-size: 0.95rem;
    background: var(--soft-background);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    background: var(--white);
    border-color: var(--champagne-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

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

.form-actions {
    grid-column: span 2;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.form-success-msg {
    display: none;
    background: #ECFDF5;
    border: 1px solid #10B981;
    color: #065F46;
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-sm);
    text-align: center;
    width: 100%;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   15. FINAL CTA & CONTACT SECTION
   -------------------------------------------------------------------------- */
.final-cta {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-navy) 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */
.footer {
    background-color: var(--navy-dark);
    color: var(--white);
    padding-top: 4.5rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-brand img {
    height: 48px;
    margin-bottom: 1.2rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-promise {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--champagne-gold);
    text-transform: uppercase;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.4rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--champagne-gold);
}

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

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

.footer-links a:hover {
    color: var(--champagne-gold);
    padding-left: 0.25rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 0.9rem;
}

.footer-contact-item i {
    color: var(--champagne-gold);
    margin-top: 0.2rem;
}

.footer-contact-item a {
    color: var(--white);
    font-weight: 600;
}

.footer-contact-item a:hover {
    color: var(--champagne-gold);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   17. FLOATING WHATSAPP BUTTON & MOBILE BOTTOM CTA
   -------------------------------------------------------------------------- */
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 990;
    transition: all var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
    color: var(--white);
}

/* Mobile Fixed Bottom CTA Bar */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--mobile-bar-height);
    background: var(--navy-dark);
    border-top: 2px solid var(--champagne-gold);
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.mobile-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 100%;
}

.mobile-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: background var(--transition-fast);
}

.mobile-cta-btn:last-child {
    border-right: none;
}

.mobile-cta-btn i {
    font-size: 1.25rem;
    color: var(--champagne-gold);
}

.mobile-cta-btn.highlight-cta {
    background: var(--champagne-gold);
    color: var(--primary-navy);
}

.mobile-cta-btn.highlight-cta i {
    color: var(--primary-navy);
}

/* --------------------------------------------------------------------------
   18. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas, .hero-phone-chips {
        justify-content: center;
    }

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

    .about-grid, .location-grid {
        grid-template-columns: 1fr;
    }

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

    .night-entry-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .night-entry-icon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: var(--mobile-bar-height);
    }

    .nav-links, .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-cta-bar {
        display: block;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.8rem;
    }

    .trust-bar {
        grid-template-columns: 1fr;
    }

    .attached-bathroom-highlight {
        flex-direction: column;
        text-align: center;
    }

    .attached-bathroom-content {
        flex-direction: column;
    }

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

    .form-group.full-width {
        grid-column: span 1;
    }

    .enquiry-card {
        padding: 1.8rem 1.2rem;
    }

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

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
