@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================================
   PLEASANT VIEW HOTEL - BOOKING SYSTEM CSS
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff8e3c;
    --secondary-color: #d9376e;
    --accent-color: #ff8e3c;
    --text-dark: #0d0d0d;
    --text-light: #2a2a2a;
    --border-color: #dadce0;
    --bg-light: #e8e8e8;
    --bg-white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--text-dark);
    background-color: #d4d4d4;
    line-height: 1.6;
}

main.main-content {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1557b0;
}

/* ============ NAVIGATION ============ */
.navbar {
    background: transparent;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.navbar-brand h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
}

.navbar-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.navbar-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-menu a:hover {
    color: var(--primary-color);
}

/* ============ BUTTONS ============ */
.btn, .btn-primary, .btn-secondary, .btn-success {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #1557b0;
    box-shadow: var(--shadow-lg);
}

.profile-welcome-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    padding: 32px 34px;
    margin-bottom: 28px;
}

.profile-welcome-copy {
    min-width: 260px;
    flex: 1 1 360px;
}

.profile-welcome-greeting {
    margin: 0 0 10px;
    font-size: 2rem;
    line-height: 1.1;
    color: var(--text-dark);
    font-weight: 700;
}

.profile-welcome-email {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

.profile-welcome-email span {
    color: var(--secondary-color);
    font-weight: 600;
}

.profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.profile-button {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 12px 22px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    border: none;
    cursor: pointer;
}

.profile-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.btn-pink {
    background: var(--secondary-color);
    color: #ffffff;
}

.btn-orange {
    background: var(--primary-color);
    color: #ffffff;
}

.btn-blue {
    background: #2563eb;
    color: #ffffff;
}

.btn-red {
    background: #dc2626;
    color: #ffffff;
}

.profile-notice-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    background: #eff6ff;
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 22px;
    padding: 24px 28px;
    margin-bottom: 28px;
}

.profile-notice-copy {
    min-width: 280px;
    flex: 1 1 420px;
    color: #0f172a;
    font-size: 1rem;
    line-height: 1.8;
}

.profile-notice-copy strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.profile-table-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    padding: 30px 28px;
}

.profile-section-title {
    margin-bottom: 18px;
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
}

.bookings-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.bookings-table th,
.bookings-table td {
    padding: 16px 14px;
    vertical-align: middle;
}

.bookings-table thead tr {
    background: #f8fafc;
}

.bookings-table th {
    color: #475569;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: left;
}

.bookings-table tbody tr {
    background: #ffffff;
    box-shadow: inset 0 -1px 0 rgba(15, 23, 42, 0.04);
}

