/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4A90E2;
    --primary-dark: #357ABD;
    --secondary-color: #D4A373;
    --accent-color: #E9C46A;
    --text-dark: #2B2D42;
    --text-light: #8D99AE;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

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

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

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid white;
    cursor: pointer;
}

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

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/Front%20of%20House.avif') center/cover no-repeat;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 40px;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 12px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.location-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    opacity: 0.7;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: 0 auto;
}

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

/* Section Labels */
.section-label {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.highlight-icon {
    font-size: 1.5rem;
}

/* Amenities Section */
.amenities {
    padding: 120px 0;
    background: var(--bg-light);
}

.amenities h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.amenity-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

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

.amenity-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.amenity-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background: var(--bg-white);
}

.gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
}

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

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

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

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

/* Location Section */
.location {
    padding: 120px 0;
    background: var(--bg-light);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.location .section-label {
    font-weight: 600;
    font-size: 1rem;
}

.location h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.location p {
    margin-bottom: 30px;
    color: var(--text-dark);
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
}

.location-features {
    list-style: none;
}

.location-features li {
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    font-weight: 500;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.address-box {
    margin-top: 20px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    line-height: 1.8;
}

/* Travel Guide / Blog Section */
.travel-guide {
    padding: 120px 0;
    background: linear-gradient(135deg, #F5E6D3 0%, #E8D5C4 100%);
    color: var(--text-dark);
}

.travel-guide .section-label {
    color: var(--primary-color);
    background: rgba(74, 144, 226, 0.1);
}

.travel-guide h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-dark);
}

.travel-guide .testimonial-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    transition: var(--transition);
}

