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

:root {
    --primary-color: #1a472a;
    --primary-dark: #0f2818;
    --primary-light: #2d5a3d;
    --accent-color: #d4af37;
    --accent-light: #e8c547;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.booking-container {
    max-width: 1000px;
}

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    color: white;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.logo:hover {
    color: var(--accent-light);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    font-size: 1.5rem;
    padding: 0;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle.active {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle::before {
    content: '☰';
    font-size: 1.5rem;
    display: block;
    transition: var(--transition);
}

.mobile-menu-toggle.active::before {
    content: '✕';
    font-size: 1.5rem;
    transform: rotate(180deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.85) 0%, rgba(15, 40, 24, 0.9) 100%),
                url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?w=1920&h=1080&fit=crop') center/cover no-repeat;
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.2);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-image {
    margin-bottom: 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.03);
}

.image-overlay-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(26, 71, 42, 0.95);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

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

.about-text .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Rooms Section */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.room-card {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

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

.room-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

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

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

.room-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-color);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.room-content {
    padding: 2rem;
}

.room-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.room-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.room-content ul {
    list-style: none;
    padding-left: 0;
}

.room-content ul li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.room-content ul li:last-child {
    border-bottom: none;
}

.room-content ul li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.1rem;
    background: rgba(26, 71, 42, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Facilities Section */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.facility-item {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.facility-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.facility-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.facility-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Location Section */
.location-content {
    max-width: 1000px;
    margin: 0 auto;
}

.location-map {
    margin-bottom: 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
}

.location-map a {
    display: block;
    position: relative;
}

.location-map img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.location-map:hover img {
    transform: scale(1.02);
}

.map-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 71, 42, 0.95);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

.location-map:hover .map-overlay-text {
    opacity: 1;
}

.location-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    text-align: center;
}

