/* ========================================
   General Styles
   ======================================== */
:root {
    --primary-color: #8b9d8a;
    --primary-dark: #6d7d6c;
    --primary-light: #a3b5a2;
    --secondary-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
}

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

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0.9rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.logo {
    height: 45px;
    width: auto;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: white;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(131, 58, 180, 0.4);
    color: white;
}

/* Hamburger Menu Icon */
.hamburger-menu {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.hamburger-menu span {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover span {
    background-color: var(--primary-color);
}

/* Hide desktop nav on mobile */
.desktop-nav {
    display: none !important;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: flex !important;
    }
    
    .hamburger-menu {
        display: none;
    }
}

/* RTL Support for navbar */
[dir="rtl"] .navbar-nav {
    margin-left: 0;
    margin-right: auto;
}

[dir="ltr"] .navbar-nav {
    margin-right: 0;
    margin-left: auto;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('../booking/pictures-01.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 40px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 120px);
    padding: 2rem 0;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    max-width: 420px;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    animation: fadeInScale 1s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scroll-down {
    margin-bottom: 3rem;
}

.scroll-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 20px;
    animation: bounce 2s infinite;
    cursor: default;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
    height: 250px;
    background: url('https://images.unsplash.com/photo-1600047509807-ba8f99d2cdde?w=1920') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 70px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background: rgba(0, 0, 0, 0.15);
}

.page-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    z-index: 2;
    letter-spacing: 0.5px;
    position: relative;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ========================================
   Hero Booking Widget
   ======================================== */
.hero-booking-widget {
    max-width: 600px;
    margin: 0 auto;
}

.booking-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.8rem 2rem;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.booking-card .form-control {
    padding: 0.8rem 1.1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    background: white;
    cursor: pointer;
    font-weight: 500;
}

.booking-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 157, 138, 0.1);
    outline: none;
}

.booking-card label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.85rem;
    display: block;
    text-align: right;
    margin-bottom: 0.4rem;
}

[dir="ltr"] .booking-card label {
    text-align: left;
}

/* Date Input Wrapper with Icon */
.date-input-wrapper {
    position: relative;
}

.date-input-wrapper .form-control {
    padding-left: 2.8rem;
}

[dir="ltr"] .date-input-wrapper .form-control {
    padding-right: 2.8rem;
    padding-left: 1.1rem;
}

.date-icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1rem;
    pointer-events: none;
    opacity: 0.7;
}

[dir="ltr"] .date-icon {
    left: auto;
    right: 0.9rem;
}

[dir="ltr"] .date-input-wrapper .form-control {
    padding-right: 45px;
    padding-left: 1.2rem;
}

.date-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.1rem;
    pointer-events: none;
}

[dir="ltr"] .date-icon {
    left: auto;
    right: 15px;
}

.btn-book,
.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
    transition: all 0.3s ease;
    height: 46px;
}

.btn-book:hover,
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 157, 138, 0.3);
}

/* Flatpickr Custom Styling */
.flatpickr-calendar {
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    border: none;
    font-family: 'Cairo', sans-serif;
}

.flatpickr-day {
    border-radius: 8px;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.flatpickr-day:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

.flatpickr-day.today {
    border-color: var(--primary-color);
}

.flatpickr-months {
    background: transparent;
    padding: 15px 0 10px;
}

.flatpickr-months .flatpickr-month {
    color: var(--text-dark);
}

.flatpickr-current-month {
    font-size: 1.1rem;
    font-weight: 600;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 600;
}

.flatpickr-weekdays {
    background: transparent;
    margin-top: 10px;
}

span.flatpickr-weekday {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    fill: var(--text-dark) !important;
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
    fill: var(--primary-color) !important;
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
    color: rgba(0,0,0,0.2);
}

/* Fully Booked Dates Styling */
.flatpickr-day.fully-booked {
    background: #f8d7da !important;
    color: #721c24 !important;
    border-color: #f5c6cb !important;
    cursor: not-allowed !important;
    text-decoration: line-through;
    opacity: 0.6;
}

.flatpickr-day.fully-booked:hover {
    background: #f8d7da !important;
    border-color: #f5c6cb !important;
}

/* RTL Support for Flatpickr */
[dir="rtl"] .flatpickr-calendar {
    direction: ltr;
}

/* ========================================
   Side Menu
   ======================================== */
.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    z-index: 9999;
    transition: right 0.3s ease;
}

