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

:root {
    /* Enhanced Color Palette */
    --beige-light: #f8f6f2;
    --beige-medium: #f0ede6;
    --beige-dark: #e8e4db;
    --beige-accent: #d4c8b8;
    --beige-warm: #e6dfd1;
    --beige-gold: #c4a484;
    
    /* Improved Text Colors */
    --text-primary: rgba(0, 0, 0, 0.85);
    --text-secondary: rgba(0, 0, 0, 0.7);
    --text-muted: rgba(0, 0, 0, 0.6);
    --text-light: rgba(0, 0, 0, 0.5);
    
    /* Enhanced Spacing System */
    --section-padding: clamp(60px, 8vw, 100px) 0;
    --container-padding: clamp(15px, 4vw, 30px);
    --section-gap: clamp(2rem, 4vw, 4rem);
    
    /* Improved Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-small: 8px;
    --radius-medium: 15px;
    --radius-large: 25px;
    --radius-full: 50px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--beige-light);
    overflow-x: hidden;
    font-size: clamp(14px, 1vw, 16px);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: min(1200px, 95vw);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--beige-accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: clamp(10px, 2vw, 15px) clamp(20px, 4vw, 35px);
    border: none;
    border-radius: var(--radius-full);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    color: var(--beige-light);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--text-secondary), var(--text-primary));
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}



/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248, 246, 242, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    padding: clamp(0.8rem, 2vw, 1.2rem) 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 200, 184, 0.2);
}

.header.scrolled {
    background: rgba(248, 246, 242, 0.98);
    box-shadow: var(--shadow-light);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: min(1200px, 95vw);
    margin: 0 auto;
    padding: var(--container-padding);
    gap: 1rem;
}

.nav-brand {
    flex: 1;
}

.nav-brand h1 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin: 0;
    color: var(--text-primary);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

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


.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Language Switcher */
.language-switcher {
    margin-left: clamp(1rem, 2vw, 2rem);
    position: relative;
    display: block !important;
    visibility: visible !important;
}

.lang-dropdown {
    position: relative;
}

.lang-dropdown-btn {
    background: rgba(248, 246, 242, 0.8);
    border: 1px solid var(--beige-accent);
    color: var(--text-secondary);
    padding: clamp(0.4rem, 1vw, 0.6rem) clamp(0.8rem, 1.5vw, 1.2rem);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    min-width: 80px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.lang-dropdown-btn:hover {
    color: var(--text-primary);
    background: rgba(212, 200, 184, 0.2);
    border-color: var(--text-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lang-dropdown-btn i {
    transition: var(--transition);
    font-size: 0.8rem;
}

.lang-dropdown.active .lang-dropdown-btn {
    background: rgba(212, 200, 184, 0.3);
    border-color: var(--text-primary);
    color: var(--text-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lang-dropdown.active .lang-dropdown-btn i {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(248, 246, 242, 0.95);
    border: 1px solid rgba(212, 200, 184, 0.3);
    border-radius: var(--radius-medium);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 0.5rem;
    backdrop-filter: blur(15px);
    padding: 0.5rem 0;
}

.lang-dropdown.active .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: dropdownSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes dropdownSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.lang-option {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    position: relative;
    border-radius: 4px;
    margin: 2px 4px;
    width: calc(100% - 8px);
}

.lang-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--beige-accent);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-option:hover {
    background: linear-gradient(135deg, rgba(212, 200, 184, 0.15), rgba(196, 164, 132, 0.1));
    color: var(--text-primary);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lang-option:hover::before {
    transform: scaleY(1);
}

.lang-option.active {
    background: linear-gradient(135deg, var(--beige-accent), var(--beige-gold));
    color: var(--text-primary);
    font-weight: 600;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(212, 200, 184, 0.3);
}

.lang-option.active::before {
    background: var(--text-primary);
    transform: scaleY(1);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--section-gap);
    align-items: center;
    min-height: 100vh;
    padding: clamp(80px, 12vh, 120px) 0 clamp(40px, 8vh, 80px);
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--beige-medium) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4c8b8" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23d4c8b8" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23d4c8b8" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    padding-left: clamp(1rem, 2vw, 2rem);
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: clamp(0.8rem, 2vw, 1.5rem);
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--text-secondary);
    margin-bottom: clamp(0.8rem, 2vw, 1.5rem);
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: clamp(0.8rem, 2vw, 1.5rem);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-heavy);
    animation: fadeInUp 0.8s ease-out 0.8s both;
    height: 100%;
    min-height: 500px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Overview Section */
.overview {
    padding: var(--section-padding);
    background: var(--beige-medium);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.overview-details {
    display: grid;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--beige-accent);
    margin-top: 0.25rem;
}

.detail-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.detail-item p {
    margin: 0;
    color: var(--text-secondary);
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--beige-accent);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
    transition: var(--transition);
}

.location-link:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.location-link i {
    font-size: 0.8rem;
}

.overview-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
    min-height: 350px;
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.overview-image:hover img {
    transform: scale(1.05);
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background: var(--beige-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--beige-medium);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--radius-large);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--beige-dark);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--beige-accent), var(--beige-gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    background: var(--beige-warm);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card i {
    font-size: 3rem;
    color: var(--beige-accent);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* Gallery Section */
.gallery {
    padding: var(--section-padding);
    background: var(--beige-medium);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 200, 184, 0.1) 50%, transparent 70%);
    pointer-events: none;
}

