/* Base Styles */
:root {
    --primary: #1E88E5;
    --primary-dark: #1565C0;
    --secondary: #FF8A65;
    --secondary-dark: #F4511E;
    --text: #333333;
    --text-light: #757575;
    --background: #FFFFFF;
    --background-alt: #F5F7FA;
    --border: #E0E0E0;
    --success: #66BB6A;
    --error: #EF5350;
    --warning: #FFCA28;
    --info: #29B6F6;
    
    --header-height: 80px;
    --footer-padding: 60px 0 20px;
    --container-width: 1200px;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

.dark-theme {
    --primary: #2196F3;
    --primary-dark: #1976D2;
    --secondary: #FF9E80;
    --secondary-dark: #FF6E40;
    --text: #E0E0E0;
    --text-light: #BDBDBD;
    --background: #121212;
    --background-alt: #1E1E1E;
    --border: #333333;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
    font-size: 16px;
    transition: var(--transition);
}

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

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-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: 20px;
    color: var(--text);
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 15px;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background-color: var(--secondary);
    padding: 10px 20px;
    font-size: 0.9rem;
}

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

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--background);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
    height: var(--header-height);
}

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

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

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
}

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

nav ul li a {
    color: var(--text);
    font-weight: 500;
    position: relative;
    padding: 10px 0;
}

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

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

.theme-toggle {
    cursor: pointer;
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.theme-toggle svg {
    color: var(--text);
    transition: var(--transition);
}

.theme-toggle:hover svg {
    color: var(--primary);
    transform: rotate(30deg);
}

/* Hero Section Styles */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 180px 0 100px;
    margin-top: var(--header-height);
}

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

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

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

.featured h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.destination-card {
    background-color: var(--background);
    border-radius: var(--border-radius);
    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.1);
}

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

.destination-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
}

.destination-card p {
    padding: 0 20px;
    color: var(--text-light);
}

.destination-card .btn-secondary {
    margin: 0 20px 20px;
}

/* Services Section */
.services h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.service-item {
    text-align: center;
    padding: 30px;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.service-item:hover {
    box-shadow: var(--box-shadow);
    transform: translateY(-5px);
}

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

.service-item h3 {
    margin-bottom: 15px;
}

.service-item p {
    color: var(--text-light);
}

/* Editor's Note Section */
.editor-note {
    background-color: var(--background-alt);
}

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

.note-content img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--background);
    box-shadow: var(--box-shadow);
}

.note-text {
    flex: 1;
}

.note-text p {
    margin-bottom: 15px;
    font-style: italic;
    color: var(--text-light);
}

.signature {
    font-weight: 600;
    font-style: normal;
    color: var(--text);
    font-family: var(--font-secondary);
}

/* Testimonials Section */
.testimonials {
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 50px;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.testimonial {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 80%;
    margin: 0 10%;
    border-radius: var(--border-radius);
    background-color: var(--background-alt);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    line-height: 1.8;
}

.quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    left: -20px;
    top: -30px;
    opacity: 0.2;
    font-family: var(--font-secondary);
}

.author {
    font-weight: 600;
    color: var(--primary);
}

/* Footer Styles */
footer {
    background-color: var(--background-alt);
    padding: var(--footer-padding);
    border-top: 1px solid var(--border);
}

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

.footer-info .footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-info p {
    color: var(--text-light);
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-light);
}

.footer-contact p svg {
    margin-right: 10px;
    color: var(--primary);
}

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

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

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

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

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

.social-icons a svg {
    color: var(--text);
    transition: var(--transition);
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    flex-wrap: wrap;
    gap: 20px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background);
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px;
    display: none;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
}

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

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

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

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

.cookie-btn.customize {
    background-color: var(--info);
    color: white;
}

.cookie-btn.reject {
    background-color: var(--error);
    color: white;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-more {
    font-size: 0.9rem;
    text-decoration: underline;
}

/* Blog Page Styles */
.blog-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/5.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 180px 0 100px;
    margin-top: var(--header-height);
}

.blog-hero h1 {
    color: white;
}

.blog-posts {
    padding-top: 0;
}

.blog-post {
    margin-bottom: 80px;
    background-color: var(--background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.post-content {
    padding: 40px;
}

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

.post-category {
    color: var(--primary);
    font-weight: 600;
}

.post-excerpt {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-light);
}

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

.post-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.post-body ul, .post-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-body li {
    margin-bottom: 10px;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background-color: var(--background-alt);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* About Page Styles */
.about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/10.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 180px 0 100px;
    margin-top: var(--header-height);
}

.about-hero h1 {
    color: white;
}

.company-story {
    padding-bottom: 0;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-image {
    flex: 1;
}

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

.story-text {
    flex: 1;
}

.our-values {
    background-color: var(--background-alt);
}

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

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

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    margin-bottom: 20px;
}

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

.team-section {
    text-align: center;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-light);
}

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

.team-member {
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
}

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

.team-member h3 {
    margin: 20px 20px 5px;
}

.team-member p {
    padding: 0 20px;
    margin-bottom: 10px;
}

.team-member p:nth-of-type(1) {
    color: var(--primary);
    font-weight: 600;
}

.team-member .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 0 20px;
}

.team-member .social-links a {
    color: var(--text-light);
}

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

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

.approach-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.approach-text {
    flex: 1;
}

.approach-image {
    flex: 1;
}

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

.certifications {
    text-align: center;
}

.certification-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.certification {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.certification svg {
    color: var(--primary);
    margin-bottom: 15px;
}

.certification p {
    font-weight: 600;
}

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

.cta-section h2 {
    color: white;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
}

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

.cta-section .btn:hover {
    background-color: var(--background-alt);
}

/* Contact Page Styles */
.contact-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/12.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 180px 0 100px;
    margin-top: var(--header-height);
}

.contact-hero h1 {
    color: white;
}

.contact-options {
    padding-bottom: 40px;
}

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

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

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    margin-bottom: 20px;
}

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

.contact-link {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.hours {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-card .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.contact-form-section {
    background-color: var(--background-alt);
    padding-top: 60px;
}

.contact-form-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

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

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    background-color: var(--background);
    color: var(--text);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.2);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
    color: var(--text-light);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 20px;
    width: 20px;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-right: 10px;
    flex-shrink: 0;
    position: relative;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: var(--background-alt);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary);
    border-color: var(--primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact-form .btn {
    margin-top: 20px;
    grid-column: 1 / -1;
    justify-self: center;
}

.map {
    margin-bottom: 20px;
}

.map img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.map-details h3 {
    margin-bottom: 15px;
}

.map-details p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: var(--text-light);
}

.map-details p svg {
    margin-right: 10px;
    margin-top: 3px;
    color: var(--primary);
}

.office-hours .hours-indent {
    margin-left: 26px;
    display: inline-block;
}

.faq-section {
    padding-top: 40px;
}

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

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

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--background);
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    transition: var(--transition);
}

.faq-toggle.active {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background-color: var(--background-alt);
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.thank-you-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.close-modal:hover {
    color: var(--primary);
}

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

.modal-icon svg {
    color: var(--success);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .story-content,
    .approach-content,
    .note-content {
        flex-direction: column;
    }
    
    .note-content {
        text-align: center;
    }
    
    .note-text {
        text-align: left;
    }
    
    .contact-form-section .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 40px;
    }
    
    nav ul li {
        margin-left: 15px;
    }
}