.status-label {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-confirmed {
    background: #d1fae5;
    color: #166534;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.action-button {
    border: none;
    border-radius: 10px;
    padding: 9px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.action-button:hover {
    transform: translateY(-1px);
}

.action-review {
    background: #2563eb;
    color: white;
}

.action-cancel {
    background: #dc2626;
    color: white;
}

.action-dash {
    color: #64748b;
}

@media (max-width: 980px) {
    .profile-welcome-card,
    .profile-notice-card,
    .profile-table-card {
        padding: 24px;
    }

    .profile-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .profile-welcome-card,
    .profile-notice-card {
        flex-direction: column;
        align-items: stretch;
    }

    .profile-welcome-copy,
    .profile-notice-copy {
        width: 100%;
    }

    .bookings-table th,
    .bookings-table td {
        padding: 12px 10px;
    }
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #2d8659;
}

.btn-success {
    background-color: var(--secondary-color);
    color: white;
}

.btn-success:hover {
    background-color: #2d8659;
    box-shadow: var(--shadow-lg);
}

.btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* ============ FORMS ============ */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============ MAIN CONTENT ============ */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

/* ============ HERO SECTION ============ */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1200&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    font-size: 1.1rem;
    padding: 15px 40px;
}

/* ============ CARDS ============ */
.card {
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.card-price {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-description {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

/* ============ GRID LAYOUTS ============ */
.grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ============ AMENITIES ============ */
.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.amenity-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background-color: var(--bg-light);
    border-radius: 20px;
    font-size: 0.9rem;
}

.amenity-badge i {
    color: var(--primary-color);
}

/* ============ SECTION ============ */
.section {
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ============ BOOKING FLOW ============ */
.booking-container {
    max-width: 800px;
    margin: 40px auto;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    padding: 40px;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--border-color);
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--border-color);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: white;
}

.step.completed .step-number {
    background-color: var(--secondary-color);
    color: white;
}

.step-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

.step.active .step-label {
    color: var(--text-dark);
    font-weight: 600;
}

/* ============ ROOM SELECTION ============ */
.room-selection-item {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-selection-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.room-selection-item input[type="radio"]:checked + .room-info {
    color: var(--primary-color);
}

.room-selection-item input[type="radio"] {
    cursor: pointer;
}

.room-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ============ SUMMARY ============ */
.summary-box {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item-label {
    font-weight: 600;
}

.summary-item-value {
    color: var(--text-dark);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 2px solid var(--border-color);
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--secondary-color);
}

/* ============ CONFIRMATION PAGE ============ */
.confirmation-box {
    background-color: var(--bg-white);
    border-left: 5px solid var(--secondary-color);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.confirmation-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.confirmation-reference {
    background-color: var(--bg-light);
    border: 2px dashed var(--primary-color);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.confirmation-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.detail-card {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 15px;
}

.detail-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ============ AVAILABILITY CALENDAR ============ */
.date-picker-container {
    margin-bottom: 30px;
}

.date-picker-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.availability-status {
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.availability-status.available {
    background-color: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #4caf50;
}

.availability-status.unavailable {
    background-color: #ffebee;
    color: #c62828;
    border-left: 4px solid #f44336;
}

.availability-status i {
    margin-right: 10px;
}

/* ============ ALERTS ============ */
.alert {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #4caf50;
}

.alert-error {
    background-color: #ffebee;
    color: #c62828;
    border-left: 4px solid #f44336;
}

.alert-info {
    background-color: #e3f2fd;
    color: #1565c0;
    border-left: 4px solid #2196f3;
}

.alert i {
    font-size: 1.2rem;
}

/* ============ FOOTER ============ */
.footer {
    position: relative;
    overflow: hidden;
    background: #4f5259;
    color: #f8fafc;
    padding: 42px 24px 20px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('/Hotel/assets/land2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.08;
    pointer-events: none;
    filter: saturate(0.9) brightness(1.05);
    z-index: 0;
}

.footer .footer-layout,
.footer .footer-bottom {
    position: relative;
    z-index: 1;
}

.js-interactions .footer.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
    will-change: opacity, transform;
}

.js-interactions .footer.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-brand-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-width: 280px;
    max-width: 420px;
}

.footer-logo-block {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    text-decoration: none;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.28));
}

.footer-brand-text-block {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-brand-name {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-brand-desc {
    color: #d8dee8;
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 28rem;
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.4rem;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.footer-nav a {
    color: #cbd5e1;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.3rem;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.25s ease;
}

.footer-nav a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.footer-nav a:hover::after {
    width: 100%;
}

.footer-social-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 240px;
    justify-content: flex-end;
}

.footer-social-label {
    color: #cbd5e1;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-social-icons a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 142, 60, 0.35);
    background: rgba(255, 142, 60, 0.08);
    color: #ffb572;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.footer-social-icons a:hover {
    background: var(--primary-color);
    color: #0b121d;
    transform: translateY(-1px);
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 142, 60, 0.14);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-legal {
    color: #a6b2c8;
    font-size: 0.88rem;
    margin: 0;
}

@media (max-width: 960px) {
    .footer-layout {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-brand-block,
    .footer-social-block,
    .footer-nav {
        justify-content: flex-start;
    }

    .footer-social-block {
        width: 100%;
    }
}

@media (max-width: 720px) {
    .footer {
        padding: 36px 18px 18px;
    }

    .footer-nav {
        gap: 0.85rem 1rem;
    }

    .footer-brand-name {
        font-size: 0.95rem;
    }

    .footer-brand-desc {
        font-size: 0.86rem;
    }

    .footer-social-icons a {
        width: 38px;
        height: 38px;
    }
}



/* ============ AMENITIES DISPLAY ============ */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

/* ============ BACKGROUND IMAGE ANIMATION ============ */
.featured-image {
    background-position: center center;
    will-change: transform, background-position;
    animation: floatImage 10s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0) scale(1);
        background-position: center 45%;
    }
    50% {
        transform: translateY(-18px) scale(1.05);
        background-position: center 55%;
    }
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.amenity-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* ============ LOADING STATE ============ */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(26, 115, 232, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .navbar-menu {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: center;
    }

    .booking-container {
        padding: 20px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .step-indicator {
        flex-direction: column;
    }

    .step-indicator::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.2rem; }
    h4 { font-size: 1rem; }

    .hero {
        padding: 60px 20px;
    }

    .navbar-menu {
        gap: 10px;
    }

    .booking-container {
        max-width: 100%;
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        padding: 10px 15px !important;
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 15px;
    }

    .grid {
        grid-template-columns: 1fr !important;
    }

    .room-card {
        margin-bottom: 20px;
    }

    table {
        font-size: 0.85rem;
        overflow-x: auto;
        display: block;
    }

    th, td {
        padding: 8px 5px;
    }

    .section {
        padding: 30px 0;
    }

    .section-title h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .modal {
        width: 90% !important;
        margin: 20% auto !important;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="date"],
    input[type="time"],
    select,
    textarea {
        font-size: 16px;
        padding: 10px 12px;
    }

    .alert {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* COMPACT SPACING OVERRIDES */
.container { padding: 0 12px; }
.navbar .container { padding: 10px 14px; }
.navbar-menu { gap: 18px; }
.btn, .btn-primary, .btn-secondary, .btn-success { padding: 10px 18px; }
.form-group { margin-bottom: 14px; }
.form-row { gap: 16px; }
.main-content { padding: 24px 0; }
.hero { padding: 60px 20px; margin-bottom: 30px; }
.hero h1 { margin-bottom: 16px; }
.hero p { margin-bottom: 20px; max-width: 560px; }
.hero-buttons { gap: 16px; }
.hero-buttons .btn-primary, .hero-buttons .btn-secondary { padding: 12px 28px; }
.card-content { padding: 16px; }
.card-description { margin-bottom: 12px; }
.card-footer { padding-top: 12px; }
.grid { gap: 24px; margin-bottom: 32px; }
.section { margin-bottom: 40px; }
.section-title { margin-bottom: 24px; }
.section-title p { margin-bottom: 0; }
.booking-container { margin: 30px auto; padding: 28px; }
.step-indicator { margin-bottom: 30px; }
.step-number { margin-bottom: 8px; }
.room-selection-item { padding: 12px; margin-bottom: 12px; }
.summary-box { padding: 16px; margin-bottom: 16px; }
.summary-item { padding: 8px 0; }
.summary-total { padding: 12px 0; margin-top: 10px; }
.confirmation-box { padding: 20px; margin-bottom: 24px; }
.confirmation-reference { padding: 16px; margin: 16px 0; }
.confirmation-details { gap: 16px; margin-top: 24px; }
.date-picker-container { margin-bottom: 24px; }
.date-picker-row { gap: 16px; margin-bottom: 16px; }
.availability-status { padding: 12px; margin-top: 12px; }
.alert { padding: 12px 16px; margin-bottom: 16px; }
.footer { padding: 40px 24px 20px; margin-top: 60px; }
.footer-top { gap: 1rem; margin-bottom: 24px; }
.footer-divider { margin: 0 -24px 24px; }
.footer-middle, .footer-bottom { margin-bottom: 24px; }
.footer-column ul { gap: 0.5rem; }
.footer-social-icons { gap: 0.5rem; }
.footer-legal-links { gap: 1rem; }
@media (max-width: 768px) {
    .navbar .container { gap: 10px; }
    .navbar-menu { gap: 12px; }
    .hero { padding: 50px 16px; }
    .booking-container { padding: 18px; }
}
@media (max-width: 520px) {
    .container { padding: 0 12px; }
    .footer { padding: 30px 16px 18px; }
}