[dir="ltr"] .side-menu {
    right: auto;
    left: -100%;
    transition: left 0.3s ease;
}

.side-menu.active {
    right: 0;
}

[dir="ltr"] .side-menu.active {
    right: auto;
    left: 0;
}

.side-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.side-menu.active .side-menu-overlay {
    opacity: 1;
    pointer-events: all;
}

.side-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85%;
    height: 100%;
    background: white;
    padding: 1.5rem;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
}

[dir="ltr"] .side-menu-content {
    right: auto;
    left: 0;
    box-shadow: 5px 0 20px rgba(0,0,0,0.15);
}

.side-menu-close {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    font-size: 1.3rem;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

[dir="ltr"] .side-menu-close {
    left: auto;
    right: 1.2rem;
}

.side-menu-close:hover {
    color: var(--primary-color);
    background: rgba(139, 157, 138, 0.1);
}

.side-menu-nav {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
}

.side-menu-link {
    padding: 0.75rem 0;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.side-menu-link:hover,
.side-menu-link.active {
    color: var(--primary-color);
    padding-right: 0.5rem;
}

[dir="ltr"] .side-menu-link:hover,
[dir="ltr"] .side-menu-link.active {
    padding-right: 0;
    padding-left: 0.5rem;
}

.side-menu-link.language-toggle-mobile {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    font-size: 0.9rem;
}

.side-menu-link.language-toggle-mobile img {
    width: 18px;
}

.side-menu-social {
    position: absolute;
    bottom: 2rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.side-menu-social .social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.side-menu-social .social-link:nth-child(1) {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.side-menu-social .social-link:nth-child(2) {
    background: #25d366;
}

.side-menu-social .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    background: white;
    padding-top: 4rem !important;
}

.about-text {
    font-size: 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* ========================================
   Section Styles
   ======================================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* ========================================
   Specifications Section
   ======================================== */
.spec-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.spec-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.spec-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.spec-card p {
    color: var(--text-light);
    margin: 0;
}

/* ========================================
   Terms Section
   ======================================== */
.terms-content ul {
    list-style: none;
    padding: 0;
}

.terms-content li {
    padding: 1rem;
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
    padding-right: 2.5rem;
}

[dir="ltr"] .terms-content li {
    padding-left: 2.5rem;
    padding-right: 1rem;
}

.terms-content li::before {
    content: '✓';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

[dir="ltr"] .terms-content li::before {
    right: auto;
    left: 1rem;
}

/* ========================================
   Date Selection
   ======================================== */
.date-selection {
    padding: 2.5rem 0;
    background: #fafafa;
}

.date-selector-card {
    background: white;
    padding: 1.8rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.date-selector-card label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.date-selector-card .form-control {
    padding: 0.8rem 1.1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
}

.date-selector-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 157, 138, 0.1);
}

.date-selector-card .btn-primary {
    margin-top: 1.65rem;
    height: 46px;
}

/* ========================================
   Lounge Cards - Modern Design
   ======================================== */
.lounges-section {
    background: #fafafa;
}

.lounge-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #f0f0f0;
}

.lounge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.lounge-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    z-index: 10;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[dir="ltr"] .lounge-badge {
    right: auto;
    left: 12px;
}

.lounge-badge.available {
    background: rgba(39, 174, 96, 0.95);
    color: white;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
}

.lounge-badge.booked {
    background: rgba(231, 76, 60, 0.95);
    color: white;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.lounge-image {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, #8b9d8a 0%, #6d7d6c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
}

.lounge-logo {
    max-width: 100px;
    filter: brightness(0) invert(1);
    margin-bottom: 1.2rem;
    opacity: 0.95;
}

.lounge-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.lounge-word {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1px;
}

.lounge-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-top: 0.2rem;
}

.lounge-info {
    padding: 1.3rem 1.5rem;
}

.lounge-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    flex-direction: row-reverse;
}

[dir="ltr"] .lounge-header {
    flex-direction: row;
}

.lounge-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--text-dark);
}

.lounge-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e74c3c;
    white-space: nowrap;
}

.lounge-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    background: transparent;
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 157, 138, 0.3);
    border-color: var(--primary-color);
}