.location-details {
    background: var(--bg-white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
}

.location-details p {
    margin-bottom: 0.75rem;
    text-align: left;
    font-size: 1rem;
}

.location-details p:last-child {
    margin-bottom: 0;
}

.location-list {
    list-style: none;
    margin: 2rem 0;
    padding-left: 0;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.location-list li {
    padding: 1rem 0;
    padding-left: 3rem;
    position: relative;
    color: var(--text-gray);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color);
}

.location-list li:last-child {
    border-bottom: none;
}

.location-list li:before {
    content: "📍";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

/* Contact Section */
.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.contact-info {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.25rem;
    margin: 0;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.contact-info a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.contact-note {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1.5rem;
}

/* Booking Form */
.booking-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.75rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: 8px;
    text-align: center;
    display: none;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
    display: block;
}

/* PNR Section */
.pnr-section {
    min-height: 70vh;
    padding-top: 3rem;
}

.pnr-form {
    max-width: 550px;
    margin: 2rem auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

/* Booking Details */
/* Status Banner */
.status-banner {
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    box-shadow: none;
}

.status-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.status-label {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.status-value {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.status-sub {
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: normal;
}

.booking-details {
    max-width: 100%;
    margin: 2rem auto;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.booking-ref {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ref-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.ref-number {
    font-family: 'Courier New', monospace;
    font-size: 1.75rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 3px;
}

.details-header h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 2rem;
    margin: 0;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-print-icon {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 44px;
    min-height: 44px;
}

.btn-print-icon:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-print-icon:active {
    transform: translateY(0);
}

.btn-print-icon svg {
    display: block;
    width: 20px;
    height: 20px;
}

.details-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Quick Info Grid */
.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-card {
    background: white;
    border: 1px solid var(--border-color);
    padding: 1.25rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease;
}

.info-card:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.info-content {
    flex: 1;
    width: 100%;
}

.info-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.info-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.info-sub {
    font-size: 0.7rem;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .status-banner {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


.detail-section {
    background: white;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    line-height: 1.6;
}

.detail-section h3 {
    font-family: 'Inter', sans-serif;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
    text-transform: none;
    letter-spacing: 0;
}

.detail-section.hotel-info-section h3 {
    color: var(--primary-color);
}

/* Main Hotel Information Section */
.hotel-info-main {
    background: white;
    color: var(--text-dark);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
}

.hotel-info-main h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.hotel-info-main .hotel-info-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hotel-info-main .hotel-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
}

.hotel-info-main .hotel-info-item strong {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    min-width: 100px;
}

.hotel-info-main .hotel-info-item span {
    color: var(--text-dark);
    font-size: 1rem;
    flex: 1;
}

.hotel-info-main .hotel-info-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.hotel-info-main .hotel-info-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Secondary Status Banner */
.status-banner-secondary {
    background: #f0f0f0;
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.status-banner-secondary .status-item {
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
}

.status-banner-secondary .status-label {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.status-banner-secondary .status-value {
    font-size: 1rem;
    color: var(--text-dark);
}

.status-banner-secondary .status-sub {
    font-size: 0.75rem;
    color: var(--text-light);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row strong {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.detail-row span {
    color: var(--text-dark);
    font-size: 1rem;
    text-align: right;
    font-weight: 400;
}

.detail-row a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.detail-row a:hover {
    text-decoration: underline;
}

.pnr-badge {
    background: transparent;
    color: var(--primary-color);
    padding: 0;
    border: none;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
}

.status-confirmed {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: capitalize;
}

/* Guest List Styles */
/* Guests Table Design */
.guests-table {
    margin-top: 1rem;
}

.guests-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 1rem;
    padding: 0.875rem 1rem;
    background: #f8f9fa;
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guests-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.guests-table-row:last-child {
    border-bottom: none;
}

.guest-col-name {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
}

.guest-col-title {
    color: var(--text-dark);
    font-size: 1rem;
}

.guest-col-passport {
    color: var(--text-dark);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .guests-table-header,
    .guests-table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .guests-table-header {
        display: none;
    }
    
    .guests-table-row {
        padding: 1rem;
        border: 1px solid var(--border-color);
        border-left: 3px solid var(--primary-color);
        margin-bottom: 0.75rem;
    }
    
    .guest-col-name::before {
        content: "Name: ";
        font-weight: 600;
        color: var(--text-gray);
    }
    
    .guest-col-title::before {
        content: "Title: ";
        font-weight: 600;
        color: var(--text-gray);
    }
    
    .guest-col-passport::before {
        content: "Passport (Last 4): ";
        font-weight: 600;
        color: var(--text-gray);
    }
}

.passport-number {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.special-request-text {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.hotel-info-section {
    background: rgba(26, 71, 42, 0.03);
    border-left-color: var(--primary-color);
    border-left-width: 4px;
}

.hotel-info-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hotel-info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

.hotel-info-item:last-child {
    border-bottom: none;
}

.hotel-info-item strong {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.hotel-info-item span {
    color: var(--text-dark);
    text-align: right;
    font-size: 1rem;
}

.hotel-info-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.hotel-info-item a:hover {
    text-decoration: underline;
}

.important-notes {
    background: #f8f9fa;
    border-left-color: #6c757d;
    border-left-width: 3px;
}

.notes-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 0 0;
}

.notes-list li {
    padding: 0.875rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.notes-list li:last-child {
    border-bottom: none;
}

.notes-list li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--text-light);
    font-weight: normal;
    font-size: 1.2rem;
    line-height: 1;
}

/* QR Code Section */
.qr-code-section {
    text-align: center;
}

.qr-code-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.qr-code-image {
    flex-shrink: 0;
}

.qr-code-image img {
    width: 200px;
    height: 200px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem;
    background: white;
}

.qr-code-info {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.qr-code-info p {
    margin-bottom: 0.75rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.qr-code-info p:last-child {
    margin-bottom: 0;
}

.qr-pnr {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.qr-pnr strong {
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem 0 1.5rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

/* Booking Details Page - Smaller fonts */
.booking-details-page .ref-label { font-size: 0.75rem; }
.booking-details-page .ref-number { font-size: 1.35rem; }
.booking-details-page .detail-section h3 { font-size: 0.95rem; margin-bottom: 1rem; padding-bottom: 0.6rem; }
.booking-details-page .detail-section h2 { font-size: 1.35rem; }
.booking-details-page .hotel-info-main h2 { font-size: 1.35rem; margin-bottom: 1rem; padding-bottom: 0.6rem; }
.booking-details-page .hotel-info-main .hotel-info-item strong,
.booking-details-page .hotel-info-main .hotel-info-item span { font-size: 0.875rem; }
.booking-details-page .hotel-info-item strong,
.booking-details-page .hotel-info-item span { font-size: 0.875rem; }
.booking-details-page .info-label { font-size: 0.7rem; }
.booking-details-page .info-value { font-size: 0.9rem; }
.booking-details-page .status-banner-secondary .status-label { font-size: 0.75rem; }
.booking-details-page .status-banner-secondary .status-value { font-size: 0.9rem; }
.booking-details-page .status-banner-secondary .status-sub { font-size: 0.65rem; }
.booking-details-page .detail-row,
.booking-details-page .detail-row strong,
.booking-details-page .detail-row span { font-size: 0.875rem; }
.booking-details-page .pnr-badge { font-size: 0.95rem; }
.booking-details-page .guests-table-header { font-size: 0.8rem; padding: 0.75rem 1rem; }
.booking-details-page .guests-table-row { padding: 0.875rem 1rem; }
.booking-details-page .guest-col-name,
.booking-details-page .guest-col-title,
.booking-details-page .guest-col-passport { font-size: 0.875rem; }
.booking-details-page .special-request-text { font-size: 0.875rem; }
.booking-details-page .notes-list li { font-size: 0.875rem; padding: 0.7rem 0; padding-left: 1.75rem; }
.booking-details-page .notes-list li::before { font-size: 1rem; }
.booking-details-page .qr-code-info p { font-size: 0.875rem; }
.booking-details-page .qr-pnr { font-size: 0.95rem; }
.booking-details-page .qr-pnr strong { font-size: 1rem; }
.booking-details-page .details-content { gap: 1.5rem; }
.booking-details-page .booking-details { padding: 1.75rem; }
.booking-details-page .details-header { margin-bottom: 1.5rem; padding-bottom: 1.25rem; }
.booking-details-page .detail-section { padding: 1.5rem; }
.booking-details-page .hotel-info-main { margin-bottom: 1.5rem; }
.booking-details-page .status-banner-secondary { padding: 0.875rem; margin-bottom: 1.5rem; }
.booking-details-page .info-card { padding: 1rem; }
.booking-details-page .quick-info-grid { gap: 0.875rem; margin-bottom: 0.875rem; }

/* Booking print section - screen */
.booking-print-section {
    padding: 2rem 0;
}

/* ==========================================================================
   Print layout - Booking Details (booking_details.php)
   ========================================================================== */

@page {
    size: A4;
    margin: 16mm 18mm;
}

@media print {
    /* --- Base --- */
    * {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    body,
    body.booking-details-page {
        margin: 0;
        padding: 0;
        background: #fff;
    }

    /* --- Hide non-print UI --- */
    .navbar,
    .footer,
    .header-buttons,
    .btn-secondary,
    .mobile-menu-toggle {
        display: none !important;
    }

    /* --- Page structure --- */
    .booking-print-section {
        padding: 0;
    }

    .booking-container {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .booking-details {
        box-shadow: none;
        border: 1px solid #e0e0e0;
        padding: 1.5rem 1rem;
        margin: 0;
    }

    /* --- Header: keep with content --- */
    .details-header {
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #ddd;
        page-break-after: avoid;
    }

    /* --- Content spacing --- */
    .details-content {
        gap: 1.25rem;
    }

    .detail-section {
        padding: 1rem 0;
        margin-bottom: 1rem;
        page-break-inside: avoid;
    }

    .detail-section h3,
    .detail-section h2 {
        page-break-after: avoid;
    }

    /* --- Hotel info --- */
    .hotel-info-main {
        margin-bottom: 1.25rem;
        page-break-inside: avoid;
    }

    /* --- Quick info: 4 in a row --- */
    .quick-info-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.75rem;
        margin-bottom: 1rem;
        page-break-inside: avoid;
    }

    .info-card {
        padding: 0.75rem;
        page-break-inside: avoid;
    }

    /* --- Status: Status | Check-in | Check-out in one row --- */
    .status-banner,
    .status-banner-secondary {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem;
        padding: 1rem;
        margin-bottom: 1.25rem;
        page-break-inside: avoid;
    }

    /* --- Guests table: 3 columns, no mobile stacking --- */
    .guests-table {
        page-break-inside: avoid;
    }

    .guests-table-header,
    .guests-table-row {
        grid-template-columns: 2fr 1fr 1.5fr !important;
    }

    .guests-table-header {
        display: grid !important;
    }

    .guests-table-row {
        border: none !important;
        border-bottom: 1px solid #e5e5e5 !important;
        margin-bottom: 0 !important;
    }

    .guests-table-row:last-child {
        border-bottom: none !important;
    }

    .guest-col-name::before,
    .guest-col-title::before,
    .guest-col-passport::before {
        content: none !important;
        display: none !important;
    }

    .guest-details-section h3 {
        page-break-after: avoid;
    }

    /* --- QR: row layout --- */
    .qr-code-content {
        flex-direction: row !important;
    }

    .qr-code-section,
    .important-notes {
        page-break-inside: avoid;
    }

    /* --- Page breaks: core details on page 1, QR + notes on page 2 --- */
    .qr-code-section {
        page-break-before: always;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.4s ease-out, opacity 0.3s ease-out, visibility 0.3s ease-out;
        padding: 0;
    }
    
    .nav-menu.active {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
        padding: 1.5rem;
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease-out 0.1s, transform 0.3s ease-out 0.1s;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 1.5rem;
    }
    
    .hero {
        min-height: 500px;
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
    }
    
    .section {
        padding: 3.5rem 0;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Booking Details Page - Mobile Responsive */
    .booking-details {
        padding: 1.5rem;
        margin: 1rem auto;
    }
    
    .details-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .ref-label {
        font-size: 0.75rem;
    }
    
    .ref-number {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .header-buttons {
        width: 100%;
        flex-direction: row;
        gap: 0.75rem;
        align-items: center;
    }
    
    .header-buttons button,
    .header-buttons a {
        flex: 1;
        font-size: 0.9rem;
        padding: 0.875rem 1rem;
    }
    
    .btn-print-icon {
        flex: 0 0 auto;
        min-width: 44px;
        padding: 0.75rem;
    }
    
    .btn-print-icon svg {
        width: 18px;
        height: 18px;
    }
    
    /* Detail Sections - Smaller fonts on mobile */
    .detail-section {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .detail-section h3 {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
        padding-bottom: 0.5rem;
    }
    
    .detail-row {
        padding: 0.625rem 0;
        font-size: 0.875rem;
    }
    
    .detail-row strong {
        font-size: 0.875rem;
    }
    
    .detail-row span {
        font-size: 0.875rem;
    }
    
    .pnr-badge {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }
    
    /* Hotel Info Main - Mobile */
    .hotel-info-main {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .hotel-info-main h2 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
        padding-bottom: 0.625rem;
    }
    
    .hotel-info-main .hotel-info-item {
        flex-direction: column;
        gap: 0.375rem;
        padding: 0.625rem 0;
    }
    
    .hotel-info-main .hotel-info-item strong {
        min-width: auto;
        font-size: 0.9rem;
    }
    
    .hotel-info-main .hotel-info-item span {
        font-size: 0.9rem;
    }
    
    /* Quick Info Grid - Mobile */
    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .info-label {
        font-size: 0.7rem;
        margin-bottom: 0.375rem;
    }
    
    .info-value {
        font-size: 0.9rem;
    }
    
    /* Status Banner - Mobile */
    .status-banner,
    .status-banner-secondary {
        grid-template-columns: 1fr;
        gap: 0.875rem;
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .status-item {
        padding: 0.875rem;
    }
    
    .status-label {
        font-size: 0.7rem;
    }
    
    .status-value {
        font-size: 0.95rem;
    }
    
    .status-sub {
        font-size: 0.7rem;
    }
    
    /* Guests Table - Mobile */
    .guests-table {
        margin-top: 0.75rem;
    }
    
    .guests-table-header {
        font-size: 0.7rem;
        padding: 0.75rem 0.875rem;
        gap: 0.75rem;
    }
    
    .guests-table-row {
        font-size: 0.8rem;
        padding: 0.875rem;
        gap: 0.75rem;
    }
    
    .guest-col-name,
    .guest-col-title,
    .guest-col-passport {
        font-size: 0.8rem;
    }
    
    /* Special Request - Mobile */
    .special-request-text {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    /* QR Code - Mobile */
    .qr-code-section {
        padding: 1.25rem;
    }
    
    .qr-code-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .qr-code-image img {
        width: 150px;
        height: 150px;
    }
    
    .qr-code-info {
        text-align: center;
    }
    
    .qr-code-info p {
        font-size: 0.875rem;
    }
    
    .qr-pnr {
        font-size: 0.9rem;
    }
    
    .qr-pnr strong {
        font-size: 1rem;
    }
    
    /* Important Notes - Mobile */
    .important-notes {
        padding: 1.25rem;
    }
    
    .notes-list {
        margin-top: 0.75rem;
    }
    
    .notes-list li {
        padding: 0.625rem 0;
        padding-left: 1.75rem;
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    /* Footer - Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section p {
        font-size: 0.875rem;
    }
    
    .quick-info-grid {
        grid-template-columns: 1fr;
    }
    
    .details-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .booking-ref {
        width: 100%;
    }
    
    .header-buttons {
        width: 100%;
        flex-direction: row;
    }
    
    .header-buttons button,
    .header-buttons a {
        flex: 1;
        min-width: 0;
    }
    
    .btn-print-icon {
        flex: 0 0 auto;
        min-width: 44px;
        padding: 0.65rem;
    }
    
    .btn-print-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .room-image {
        height: 220px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 20px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .booking-details {
        padding: 1rem;
        margin: 0.5rem auto;
    }
    
    .details-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }
    
    .ref-number {
        font-size: 1.25rem;
        letter-spacing: 2px;
    }
    
    .detail-section {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .detail-section h3 {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .detail-row {
        padding: 0.5rem 0;
        font-size: 0.8rem;
    }
    
    .detail-row strong,
    .detail-row span {
        font-size: 0.8rem;
    }
    
    .hotel-info-main {
        padding: 1rem;
    }
    
    .hotel-info-main h2 {
        font-size: 1.15rem;
    }
    
    .hotel-info-main .hotel-info-item strong,
    .hotel-info-main .hotel-info-item span {
        font-size: 0.85rem;
    }
    
    .quick-info-grid {
        grid-template-columns: 1fr;
        gap: 0.625rem;
    }
    
    .info-card {
        padding: 0.875rem;
    }
    
    .info-label {
        font-size: 0.65rem;
    }
    
    .info-value {
        font-size: 0.85rem;
    }
    
    .status-banner,
    .status-banner-secondary {
        padding: 0.875rem;
    }
    
    .status-value {
        font-size: 0.875rem;
    }
    
    .guests-table-header {
        font-size: 0.65rem;
        padding: 0.625rem 0.75rem;
    }
    
    .guests-table-row {
        font-size: 0.75rem;
        padding: 0.75rem;
    }
    
    .guest-col-name,
    .guest-col-title,
    .guest-col-passport {
        font-size: 0.75rem;
    }
    
    .special-request-text {
        font-size: 0.8rem;
    }
    
    .qr-code-image img {
        width: 120px;
        height: 120px;
    }
    
    .notes-list li {
        font-size: 0.8rem;
        padding-left: 1.5rem;
    }
}