.gallery-container {
    max-width: min(900px, 95vw);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gallery-main {
    position: relative;
    margin-bottom: 2rem;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    background: var(--beige-light);
}

.gallery-main img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    background-color: var(--beige-light);
    transition: var(--transition);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    width: clamp(45px, 6vw, 55px);
    height: clamp(45px, 6vw, 55px);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
    color: var(--text-primary);
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-medium);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.6;
    border: 2px solid transparent;
    background-color: var(--beige-light);
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: var(--beige-accent);
    transform: scale(1.05);
}

/* Attractions Section */
.attractions {
    padding: var(--section-padding);
    background: var(--white);
}

.attractions .section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.attraction-card {
    background: var(--beige-light);
    border-radius: var(--radius-large);
    overflow: visible;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--beige-dark);
    position: relative;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.attraction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--beige-accent), var(--beige-gold));
    transform: scaleX(0);
    transition: var(--transition);
    z-index: 2;
}

.attraction-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.attraction-card:hover::before {
    transform: scaleX(1);
}

.attraction-image {
    height: 200px;
    overflow: hidden;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.attraction-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: visible;
}

.attraction-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.attraction-content h3 i {
    color: var(--beige-accent);
    font-size: 1.2rem;
}

.attraction-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}



/* Beach Dropdown Styles */
.beach-dropdown-btn {
    background: var(--text-primary);
    color: var(--beige-light);
    border: none;
    border-radius: 25px;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
}

.beach-dropdown-btn:hover {
    background: var(--text-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.beach-dropdown-btn i {
    transition: var(--transition);
}

.beach-dropdown-btn.active i {
    transform: rotate(180deg);
}

.beach-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background: var(--beige-light);
    border-top: 1px solid var(--beige-dark);
    position: relative;
    z-index: 10;
}

.beach-dropdown.active {
    max-height: 2000px;
}

.beach-list {
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.beach-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--beige-dark);
}

.beach-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.beach-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.beach-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Village Dropdown Styles */
.village-dropdown-btn {
    background: var(--text-primary);
    color: var(--beige-light);
    border: none;
    border-radius: 25px;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
}

.village-dropdown-btn:hover {
    background: var(--text-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.village-dropdown-btn i {
    transition: var(--transition);
}

.village-dropdown-btn.active i {
    transform: rotate(180deg);
}

.village-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background: var(--beige-light);
    border-top: 1px solid var(--beige-dark);
    position: relative;
    z-index: 10;
}

.village-dropdown.active {
    max-height: 2000px;
}

.village-list {
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.village-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--beige-dark);
}