.btn-outline-primary:disabled,
.btn-outline-primary.disabled {
    background: #e0e0e0;
    color: #999;
    border-color: #d0d0d0;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-outline-primary:disabled:hover,
.btn-outline-primary.disabled:hover {
    background: #e0e0e0;
    color: #999;
    transform: none;
    box-shadow: none;
}

.lounge-card.booked {
    opacity: 0.85;
}

.lounge-card.booked .lounge-image {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
}

/* ========================================
   Booking Form Section
   ======================================== */
.booking-form-section {
    background: #fafafa;
}

.form-section,
.summary-section {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.form-section h3,
.summary-section h3 {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.form-section .alert-info {
    background: #e8f4f8;
    border: 1px solid #bee5eb;
    color: #0c5460;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.form-section .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-section .form-control,
.form-section .form-select,
.form-section textarea {
    padding: 0.8rem 1.1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-section .form-control:focus,
.form-section .form-select:focus,
.form-section textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 157, 138, 0.1);
    outline: none;
}

.form-section textarea {
    resize: vertical;
    min-height: 100px;
}

.form-text {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.3rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.9rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.summary-item.total {
    border-top: 2px solid var(--primary-color);
    border-bottom: none;
    margin-top: 1rem;
    padding-top: 1rem;
    font-weight: 600;
}

.summary-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.summary-value {
    color: var(--text-dark);
    font-weight: 600;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.15rem;
}

.summary-total .price {
    color: #e74c3c;
    font-size: 1.4rem;
    font-weight: 700;
}

.form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.15rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

[dir="ltr"] .form-check-label {
    margin-right: 0;
    margin-left: 0.5rem;
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.summary-section .btn-primary {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border-radius: 12px;
    font-weight: 600;
}

.summary-section hr {
    border-color: #e9ecef;
    opacity: 0.5;
    margin: 1.5rem 0;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: #1a1a1a;
    color: white;
}

.footer-logo {
    max-width: 150px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.3rem;
    color: white;
}

.footer-contact,
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 0.9rem;
    display: flex;
    align-items: start;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 0.3rem;
    font-size: 0.9rem;
}

.footer-contact a,
.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-contact a:hover,
.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 8px;
        box-shadow: var(--shadow);
    }
    
    .hero-logo-img {
        max-width: 250px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 100vh;
        padding-top: 60px;
        padding-bottom: 30px;
    }
    
    .hero-content {
        min-height: calc(100vh - 90px);
    }
    
    .hero-logo-img {
        max-width: 280px;
    }
    
    .scroll-down {
        margin-bottom: 2rem;
    }
    
    .page-header {
        height: 200px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .booking-card {
        padding: 1.5rem;
    }
    
    .about-text {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .spec-card {
        margin-bottom: 1rem;
    }
    
    .lounge-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .lounge-title {
        order: 1;
    }
    
    .lounge-price {
        order: 2;
        text-align: center;
    }
    
    .form-section,
    .summary-section {
        padding: 1.5rem;
    }
    
    .summary-total {
        padding: 1rem;
    }
    
    .summary-total h4 {
        font-size: 1.1rem;
    }
    
    .summary-total .price {
        font-size: 1.2rem;
    }
    
    .footer-title {
        margin-top: 2rem;
    }
    
    .date-selector-card {
        padding: 1.5rem;
    }
    
    .form-section h3,
    .summary-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding: 60px 15px 30px;
    }
    
    .hero-logo-img {
        max-width: 220px;
    }
    
    .hero-booking-widget {
        padding: 0 15px;
    }
    
    .booking-card {
        padding: 1.2rem 1rem;
    }
    
    .booking-card .row {
        gap: 1rem;
    }
    
    .booking-card .col-md-6 {
        order: 0 !important;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .form-section,
    .summary-section {
        padding: 1.2rem;
    }
    
    .summary-section {
        margin-top: 1.5rem;
    }
    
    .page-header {
        height: 200px;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ========================================
   Utilities
   ======================================== */
.btn {
    cursor: pointer;
}

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

/* Alert styling */
.alert-info {
    background-color: #e8f4f8;
    border: 1px solid #bee5eb;
    color: #0c5460;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
}

/* Form check */
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Smooth transitions */
a, button, input, textarea, select {
    transition: all 0.3s ease;
}

/* Focus states */
button:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ========================================
   LTR Specific Styles
   ======================================== */
[dir="ltr"] {
    text-align: left;
}

[dir="ltr"] .navbar-brand {
    margin-left: 0;
    margin-right: auto;
}

[dir="ltr"] .footer-contact li,
[dir="ltr"] .spec-card,
[dir="ltr"] .terms-content li {
    text-align: left;
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .navbar,
    .footer,
    .btn {
        display: none;
    }
}
