/* Global Styles */
:root {
    --primary-color: #2a9d8f;
    --secondary-color: #e9c46a;
    --accent-color: #e76f51;
    --dark-color: #264653;
    --light-color: #f8f9fa;
    --text-color: #333;
    --light-text: #f8f9fa;
    --border-color: #ddd;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --section-padding: 80px 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    font-family: inherit;
}

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

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

.btn:hover {
    background-color: #238277;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    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 img {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
}

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

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin-bottom: 5px;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    height: 650px;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slider {
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 700px;
    width: 90%;
    z-index: 1;
    padding: 20px;
    background-color: rgba(38, 70, 83, 0.7);
    border-radius: var(--border-radius);
}

.slide-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 2;
}

.arrow {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.arrow:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: white;
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

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

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

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

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

.icon svg {
    width: 30px;
    height: 30px;
}

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

/* Did You Know Section */
.did-you-know {
    padding: var(--section-padding);
    background-color: white;
}

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

.fact {
    display: flex;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.fact:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.8;
    margin-right: 20px;
    min-width: 60px;
}

.fact-content h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 20px;
}

/* Featured Destinations */
.featured-destinations {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

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

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

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

.destination img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination:hover img {
    transform: scale(1.05);
}

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: white;
}

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

.destination-info p {
    margin-bottom: 15px;
    font-size: 14px;
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding);
    background-color: white;
}

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

.testimonial {
    text-align: center;
    padding: 30px;
    margin: 0 auto;
}

.quote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 30px;
    position: relative;
}

.quote::before,
.quote::after {
    content: '"';
    font-size: 50px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
}

.quote::before {
    top: -20px;
    left: -10px;
}

.quote::after {
    bottom: -40px;
    right: -10px;
}

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

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

