/* Mazury Vacation Rental - Complete Rebuild */
:root {
    --primary: #2C5F2D;
    --primary-light: #4A7C59;
    --accent: #D4A574;
    --accent-light: #E5C8A0;
    --blue: #2B6CB0;
    --dark: #2D3748;
    --darker: #1A202C;
    --light: #F7FAFC;
    --gray: #E2E8F0;
    --text: #2D3748;
    --text-light: #718096;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    background: #fff;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.highlight {
    color: var(--accent);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
}

.nav-logo svg {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta,
.nav-cta-active {
    padding: 10px 20px !important;
    background: var(--primary);
    color: white !important;
    border-radius: 8px;
    font-weight: 600 !important;
}

.nav-cta:hover,
.nav-cta-active {
    background: var(--primary-light) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.75) 0%, rgba(43, 108, 176, 0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    color: white;
    padding-top: 80px;
}

.hero-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.scroll-indicator {
    display: none;
    /* Hidden due to Quick Features cards overlap */
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    pointer-events: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scroll-indicator svg {
    animation: bounce 2s infinite;
    width: 18px;
    height: 18px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Quick Features */
.quick-features {
    padding: 80px 0 100px;
    margin-top: 0;
    position: relative;
    z-index: 1;
    background: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-box {
    padding: 32px 24px;
    background: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-6px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-box p {
    font-size: 14px;
    color: var(--text-light);
}

/* Section Styling */
.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: #F0F4F0;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.25;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* About */
.about {
    padding: 100px 0;
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.main-image {
    grid-column: 1 / -1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.secondary-images {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.secondary-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.about-content .section-tag,
.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-perks {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}

.perk-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Amenities */
.amenities {
    padding: 100px 0;
    background: white;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.amenity-card {
    padding: 32px 28px;
    background: var(--light);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.amenity-card:hover {
    border-color: var(--accent);
}

.amenity-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.amenity-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--dark);
}

.amenity-card ul {
    list-style: none;
    padding: 0;
}

.amenity-card li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    padding-left: 24px;
}

.amenity-card li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--accent);
    font-size: 20px;
    line-height: 1;
}

/* Location */
.location {
    padding: 100px 0;
    background: var(--light);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.location-content .section-tag,
.location-content .section-title {
    text-align: left;
}

.location-text {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 32px;
}

.location-distances h4,
.location-activities h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--dark);
    font-weight: 600;
}

.location-distances {
    margin-bottom: 32px;
}

.distance-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray);
}

.distance-item:last-child {
    border-bottom: none;
}

.distance-km {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
    min-width: 80px;
}

.distance-label {
    font-size: 16px;
    color: var(--text);
}

.activities-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.activities-tags span {
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--gray);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.location-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.location-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* CTA Booking Section Re-designed */
.cta-booking {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--darker) 0%, var(--primary) 100%);
    position: relative;
    color: white;
    overflow: hidden;
}

.cta-booking::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.cta-visual h2 {
    font-size: clamp(38px, 5vw, 52px);
    line-height: 1.15;
    margin: 24px 0 32px;
    color: white;
}

.cta-badge {
    display: inline-flex;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--accent);
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.cta-card {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    color: var(--dark);
}

.cta-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.cta-card-header svg {
    color: var(--primary);
}

.cta-card-header h3 {
    font-size: 26px;
    margin: 0;
}

.cta-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.btn-cta-large {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 32px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(44, 95, 45, 0.3);
}

.btn-cta-large:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(44, 95, 45, 0.4);
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray);
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.cta-note svg {
    color: var(--primary);
}

/* Contact */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--dark);
}

.contact-info>p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.detail-item {
    display: flex;
    gap: 16px;
}

.detail-icon {
    font-size: 24px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 12px;
    flex-shrink: 0;
}

.detail-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.detail-value {
    font-size: 16px;
    color: var(--dark);
    font-weight: 600;
}

.detail-value a {
    color: var(--primary);
    text-decoration: none;
}

.detail-value a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--light);
    padding: 48px 40px;
    border-radius: 16px;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 32px;
    color: var(--dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: white;
    border: 2px solid var(--gray);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    padding: 50px 0 28px;
    background: var(--darker);
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-logo svg {
    color: var(--accent);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ========== BOOKING PAGE STYLES ========== */

.booking-hero {
    padding: 140px 0 60px;
    background: var(--light);
}

.booking-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 24px;
    transition: gap 0.3s;
}

.back-link:hover {
    gap: 12px;
}

.booking-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
    color: var(--dark);
}

.booking-header p {
    font-size: 17px;
    color: var(--text-light);
}

.booking-section {
    padding: 60px 0 100px;
    background: white;
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.calendar-wrapper h2,
.form-wrapper h2 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--dark);
}

.calendar-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Calendar */
#booking-calendar {
    background: var(--light);
    padding: 24px;
    border-radius: 12px;
    border: 2px solid var(--gray);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.calendar-nav {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--gray);
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;
    color: var(--text);
    transition: all 0.3s;
}

.calendar-nav:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.calendar-weekdays div {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    padding: 8px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s;
}

.calendar-day.empty {
    background: transparent;
}

.calendar-day.past {
    color: var(--gray);
    cursor: not-allowed;
}

