:root {
    /* Greyish / slate theme */
    --primary: #334155;
    --primary-dark: #1e293b;
    --primary-light: #475569;
    --secondary: #64748b;
    --secondary-dark: #475569;
    --secondary-light: #f1f5f9;
    --accent: #94a3b8;
    --accent-light: #f1f5f9;
    --accent-dark: #64748b;
    --success: #10b981;
    --success-light: #ecfdf5;
    --success-dark: #047857;
    --error: #ef4444;
    --error-light: #fef2f2;
    --warning: #f59e0b;
    --warning-light: #fffbeb;
    --text: #334155;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(30, 41, 59, 0.06), 0 2px 4px -2px rgba(30, 41, 59, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(30, 41, 59, 0.08), 0 4px 6px -4px rgba(30, 41, 59, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(30, 41, 59, 0.1), 0 8px 10px -6px rgba(30, 41, 59, 0.1);
    --radius: 12px;
    --radius-sm: 6px;
    --radius-lg: 18px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

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

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg-light);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Prevent any media from causing horizontal scroll on small screens */
img, svg, video, canvas {
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.preloader-logo {
    height: 48px;
    width: auto;
    animation: pulseLogo 1.5s ease-in-out infinite alternate;
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes pulseLogo {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: white;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.08);
}

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

.logo-img {
    height: 38px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.92rem;
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav a:hover,
.nav a.active {
    color: var(--primary);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

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

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--primary);
    border-radius: 4px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background-color: var(--primary-dark);
    color: #ffffff;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.6) 100%);
    z-index: 1;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233, 83, 14, 0.2);
    border: 1px solid rgba(233, 83, 14, 0.4);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ff9d6e;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: #ffffff;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--accent-light);
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-content .description {
    font-size: 1rem;
    color: #e2e8f0;
    margin-bottom: 32px;
    max-width: 580px;
    line-height: 1.6;
}

/* Welcome / About intro text */
.hero-intro {
    margin-bottom: 32px;
    max-width: 620px;
}

.hero-intro p {
    font-size: 1rem;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 14px;
}

.hero-intro p strong {
    color: #ffffff;
    font-weight: 700;
}

.hero-intro-highlight {
    font-size: 1.08rem !important;
    font-weight: 900;
    color: #ffffff !important;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

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

.stat strong {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1.1;
}

.stat span {
    font-size: 0.8rem;
    color: #cbd5e1;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-glow {
    background: var(--secondary);
    color: white;
    box-shadow: 0 4px 12px rgba(233, 83, 14, 0.3);
}

.btn-glow:hover {
    background: var(--secondary-dark);
    box-shadow: 0 6px 16px rgba(233, 83, 14, 0.5);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-gray);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--border);
}

.btn-success {
    background: var(--secondary);
    color: white;
    box-shadow: 0 4px 12px rgba(233, 83, 14, 0.2);
}

.btn-success:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

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

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

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Countdown */
.hero-countdown {
    display: flex;
    justify-content: flex-end;
}

.countdown-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 28px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.countdown-card.critical {
    border-color: rgba(239, 68, 68, 0.8);
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.35), var(--shadow-lg);
    animation: countdown-pulse 1.2s ease-in-out infinite;
}

.countdown-card.critical .time-flip {
    background: rgba(239, 68, 68, 0.18);
    border-color: rgba(239, 68, 68, 0.7);
    color: #fecaca;
}

.countdown-card.critical .countdown-header h3,
.countdown-card.critical .countdown-note {
    color: #fecaca;
}

@keyframes countdown-pulse {
    0%, 100% { box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.25), var(--shadow-lg); }
    50% { box-shadow: 0 0 0 5px rgba(239, 68, 68, 0.45), var(--shadow-lg); }
}

.countdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.countdown-header i {
    font-size: 1.25rem;
    color: var(--secondary);
}

.countdown-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.time-flip {
    width: 100%;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 10px 2px;
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
}

.time-separator {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 22px;
    padding: 0 1px;
}

.time-unit label {
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #cbd5e1;
    font-weight: 700;
}

.countdown-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #cbd5e1;
}

.countdown-note i {
    color: var(--secondary);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
    color: var(--bg-light);
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 40px;
}

/* Sections Global */
.gallery-section,
.info-section,
.booking-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    line-height: 1.25;
}

.section-description {
    font-size: 1rem;
    color: var(--text-light);
}

