/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
img {
    background: linear-gradient(135deg, #1a1614, #2a2420, #1a1614);
}
body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0a0a;
    color: #f5f0eb;
    overflow-x: hidden;
    line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== SCROLLBAR ===== */
/* Firefox */
* { scrollbar-width: thin; scrollbar-color: #c8a97e #0a0a0a; }
/* Chrome, Safari, Edge */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #c8a97e; border-radius: 3px; }

/* ===== UTILITY ===== */
.section-padding { padding: 100px 5%; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
    font-family: 'Great Vibes', cursive;
    font-size: 1.4rem;
    color: #c8a97e;
    text-align: center;
    display: block;
    margin-bottom: 8px;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.section-subtitle {
    text-align: center;
    font-weight: 300;
    font-size: 0.95rem;
    color: #a89e95;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.8;
}
.gold { color: #c8a97e; }
.divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c8a97e, transparent);
    margin: 20px auto 30px;
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader-text {
    font-family: 'Great Vibes', cursive;
    font-size: 2.4rem;
    color: #c8a97e;
    animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s;
}
nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px 5%;
    box-shadow: 0 1px 30px rgba(0,0,0,0.4);
}
.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #c8a97e;
}
.nav-logo span {
    font-family: 'Great Vibes', cursive;
    font-size: 1.1rem;
    letter-spacing: 1px;
    display: block;
    color: #a89e95;
    margin-top: -4px;
}
.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}
.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4ccc5;
    position: relative;
    transition: color 0.3s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c8a97e;
    transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: #c8a97e; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
    border: 1px solid #c8a97e !important;
    padding: 10px 24px !important;
    color: #c8a97e !important;
    transition: all 0.3s !important;
}
.nav-cta:hover {
    background: #c8a97e !important;
    color: #0a0a0a !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    width: 26px;
    height: 1.5px;
    background: #c8a97e;
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ===== HERO ===== */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.hero-slide.active {
    opacity: 1;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, #0a0a0a, transparent);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(200,169,126,0.3);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c8a97e;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    background: rgba(200,169,126,0.05);
}
.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: 3px;
}
.hero h1 .script {
    font-family: 'Great Vibes', cursive;
    font-size: 0.6em;
    display: block;
    color: #c8a97e;
    margin-top: 8px;
}
.hero p {
    font-weight: 300;
    font-size: 1.05rem;
    color: #b5aaa0;
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #c8a97e;
    padding: 16px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c8a97e;
    background: transparent;
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.hero-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #c8a97e;
    transform: translateX(-101%);
    transition: transform 0.4s;
    z-index: -1;
}
.hero-btn:hover::before { transform: translateX(0); }
.hero-btn:hover { color: #0a0a0a; }
.hero-btn svg { width: 16px; height: 16px; fill: currentColor; }

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: float 2s ease-in-out infinite;
}
.scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a89e95;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #c8a97e, transparent);
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== ABOUT ===== */
.about { background: #0a0a0a; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images {
    position: relative;
    height: 550px;
}
.about-images img {
    background: linear-gradient(135deg, #1a1614, #2a2420, #1a1614);
}
.about-img-main {
    width: 80%;
    height: 420px;
    object-fit: cover;
    border-radius: 4px;
    position: relative;
    z-index: 1;
}
.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    border: 3px solid #0a0a0a;
}
.about-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 120px;
    height: 120px;
    border-top: 1px solid #c8a97e;
    border-left: 1px solid #c8a97e;
    z-index: 0;
}
.about-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
}
.about-content p {
    color: #a89e95;
    font-weight: 300;
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.8;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(200,169,126,0.15);
}
.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 300;
    color: #c8a97e;
}
.stat-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8a8078;
    margin-top: 4px;
}

/* ===== SERVICES ===== */
.services { background: #0e0e0e; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.service-card {
    background: linear-gradient(145deg, #141414, #111);
    border: 1px solid rgba(200,169,126,0.08);
    padding: 50px 36px;
    text-align: center;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c8a97e, transparent);
    transform: scaleX(0);
    transition: transform 0.5s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200,169,126,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: #c8a97e;
    fill: none;
    stroke-width: 1.2;
}
.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 14px;
    letter-spacing: 1px;
}
.service-card p {
    font-size: 0.88rem;
    color: #8a8078;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
}
.service-card .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #c8a97e;
}
.service-card .price small {
    font-size: 0.7rem;
    color: #8a8078;
    font-family: 'Montserrat', sans-serif;
}

