* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-blue: #001f3f;
    --ocean-blue: #0074D9;
    --turquoise: #39CCCC;
    --light-turquoise: #7FDBFF;
    --white: #ffffff;
    --dark-text: #333333;
    --light-gray: #f5f5f5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    color: var(--dark-text);
    line-height: 1.6;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    max-width: 500px;
    width: 90%;
    display: none;
    animation: slideUp 0.5s ease-out;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    text-align: center;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    font-size: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 1rem;
}

.cookie-btn.accept {
    background: var(--turquoise);
    color: var(--deep-blue);
}

.cookie-btn.decline {
    background: var(--light-gray);
    color: var(--dark-text);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 31, 63, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.site-title {
    display: flex;
    align-items: center;
}

.site-title a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.site-domain {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 0.2rem;
    opacity: 0.9;
    display: block;
    line-height: 1;
}

.site-title a:hover {
    opacity: 0.8;
}

.site-title h1 {
    color: var(--light-turquoise);
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    padding: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    cursor: pointer;
    line-height: 1.2;
    display: block;
}

.main-nav {
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--light-turquoise);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--light-turquoise);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section with Water Background */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 70px;
    padding: 3rem 0;
}

.hero-background-blurred {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: var(--deep-blue);
}

.hero-bg-blurred {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px);
    transform: scale(1.1);
    opacity: 0.6;
}

.water-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--deep-blue) 0%, var(--ocean-blue) 50%, var(--turquoise) 100%);
    animation: waveMotion 8s ease-in-out infinite;
    z-index: 2;
    opacity: 0.4;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.hero-image-left {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInLeft 1s ease-out;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

/* Wave Animation */
.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: rgba(127, 219, 255, 0.1);
    border-radius: 50%;
    animation: waveMove 20s linear infinite;
}

.wave1 {
    top: -50%;
    left: -50%;
    animation-delay: 0s;
}

.wave2 {
    top: -60%;
    left: -60%;
    animation-delay: -5s;
    background: rgba(57, 204, 204, 0.15);
}

.wave3 {
    top: -70%;
    left: -70%;
    animation-delay: -10s;
    background: rgba(0, 116, 217, 0.1);
}

@keyframes waveMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-25%, -25%) rotate(180deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes waveMotion {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Sun Shimmer Effect */
.sun-shimmer {
    position: absolute;
    top: 20%;
    left: -100%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: shimmer 6s ease-in-out infinite;
    z-index: 3;
}

@keyframes shimmer {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 120%;
        opacity: 0;
    }
}

/* Hero Content with Rising Animation */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    animation: fadeInRight 1s ease-out;
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: titleRise 1.5s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--turquoise);
    color: var(--deep-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 1.1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(57, 204, 204, 0.4);
}

@keyframes riseFromWater {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes titleRise {
    0% {
        transform: translateY(50px) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInRight {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--deep-blue);
    font-weight: bold;
}

/* Highlights Section */
.highlights {
    background: linear-gradient(180deg, var(--light-turquoise) 0%, var(--white) 100%);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.highlight-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.highlight-card:hover .highlight-image img {
    transform: scale(1.1);
}

.highlight-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.highlight-card p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--light-turquoise);
}

.faq-question h3 {
    color: var(--deep-blue);
    font-size: 1.2rem;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--turquoise);
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
}

/* Gallery Preview */
.gallery-preview {
    background: var(--deep-blue);
    color: var(--white);
}

.gallery-preview .section-title {
    color: var(--white);
}

.gallery-grid-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item-preview {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item-preview:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item-preview:hover .gallery-overlay {
    opacity: 1;
}

.view-icon {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Gallery Grid Section */
.gallery-intro {
    background: var(--white);
    padding: 7rem 0 3rem 0;
    margin-top: 0;
}

.gallery-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    font-size: 1.1rem;
}

.gallery-grid-section {
    background: var(--light-gray);
    padding: 3rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

.gallery-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--light-turquoise);
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
    animation: zoomIn 0.3s;
}

.modal-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Discover Sections */
.discover-intro {
    background: var(--white);
    padding-top: 7rem;
}

.discover-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.discover-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.discover-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.discover-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Landmarks Section */
.landmarks-section {
    background: var(--light-gray);
}

.landmarks-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.landmarks-text h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.landmarks-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.landmarks-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.landmarks-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Natural Wonders Section */
.natural-wonders-section {
    background: var(--white);
}

.natural-wonders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.natural-wonder-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.natural-wonder-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.natural-wonder-item h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.natural-wonder-item p {
    color: #666;
    line-height: 1.6;
}

/* Cultural Heritage Section */
.cultural-heritage-section {
    background: var(--light-gray);
}

.cultural-heritage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cultural-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cultural-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cultural-text h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.cultural-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Modern Attractions Section */
.modern-attractions-section {
    background: var(--white);
}

.modern-attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.attraction-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.attraction-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.attraction-item h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.attraction-item p {
    color: #666;
    line-height: 1.6;
}

/* Local Communities Section */
.local-communities-section {
    background: var(--light-gray);
}