/* Image Gallery */
.gallery-section {
    background: var(--bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(30, 41, 59, 0.8) 0%, rgba(30, 41, 59, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 6px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.gallery-overlay span {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    transform: translateY(10px);
    transition: transform 0.3s ease 0.03s;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i,
.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Grid layout modifications */
.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.96);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2.8rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    z-index: 2010;
}

.lightbox-close:hover {
    color: var(--secondary);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    z-index: 2010;
}

.lightbox-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: scale(0.96);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.lightbox.active .lightbox-content img {
    opacity: 1;
    transform: scale(1);
}

.lightbox-caption {
    color: #e2e8f0;
    margin-top: 14px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}

/* Why Choose Us Cards */
.info-section {
    background: var(--bg-light);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.info-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(30, 41, 59, 0.05);
    border-color: transparent;
}

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

.info-card .icon {
    width: 52px;
    height: 52px;
    background: var(--secondary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* Booking Section */
.booking-section {
    background: var(--bg-gray);
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 40px;
}

/* Progress bar step progress tracker */
.progress-container {
    margin-bottom: 40px;
}

.progress-bar {
    height: 5px;
    background: var(--bg-gray);
    border-radius: 100px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    width: 25%;
    transition: width 0.4s ease;
}

.progress-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    cursor: pointer;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.step label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition);
}

.step.active .step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 0 0 3px rgba(30, 41, 59, 0.15);
}

.step.active label {
    color: var(--primary);
}

.step.completed .step-number {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.step.completed label {
    color: var(--accent-dark);
}

/* Form Styles */
.booking-form {
    display: block;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: slideInForm 0.35s ease forwards;
}

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

.form-step h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-step h3 i {
    color: var(--primary);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 16px; /* >=16px prevents iOS auto-zoom on focus */
    font-family: var(--font);
    transition: var(--transition);
    background: var(--bg);
    color: var(--text-dark);
    width: 100%;
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 41, 59, 0.08);
}

.form-group input[readonly] {
    background: var(--bg-light);
    cursor: not-allowed;
}

/* Valid & Error Fields */
.form-group input.error,
.form-group select.error {
    border-color: var(--error);
    background: var(--error-light);
}

.form-group input.valid,
.form-group select.valid {
    border-color: var(--success);
}

.error-message {
    display: none;
    color: var(--error);
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 3px;
}

.error-message.visible {
    display: block;
}

/* Hostel Selection Cards Revamped */
.hostel-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 4px;
}

.hostel-card {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow);
}

.hostel-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.hostel-card-image {
    height: 8px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.hostel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hostel-card:hover .hostel-card-image img {
    transform: scale(1.04);
}

.selection-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid #ffffff;
    display: none;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.85rem;
    box-shadow: var(--shadow);
    z-index: 2;
}

.hostel-card.selected .selection-indicator {
    display: flex;
}

.hostel-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: #ffffff;
    padding: 3px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hostel-badge-premium {
    background: var(--secondary);
}

.hostel-badge-luxury {
    background: var(--text-dark);
}

.hostel-card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

.hostel-card.selected {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 41, 59, 0.12);
    background: var(--bg-light);
}

.step-intro {
    font-size: 0.92rem;
    color: var(--text-light);
    margin: -12px 0 24px;
    text-align: center;
}

.hostel-fee-block {
    display: flex;
    flex-direction: column;
    margin: 4px 0;
}

.hostel-fee-block .amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.05;
}

.hostel-fee-block .period {
    font-size: 0.74rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.hostel-facilities {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 10px;
    margin: 4px 0;
}

.hostel-facilities li {
    position: relative;
    padding-left: 16px;
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.4;
}

.hostel-facilities li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-dark);
    font-size: 0.7rem;
}

