/* ========================================
   lending-strict — Business Hotel Template
   Blue/White Corporate Theme
   ======================================== */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    background: #f8fafc;
}

.heading-font {
    font-family: 'Montserrat', sans-serif;
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(30,58,95,0.7) 50%, rgba(15,23,42,0.85) 100%);
    z-index: 1;
}
.hero-section > * { position: relative; z-index: 2; }

/* Header Navigation */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226,232,240,0.8);
    transition: all 0.3s ease;
}
.header-nav.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.nav-link {
    position: relative;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}
.nav-link:hover {
    color: #1e293b;
}
.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    background: #2563eb;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    padding: 14px 36px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}
.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(37,99,235,0.25);
}

.btn-outline {
    background: transparent;
    color: #1e293b;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    padding: 13px 32px;
    border: 2px solid #2563eb;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}
.btn-outline:hover {
    background: #2563eb;
    color: white;
}

.btn-white-outline {
    background: transparent;
    color: white;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    padding: 14px 36px;
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}
.btn-white-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

/* Section Titles */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.section-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Room Cards */
.room-card {
    background: white;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px -12px rgba(0,0,0,0.1);
    border-color: #93c5fd;
}

/* Stats */
.stat-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #e2e8f0;
}
.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
}

/* Services */
.service-category {
    animation: fadeUp 0.5s ease forwards;
    opacity: 0;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.service-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: white;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: default;
    font-size: 0.85rem;
    color: #475569;
}
.service-pill i {
    width: 18px;
    text-align: center;
    color: #2563eb;
    font-size: 0.9rem;
}
.service-pill:hover {
    border-color: #93c5fd;
    background: #f8faff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.06);
}
.service-pill span {
    font-weight: 450;
}

/* Gallery */
.gallery-item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.gallery-item img {
    transition: all 0.6s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,0);
    transition: background 0.4s ease;
}
.gallery-item:hover::after {
    background: rgba(15,23,42,0.15);
}

/* Footer */
.footer {
    background: #0f172a;
    color: rgba(255,255,255,0.7);
}
.footer a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}
.footer a:hover {
    color: #93c5fd;
}

/* Utilities */
.accent-line {
    width: 60px;
    height: 3px;
    background: #2563eb;
}
.star {
    color: #2563eb;
}

/* Booking Widget */
.booking-widget {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
}
.booking-widget .flatpickr-calendar {
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 1px solid #e2e8f0;
    border-radius: 0;
}
.booking-widget .flatpickr-day.selected,
.booking-widget .flatpickr-day.startRange,
.booking-widget .flatpickr-day.endRange,
.booking-widget .flatpickr-day.inRange {
    background: #2563eb;
    border-color: #2563eb;
}
.booking-widget .flatpickr-day.today {
    border-color: #2563eb;
}
.booking-widget .flatpickr-day.inRange {
    background: #dbeafe;
    box-shadow: none;
}
.booking-widget .flatpickr-months .flatpickr-month {
    background: transparent;
}
.booking-widget .flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 600;
}
.booking-widget .flatpickr-weekday {
    color: #2563eb;
    font-weight: 600;
}
.booking-widget .numInputWrapper span {
    display: none;
}
.booking-input {
    cursor: pointer;
}
.booking-input:focus {
    outline: 2px solid #2563eb;
    outline-offset: -2px;
}
.booking-divider {
    width: 1px;
    background: #e2e8f0;
    align-self: stretch;
}
.guest-control {
    display: flex;
    align-items: center;
    gap: 12px;
    user-select: none;
}
.guest-control button {
    width: 32px;
    height: 32px;
    border: 1px solid #e2e8f0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
    color: #475569;
}
.guest-control button:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #f8faff;
}
.guest-control .guest-count {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #0f172a;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title { font-size: 1.8rem; }
    .hero-section { min-height: 80vh; }
}