.local-communities-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.communities-text h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.communities-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.communities-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.communities-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Seasonal Experiences Section */
.seasonal-experiences-section {
    background: var(--white);
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.seasonal-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.seasonal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.seasonal-item h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.seasonal-item p {
    color: #666;
    line-height: 1.6;
}

/* Hidden Gems Section */
.hidden-gems-section {
    background: var(--light-gray);
}

.hidden-gems-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hidden-gems-text h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.hidden-gems-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.hidden-gems-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hidden-gems-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Discovery Journey Section */
.discovery-journey-section {
    background: var(--deep-blue);
    color: var(--white);
}

.discovery-journey-section .section-title {
    color: var(--white);
}

.discovery-journey-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.discovery-journey-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* About Sections */
.about-intro {
    background: var(--white);
    padding-top: 7rem;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    animation: fadeInUp 1s ease-out;
}

.story-section {
    background: var(--light-gray);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.story-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.team-section {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.team-card p {
    color: #666;
    line-height: 1.6;
}

/* Activities Sections */
.activities-overview {
    background: var(--white);
    padding-top: 7rem;
}

.activities-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.activities-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.activities-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.activities-image img {
    width: 100%;
    height: auto;
    display: block;
}

.activities-details {
    background: var(--light-gray);
}

.activities-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.activity-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.activity-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.activity-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-turquoise);
    transition: background 0.3s;
}

.activity-question:hover {
    background: var(--turquoise);
}

.activity-question h3 {
    color: var(--deep-blue);
    font-size: 1.2rem;
    margin: 0;
}

.activity-icon {
    font-size: 1.5rem;
    color: var(--deep-blue);
    font-weight: bold;
    transition: transform 0.3s;
}

.activity-item.active .activity-icon {
    transform: rotate(45deg);
}

.activity-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    padding: 0 1.5rem;
}

.activity-item.active .activity-answer {
    max-height: 500px;
    padding: 1.5rem;
}

.activity-answer p {
    color: #666;
    line-height: 1.8;
}

/* Forms */
.inquiry-form-section,
.feedback-form-section {
    background: var(--white);
}

.inquiry-form,
.feedback-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--turquoise);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--turquoise);
    color: var(--deep-blue);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(57, 204, 204, 0.4);
}

.extra-info-section {
    background: var(--light-gray);
}

.extra-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.extra-info-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.extra-info-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.extra-info-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact-info-section {
    background: var(--white);
    padding-top: 7rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-info-item h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info-item p {
    color: #666;
    font-size: 1.1rem;
}

.contact-info-item a {
    color: var(--turquoise);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-item a:hover {
    color: var(--ocean-blue);
}

.map-section {
    background: var(--light-gray);
    padding: 3rem 0;
}

.map-iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Thank You Section */
.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--deep-blue) 0%, var(--ocean-blue) 50%, var(--turquoise) 100%);
    padding-top: 0;
    margin-top: 0;
}

.thank-you-content {
    text-align: center;
    color: var(--white);
}

.thank-you-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.thank-you-message {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.return-home-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--turquoise);
    color: var(--deep-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 1.1rem;
}

.return-home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(57, 204, 204, 0.4);
}

/* Footer */
.main-footer {
    background: var(--deep-blue);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-container p {
    margin-bottom: 1rem;
}

.footer-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-btn {
    padding: 0.5rem 1.5rem;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--light-turquoise);
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    font-size: 0.9rem;
}

.footer-btn:hover {
    background: var(--light-turquoise);
    color: var(--deep-blue);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--dark-text);
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close-btn:hover {
    color: var(--turquoise);
}

.modal-content-box h2 {
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-text {
    color: #666;
    line-height: 1.8;
}

.modal-text p {
    margin-bottom: 1rem;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-choose-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.why-choose-item h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.why-choose-item p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
    color: #666;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-author {
    color: var(--deep-blue);
    font-weight: bold;
    text-align: right;
}

/* Values Section */
.values-section {
    background: var(--light-gray);
}

.values-content {
    max-width: 900px;
    margin: 0 auto;
}

.values-text h3 {
    color: var(--deep-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.values-text h3:first-child {
    margin-top: 0;
}

.values-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Achievements Section */
.achievements-section {
    background: var(--white);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.achievement-item {
    padding: 2rem;
    background: linear-gradient(135deg, var(--ocean-blue), var(--turquoise));
    border-radius: 10px;
    color: var(--white);
    transition: transform 0.3s;
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.achievement-item p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Activity Categories Section */
.activity-categories-section {
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.category-card p {
    color: #666;
    line-height: 1.6;
}

/* Gallery Categories Section */
.gallery-categories-section {
    background: var(--white);
}

.gallery-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-category-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gallery-category-item h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.gallery-category-item p {
    color: #666;
    line-height: 1.6;
}

/* Photo Stories Section */
.photo-stories-section {
    background: var(--light-gray);
}

.photo-stories-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.photo-story-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.photo-story-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.photo-story-item h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.photo-story-item p {
    color: #666;
    line-height: 1.8;
}

/* Share Experience Section */
.share-experience-section {
    background: var(--deep-blue);
    color: var(--white);
}

.share-experience-section .section-title {
    color: var(--white);
}

.share-experience-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.share-experience-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        height: calc(100vh - 70px);
        width: 250px;
        background: rgba(0, 31, 63, 0.98);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .highlights-grid,
    .team-grid,
    .gallery-grid,
    .gallery-grid-preview,
    .why-choose-grid,
    .testimonials-grid,
    .achievements-grid,
    .categories-grid,
    .gallery-categories-grid,
    .photo-stories-content {
        grid-template-columns: 1fr;
    }

    .about-intro-content,
    .story-content,
    .activities-content,
    .extra-info-content,
    .discover-intro-content,
    .landmarks-content,
    .cultural-heritage-content,
    .local-communities-content,
    .hidden-gems-content,
    .hero-content-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .thank-you-title {
        font-size: 2rem;
    }

    .thank-you-message {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .header-container {
        padding: 0 1rem;
    }

    .site-title h1 {
        font-size: 1.4rem;
    }

    .cookie-popup {
        padding: 1.5rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

