/* ===== CSS Variables ===== */
:root {
    --bg-primary: #f5f5dc;
    --bg-secondary: #FFFFFF;
    --bg-dark: #1f3d2b;
    --text-primary: #1f3d2b;
    --text-secondary: #4a5d23;
    --text-on-dark: #f5f5dc;
    --accent: #4CAF50;
    --border-light: rgba(31, 61, 43, 0.15);
    --border-dark: rgba(245, 245, 220, 0.2);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

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

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

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

@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(76, 175, 80, 0);
    }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(245, 245, 220, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    transition: color 0.3s ease;
}

.header.scrolled .logo {
    color: var(--text-primary);
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 32px;
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

.header.scrolled .nav-link {
    color: var(--text-primary);
}

.header.scrolled .nav-link:hover {
    color: var(--accent);
}

.btn-book {
    background: var(--accent);
    color: white;
    padding: 10px 24px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-book:hover {
    background: var(--bg-dark);
}

.mobile-menu-btn {
    display: flex;
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

.header.scrolled .mobile-menu-btn {
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    padding: 16px 24px;
}

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

.nav-link-mobile {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
}

.btn-book-mobile {
    margin-top: 16px;
    background: var(--accent);
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: 500;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
}

@media (min-width: 768px) {
    .hero {
        padding-bottom: 128px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(31, 61, 43, 0.85), rgba(31, 61, 43, 0.5), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 0 48px;
        max-width: 700px;
        margin: 0 0 0 calc((100vw - 1280px) / 2 + 48px);
    }
}

.hero-overline {
    color: var(--accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title em {
    font-style: italic;
}

.hero-text {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    max-width: 540px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .hero-text {
        font-size: 1.125rem;
    }
}

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

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent);
    color: white;
    padding: 16px 32px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: var(--bg-dark);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 16px 32px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

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

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

@media (min-width: 768px) {
    .scroll-indicator {
        display: block;
    }
}

/* ===== Section Styles ===== */
.section-overline {
    color: var(--accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
}

.section-overline.light {
    color: var(--accent);
}

.section-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-title.light {
    color: var(--text-on-dark);
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 2rem;
    }
}

/* ===== About Section ===== */
.about {
    padding: 96px 0;
}

@media (min-width: 768px) {
    .about {
        padding: 128px 0;
    }
}

.highlight-banner {
    background: var(--bg-dark);
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .highlight-banner {
        padding: 64px 48px;
    }
}

.banner-stars {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.banner-stars i {
    position: absolute;
    color: var(--accent);
}

.star-1 { top: 16px; left: 16px; font-size: 40px; }
.star-2 { bottom: 16px; right: 16px; font-size: 40px; }
.star-3 { top: 16px; right: 80px; font-size: 24px; color: var(--text-on-dark); }
.star-4 { bottom: 32px; left: 80px; font-size: 24px; color: var(--text-on-dark); }

.highlight-banner h3 {
    font-size: 1.75rem;
    color: var(--text-on-dark);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .highlight-banner h3 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .highlight-banner h3 {
        font-size: 3rem;
    }
}

.highlight-banner h3 span {
    color: var(--accent);
    font-style: italic;
}

.highlight-banner p {
    color: rgba(245, 245, 220, 0.8);
    font-size: 1.125rem;
}

.about-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-content .quote {
    font-style: italic;
    font-weight: 500;
    color: var(--text-primary);
}

.about-images {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-img-small {
    position: absolute;
    bottom: -32px;
    left: -32px;
    width: 192px;
    height: 192px;
    object-fit: cover;
    border: 4px solid var(--bg-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: none;
}

@media (min-width: 768px) {
    .about-img-small {
        display: block;
    }
}

/* Perfect For */
.perfect-for {
    margin-top: 96px;
    padding-top: 64px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.perfect-for-text {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 48px;
}

.perfect-for-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .perfect-for-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.perfect-card {
    background: white;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.perfect-card:hover {
    transform: translateY(-8px);
}

.perfect-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

@media (min-width: 768px) {
    .perfect-card img {
        height: 192px;
    }
}

.perfect-card:hover img {
    transform: scale(1.1);
}

.perfect-card-content {
    padding: 20px;
    text-align: left;
}

.perfect-card-content h4 {
    font-size: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.perfect-card-content h4 i {
    color: var(--accent);
}

.perfect-card-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.btn-center {
    margin: 0 auto;
}

/* ===== Accommodation Section ===== */
.accommodation {
    padding: 96px 0;
    background: white;
}

@media (min-width: 768px) {
    .accommodation {
        padding: 128px 0;
    }
}

.rooms-grid {
    display: grid;
    gap: 32px;
    margin-top: 64px;
}

@media (min-width: 768px) {
    .rooms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.room-card {
    background: white;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(31, 61, 43, 0.15);
}

.room-image {
    position: relative;
    height: 256px;
    overflow: hidden;
}

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

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-icon {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(31, 61, 43, 0.8);
    padding: 8px;
    color: var(--text-on-dark);
    font-size: 24px;
}

.room-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.room-content {
    padding: 32px;
}

.room-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.room-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.room-features {
    list-style: none;
    margin-bottom: 16px;
}

.room-features li {
    font-size: 0.75rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.room-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.room-rule {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    padding: 8px 12px;
    font-size: 0.75rem;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.btn-room {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 12px;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-room:hover {
    background: var(--accent);
    color: white;
}

.house-rules {
    margin-top: 48px;
    padding: 24px;
    background: rgba(245, 245, 220, 0.5);
    border: 1px solid var(--border-light);
    text-align: center;
}

.house-rules h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.rules-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.rule {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.rule i {
    color: #dc2626;
}

/* ===== Food Section ===== */
.food {
    padding: 96px 0;
    background: var(--bg-dark);
}

@media (min-width: 768px) {
    .food {
        padding: 128px 0;
    }
}

.food-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 768px) {
    .food-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.food-text {
    color: rgba(245, 245, 220, 0.8);
    margin-bottom: 32px;
}

.food-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.food-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(245, 245, 220, 0.9);
    font-size: 0.875rem;
}

.food-highlight i {
    color: var(--accent);
    font-size: 24px;
}

.malnad-items {
    border-top: 1px solid rgba(245, 245, 220, 0.2);
    padding-top: 24px;
}

.malnad-items h4 {
    color: var(--text-on-dark);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.items-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.items-tags span {
    padding: 4px 12px;
    background: rgba(245, 245, 220, 0.1);
    border: 1px solid rgba(245, 245, 220, 0.2);
    color: rgba(245, 245, 220, 0.8);
    font-size: 0.75rem;
}

.food-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.food-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 2px solid rgba(245, 245, 220, 0.2);
    transition: transform 0.5s ease;
}

.food-images img:hover {
    transform: scale(1.05);
}

.also-available {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(245, 245, 220, 0.2);
}

.also-available h3 {
    color: var(--text-on-dark);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: rgba(245, 245, 220, 0.05);
    border: 1px solid rgba(245, 245, 220, 0.2);
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-content {
    padding: 20px;
}

.service-content h4 {
    color: var(--text-on-dark);
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.service-content h4 i {
    color: var(--accent);
}

.service-content p {
    color: rgba(245, 245, 220, 0.7);
    font-size: 0.875rem;
}

/* ===== Activities Section ===== */
.activities {
    padding: 96px 0;
}

@media (min-width: 768px) {
    .activities {
        padding: 128px 0;
    }
}

.activities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 64px;
}

@media (min-width: 768px) {
    .activities-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.activity-card {
    position: relative;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.activity-card.large {
    grid-column: span 2;
    grid-row: span 2;
    height: 400px;
}

.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.activity-card:hover img {
    transform: scale(1.1);
}

.activity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31, 61, 43, 0.9), rgba(31, 61, 43, 0.2), transparent);
}

.activity-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
}

.activity-content h3 {
    color: white;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.activity-content h3 i {
    color: var(--accent);
}

.activity-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
}

.railway-info {
    margin-top: 32px;
    padding: 16px;
    background: rgba(31, 61, 43, 0.1);
    border: 1px solid rgba(31, 61, 43, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.railway-info i {
    color: var(--accent);
    font-size: 24px;
}

.railway-info p {
    color: var(--text-primary);
}

/* ===== Gallery Section ===== */
.gallery {
    padding: 96px 0;
    background: white;
}

@media (min-width: 768px) {
    .gallery {
        padding: 128px 0;
    }
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 48px 0;
}

.filter-btn {
    padding: 8px 16px;
    background: var(--bg-primary);
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-item.large img {
    height: 400px;
}

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

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

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 8px;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.1);
}

.lightbox img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 96px 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .testimonials {
        padding: 128px 0;
    }
}

.testimonials-wrapper {
    position: relative;
    margin-top: 48px;
}

.testimonials-wrapper::before,
.testimonials-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 10;
    pointer-events: none;
}

.testimonials-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.testimonials-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.testimonials-track {
    display: flex;
    gap: 24px;
    animation: marquee 30s linear infinite;
    padding: 16px 0;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    flex-shrink: 0;
    width: 350px;
    padding: 24px;
    background: white;
    border: 1px solid var(--border-light);
}

@media (min-width: 768px) {
    .testimonial-card {
        width: 400px;
    }
}

.testimonial-card > i {
    font-size: 32px;
    color: rgba(76, 175, 80, 0.3);
    margin-bottom: 16px;
}

.stars {
    color: #eab308;
    margin-bottom: 16px;
}

.testimonial-card > p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ===== Location Section ===== */
.location {
    padding: 96px 0;
}

@media (min-width: 768px) {
    .location {
        padding: 128px 0;
    }
}

.location-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
}

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

@media (min-width: 768px) {
    .attractions-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.attraction-card {
    background: white;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.attraction-card:hover {
    transform: translateX(8px);
}

.attraction-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attraction-card:hover img {
    transform: scale(1.1);
}

.attraction-content {
    padding: 16px;
}

.attraction-content h4 {
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.attraction-content p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.attraction-info {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: rgba(74, 93, 35, 0.7);
}

.attraction-info span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.find-us {
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.find-us > h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .find-us > h3 {
        font-size: 2rem;
    }
}

.find-us > p {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.find-us-grid {
    display: grid;
    gap: 48px;
}

@media (min-width: 768px) {
    .find-us-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.address-card {
    background: white;
    padding: 32px;
    border: 1px solid var(--border-light);
    display: flex;
    gap: 16px;
}

.address-card > i {
    color: var(--accent);
    font-size: 28px;
    flex-shrink: 0;
}

.address-card h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.address-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: white;
    padding: 12px 24px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-directions:hover {
    background: var(--bg-dark);
}

.map-container {
    min-height: 300px;
    border: 1px solid var(--border-light);
}

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

/* ===== Contact Section ===== */
.contact {
    padding: 96px 0;
}

@media (min-width: 768px) {
    .contact {
        padding: 128px 0;
    }
}

.contact-grid {
    display: grid;
    gap: 48px;
    margin-top: 64px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border: 1px solid var(--border-light);
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateX(8px);
}

.contact-card.whatsapp {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.contact-card.whatsapp span,
.contact-card.whatsapp strong {
    color: white;
}

.contact-card > i {
    font-size: 28px;
    color: var(--accent);
}

.contact-card.whatsapp > i {
    color: white;
}

.contact-card span {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.contact-card strong {
    display: block;
    color: var(--text-primary);
}

.contact-form {
    background: white;
    padding: 32px;
    border: 1px solid var(--border-light);
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    background: rgba(245, 245, 220, 0.3);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: none;
}

.form-row {
    display: grid;
    gap: 16px;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent);
    color: white;
    padding: 16px;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: var(--bg-dark);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.footer-cta {
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid rgba(245, 245, 220, 0.1);
}

@media (min-width: 768px) {
    .footer-cta {
        padding: 128px 0;
    }
}

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

@media (min-width: 768px) {
    .footer-cta h2 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-cta h2 {
        font-size: 4.5rem;
    }
}

.footer-cta > .container > p {
    color: rgba(245, 245, 220, 0.7);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 640px) {
    .footer-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: white;
    padding: 16px 32px;
    font-weight: 500;
    animation: pulse 2s infinite;
    transition: background 0.3s ease;
}

.btn-whatsapp-large:hover {
    background: #43a047;
}

.btn-whatsapp-large i {
    font-size: 28px;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid rgba(245, 245, 220, 0.3);
    color: var(--text-on-dark);
    padding: 16px 32px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-call:hover {
    background: rgba(245, 245, 220, 0.1);
}

.footer-content {
    padding: 64px 0;
}

.footer-grid {
    display: grid;
    gap: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-brand > p {
    color: rgba(245, 245, 220, 0.7);
    font-size: 0.875rem;
    margin-bottom: 24px;
    max-width: 400px;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
    color: white;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.instagram-btn:hover {
    opacity: 0.9;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: rgba(245, 245, 220, 0.7);
    font-size: 0.875rem;
    padding: 8px 0;
    transition: color 0.3s ease;
}

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

.footer-contact p,
.footer-contact a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(245, 245, 220, 0.7);
    font-size: 0.875rem;
    margin-bottom: 12px;
}

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

.footer-contact i {
    color: var(--accent);
    margin-top: 2px;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(245, 245, 220, 0.1);
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .footer-bottom .container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(245, 245, 220, 0.5);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
    transition: background 0.3s ease;
}

.whatsapp-float:hover {
    background: #1eb851;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}
