/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #7B2D26;
    --color-primary-light: #A0413A;
    --color-primary-dark: #5C1F1A;
    --color-accent: #C9956B;
    --color-accent-light: #E8D5C0;
    --color-dark: #1A1A1A;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #FAFAF8;
    --color-bg-alt: #F2F0EC;
    --color-white: #FFFFFF;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 12px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

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

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

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

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

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    transition: color var(--transition);
}

.navbar.scrolled .nav-logo {
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    transition: color var(--transition);
    position: relative;
}

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

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

.navbar.scrolled .nav-links a {
    color: var(--color-text);
}

.nav-links .nav-cta {
    background: var(--color-primary);
    color: var(--color-white) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 500;
}

.nav-links .nav-cta::after {
    display: none;
}

.nav-links .nav-cta:hover {
    background: var(--color-primary-light);
}

.navbar.scrolled .nav-links .nav-cta {
    color: var(--color-white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--color-text);
}

/* === HERO === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0.7) 100%
    );
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--color-white);
    max-width: 700px;
    padding: 0 24px;
    animation: fadeUp 1s ease-out;
}

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

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}

.hero-btn {
    font-size: 1rem;
    padding: 16px 40px;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* === SECTIONS === */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--color-bg-alt);
}

.section-dark {
    background: var(--color-dark);
    color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-light .section-tag,
.section-header-light .section-title {
    color: var(--color-white);
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    margin: 0 auto 16px;
    border-radius: 2px;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.7;
}

/* === LOFT SECTION === */
.loft-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.loft-img-main {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    height: 380px;
    box-shadow: var(--shadow-lg);
}

.loft-images-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.loft-images-row img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.loft-text h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.loft-text p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-size: 0.98rem;
}

.loft-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e5e5e5;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* === GALLERY === */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 24px;
    border: 2px solid #ddd;
    border-radius: 30px;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text-light);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(123, 45, 38, 0.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.gallery-overlay span {
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 500;
}

.gallery-item.hidden {
    display: none;
}

/* === LIGHTBOX === */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    padding: 16px;
    transition: opacity var(--transition);
    opacity: 0.7;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* === AMENITIES === */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.amenity-card {
    background: var(--color-white);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid #f0f0f0;
}

.amenity-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.amenity-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--color-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.amenity-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.amenity-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* === LOCATION === */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.location-village-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.location-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.location-info p {
    color: var(--color-text-light);
    margin-bottom: 24px;
    font-size: 0.98rem;
}

.distances {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.distance-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.distance-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.distance-item strong {
    color: var(--color-dark);
    display: block;
    font-size: 0.95rem;
}

.distance-item span {
    color: var(--color-text-light);
    font-size: 0.85rem;
}

.location-map {
    height: 500px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* === REVIEWS === */
.rating-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    padding: 32px;
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.rating-score {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.rating-stars {
    color: #F5A623;
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.rating-details p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
}

.review-stars {
    color: #F5A623;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.review-text {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-accent-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.review-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-dark);
}

.review-author span {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.reviews-cta {
    text-align: center;
}

/* === DATEPICKER === */
.datepicker-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: var(--color-bg);
    cursor: pointer;
    transition: border-color var(--transition);
    user-select: none;
}

.datepicker-input:hover {
    border-color: var(--color-primary-light);
}

.datepicker-input.has-value {
    border-color: var(--color-primary);
    background: rgba(123, 45, 38, 0.03);
}

.datepicker-value {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.datepicker-input.has-value .datepicker-value {
    color: var(--color-text);
    font-weight: 500;
}

.datepicker-input svg {
    color: var(--color-text-light);
    flex-shrink: 0;
}

.datepicker-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 16px;
    animation: dpFadeIn 0.2s ease;
}

.datepicker-dropdown.open {
    display: block;
}

@keyframes dpFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group {
    position: relative;
}

/* Datepicker Header */
.dp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.dp-month-year {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
}

.dp-nav {
    background: none;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-text);
    font-size: 0.9rem;
    transition: all var(--transition);
}

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

/* Days Header */
.dp-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 4px;
}

.dp-days-header span {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-light);
    padding: 4px 0;
    text-transform: uppercase;
}

/* Days Grid */
.dp-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.dp-day {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    font-size: 0.85rem;
    border-radius: 8px;
    transition: all 0.15s ease;
    position: relative;
}

.dp-empty {
    pointer-events: none;
}

.dp-past {
    color: #ccc;
    pointer-events: none;
}

.dp-booked {
    background: #FDE8E8;
    color: #C0392B;
    font-weight: 500;
    pointer-events: none;
    position: relative;
}

.dp-booked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 25%;
    right: 25%;
    height: 1px;
    background: #C0392B;
    opacity: 0.5;
}

.dp-available {
    cursor: pointer;
    color: var(--color-text);
    font-weight: 400;
}

.dp-available:hover {
    background: var(--color-accent-light);
    color: var(--color-primary);
    font-weight: 600;
}

.dp-selected {
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    font-weight: 600 !important;
}

.dp-selected::after {
    display: none;
}

.dp-in-range {
    background: rgba(123, 45, 38, 0.1);
    color: var(--color-primary);
    border-radius: 4px;
}

/* Dates Legend */
.dates-legend {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    display: inline-block;
}

.legend-available {
    background: var(--color-bg);
    border: 1px solid #ccc;
}

.legend-booked {
    background: #FDE8E8;
    border: 1px solid #C0392B;
}

.legend-selected {
    background: var(--color-primary);
}

/* === BOOKING FORM === */
.booking-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

.booking-form {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(123, 45, 38, 0.1);
}

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

.date-error {
    background: #FFF3F3;
    border: 1px solid #E74C3C;
    color: #C0392B;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.dates-loaded-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #27AE60;
    margin-bottom: 16px;
}

.dates-loaded-indicator svg {
    color: #27AE60;
    flex-shrink: 0;
}

.form-note {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 16px;
    text-align: center;
    line-height: 1.5;
}

.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.booking-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 28px;
    border-radius: var(--radius);
}

.booking-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-white);
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    color: var(--color-white);
    font-weight: 500;
    margin-bottom: 10px;
    transition: all var(--transition);
}

.platform-link:hover {
    background: rgba(255,255,255,0.12);
    transform: translateX(4px);
}

.platform-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 4px;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.info-list svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* === FOOTER === */
.footer {
    background: #111;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

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

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.footer-links h4 {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-platform-link {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.footer-platform-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* === MODAL === */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--color-white);
    padding: 48px;
    border-radius: var(--radius);
    text-align: center;
    max-width: 480px;
    width: 100%;
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--color-text-light);
    cursor: pointer;
}

.modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: #E8F5E9;
    color: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.modal-content p {
    color: var(--color-text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
    .loft-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-map {
        height: 350px;
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--color-text) !important;
        font-size: 1rem;
    }

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

    .nav-links .nav-cta {
        text-align: center;
        width: 100%;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .section {
        padding: 70px 0;
    }

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

    .amenities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 24px;
    }

    .datepicker-dropdown {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: var(--radius) var(--radius) 0 0;
        padding: 20px;
        max-height: 70vh;
        overflow-y: auto;
    }

    .dates-legend {
        gap: 12px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .rating-banner {
        flex-direction: column;
        gap: 12px;
    }

    .loft-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
}