.author h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.author p {
    font-size: 14px;
    color: #777;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    text-align: center;
    background-image: linear-gradient(rgba(38, 70, 83, 0.8), rgba(38, 70, 83, 0.8)), url('images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
}

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

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-contact h3,
.footer-links h3,
.footer-legal h3,
.footer-social h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--secondary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

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

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

.footer-links ul li a,
.footer-legal ul li a {
    color: white;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-social {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    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%;
    color: white;
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -5px 15px 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;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

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

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

.cookie-btn.customize {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
}

.cookie-btn.decline {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
}

.cookie-policy-link {
    font-size: 14px;
    color: var(--primary-color);
}

/* Page Header */
.page-header {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Page Styles */
.blog-content {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

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

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

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

.blog-image {
    position: relative;
    display: block;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-info {
    padding: 25px;
}

.date {
    display: block;
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.blog-info h2 {
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 1.4;
}

.blog-info h2 a {
    color: var(--dark-color);
    transition: var(--transition);
}

.blog-info h2 a:hover {
    color: var(--primary-color);
}

.blog-info p {
    margin-bottom: 20px;
    color: #555;
}

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

.read-more svg {
    margin-left: 5px;
    transition: var(--transition);
}

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

.read-more:hover svg {
    transform: translateX(5px);
}

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

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

.newsletter h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.newsletter p {
    margin-bottom: 30px;
    font-size: 16px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    outline: none;
    font-size: 16px;
}

.newsletter-form .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 0 25px;
}

.newsletter-form .btn:hover {
    background-color: #ddb653;
}

/* Services Page Styles */
.services-intro {
    padding: var(--section-padding);
    background-color: white;
}

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

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

.services-intro-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.services-intro-text p {
    margin-bottom: 20px;
    color: #555;
}

.services-list {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

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

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

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

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(42, 157, 143, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 25px;
}

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

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    margin-bottom: 20px;
    color: #555;
}

.service-features {
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 10px;
    position: relative;
    font-size: 14px;
    color: #666;
}

.service-features li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: -20px;
}

.additional-services {
    padding: var(--section-padding);
    background-color: white;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.additional-service {
    padding: 20px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.additional-service:hover {
    background-color: var(--primary-color);
    color: white;
}

.additional-service:hover h3,
.additional-service:hover svg {
    color: white;
}

.additional-service h3 {
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.additional-service h3 svg {
    margin-right: 10px;
    color: var(--primary-color);
}

.service-process {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

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

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

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* About Us Page Styles */
.about-intro {
    padding: var(--section-padding);
    background-color: white;
}

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

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

.about-intro-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.about-intro-text p {
    margin-bottom: 20px;
    color: #555;
}

.mission-values {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.mission-values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.mission, .values {
    padding: 40px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.mission h2, .values h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.mission h2::after, .values h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.mission p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(42, 157, 143, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.value-icon svg {
    width: 30px;
    height: 30px;
}

.value-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.value-item p {
    font-size: 14px;
    color: #555;
}

.our-approach {
    padding: var(--section-padding);
    background-color: white;
}

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

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

.approach-text h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: var(--dark-color);
}

.approach-text h3:first-child {
    margin-top: 0;
}

.approach-text p {
    color: #555;
}

.team {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #555;
}

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

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

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

.team-member img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 20px 5px;
    font-size: 20px;
    color: var(--dark-color);
}

.team-member p {
    margin: 0 20px 15px;
    font-size: 14px;
    color: #555;
}

.team-member p:nth-child(3) {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    padding: 0 20px 20px;
    gap: 10px;
}

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

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

.credentials {
    padding: var(--section-padding);
    background-color: white;
}

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

.credentials-text p {
    margin-bottom: 20px;
    color: #555;
}

.credentials-list {
    list-style: disc;
    padding-left: 20px;
}

.credentials-list li {
    margin-bottom: 15px;
    color: #555;
}

.credentials-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.credential-logo {
    padding: 20px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.credential-logo img {
    max-width: 120px;
    max-height: 80px;
}

/* Contact Page Styles */
.contact-info {
    padding: var(--section-padding);
    background-color: white;
}

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

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

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

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(42, 157, 143, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
}

.contact-icon svg {
    width: 35px;
    height: 35px;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-card p {
    margin-bottom: 20px;
    color: #555;
}

.contact-detail {
    font-weight: 600;
    color: var(--primary-color);
    display: block;
}

address.contact-detail {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-form-section {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.contact-form-image {
    height: 100%;
}

.contact-form-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-content {
    padding: 50px;
}

.contact-form-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-form-content p {
    margin-bottom: 30px;
    color: #555;
}

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

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(42, 157, 143, 0.2);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    user-select: none;
}

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

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #f5f5f5;
}

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

.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);
}

.submit-btn {
    grid-column: 1 / -1;
    margin-top: 15px;
}

.map-section {
    padding: var(--section-padding);
    background-color: white;
}

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

.faq-section {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

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

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

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

.faq-question:hover {
    background-color: rgba(42, 157, 143, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--dark-color);
}

.faq-toggle {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

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

.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: 1000;
    justify-content: center;
    align-items: center;
}

.thank-you-modal.show {
    display: flex;
}

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #777;
}

.modal-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.modal-icon svg {
    width: 35px;
    height: 35px;
}

.modal-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.modal-content p {
    margin-bottom: 25px;
    color: #555;
}

.modal-btn {
    min-width: 150px;
}

/* Blog Post Styles */
.blog-post-header {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.blog-post-header h1 {
    font-size: 40px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.post-date, .post-author, .post-category {
    display: inline-flex;
    align-items: center;
}

.blog-post-content {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.blog-post-content .container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 50px;
}

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

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

.featured-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

.post-text {
    color: #555;
    line-height: 1.8;
}

.intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.post-text h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin: 40px 0 20px;
}

.post-text h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin: 30px 0 15px;
}

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

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

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

.image-with-caption {
    margin: 30px 0;
}

.image-with-caption img {
    border-radius: var(--border-radius);
    width: 100%;
}

.caption {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}

.post-cta {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 40px 0;
    text-align: center;
}

.post-cta h3 {
    margin-bottom: 15px;
}

.post-cta p {
    margin-bottom: 20px;
}

.post-tags {
    margin: 40px 0 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.post-tags span {
    font-weight: 600;
    color: var(--dark-color);
    margin-right: 10px;
}

.post-tags a {
    display: inline-block;
    background-color: var(--light-color);
    color: var(--dark-color);
    padding: 5px 10px;
    border-radius: 4px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    transition: var(--transition);
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: white;
}

.post-share {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.post-share span {
    font-weight: 600;
    color: var(--dark-color);
    margin-right: 15px;
}

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

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

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

.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.author-box, .related-posts, .newsletter-sidebar {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
}

.author-box h3 {
    text-align: center;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.author-box p {
    font-size: 14px;
    color: #555;
}

.related-posts h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--dark-color);
}

.related-post {
    margin-bottom: 20px;
}

.related-post:last-child {
    margin-bottom: 0;
}

.related-post img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
}

.related-post h4 {
    font-size: 16px;
    line-height: 1.4;
}

.related-post h4 a {
    color: var(--dark-color);
    transition: var(--transition);
}

.related-post h4 a:hover {
    color: var(--primary-color);
}

.newsletter-sidebar h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--dark-color);
}

.newsletter-sidebar p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #555;
}

.sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-form input {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    outline: none;
    font-family: inherit;
    font-size: 14px;
}

.blog-navigation {
    padding: 40px 0 80px;
    background-color: var(--light-color);
}

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

.back-to-blog {
    display: flex;
    align-items: center;
    color: var(--dark-color);
    font-weight: 600;
}

.back-to-blog svg {
    margin-right: 10px;
}

.post-navigation {
    display: flex;
    gap: 20px;
}

.nav-previous, .nav-next {
    display: flex;
}

.nav-previous a, .nav-next a {
    display: flex;
    align-items: center;
    color: var(--dark-color);
    font-weight: 600;
}

.nav-previous svg {
    margin-right: 10px;
}

.nav-next svg {
    margin-left: 10px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .blog-post-content .container {
        grid-template-columns: 2fr 1fr;
    }
}

@media (max-width: 992px) {
    .about-intro-content,
    .services-intro-content,
    .approach-content,
    .credentials-content,
    .mission-values-content,
    .contact-form-container {
        grid-template-columns: 1fr;
    }
    
    .about-intro-image,
    .services-intro-image,
    .approach-image {
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post-content .container {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    header .container {
        position: relative;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    nav.show {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        height: 500px;
    }
    
    .slide-content h1 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .arrow {
        width: 40px;
        height: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .additional-services-grid,
    .process-steps,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }
    
    .newsletter-form .btn {
        border-radius: var(--border-radius);
    }
    
    .blog-navigation .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .post-main {
        padding: 25px;
    }
    
    .post-tags {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .post-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .section-title,
    .slide-content h1,
    .about-intro-text h2,
    .services-intro-text h2,
    .contact-form-content h2 {
        font-size: 28px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .cta h2 {
        font-size: 28px;
    }
    
    .cta p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
}
