/* 
OpenHarvest - Main Stylesheet
*/

/* Base Styles & Variables */
:root {
    --primary-color: #0c6b8a;
    --primary-dark: #085269;
    --primary-light: #13a0cc;
    --secondary-color: #f7941d;
    --secondary-dark: #e07e12;
    --secondary-light: #ffaa4d;
    --accent-color: #7b4397;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-color: #ffffff;
    --bg-light: #f9f9f9;
    --bg-dark: #eeeeee;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --border-color: #dddddd;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --header-height: 80px;
    --font-main: 'Montserrat', 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

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

html {
    font-size: 62.5%; /* 10px if browser default is 16px */
    scroll-behavior: smooth;
}

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

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

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

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

ul, ol {
    list-style-position: inside;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 700;
}

h1 {
    font-size: 4.2rem;
}

h2 {
    font-size: 3.2rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.5rem;
}

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

/* Container & Layout */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.5rem;
}

.col {
    flex: 1;
    padding: 0 1.5rem;
}

section {
    padding: 6rem 0;
}

/* Buttons */
.btn, 
button.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.6rem;
    line-height: 1;
}

.btn:hover, 
button.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

.btn-small {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
}

.btn-large {
    padding: 1.6rem 3.2rem;
    font-size: 1.8rem;
}

/* Header & Navigation */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
}

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

.logo-container img {
    height: 50px;
    width: auto;
    margin-right: 1.5rem;
}

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

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

nav ul li {
    margin-left: 3rem;
}

nav ul li a {
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    color: var(--text-color);
}

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

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

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

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

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

.hero h2 {
    font-size: 4.8rem;
    margin-bottom: 2rem;
    color: white;
}

.hero p {
    font-size: 2rem;
    margin-bottom: 3rem;
}

/* Featured Destinations */
.featured-destinations {
    padding: 8rem 3rem;
    background-color: var(--bg-light);
}

.featured-destinations h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
    margin: 0 auto;
    max-width: var(--container-width);
}

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

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

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

.destination-card h3 {
    padding: 2rem 2rem 0.5rem;
    font-size: 2.2rem;
}

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

.destination-card .btn-small {
    margin: 0 2rem 2rem;
}

/* Services Overview */
.services-overview {
    padding: 8rem 3rem;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
    margin: 0 auto;
    max-width: var(--container-width);
}

