/* Main Styles */
:root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --accent-color: #457b9d;
    --light-color: #a8dadc;
    --lightest-color: #f1faee;
    --text-color: #333333;
    --text-light: #ffffff;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--lightest-color);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #d62839;
    color: var(--text-light);
}

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

.btn-secondary:hover {
    background-color: #152642;
    color: var(--text-light);
}

.btn-tertiary {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.btn-tertiary:hover {
    background-color: var(--accent-color);
    color: var(--text-light);
}

.btn-text {
    background-color: transparent;
    color: var(--accent-color);
    padding: 0;
}

.btn-text:hover {
    color: var(--primary-color);
    background-color: transparent;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--accent-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Header */
.header {
    background-color: var(--lightest-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.logo-svg {
    height: 40px;
    width: auto;
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
}

.main-nav .nav-list li {
    margin-left: 30px;
}

.main-nav .nav-list a {
    color: var(--secondary-color);
    font-weight: 600;
    position: relative;
}

.main-nav .nav-list a:hover,
.main-nav .nav-list a.active {
    color: var(--primary-color);
}

.main-nav .nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Banner */
.hero {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    position: relative;
    background-color: var(--secondary-color);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

.hero-content {
    max-width: 800px;
    color: var(--text-light);
    text-align: center;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--lightest-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 0 0 300px;
    margin-bottom: 30px;
}

.footer-logo p {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--light-color);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    justify-content: space-around;
}

.footer-column {
    margin-bottom: 30px;
    min-width: 150px;
}

.footer-column h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-column ul li a {
    color: var(--light-color);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    margin-bottom: 20px;
}

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

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

.social-icon {
    width: 20px;
    height: 20px;
    color: var(--text-light);
}

.contact-info p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--text-light);
    z-index: 1000;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-content h3 {
    color: var(--text-light);
    margin-bottom: 10px;
}

.cookie-content p {
    text-align: center;
    margin-bottom: 15px;
    max-width: 800px;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--lightest-color);
    margin: 50px auto;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    position: relative;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--secondary-color);
}

.cookie-options {
    margin: 20px 0;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #666;
}

/* Page Banner */
.page-banner {
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    color: var(--text-light);
    margin-bottom: 10px;
}

/* Destination Cards */
.destination-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

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

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.card-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin-bottom: 10px;
}

.card-content p {
    color: #666;
    margin-bottom: 15px;
}

/* Experiences Grid */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.experience-item {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.experience-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.experience-icon svg {
    width: 100%;
    height: 100%;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-color);
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    padding: 40px;
    background-color: var(--text-light);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.testimonial-slide.active {
    display: block;
}

.quote-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

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

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.author-title {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-column,
.contact-form-column {
    background-color: var(--text-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.contact-info {
    padding: 40px;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    width: 30px;
    height: 30px;
    margin-right: 20px;
    color: var(--accent-color);
}

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

.social-links-contact {
    margin-top: 40px;
}

.contact-form-container {
    padding: 40px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

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

.checkbox-group label {
    font-weight: normal;
}

/* Map Section */
.map-section {
    padding: 60px 0;
}

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

.stylized-map {
    width: 100%;
    height: 100%;
}

/* Newsletter Section */
.newsletter-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.newsletter-info,
.newsletter-form-container {
    background-color: var(--text-light);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.newsletter-benefits {
    list-style: none;
    margin: 30px 0;
}

.newsletter-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: var(--accent-color);
}

.newsletter-frequency {
    background-color: var(--lightest-color);
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
}

.extended-newsletter-form .checkbox-item {
    margin-bottom: 10px;
}

/* Thank You Page */
.thank-you-section {
    padding: 80px 0;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.thank-you-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.submission-details {
    background-color: var(--lightest-color);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: left;
}

/* What's Next Section */
.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.next-step-card {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.next-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

/* Legal Pages */
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--text-light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.last-updated {
    margin-bottom: 30px;
    color: #666;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.legal-section h3 {
    margin: 25px 0 15px;
}

.legal-section ul,
.legal-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-section li {
    margin-bottom: 10px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookie-table th {
    background-color: var(--lightest-color);
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-container,
    .newsletter-page-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav .nav-list {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--lightest-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav .nav-list.active {
        display: flex;
    }
    
    .main-nav .nav-list li {
        margin: 0 0 15px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .testimonial-slide {
        padding: 30px 20px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 40px 0;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .destination-cards,
    .experiences-grid,
    .next-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
    
    .legal-container {
        padding: 20px;
    }
}