.calendar-day.occupied {
    background: #FFE5E5;
    color: #C53030;
    cursor: not-allowed;
}

.calendar-day.available {
    background: white;
    color: var(--text);
    cursor: pointer;
    border: 1px solid var(--gray);
}

.calendar-day.available:hover {
    background: var(--primary-light);
    color: white;
    border-color: var(--primary-light);
}

.calendar-day.selected {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.calendar-day.in-range {
    background: #E6F4EA;
    color: var(--primary);
    border-color: transparent;
}

.calendar-legend {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.occupied {
    background: #FFE5E5;
}

.legend-color.available {
    background: white;
    border: 1px solid var(--gray);
}

.legend-color.selected {
    background: var(--primary);
}

/* Booking Form */
.form-wrapper {
    position: sticky;
    top: 100px;
}

.booking-form {
    background: var(--light);
    padding: 40px 36px;
    border-radius: 16px;
}

.selected-dates {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 32px;
}

.date-box {
    background: white;
    padding: 16px;
    border-radius: 8px;
    border: 2px solid var(--gray);
}

.date-box label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.date-box input {
    width: 100%;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    padding: 0;
}

.nights-indicator {
    text-align: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.nights-indicator svg {
    display: block;
    margin: 0 auto 4px;
}

.form-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 16px;
    line-height: 1.6;
    text-align: center;
}

.booking-info {
    padding: 60px 0 100px;
    background: var(--light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.info-box {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 12px;
}

.info-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.info-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark);
}

.info-box p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 968px) {

    .about-grid,
    .location-grid,
    .contact-grid,
    .booking-layout,
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cta-visual {
        text-align: center;
    }

    .cta-badge {
        margin: 0 auto 24px;
    }

    .cta-features {
        align-items: center;
    }

    .cta-card {
        padding: 32px 24px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-perks {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        position: static;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Navigation */
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 40px 28px;
        gap: 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex !important;
        z-index: 1001;
    }

    .nav-toggle span {
        transition: all 0.3s ease;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 40px 28px;
        gap: 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex !important;
        z-index: 1001;
    }

    .nav-toggle span {
        transition: all 0.3s ease;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-content {
        padding-top: 100px;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
        margin-bottom: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .contact-grid {
        gap: 40px;
    }

    .btn-cta-large {
        padding: 16px 20px;
        font-size: 15px;
    }

    .cta-card {
        padding: 24px 20px;
    }

    .cta-booking {
        padding: 60px 0;
    }

    .selected-dates {
        grid-template-columns: 1fr;
    }

    .nights-indicator svg {
        transform: rotate(90deg);
    }

    .footer-content {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    /* Disable AOS on mobile to prevent overflow/cut-off issues */
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .hero-title {
        font-size: 36px;
    }

    .container {
        padding: 0 20px;
    }

    .nav-wrapper {
        padding: 15px 0;
    }

    .hero-content {
        padding-top: 80px;
        text-align: center;
        margin: 0 auto;
    }
}

/* Additional Styles for New Sections (Gallery, Pricing) */

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Pricing Section */
.pricing-card {
    position: relative;
    overflow: hidden;
    background: white;
}

.pricing {
    background: #fdfdfd;
    padding: 80px 0;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2C5F2D, #97BC62);
}

.pricing-grid ul li {
    margin-bottom: 12px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 8px;
    font-size: 15px;
    color: #4a5568;
}

.pricing-grid ul li strong {
    color: #2d3748;
}

.pricing-grid ul li:last-child {
    border-bottom: none;
}

/* Responsiveness for new sections */
@media (max-width: 968px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Base Styles */
.pricing-card {
    background: white;
    border: 1px solid #e1e1e1;
    padding: 40px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.pricing-col h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

/* Reviews Scrollable Container */
.reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    margin-top: 50px;
    padding-bottom: 20px;
    /* Space for scrollbar */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #eee;
}

.reviews-grid::-webkit-scrollbar {
    height: 8px;
}

.reviews-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.reviews-grid::-webkit-scrollbar-track {
    background: #eee;
}

.review-card {
    flex: 0 0 calc(33.333% - 20px);
    /* Show 3 cards (minus gap logic approx) */
    scroll-snap-align: start;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.3s;
    min-width: 300px;
    /* Minimum width safety */
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-name {
    font-weight: 700;
    color: #2D3748;
    font-size: 15px;
}

.review-date {
    font-size: 13px;
    color: #718096;
}

.review-stars {
    color: #f1c40f;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: #4A5568;
    font-style: italic;
}

/* Map */
.map-section {
    position: relative;
    border-top: 1px solid #ddd;
    margin-top: 50px;
    /* Separation from reviews */
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.visible {
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.visible .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--accent);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 16px;
    font-size: 24px;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    user-select: none;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 968px) {
    .reviews-grid {
        /* Mobile: 1 card visible */
        gap: 20px;
    }

    .review-card {
        flex: 0 0 calc(100% - 40px);
        /* Nearly full width */
        margin-right: 20px;
    }

    /* Split Pricing on Mobile */
    .pricing-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .pricing-col {
        background: #fdfdfd;
        border: 1px solid #eee;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    }
}