.village-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.village-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.village-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Historical Sites Dropdown Styles */
.historical-dropdown-btn {
    background: var(--text-primary);
    color: var(--beige-light);
    border: none;
    border-radius: 25px;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
}

.historical-dropdown-btn:hover {
    background: var(--text-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.historical-dropdown-btn i {
    transition: var(--transition);
}

.historical-dropdown-btn.active i {
    transform: rotate(180deg);
}

.historical-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background: var(--beige-light);
    border-top: 1px solid var(--beige-dark);
    position: relative;
    z-index: 10;
}

.historical-dropdown.active {
    max-height: 2000px;
}

.historical-list {
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.historical-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--beige-dark);
}

.historical-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.historical-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.historical-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Natural Attractions Dropdown Styles */
.natural-dropdown-btn {
    background: var(--text-primary);
    color: var(--beige-light);
    border: none;
    border-radius: 25px;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
}

.natural-dropdown-btn:hover {
    background: var(--text-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.natural-dropdown-btn i {
    transition: var(--transition);
}

.natural-dropdown-btn.active i {
    transform: rotate(180deg);
}

.natural-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background: var(--beige-light);
    border-top: 1px solid var(--beige-dark);
    position: relative;
    z-index: 10;
}

.natural-dropdown.active {
    max-height: 2000px;
}

.natural-list {
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.natural-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--beige-dark);
}

.natural-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.natural-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.natural-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Hiking Trails Dropdown Styles */
.hiking-dropdown-btn {
    background: var(--text-primary);
    color: var(--beige-light);
    border: none;
    border-radius: 25px;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
}

.hiking-dropdown-btn:hover {
    background: var(--text-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hiking-dropdown-btn i {
    transition: var(--transition);
}

.hiking-dropdown-btn.active i {
    transform: rotate(180deg);
}

.hiking-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background: var(--beige-light);
    border-top: 1px solid var(--beige-dark);
    position: relative;
    z-index: 10;
}

.hiking-dropdown.active {
    max-height: 2000px;
}

.hiking-list {
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.hiking-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--beige-dark);
}

.hiking-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.hiking-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.hiking-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Restaurant Dropdown Styles */
.restaurant-dropdown-btn {
    background: var(--text-primary);
    color: var(--beige-light);
    border: none;
    border-radius: 25px;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
}

.restaurant-dropdown-btn:hover {
    background: var(--text-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.restaurant-dropdown-btn i {
    transition: var(--transition);
}

.restaurant-dropdown-btn.active i {
    transform: rotate(180deg);
}

.restaurant-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background: var(--beige-light);
    border-top: 1px solid var(--beige-dark);
    position: relative;
    z-index: 10;
}

.restaurant-dropdown.active {
    max-height: 2000px;
}

.restaurant-list {
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.restaurant-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--beige-dark);
}

.restaurant-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.restaurant-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.restaurant-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--beige-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--beige-accent);
    margin-top: 0.25rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-item p {
    margin: 0;
    color: var(--text-secondary);
}

/* Contact Form */
.contact-form {
    background: var(--beige-medium);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--radius-large);
    border: 1px solid var(--beige-dark);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--beige-accent), var(--beige-gold), var(--beige-accent));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: clamp(12px, 2vw, 16px) clamp(15px, 2.5vw, 20px);
    border: 2px solid var(--beige-dark);
    border-radius: var(--radius-small);
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    background: var(--beige-light);
    color: var(--text-primary);
    transition: var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--beige-accent);
    box-shadow: 0 0 0 3px rgba(212, 200, 184, 0.15);
    background: var(--beige-light);
}



/* Footer */
.footer {
    background: var(--text-primary);
    color: var(--beige-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--beige-light);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(248, 246, 242, 0.8);
}

.footer-links h4,
.footer-social h4 {
    color: var(--beige-light);
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: rgba(248, 246, 242, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 0.5rem;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(248, 246, 242, 0.1);
    border-radius: 50%;
    color: var(--beige-light);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--beige-accent);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(248, 246, 242, 0.2);
    color: rgba(248, 246, 242, 0.6);
}

