/* ==========================================================================
   SHREE SWAMINARAYAN ATITHI BHAVAN - DESIGN SYSTEM & STYLESHEET
   Spiritual Heritage-Luxury Theme (Deep Charcoal, Saffron & Gold Accents)
   ========================================================================== */

/* Design Tokens & CSS Variables */
:root {
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Spiritual Light Color Palette */
    --color-bg-primary: #faf8f5;       /* Warm light off-white background */
    --color-bg-secondary: #f4f0e6;     /* Soft warm cream secondary background */
    --color-bg-tertiary: #ebdcc9;      /* Warm beige container backgrounds */
    
    --color-gold: #a97e1c;             /* Spiritual gold (darker for readability on light BG) */
    --color-gold-hover: #cf9f2e;       /* Medium warm gold */
    --color-saffron: #d35400;          /* Traditional spiritual orange (darker for light BG) */
    
    --color-text-primary: #1e1b18;     /* Rich dark brown/charcoal for premium readability */
    --color-text-muted: #6e675f;        /* Medium warm grey for subtext */
    --color-text-dark: #ffffff;         /* Contrast light text for buttons */
    
    /* Glassmorphism Variables (Optimized for Light Theme) */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(169, 126, 28, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(169, 126, 28, 0.06);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease-out;
}

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

html, body {
    overflow-x: hidden;
}

body {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    font-weight: 600;
}

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

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

/* Scrollbar Design */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--color-bg-tertiary);
    border: 2px solid var(--color-bg-primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Reusable Components & Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gold-text {
    color: var(--color-gold);
}

.italic {
    font-style: italic;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold {
    background-color: #25d366;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-gold:hover {
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-text-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-link {
    color: var(--color-gold);
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-link:hover {
    color: var(--color-gold-hover);
    gap: 12px;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--glass-shadow);
    border-radius: 8px;
}

/* Section Badges */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-badge::before,
.section-badge::after {
    content: '';
    width: 16px;
    height: 1px;
    background-color: var(--color-gold);
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.05rem;
}

/* 1. Header Navigation Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(169, 126, 28, 0.08);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: var(--color-bg-primary);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo .gold-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.logo .sub-logo {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-text-muted);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    position: relative;
    padding: 6px 0;
}

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

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

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

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

.mobile-nav-toggle {
    display: none;
    color: var(--color-text-primary);
    font-size: 1.4rem;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-bg-secondary);
    border-left: 1px solid var(--glass-border);
    z-index: 1100;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Mobile Navigation Drawer Backdrop */
.mobile-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1099;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

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

.mobile-drawer-close {
    align-self: flex-end;
    font-size: 1.8rem;
    color: var(--color-text-muted);
}

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

.drawer-link {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

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

/* 2. Advisory Banner */
.advisory-banner {
    background-color: rgba(230, 126, 34, 0.15);
    border-bottom: 1px solid rgba(230, 126, 34, 0.3);
    margin-top: 80px; /* To account for fixed header */
    padding: 10px 24px;
}

.advisory-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--color-text-primary);
    width: 100%;
}

.advisory-container p {
    flex: 1;
    margin: 0;
}

.warning-icon {
    color: var(--color-saffron);
    font-size: 1.1rem;
}

.advisory-link {
    color: var(--color-gold);
    font-weight: 500;
    text-decoration: underline;
    margin-left: 8px;
}

.advisory-link:hover {
    color: var(--color-gold-hover);
}

/* 3. Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeIn 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    background-color: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.badge-icon {
    color: var(--color-gold);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text-primary);
}

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

.hero-cta-group {
    display: flex;
    gap: 16px;
}

/* Quick Inquiry Widget */
.quick-widget {
    padding: 32px;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.widget-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 12px;
}

.widget-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group-grid {
    display: flex;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.flex-1 { flex: 1; }
.flex-2 { flex: 2; }

.form-group label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
}

.form-group input,
.form-group select {
    background-color: var(--color-bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    color: var(--color-text-primary);
    padding: 12px;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-quick);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
}

/* 4. Sanctuary Section (About) */
.about-section {
    padding: 100px 0;
    background-color: var(--color-bg-secondary);
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.about-image-wrapper {
    position: relative;
    height: 480px;
}

.about-img-main {
    width: 90%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.about-img-small {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 50%;
    padding: 24px;
}

.about-img-small h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.about-img-small p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.about-content {
    display: flex;
    flex-direction: column;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.amenity-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.amenity-card i {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.amenity-card h4 {
    font-size: 1.15rem;
    font-weight: 500;
}

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

/* 5. Interactive Rooms Section */
.rooms-section {
    padding: 100px 0;
    background-color: var(--color-bg-primary);
}

.rooms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Tabs list styling */
.room-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 50px;
    gap: 40px;
}

.room-tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 16px;
    position: relative;
    transition: var(--transition-smooth);
}

.room-tab-btn .tab-num {
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.room-tab-btn .tab-name {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.room-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

.room-tab-btn.active .tab-num {
    color: var(--color-gold);
}

.room-tab-btn.active .tab-name {
    color: var(--color-text-primary);
    font-weight: 500;
}

.room-tab-btn.active::after {
    width: 100%;
}

/* Room display area */
.room-display-wrapper {
    margin-top: 20px;
}

.room-display-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    animation: fadeIn 0.6s ease-out;
}

.room-display-image-panel {
    position: relative;
    height: 480px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.room-main-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.room-display-image-panel:hover .room-main-image {
    transform: scale(1.05);
}

.room-price-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.room-price-tag .price-val {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
    font-family: var(--font-heading);
    margin: 2px 0;
}

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

.room-display-info-panel {
    display: flex;
    flex-direction: column;
}

.room-display-title {
    font-size: 2.3rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.room-display-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.room-specs {
    display: flex;
    gap: 32px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--color-text-primary);
}

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

.specs-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.room-amenities-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.amenity-tag {
    background-color: var(--color-bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.room-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* 6. Booking Section (Calculator) */
.booking-section {
    padding: 100px 0;
    background-color: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.booking-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 48px;
    align-items: start;
}

.booking-configurator {
    padding: 40px;
}

.booking-title {
    font-size: 2.2rem;
    margin: 8px 0 12px;
}

.booking-subtitle {
    color: var(--color-text-muted);
    margin-bottom: 36px;
    font-size: 1rem;
}

.config-step-section {
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 28px;
}

.config-step-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.step-title {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--color-gold);
    color: var(--color-text-dark);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50%;
}

.form-row {
    display: flex;
    gap: 20px;
}

/* Custom Addon Checklist styling */
.addons-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.addon-item-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    transition: var(--transition-quick);
}

.addon-item-label:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.addon-details {
    display: flex;
    align-items: center;
    gap: 16px;
}

.addon-checkbox {
    display: none;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    position: relative;
    transition: var(--transition-quick);
    flex-shrink: 0;
}

.addon-checkbox:checked + .custom-checkbox {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

.addon-checkbox:checked + .custom-checkbox::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--color-text-dark);
    font-size: 0.65rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.addon-text {
    display: flex;
    flex-direction: column;
}

.addon-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

.addon-description {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.addon-price {
    font-size: 0.95rem;
    color: var(--color-gold);
    font-weight: 600;
}

/* Booking Receipt Card */
.booking-receipt-card {
    padding: 32px;
    position: sticky;
    top: 100px;
}

.receipt-title {
    font-size: 1.3rem;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 12px;
}

.receipt-room-preview {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
    background-color: rgba(0, 0, 0, 0.03);
    padding: 12px;
    border-radius: 6px;
}

.receipt-room-img {
    width: 64px;
    height: 64px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.receipt-room-desc h4 {
    font-size: 0.95rem;
    font-weight: 500;
}

.receipt-room-desc p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.receipt-line-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.line-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.line-item .item-name {
    color: var(--color-text-muted);
}

.line-item .item-value {
    color: var(--color-text-primary);
}

.line-item-divider {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold);
    margin: 6px 0 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.line-item-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: rgba(212, 175, 55, 0.15);
}

.receipt-total-section {
    border-top: 1.5px solid rgba(169, 126, 28, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 20px 0;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-size: 1.05rem;
    color: var(--color-text-primary);
    font-weight: 500;
}

.total-price-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.total-val {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-gold);
}

.total-status {
    font-size: 0.72rem;
    color: var(--color-text-muted);
}

.receipt-submit-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.receipt-submit-group .form-group label {
    font-size: 0.74rem;
}

.receipt-submit-group .form-group input {
    background-color: rgba(0, 0, 0, 0.02);
    padding: 10px;
    font-size: 0.9rem;
}

.form-group-checkbox {
    display: flex;
    gap: 10px;
    margin: 8px 0;
}

.form-group-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    accent-color: var(--color-gold);
}

.form-group-checkbox label {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.secure-checkout-text {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.secure-checkout-text i {
    color: #2ecc71;
}

/* 7. Experiences Section */
.experience-section {
    padding: 100px 0;
    background-color: var(--color-bg-primary);
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.exp-card {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.exp-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.exp-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 24px;
}

.exp-card h3 {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 16px;
    font-weight: 500;
}

.exp-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.exp-distance {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 8. Footer Section */
.footer-section {
    background-color: #050403;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.footer-brand h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.social-icon:hover {
    background-color: var(--color-gold);
    color: var(--color-text-dark);
}

.footer-links h4,
.footer-contacts h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    color: var(--color-text-primary);
}

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

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

.footer-links ul a:hover {
    color: var(--color-gold);
    padding-left: 6px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contacts p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contacts p i {
    margin-top: 4px;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

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

.footer-bottom-links a:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

.divider-dot {
    color: rgba(255, 255, 255, 0.2);
}

/* 9. Premium Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

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

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal-body {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 100%;
    padding: 40px;
    max-height: 85vh;
    overflow-y: auto;
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.4rem;
    color: var(--color-text-muted);
    transition: var(--transition-quick);
}

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

.modal-header-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(230, 126, 34, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-saffron);
    margin: 0 auto 20px;
}

.success-icon {
    background-color: rgba(46, 204, 113, 0.08);
    color: #2ecc71;
}

.modal-title {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 24px;
}

.modal-content {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.modal-content p {
    margin-bottom: 16px;
}

.modal-content h4 {
    font-size: 1.05rem;
    font-weight: 500;
    margin: 24px 0 12px;
    color: var(--color-text-primary);
}

.modal-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.modal-content ul li {
    display: flex;
    gap: 10px;
}

.modal-content ul li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--color-gold);
}

.alert-box-warning {
    background-color: rgba(230, 126, 34, 0.08);
    border: 1px solid rgba(230, 126, 34, 0.2);
    border-radius: 6px;
    padding: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.alert-box-warning p {
    flex: 1;
    margin-bottom: 0;
    font-size: 0.88rem;
    color: var(--color-text-primary);
}

.warning-icon-box {
    color: var(--color-saffron);
    font-size: 1.3rem;
    margin-top: 2px;
}

.modal-footer {
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

/* Success details box */
.conf-details-box {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 20px;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.conf-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.92rem;
}

.conf-row strong {
    color: var(--color-text-muted);
    font-weight: 400;
}

.success-body .sub-text {
    font-size: 0.85rem;
}

/* Hidden Utility */
.hidden {
    display: none !important;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 40px;
    }
    
    .quick-widget {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image-wrapper {
        height: 400px;
    }
    
    .room-display-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .room-display-image-panel {
        height: 380px;
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-receipt-card {
        position: static;
    }
    
    .exp-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .header-actions .btn-header {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .header-container {
        padding: 14px 16px;
    }
    
    .advisory-banner {
        padding: 10px 16px;
    }
    
    .advisory-container {
        align-items: flex-start;
        text-align: left;
    }
    
    .form-group-grid {
        flex-direction: column;
        gap: 14px;
    }
    
    .room-specs {
        flex-direction: column;
        gap: 16px;
    }
    
    .whatsapp-floating-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .room-tabs {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .room-tab-btn {
        flex: 1 1 40%;
        align-items: center;
    }
    
    .room-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 18px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .about-image-wrapper {
        height: 300px;
    }
    
    .about-img-small {
        display: none;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .room-tab-btn {
        flex: 1 1 100%;
    }
    
    .booking-configurator {
        padding: 24px;
    }
    
    .booking-receipt-card {
        padding: 24px;
    }
    
    .modal-body {
        padding: 24px 16px;
    }
}

/* ==========================================================================
   WHATSAPP INTEGRATION STYLES
   ========================================================================== */
.btn-outline-whatsapp {
    border: 1.5px solid #25d366;
    color: #25d366;
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-whatsapp:hover {
    background-color: #25d366;
    color: #1a1714;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transform: translateY(-2px);
}

.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 0 0px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    animation: wa-pulse 2.2s infinite;
    transition: var(--transition-smooth);
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1) translateY(-2px);
    background-color: #20ba5a;
    color: #ffffff;
}

.whatsapp-floating-btn .tooltip-text {
    visibility: hidden;
    width: 170px;
    background-color: var(--color-bg-secondary);
    color: var(--color-text-primary);
    text-align: center;
    border: 1px solid var(--color-gold);
    border-radius: 6px;
    padding: 8px 12px;
    position: absolute;
    right: 75px;
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--glass-shadow);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateX(10px);
    pointer-events: none;
}

.whatsapp-floating-btn:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 0 0px rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 0 0px rgba(37, 211, 102, 0);
    }
}
