/* Base Styles */
:root {
    --primary-color: #4e8098;
    --secondary-color: #f19066;
    --accent-color: #3cb2c0;
    --light-color: #f7f7f7;
    --dark-color: #333333;
    --grey-color: #777777;
    --light-grey: #eeeeee;
    --font-primary: 'Roboto', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 5px;
}

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

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

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

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

ul {
    list-style: none;
}

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

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

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
    font-family: var(--font-secondary);
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin: 0 auto;
}

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

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

.btn-primary:hover {
    background-color: #3a6a80;
    color: white;
}

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

.btn-secondary:hover {
    background-color: #e27e52;
    color: white;
}

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

.btn-tertiary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

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

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

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

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

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

.form-group.checkbox label {
    font-weight: normal;
    font-size: 0.9rem;
}

/* Header Styles */
.header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo a {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    font-family: var(--font-secondary);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
}

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

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

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

/* Hero Banner Styles */
.hero-banner {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #e6f2f5;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--grey-color);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.about-text p {
    margin-bottom: 15px;
    color: var(--grey-color);
}

.about-features {
    margin-top: 25px;
}

.about-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.feature-icon {
    color: var(--secondary-color);
    margin-right: 10px;
    font-weight: bold;
    font-size: 1.2rem;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-svg {
    max-width: 100%;
    height: auto;
}

/* Services Section Styles */
.services-section {
    padding: 80px 0;
    background-color: var(--light-grey);
}

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

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-icon svg {
    width: 64px;
    height: 64px;
}

.service-svg {
    width: 64px;
    height: 64px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.service-card p {
    color: var(--grey-color);
}

/* Destinations Section Styles */
.destinations-section {
    padding: 80px 0;
    background-color: white;
}

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

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

.destination-card:hover {
    transform: translateY(-10px);
}

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

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

.destination-info {
    padding: 20px;
    background-color: white;
}

.destination-info h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

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

/* Testimonials Section Styles */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.testimonials-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

.testimonials-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.testimonials-svg {
    max-width: 100%;
    height: auto;
}

.testimonials-slider {
    flex: 1;
    position: relative;
    height: 250px;
    overflow: hidden;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-item.active {
    opacity: 1;
    z-index: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--grey-color);
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.rating {
    color: var(--secondary-color);
    margin-top: 5px;
}

.testimonial-nav {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.testimonial-prev,
.testimonial-next {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--secondary-color);
}

/* Blog Section Styles */
.blog-section {
    padding: 80px 0;
    background-color: white;
}

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

.blog-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
}

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

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

.blog-info {
    padding: 20px;
    background-color: white;
}

.blog-date {
    color: var(--grey-color);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.blog-info h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.blog-info p {
    margin-bottom: 15px;
    color: var(--grey-color);
}

/* Newsletter Section Styles */
.newsletter-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
}

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

.newsletter-text {
    flex: 1;
}

.newsletter-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.newsletter-text p {
    margin-bottom: 20px;
}

.newsletter-svg {
    max-width: 200px;
    height: auto;
    margin-top: 20px;
}

.newsletter-form {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-content {
    display: flex;
    gap: 40px;
}

.contact-info,
.contact-form {
    flex: 1;
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: var(--font-secondary);
    font-size: 1.5rem;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.contact-item svg {
    margin-right: 15px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
}

.contact-svg {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

.social-media h4 {
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

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

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

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

.contact-form {
    background-color: var(--light-grey);
    padding: 30px;
    border-radius: var(--border-radius);
}

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

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

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 30px;
    margin-right: 10px;
}

.footer-logo span {
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    font-family: var(--font-secondary);
}

.footer-col p {
    color: #bbb;
    margin-bottom: 15px;
}

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

.footer-links a {
    color: #bbb;
    transition: var(--transition);
}

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

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

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.cookie-content p {
    margin-bottom: 15px;
}

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

.cookie-settings {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.cookie-settings h4 {
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.cookie-option {
    margin-bottom: 15px;
}

.cookie-option label {
    font-weight: 600;
    margin-left: 10px;
}

.cookie-option p {
    margin-left: 25px;
    font-size: 0.9rem;
    color: var(--grey-color);
}

.hidden {
    display: none;
}

/* Blog Article Styles */
.article-header {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.article-meta span {
    display: flex;
    align-items: center;
}

.article-meta svg {
    margin-right: 5px;
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.article-image {
    margin-bottom: 30px;
}

.article-content h2 {
    color: var(--primary-color);
    margin: 30px 0 15px;
    font-family: var(--font-secondary);
}

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

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.article-tag {
    background-color: var(--light-grey);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.article-share {
    display: flex;
    gap: 15px;
}

.article-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-grey);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.article-share a:hover {
    background-color: var(--primary-color);
    color: white;
}

.article-related {
    margin-top: 60px;
}

.article-related h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

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

/* Legal Pages Styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.legal-content h2 {
    color: var(--primary-color);
    margin: 30px 0 15px;
    font-family: var(--font-secondary);
}

.legal-content p,
.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    padding-left: 20px;
}

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

.legal-date {
    font-style: italic;
    color: var(--grey-color);
    margin-bottom: 30px;
}

/* Thank You Page Styles */
.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.thanks-icon {
    color: #2ecc71;
    margin-bottom: 20px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--grey-color);
}

.thanks-info {
    text-align: left;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--light-grey);
    border-radius: var(--border-radius);
}

.thanks-info h2 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.thanks-info ul {
    padding-left: 20px;
}

.thanks-info li {
    margin-bottom: 10px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content,
    .testimonials-content,
    .newsletter-content,
    .contact-content {
        flex-direction: column;
    }
    
    .newsletter-content {
        gap: 40px;
    }
    
    .testimonials-slider {
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .hero-content {
        padding: 30px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-banner {
        height: 500px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .services-content,
    .destinations-content,
    .blog-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-banner {
        height: 450px;
    }
}