/* Schedule Tour Button */
.schedule-tour-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--text-primary);
    color: var(--beige-light);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 12px 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.schedule-tour-btn.visible {
    opacity: 1;
    visibility: visible;
}

.schedule-tour-btn:hover {
    background: var(--text-secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    color: var(--beige-light);
}

.schedule-tour-btn i {
    margin-right: 8px;
    font-size: 1rem;
}

.schedule-tour-btn span {
    white-space: nowrap;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--text-primary);
    color: var(--beige-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.back-to-top:hover {
    background: var(--text-secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        padding-left: 0;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        min-height: 400px;
    }
    
    .overview-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .overview-image {
        height: 350px;
        min-height: 300px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .attractions-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(248, 246, 242, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: var(--shadow-medium);
        border-top: 1px solid rgba(212, 200, 184, 0.2);
        flex: none;
        justify-content: flex-start;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav {
        position: relative;
    }
    

    
    .language-switcher {
        margin-left: 0;
        order: 2;
        display: flex;
        justify-content: flex-end;
        margin-right: 0.5rem;
    }
    
    .nav-toggle {
        display: flex;
        order: 3;
        margin-left: 0.5rem;
    }
    
    .lang-dropdown-btn {
        min-width: 60px;
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .lang-dropdown-menu {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }
    
    .lang-dropdown.active .lang-dropdown-menu {
        transform: translateX(-50%) translateY(0);
    }

    .hero {
        padding: 60px 0 30px;
        min-height: 85vh;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .overview-image {
        height: 300px;
        min-height: 250px;
    }
    
    .gallery-thumbnails {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .thumbnail {
        width: 70px;
        height: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }
    
    .schedule-tour-btn {
        bottom: 20px;
        left: 20px;
        padding: 12px 16px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero {
        padding: 50px 0 20px;
        min-height: 80vh;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.3rem);
    }

    .section-title {
        font-size: clamp(1.6rem, 6vw, 2rem);
        margin-bottom: 2rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }

    .gallery-main img {
        height: 250px;
        object-fit: contain;
        background-color: var(--beige-light);
    }

    .thumbnail {
        width: 55px;
        height: 40px;
        object-fit: cover;
        background-color: var(--beige-light);
    }

    .schedule-tour-btn {
        bottom: 15px;
        left: 15px;
        padding: 10px 12px;
        font-size: 0.8rem;
        border-radius: 50%;
        width: 50px;
        height: 50px;
    }

    .schedule-tour-btn span {
        display: none;
    }

    .schedule-tour-btn i {
        margin-right: 0;
        font-size: 1.2rem;
    }

    .attractions-grid {
        gap: 1rem;
    }

    .attraction-card {
        margin-bottom: 1rem;
    }

    .attraction-content {
        padding: 1rem;
    }

    .attraction-content h3 {
        font-size: 1.1rem;
    }

    .beach-dropdown-btn,
    .village-dropdown-btn,
    .natural-dropdown-btn,
    .restaurant-dropdown-btn,
    .hiking-dropdown-btn,
    .historical-dropdown-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
        margin-top: auto;
        align-self: stretch;
    }

    .beach-list,
    .village-list,
    .natural-list,
    .restaurant-list,
    .hiking-list,
    .historical-list {
        padding: 1rem;
    }

    .beach-item h4,
    .village-item h4,
    .natural-item h4,
    .restaurant-item h4,
    .hiking-item h4,
    .historical-item h4 {
        font-size: 1rem;
    }

    .beach-item p,
    .village-item p,
    .natural-item p,
    .restaurant-item p,
    .hiking-item p,
    .historical-item p {
        font-size: 0.9rem;
    }

    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .nav-menu {
        padding: 1.5rem;
    }
    
    .nav-menu li {
        margin-bottom: 1rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left {
    animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right {
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in {
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Intersection Observer Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Form Validation Styles */
.form-group.error input,
.form-group.error textarea {
    border-color: #e74c3c;
}

.form-group.error .error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.form-group.success input,
.form-group.success textarea {
    border-color: #27ae60;
} 