/* Global Styles */
:root {
    --primary-color: #2b6777;
    --primary-light: #52ab98;
    --secondary-color: #f2c75c;
    --dark-color: #1a3c4c;
    --light-color: #f8f8f8;
    --text-color: #333333;
    --text-light: #6e7c7c;
    --background-color: #ffffff;
    --background-alt: #f5f5f5;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --radius: 8px;
    --transition: all 0.3s ease;
    --header-height: 80px;
    --footer-bg: #1a3c4c;
    --max-width: 1200px;
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
        Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-secondary: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

html {
    scroll-behavior: smooth;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

button {
    cursor: pointer;
    font-family: var(--font-primary);
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.btn-small {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition);
}

.btn-small:hover {
    background-color: var(--primary-light);
    color: white;
    transform: translateY(-2px);
}

.cta-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(242, 199, 92, 0.3);
}

.cta-button:hover {
    background-color: #e4ba4c;
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(242, 199, 92, 0.4);
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.logo-container h1 {
    font-size: 1.6rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    display: inline-block;
    padding: 10px 0;
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.language-switch {
    position: relative;
    margin-left: 30px;
}

.lang-btn {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background-color: var(--light-color);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn::after {
    content: "▼";
    font-size: 0.7rem;
    margin-left: 8px;
}

.lang-btn:hover {
    background-color: #eeeeee;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100px;
    display: none;
    overflow: hidden;
    z-index: 10;
}

.language-switch:hover .lang-dropdown {
    display: block;
}

.lang-dropdown a {
    display: block;
    padding: 10px 16px;
    transition: var(--transition);
    color: var(--text-color);
}

.lang-dropdown a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/25.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 160px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Story Section */
.story {
    background-color: var(--background-alt);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-image {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.story-text p {
    margin-bottom: 1.5rem;
}

/* Features Section */
.features {
    text-align: center;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--background-alt);
    padding: 40px 25px;
    border-radius: var(--radius);
    transition: var(--transition);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon svg {
    color: white;
}

.feature-card h3 {
    margin-bottom: 15px;
}

/* Destinations Section */
.featured-destinations {
    background-color: var(--background-alt);
}

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

.destination-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-info {
    padding: 20px;
}

.destination-info h3 {
    margin-bottom: 10px;
}

.destination-info p {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Blog Preview Section */
.blog-preview {
    text-align: center;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: left;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-content h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.blog-card-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.read-more {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    color: var(--primary-light);
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 10px;
}

.view-all-link {
    margin-top: 40px;
}

.view-all-link a {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.view-all-link a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--background-alt);
    text-align: center;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content {
    background-color: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    font-family: var(--font-secondary);
    color: rgba(43, 103, 119, 0.1);
    line-height: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

/* Footer Styles */
footer {
    background-color: var(--footer-bg);
    color: white;
    padding-top: 70px;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    margin-right: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

.social-icons svg {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: var(--radius);
    padding: 20px;
    z-index: 9999;
    display: none; /* Initially hidden, shown via JS */
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 8px 16px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    transition: var(--transition);
}

.btn-cookie.accept {
    background-color: var(--primary-color);
    color: white;
}

.btn-cookie.accept:hover {
    background-color: var(--primary-light);
}

.btn-cookie.customize {
    background-color: var(--light-color);
    color: var(--text-color);
}

.btn-cookie.customize:hover {
    background-color: #e0e0e0;
}

.btn-cookie.decline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-cookie.decline:hover {
    background-color: var(--light-color);
}

/* About Page Styles */
.page-banner {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.page-banner h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-mission,
.about-story {
    padding: 100px 0;
}

.mission-content,
.about-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2,
.about-story-text h2 {
    margin-bottom: 25px;
}

.mission-text p,
.about-story-text p {
    margin-bottom: 20px;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: bold;
}

.about-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
}

.about-story {
    background-color: var(--background-alt);
}

.team-section {
    text-align: center;
    padding: 100px 0;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 40px;
}

.team-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: left;
    padding-bottom: 20px;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.team-card h3,
.team-card p {
    padding: 0 20px;
}

.team-card h3 {
    margin-top: 20px;
    margin-bottom: 5px;
}

.team-card p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    padding: 0 20px;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--light-color);
    border-radius: 50%;
    transition: var(--transition);
}

.team-social a:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

.team-social svg {
    color: var(--primary-color);
}

.team-social a:hover svg {
    color: white;
}

.certifications {
    background-color: var(--background-alt);
    text-align: center;
}

.certification-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 40px;
}

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

.cert-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 15px;
}

.cta-section {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* Blog Page Styles */
.blog-content {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.blog-date::before {
    content: '📅';
    margin-right: 5px;
}

.blog-category::before {
    content: '🏷️';
    margin-right: 5px;
}

.newsletter {
    background-color: var(--primary-light);
    color: white;
    padding: 70px 0;
}

.newsletter-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}

.newsletter-text {
    flex: 1;
    min-width: 300px;
}

.newsletter-text h2 {
    color: white;
    margin-bottom: 15px;
}

.newsletter-text p {
    margin: 0;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    min-width: 300px;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
}

.btn-submit {
    padding: 15px 25px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: #e4ba4c;
    transform: translateY(-3px);
}

/* Blog Post Styles */
.blog-post {
    padding: 60px 0;
}

.post-header {
    margin-bottom: 40px;
}

.back-to-blog {
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 500;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.post-author::before {
    content: '👤';
    margin-right: 5px;
}

.post-featured-image {
    margin-bottom: 40px;
}

.full-width-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
}

.post-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.post-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.content-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.packing-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.packing-category {
    background-color: var(--background-alt);
    padding: 25px;
    border-radius: var(--radius);
}

.packing-category h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.packing-category ul {
    margin-bottom: 0;
}

.author-bio {
    display: flex;
    align-items: center;
    gap: 25px;
    background-color: var(--background-alt);
    padding: 30px;
    border-radius: var(--radius);
    margin-top: 60px;
}

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

.author-info h3 {
    margin-bottom: 10px;
}

.author-info p {
    margin: 0;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 60px 0;
}

.post-nav-link {
    display: flex;
    flex-direction: column;
    max-width: 45%;
}

.post-nav-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.post-nav-title {
    font-weight: 600;
}

.related-posts {
    margin: 80px 0;
    text-align: center;
}

.related-posts h2 {
    margin-bottom: 40px;
}

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

.related-post {
    background-color: var(--background-alt);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.related-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post h3 {
    padding: 20px 20px 10px;
    font-size: 1.1rem;
}

.related-post .read-more {
    display: inline-block;
    margin: 0 20px 20px;
}

/* Contact Page Styles */
.contact-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
}

.contact-form-container {
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px;
}

.contact-form-container h3 {
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 2px rgba(82, 171, 152, 0.2);
}

.preferences h4 {
    margin-bottom: 15px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
}

.checkbox-item input {
    width: auto;
    margin-right: 10px;
}

.consent {
    display: flex;
    align-items: flex-start;
}

.consent input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: var(--primary-light);
}

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

.info-box {
    background-color: var(--background-alt);
    border-radius: var(--radius);
    padding: 40px;
}

.info-box h3 {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.info-item h4 {
    margin-bottom: 5px;
}

.info-item p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-light);
}

.info-item .note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 5px;
}

.social-connect {
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px;
}

.social-connect h3 {
    margin-bottom: 25px;
}

.social-icons-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: var(--background-alt);
    border-radius: var(--radius);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-light);
    color: white;
    transform: translateY(-3px);
}

.social-icon svg {
    color: var(--primary-color);
}

.social-icon:hover svg {
    color: white;
}

.map-section {
    padding-top: 0;
}

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

.map-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.map-overlay p {
    max-width: 500px;
    margin: 10px 0;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.faq-section {
    background-color: var(--background-alt);
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.faq-item {
    background-color: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    margin: 0;
    line-height: 1.7;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    border-radius: var(--radius);
    max-width: 500px;
    width: 90%;
    padding: 40px;
    position: relative;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-header {
    margin-bottom: 20px;
}

.success-icon {
    color: #4CAF50;
    margin-bottom: 15px;
}

.modal-body {
    margin-bottom: 30px;
}

.modal-body p {
    margin-bottom: 10px;
}

#referenceNumber {
    font-weight: 600;
}

.modal-btn {
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

.modal-btn:hover {
    background-color: var(--primary-light);
}

/* Media Queries */
@media (max-width: 1024px) {
    section {
        padding: 60px 0;
    }
    
    .story-content,
    .mission-content,
    .about-story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero h2 {
        font-size: 2.8rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    header {
        height: auto;
        padding: 15px 0;
    }
    
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 15px;
    }
    
    .language-switch {
        margin: 15px 0 0;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h2 {
        font-size: 2.3rem;
    }
    
    .packing-list,
    .social-icons-large {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .feature-cards,
    .destination-grid,
    .blog-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .post-nav-link {
        max-width: 100%;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}