.service-card {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

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

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

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

.service-card h3 {
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonials {
    padding: 8rem 3rem;
    background-color: var(--primary-color);
    color: white;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.testimonial-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.testimonial {
    background-color: white;
    color: var(--text-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    position: relative;
}

.testimonial .quote {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.testimonial .quote svg {
    width: 20px;
    height: 20px;
}

.testimonial p {
    margin-top: 1rem;
    font-style: italic;
}

.client {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

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

.client-info h4 {
    margin-bottom: 0.5rem;
}

.client-info p {
    margin: 0;
    color: var(--text-lighter);
    font-style: normal;
}

/* Newsletter */
.newsletter {
    background-color: var(--bg-light);
    padding: 6rem 3rem;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 1.5rem;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

.email-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1.6rem;
}

.email-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.form-note {
    font-size: 1.4rem;
    color: var(--text-lighter);
    margin-top: 1.5rem;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 5rem 3rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    max-width: var(--container-width);
    margin: 0 auto 4rem;
}

.footer-about img {
    height: 50px;
    width: auto;
    margin-bottom: 2rem;
}

.footer-links h3,
.footer-legal h3,
.footer-contact h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 1rem;
}

.footer-links a,
.footer-legal a {
    color: #ccc;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    margin-right: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

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

.social-links svg {
    width: 20px;
    height: 20px;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 1.4rem;
}

/* Tip of the Day */
.tip-of-the-day {
    background-color: var(--bg-light);
    padding: 4rem 3rem;
    text-align: center;
    margin: 4rem 0;
}

.tip-of-the-day h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.tip-content .icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 2rem;
}

.tip-content .icon svg {
    width: 25px;
    height: 25px;
}

.tip-content p {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 0;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 2rem;
    z-index: 9999;
    display: none;
}

.cookie-consent.active {
    display: block;
}

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

.cookie-content p {
    margin-bottom: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-content a {
    color: var(--secondary-light);
    text-decoration: underline;
}

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

.modal.active {
    display: flex;
}

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

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

.success-icon {
    width: 60px;
    height: 60px;
    color: var(--success-color);
    margin: 0 auto 2rem;
}

/* Blog Specific Styles */
.blog-main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-header {
    text-align: center;
    padding: 6rem 0 4rem;
}

.blog-header h1 {
    margin-bottom: 1rem;
}

.blog-header p {
    font-size: 1.8rem;
    color: var(--text-light);
}

.blog-post {
    margin-bottom: 6rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 4rem;
}

.blog-post:last-child {
    border-bottom: none;
}

.post-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.post-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-lighter);
    font-size: 1.4rem;
}

.post-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.post-content h3 {
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem;
}

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1.5rem;
}

.post-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.post-tags span {
    color: var(--text-lighter);
}

.post-tags a {
    background-color: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1.4rem;
    color: var(--text-light);
}

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

/* Page Header */
.page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('images/2.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 8rem 2rem;
    color: white;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

/* Services Page */
.services-intro {
    padding: 6rem 3rem;
    background-color: var(--bg-light);
}

.services-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-list {
    padding: 6rem 3rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 6rem;
}

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

.service-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.service-content h3 {
    margin-bottom: 1.5rem;
}

.service-content ul {
    list-style-type: none;
    margin-top: 2rem;
}

.service-content li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
}

.service-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 12px;
    height: 12px;
    background-color: var(--primary-light);
    border-radius: 50%;
}

.process {
    padding: 6rem 3rem;
    background-color: var(--bg-light);
    text-align: center;
}

.process h2 {
    margin-bottom: 4rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.process-step {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.destinations {
    padding: 6rem 3rem;
}

.destinations h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.destination-tabs {
    max-width: var(--container-width);
    margin: 0 auto;
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    background-color: var(--bg-light);
    cursor: pointer;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.cta {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('images/3.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 8rem 3rem;
}

.cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-outline {
    border-color: white;
    color: white;
}

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

/* About Page */
.about-intro {
    padding: 6rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: var(--container-width);
    margin: 0 auto;
    align-items: center;
}

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

.mission-values {
    padding: 6rem 3rem;
    background-color: var(--bg-light);
}

.mission-values h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.mission-values-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

.values ul {
    list-style-type: none;
}

.values li {
    margin-bottom: 2rem;
}

.values li strong {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team {
    padding: 6rem 3rem;
}

.team h2, .team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.team-intro {
    margin-bottom: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.team-member {
    background-color: var(--bg-light);
    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, .team-member p {
    padding: 0 2rem;
}

.team-member h3 {
    margin: 2rem 0 0.5rem;
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.team-member .social-links {
    padding: 0 2rem 2rem;
    justify-content: flex-start;
    margin-bottom: 0;
}

.team-member .social-links a {
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
}

.achievements {
    padding: 6rem 3rem;
    background-color: var(--primary-color);
    color: white;
}

.achievements h2 {
    text-align: center;
    color: white;
    margin-bottom: 4rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.achievement-card {
    background-color: white;
    color: var(--text-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 2rem;
}

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

.achievement-card h3 {
    margin-bottom: 1.5rem;
}

.approach {
    padding: 6rem 3rem;
}

.approach h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.approach-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    max-width: var(--container-width);
    margin: 0 auto;
    align-items: center;
}

.approach-text ul {
    margin: 2rem 0;
}

.approach-text li {
    margin-bottom: 1rem;
}

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

.partnerships {
    padding: 6rem 3rem;
    background-color: var(--bg-light);
    text-align: center;
}

.partnerships h2 {
    margin-bottom: 1.5rem;
}

.partnerships > p {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.partner {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.partner img {
    height: 80px;
    width: auto;
    margin: 0 auto 1.5rem;
    object-fit: contain;
}

/* Contact Page */
.contact-section {
    padding: 6rem 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.contact-card {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
}

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

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

.contact-card h3 {
    margin-bottom: 1.5rem;
}

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

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1.6rem;
    font-family: var(--font-main);
}

.form-group textarea {
    resize: vertical;
}

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

.checkbox-group input {
    width: auto;
    margin-top: 0.3rem;
}

.form-actions {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 2rem;
}

.map-section {
    padding: 6rem 3rem;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.map-container {
    max-width: var(--container-width);
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-section {
    padding: 6rem 3rem;
    background-color: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: white;
}

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

.faq-toggle {
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

.faq-toggle svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

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

.faq-answer {
    padding: 0 2rem 2rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    html {
        font-size: 58%;
    }
    
    .about-intro,
    .mission-values-container,
    .approach-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 55%;
    }
    
    header {
        flex-direction: column;
        height: auto;
        padding: 2rem 1rem;
    }
    
    .logo-container {
        margin-bottom: 1.5rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 1rem 1rem;
    }
    
    .hero {
        padding: 8rem 2rem;
    }
    
    .hero h2 {
        font-size: 3.6rem;
    }
    
    .service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .testimonial-carousel,
    .service-item {
        gap: 2rem;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .email-form input {
        border-radius: var(--border-radius);
        margin-bottom: 1rem;
    }
    
    .email-form button {
        border-radius: var(--border-radius);
    }
    
    .post-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 50%;
    }
    
    .destination-card img,
    .post-image img {
        height: 180px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .modal-content {
        padding: 3rem 2rem;
    }
}