/* ===== PACKAGES ===== */
.packages { background: #0a0a0a; }
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.package-card {
    border: 1px solid rgba(200,169,126,0.1);
    padding: 50px 40px;
    position: relative;
    background: #0e0e0e;
    transition: all 0.4s;
}
.package-card:hover {
    border-color: rgba(200,169,126,0.3);
}
.package-card.featured {
    border-color: #c8a97e;
    background: linear-gradient(145deg, #161412, #0e0e0e);
}
.package-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #c8a97e;
    color: #0a0a0a;
    font-size: 0.6rem;
    letter-spacing: 2px;
    padding: 6px 20px;
    font-weight: 600;
}
.package-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 8px;
}
.package-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #c8a97e;
    margin-bottom: 8px;
}
.package-price small {
    font-size: 0.9rem;
    color: #8a8078;
    font-family: 'Montserrat', sans-serif;
}
.package-duration {
    font-size: 0.75rem;
    color: #8a8078;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(200,169,126,0.06);
    font-size: 0.9rem;
    font-weight: 300;
    color: #b5aaa0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.package-features li::before {
    content: '✦';
    color: #c8a97e;
    font-size: 0.7rem;
}
.package-btn {
    display: block;
    width: 100%;
    margin-top: 36px;
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(200,169,126,0.3);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c8a97e;
    background: transparent;
    cursor: pointer;
    transition: all 0.4s;
}
.package-btn:hover {
    background: #c8a97e;
    color: #0a0a0a;
}
.package-card.featured .package-btn {
    background: #c8a97e;
    color: #0a0a0a;
}
.package-card.featured .package-btn:hover {
    background: #d4c0a0;
}

/* ===== GALLERY ===== */
.gallery { background: #0e0e0e; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 8px;
}
.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: linear-gradient(135deg, #1a1614, #2a2420, #1a1614);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
}
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(2) { grid-row: span 2; }
.gallery-item:nth-child(3) { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(4) { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 2; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: #0a0a0a; }
.testimonial-slider {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    min-height: 250px;
}
.testimonial-item {
    display: none;
    animation: fadeIn 0.6s ease;
}
.testimonial-item.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #d4ccc5;
}
.testimonial-quote::before {
    content: '"';
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: #c8a97e;
    display: block;
    margin-bottom: 10px;
}
.testimonial-author {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #c8a97e;
}
.testimonial-role {
    font-size: 0.75rem;
    color: #8a8078;
    margin-top: 4px;
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}
.testimonial-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #c8a97e;
    cursor: pointer;
    transition: all 0.3s;
}
.testimonial-dots span.active {
    background: #c8a97e;
}

/* ===== BOOKING / CONTACT ===== */
.booking {
    background:
        linear-gradient(135deg, rgba(10,10,10,0.92), rgba(10,10,10,0.88)),
        url('images/booking.jpg') center/cover no-repeat;
}
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.booking-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}
.booking-info > p {
    color: #a89e95;
    font-weight: 300;
    font-size: 0.95rem;
    margin-bottom: 40px;
    line-height: 1.8;
}
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}
.contact-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(200,169,126,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg {
    width: 18px;
    height: 18px;
    stroke: #c8a97e;
    fill: none;
    stroke-width: 1.5;
}
.contact-text strong {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c8a97e;
    margin-bottom: 4px;
    font-weight: 500;
}
.contact-text span {
    font-size: 0.9rem;
    color: #a89e95;
    font-weight: 300;
}
.booking-form {
    background: rgba(20,20,20,0.6);
    border: 1px solid rgba(200,169,126,0.1);
    padding: 50px 40px;
    backdrop-filter: blur(10px);
}
.booking-form h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8a8078;
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(10,10,10,0.6);
    border: 1px solid rgba(200,169,126,0.12);
    color: #f5f0eb;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c8a97e;
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8a97e' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}
.form-group select option { background: #0a0a0a; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-submit {
    width: 100%;
    padding: 16px;
    background: #c8a97e;
    border: none;
    color: #0a0a0a;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s;
    margin-top: 10px;
}
.form-submit:hover {
    background: #d4c0a0;
}

/* ===== FOOTER ===== */
footer {
    background: #080808;
    padding: 80px 5% 30px;
    border-top: 1px solid rgba(200,169,126,0.08);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(200,169,126,0.08);
}
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand p {
    color: #8a8078;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 300px;
}
.footer-col h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: 1px;
}
.footer-col li {
    margin-bottom: 12px;
}
.footer-col a {
    font-size: 0.85rem;
    color: #8a8078;
    font-weight: 300;
    transition: color 0.3s;
}
.footer-col a:hover { color: #c8a97e; }
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(200,169,126,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: #c8a97e;
    border-color: #c8a97e;
}
.footer-social a:hover svg { stroke: #0a0a0a; }
.footer-social svg {
    width: 16px;
    height: 16px;
    stroke: #c8a97e;
    fill: none;
    stroke-width: 1.5;
}
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #5a5550;
}
.footer-bottom a { color: #c8a97e; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid { gap: 50px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(10,10,10,0.98);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.4s;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a { font-size: 1rem; letter-spacing: 3px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-images { height: 400px; }
    .about-img-main { width: 100%; }
    .booking-grid { grid-template-columns: 1fr; gap: 50px; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .packages-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .form-row { grid-template-columns: 1fr; }
    .section-padding { padding: 70px 5%; }
}
@media (max-width: 480px) {
    .about-stats { grid-template-columns: 1fr; text-align: center; gap: 20px; }
    .booking-form { padding: 30px 20px; }
    .about-images { height: 300px; }
}