.travel-guide .testimonial-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.travel-guide .testimonial-card span:first-of-type {
    color: var(--primary-color);
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.testimonials .section-label {
    color: var(--accent-color);
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stars {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.testimonial-author {
    font-weight: 600;
    opacity: 0.9;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: var(--bg-light);
    text-align: center;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pricing-intro {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    box-shadow: var(--shadow);
    text-align: center;
    width: 100%;
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    position: relative;
}

.pricing-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--bg-light);
}

.pricing-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price .currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.price .amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.price .period {
    font-size: 1.2rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

.pricing-note {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    text-align: left;
}

.pricing-note p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.pricing-note p:last-child {
    margin-bottom: 0;
}

/* Booking Section */
.booking {
    padding: 120px 0;
    background: var(--bg-white);
    text-align: center;
}

.booking-content {
    max-width: 700px;
    margin: 0 auto;
}

.booking h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.booking p {
    margin-bottom: 40px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.booking-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.airbnb-button-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
}

.contact-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-item a,
.contact-item span {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

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

.footer-brand p {
    opacity: 0.7;
    line-height: 1.7;
}

.footer-links h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }

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

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

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

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

    .contact-info {
        flex-direction: column;
        gap: 30px;
    }

    .about,
    .amenities,
    .gallery,
    .location,
    .testimonials,
    .booking {
        padding: 80px 0;
    }

    .about h2,
    .amenities h2,
    .gallery h2,
    .location h2,
    .testimonials h2,
    .booking h2 {
        font-size: 2rem;
    }

    .location p {
        font-size: 1.1rem;
    }

    .location-features li {
        font-size: 1rem;
    }

    .pricing {
        padding: 80px 0;
    }

    .pricing h2 {
        font-size: 2rem;
    }

    .price .amount {
        font-size: 3rem;
    }

    .pricing-card {
        padding: 40px 24px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal[style*="block"] {
    display: flex !important;
}

.modal-content {
    background-color: var(--bg-white);
    margin: 0;
    padding: 0;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    background: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    text-align: center;
    position: relative;
}

.modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.modal-body {
    padding: 30px;
}

.contact-detail {
    padding: 12px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

.contact-detail:last-of-type {
    border-bottom: none;
}

.contact-detail strong {
    color: var(--primary-color);
    display: inline-block;
    min-width: 80px;
}

.contact-detail a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: white;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.modal-close:hover {
    opacity: 0.8;
}

.modal-buttons {
    margin-top: 24px;
    text-align: center;
}

.email-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 320px;
    margin: 0 auto;
}

.email-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.email-option:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.email-icon {
    font-size: 1.5rem;
}

.copy-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--bg-light);
    padding: 12px;
    border-radius: 8px;
    flex-wrap: wrap;
}

.copy-box code {
    font-size: 1rem;
    color: var(--text-dark);
    background: transparent;
    font-family: 'Inter', sans-serif;
}

.copy-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.copy-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .modal-content {
        margin: 15% auto;
        width: 95%;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    .email-options {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .email-option {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
}

/* Sticky Header Scroll Effect */
.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Social Media Links in Footer */
.footer-social {
    text-align: center;
}

.footer-social h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* Weather Widget in Nav */
#weather-widget {
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 20px;
    transition: var(--transition);
}

#weather-widget:hover {
    background: var(--primary-color);
    color: white;
    cursor: default;
}

#weather-widget:hover #weather-temp {
    color: white;
}

/* Mobile Responsive Additions */
@media (max-width: 768px) {
    #weather-widget {
        display: none !important;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

/* ============================================
   MOBILE BREAKPOINT: Small Phones (480px and below)
   iPhone SE, Android phones 360-412px
   ============================================ */
@media (max-width: 480px) {
    /* Container padding */
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    /* Hero */
    .hero-content {
        padding: 24px;
        margin: 0 8px;
    }
    
    .hero h1 {
        font-size: 2rem !important;
    }
    
    .tagline {
        font-size: 1rem !important;
    }
    
    .location-text {
        font-size: 0.95rem !important;
    }
    
    /* Buttons full width */
    .btn-large {
        max-width: 100%;
    }
    
    /* Section padding */
    .about, .amenities, .gallery, .location, 
    .testimonials, .booking, .pricing, .travel-guide {
        padding: 60px 0 !important;
    }
    
    /* Headings */
    .about h2, .amenities h2, .gallery h2, 
    .location h2, .testimonials h2, .booking h2, 
    .pricing h2, .travel-guide h2 {
        font-size: 1.75rem !important;
    }
    
    .section-label {
        font-size: 0.8rem;
    }
    
    /* About image */
    .about-image img {
        height: 280px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-auto-rows: 220px;
        gap: 12px;
    }
    
    /* Map */
    .map-container {
        height: 250px;
    }
    
    /* Pricing card - stack vertically */
    .pricing-card.featured {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .pricing-card.featured > div {
        min-width: 100% !important;
        padding: 10px 0 !important;
    }
    
    /* OR divider - horizontal */
    .pricing-card.featured > div:nth-child(2) {
        flex-direction: row !important;
        min-height: auto !important;
        padding: 10px 0 !important;
    }
    
    .pricing-card.featured > div:nth-child(2) > div:first-child {
        width: 100% !important;
        height: 1px !important;
        min-height: 1px !important;
    }
    
    /* Footer */
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: span 1 !important;
        text-align: center;
    }
    
    .footer-brand p {
        text-align: center;
    }
    
    /* Travel guide cards - 2 columns */
    .travel-guide .testimonials-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }
    
    .travel-guide .testimonial-card {
        padding: 24px 12px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        margin: auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h3 {
        font-size: 1.4rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    /* Email options */
    .email-options {
        grid-template-columns: 1fr !important;
    }
    
    /* Booking options */
    .booking-options {
        grid-template-columns: 1fr !important;
    }
    
    .booking-option {
        padding: 20px !important;
    }
    
    /* Contact info */
    .contact-info {
        gap: 20px;
    }
    
    /* Back to top button */
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
    
    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Highlights */
    .highlights {
        grid-template-columns: 1fr;
    }
    
    /* Social links */
    .social-links {
        justify-content: center;
    }
}

/* ============================================
   FIX: Hamburger Touch Target (44x44px minimum)
   ============================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
}

/* ============================================
   FIX: Mobile Nav Link Touch Targets
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        gap: 0;
        padding: 20px 30px;
    }
    
    .nav-links a {
        display: block;
        padding: 14px 0;
        font-size: 1.1rem;
        width: 100%;
    }
    
    .nav-links .btn-primary {
        margin-top: 10px;
        text-align: center;
        width: 100%;
    }
    
    #weather-widget {
        display: none !important;
    }
}

/* ============================================
   FIX: Modal scroll and centering on mobile
   ============================================ */
@media (max-width: 768px) {
    .modal-content {
        margin: auto;
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* Selection */
::selection {
    background: var(--secondary-color);
    color: white;
}