.btn-select {
    margin-top: 6px;
    width: 100%;
    padding: 11px;
    border: 1.5px solid var(--primary);
    background: var(--bg);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-select:hover {
    background: var(--primary-light);
    color: #ffffff;
    border-color: var(--primary-light);
}

.hostel-card.selected .btn-select {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

/* Optional Catering Card */
.catering-card {
    margin-top: 28px;
    background: var(--bg);
    border: 1.5px dashed var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;
    box-shadow: var(--shadow);
}

.catering-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.catering-head h4 {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.catering-desc {
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.5;
    max-width: 520px;
}

.catering-fee {
    display: flex;
    flex-direction: column;
    text-align: right;
    white-space: nowrap;
}

.catering-fee .amount {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1.05;
}

.catering-fee .period {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
}

.catering-checkbox {
    margin-top: 16px;
    padding: 12px 14px 12px 40px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: inline-flex;
    font-size: 0.9rem;
}

.catering-checkbox .checkmark {
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.catering-checkbox input:checked ~ .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.catering-note {
    margin-top: 14px;
    padding: 12px 14px;
    background: var(--secondary-light);
    border-left: 3px solid var(--secondary);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.5;
}

.catering-note i {
    color: var(--secondary);
    margin-right: 6px;
}

.hostel-type h4 {
    font-size: 1rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.hostel-type p {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

.hostel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
    font-size: 0.78rem;
    color: var(--text-light);
}

.hostel-features span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hostel-features i {
    color: var(--accent-dark);
}

.hostel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

.hostel-fee .amount {
    display: block;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
}

.hostel-fee .period {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Summary Card Details */
.selection-summary {
    background: var(--accent-light);
    border: 1px solid rgba(74, 185, 169, 0.2);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 24px;
    animation: slideInForm 0.3s ease;
}

.selection-summary h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.selection-summary h4 i {
    color: var(--primary);
}

.summary-details {
    margin-bottom: 16px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(74, 185, 169, 0.15);
    font-size: 0.9rem;
}

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

.detail-row span {
    color: var(--text-light);
}

.detail-row strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.important-note {
    background: var(--warning-light);
    border: 1px solid #fde68a;
    border-radius: var(--radius-sm);
    padding: 16px;
}

.important-note h5 {
    color: #b45309;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.important-note ul {
    list-style-type: none;
}

.important-note li {
    font-size: 0.82rem;
    color: #78350f;
    padding: 2px 0 2px 16px;
    position: relative;
    font-weight: 700;
}

.important-note li::before {
    content: "•";
    position: absolute;
    left: 4px;
    color: #b45309;
    font-size: 1.1rem;
    line-height: 1;
}

/* Step 4 Payment Details */
.payment-section {
    display: grid;
    gap: 24px;
}

.payment-summary h4,
.mpesa-section h4,
.upload-section h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.summary-card {
    background: var(--secondary-light);
    border: 1px solid rgba(233, 83, 14, 0.15);
    border-radius: var(--radius);
    padding: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px dashed rgba(233, 83, 14, 0.15);
}

.summary-row:last-of-type {
    border-bottom: none;
}

.summary-row span {
    color: var(--text-light);
}

.summary-row strong {
    color: var(--text-dark);
    font-weight: 700;
}

.summary-row.total {
    border-top: 1.5px solid rgba(233, 83, 14, 0.25);
    margin-top: 6px;
    padding-top: 12px;
    font-size: 1.05rem;
}

.summary-row.total span {
    font-weight: 700;
    color: var(--text-dark);
}

.summary-row.total strong {
    color: var(--secondary);
    font-size: 1.25rem;
    font-weight: 900;
}

/* MPesa Container styling */
.mpesa-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: var(--radius);
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    box-shadow: var(--shadow-md);
}

.mpesa-brand {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    padding: 14px;
}

.mpesa-logo {
    height: 46px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.mpesa-details {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mpesa-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
}

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

.mpesa-row strong {
    font-weight: 700;
    color: #ffffff;
}

.mpesa-bank {
    color: #ffffff;
    background: var(--primary);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 999px;
    margin-left: 8px;
    align-self: center;
}

/* Account number: high-contrast highlight so it stays readable in any theme */
.mpesa-account {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    padding: 2px 10px;
    border-radius: 6px;
    letter-spacing: 0.6px;
    font-weight: 900;
}

.mpesa-steps {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 20px;
}

.mpesa-steps h5 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mpesa-steps ol {
    padding-left: 16px;
}

.mpesa-steps li {
    font-size: 0.82rem;
    padding: 3px 0;
    line-height: 1.5;
    color: #f1f5f9;
}

.mpesa-steps li strong {
    color: var(--secondary);
    font-weight: 700;
}

/* Upload proof card */
.upload-area {
    border: 2.5px dashed var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    background: var(--bg-light);
    cursor: pointer;
    transition: var(--transition);
}

.upload-area:hover,
.upload-area.dragover {
    border-color: var(--primary);
    background: var(--secondary-light);
}

.upload-area i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.upload-area p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.or-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 6px 0;
    font-weight: 700;
}

.file-info {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.file-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--success-light);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius);
    padding: 14px 20px;
    margin-top: 12px;
    animation: slideInForm 0.3s ease;
}

.preview-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-info i {
    color: var(--success);
    font-size: 1.2rem;
}

.preview-info span {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--success-dark);
}

.file-size {
    font-size: 0.78rem;
    color: var(--success-dark);
    opacity: 0.8;
    margin-left: 6px;
}

.btn-remove {
    background: transparent;
    border: none;
    color: var(--error);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-remove:hover {
    background: var(--error-light);
}

/* Declaration info card */
.declaration {
    margin-top: 4px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text);
    position: relative;
    padding-left: 28px;
    user-select: none;
    font-weight: 700;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 1px;
    height: 18px;
    width: 18px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 4px;
    transition: var(--transition);
}

.checkbox-label input:checked ~ .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkmark:after {
    content: '';
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.form-navigation .btn {
    min-width: 120px;
}

/* Custom Success Page path animation styling */
.success-page {
    text-align: center;
    padding: 16px 0;
}

.success-animation {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.success-checkmark {
    width: 72px;
    height: 72px;
}

.success-checkmark .check-icon {
    width: 72px;
    height: 72px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid var(--success-light);
}

.success-checkmark .check-icon::before,
.success-checkmark .check-icon::after {
    content: '';
    height: 90px;
    position: absolute;
    background: var(--bg);
    transform: rotate(-45deg);
}

.success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: var(--success);
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.success-checkmark .check-icon .icon-line.line-tip {
    top: 42px;
    left: 17px;
    width: 22px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.success-checkmark .check-icon .icon-line.line-long {
    top: 34px;
    right: 12px;
    width: 42px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

.success-checkmark .check-icon .icon-circle {
    top: -4px;
    left: -4px;
    position: absolute;
    box-sizing: content-box;
    width: 72px;
    height: 72px;
    border: 4px solid var(--success);
    border-radius: 50%;
    z-index: 2;
}

.success-page h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.success-message {
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 32px;
    font-size: 0.98rem;
    line-height: 1.6;
}

.success-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 560px;
    margin: 0 auto 32px;
    text-align: left;
}

.detail-item {
    background: var(--bg-light);
    padding: 14px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.detail-item span {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
}

.detail-item strong {
    color: var(--primary-dark);
    font-size: 0.95rem;
    font-weight: 700;
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.success-actions .btn {
    flex: 1;
    min-width: 200px;
}

/* Footer Section */
.footer {
    background: var(--primary-dark);
    color: #ffffff;
    padding: 60px 0 0;
    border-top: 1.5px solid var(--secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-img-footer {
    height: 42px;
    width: auto;
    display: block;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-tagline {
    color: #cbd5e1;
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-social a.social-disabled {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
    text-decoration: none;
}

.footer-section h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-section a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #cbd5e1;
    font-size: 0.88rem;
}

.footer-contact-item i {
    color: var(--secondary);
    margin-top: 4px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    color: #94a3b8;
    font-size: 0.82rem;
}

/* Scroll Animation classes */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--delay, 0s);
}

.animate-on-scroll.slide-right {
    transform: translateX(-30px);
}

.animate-on-scroll.slide-left {
    transform: translateX(30px);
}

.animate-on-scroll.fade-up {
    transform: translateY(20px);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Mobile responsive fixes */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-countdown {
        justify-content: center;
    }

    .countdown-card {
        max-width: 440px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }

    .footer-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 36px;
    }

    .footer-section:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        gap: 0;
        padding: 72px 20px 20px;
        box-shadow: -10px 0 30px rgba(30, 41, 59, 0.1);
        z-index: 1005;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav.open {
        right: 0;
    }

    .nav a {
        padding: 12px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--bg-gray);
        font-weight: 700;
    }

    .nav a::after {
        display: none;
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 23, 42, 0.4);
        z-index: 1002;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        backdrop-filter: blur(2px);
    }

    .mobile-overlay.visible {
        opacity: 1;
        visibility: visible;
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 80px 0 48px;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat strong {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .gallery-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-wide {
        grid-column: span 2;
    }

    .booking-container {
        padding: 24px;
    }

    .progress-steps {
        gap: 4px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .step label {
        font-size: 0.7rem;
    }

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

    .hostel-cards {
        grid-template-columns: 1fr;
    }

    .mpesa-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .success-details {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-section:last-child {
        grid-column: span 1;
    }

    .form-navigation {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .form-navigation .btn {
        width: 100%;
        padding: 14px;
    }

    .form-navigation .btn-primary {
        margin-left: 0;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content .subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
    }

    .time-flip {
        font-size: 1.35rem;
        padding: 6px 2px;
    }

    .time-separator {
        font-size: 1.1rem;
        padding: 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
    }

    .gallery-large {
        grid-column: span 1;
    }

    .gallery-wide {
        grid-column: span 1;
    }

    .progress-steps label {
        display: none;
    }

    .step-number {
        width: 32px;
        height: 32px;
    }

    .booking-container {
        padding: 16px 12px;
    }

    .success-actions .btn {
        width: 100%;
    }
}

/* Print Styling */
@media print {
    .header,
    .hero,
    .gallery-section,
    .info-section,
    .footer,
    .form-navigation,
    .btn,
    .back-to-top,
    .preloader,
    .booking-section > .container > .section-header,
    .progress-container {
        display: none !important;
    }

    body {
        background: #ffffff;
    }

    .booking-container {
        box-shadow: none;
        padding: 0;
        max-width: 100%;
        background: #ffffff;
    }

    .success-page,
    .success-page.active {
        display: block !important;
        padding: 0;
    }
    
    .success-animation {
        display: none !important;
    }
}
