/* CommonHouse - Main Stylesheet
   A modern, professional design for a tour operator website
   Created: 2024
*/

/* ---------- Reset & Base ---------- */
:root {
    --primary: #1a73e8;
    --primary-dark: #0d47a1;
    --primary-light: #e8f0fe;
    --secondary: #ff6b6b;
    --accent: #ffd166;
    --text: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --background: #ffffff;
    --background-alt: #f8f9fa;
    --border: #e0e0e0;
    --success: #4caf50;
    --error: #f44336;
    --warning: #ff9800;
    --info: #2196f3;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --radius: 8px;
    --radius-sm: 4px;
    --radius-lg: 12px;
    --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    --container-width: 1200px;
    --container-padding: 20px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 10px */
}

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

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

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

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

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;
    font-weight: 700;
    color: var(--text);
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.8rem;
}

h6 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.5rem;
}

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

/* ---------- Header & Navigation ---------- */
header {
    background-color: var(--background);
    box-shadow: 0 2px 8px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem var(--container-padding);
}

.logo {
    max-width: 180px;
}

.logo img {
    width: 100%;
    height: auto;
}

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

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

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

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

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

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

/* ---------- Hero Section ---------- */
.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;
    padding: 12rem 0;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 5.6rem;
    margin-bottom: 2rem;
    color: white;
}

.hero h1 span {
    color: var(--accent);
}

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

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    padding: 1.2rem 3rem;
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.6rem;
    text-align: center;
}

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

.btn-small {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
    border-radius: var(--radius-sm);
}

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

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

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

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

/* ---------- Features Section ---------- */
.features {
    padding: 8rem 0;
    background-color: var(--background);
}

.features h2 {
    text-align: center;
    margin-bottom: 5rem;
}

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

.feature-card {
    background-color: var(--background-alt);
    border-radius: var(--radius);
    padding: 3rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 6px var(--shadow);
}

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

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

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

.feature-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ---------- Destinations Section ---------- */
.destinations {
    padding: 8rem 0;
    background-color: var(--background-alt);
}

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

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.destination-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 10px var(--shadow);
    transition: var(--transition);
    background-color: var(--background);
    position: relative;
}

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

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

.destination-info {
    padding: 2rem;
}

.destination-info h3 {
    margin-bottom: 1rem;
}

.destination-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ---------- Blog Preview Section ---------- */
.blog-preview {
    padding: 8rem 0;
}

.blog-preview h2 {
    text-align: center;
    margin-bottom: 5rem;
}

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

.blog-grid.full {
    grid-template-columns: 1fr;
    gap: 4rem;
}

.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 10px var(--shadow);
    background-color: var(--background);
    transition: var(--transition);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow);
}

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

.blog-info {
    padding: 2rem;
    position: relative;
}

.blog-info h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.blog-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.read-more {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more:after {
    content: '→';
    margin-left: 0.5rem;
    transition: var(--transition);
}

.read-more:hover:after {
    margin-left: 1rem;
}

.view-all {
    text-align: center;
    margin-top: 4rem;
}

/* ---------- Testimonials Section ---------- */
.testimonials {
    padding: 8rem 0;
    background-color: var(--background-alt);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.testimonial-slider {
    display: flex;
    gap: 3rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

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

.testimonial {
    background-color: var(--background);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: 0 4px 10px var(--shadow);
    min-width: 350px;
    flex: 1;
    position: relative;
}

.quote {
    color: var(--primary-light);
    margin-bottom: 2rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 2rem;
}

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

.client span {
    color: var(--text-lighter);
    font-size: 1.4rem;
}

/* ---------- Footer ---------- */
footer {
    background-color: #263238;
    color: white;
    padding: 6rem 0 2rem;
}

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

.footer-logo img {
    max-width: 150px;
    margin-bottom: 2rem;
}

.footer-logo p {
    color: #b0bec5;
    font-size: 1.4rem;
}

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

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

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

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

.footer-links ul li a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    color: #b0bec5;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.footer-contact p svg {
    margin-right: 1rem;
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

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

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

.footer-bottom p {
    color: #b0bec5;
    font-size: 1.4rem;
    margin-bottom: 0;
}

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

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

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

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

.btn-cookie {
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.4rem;
}

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

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

.btn-cookie.reject {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

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

.cookie-policy-link {
    color: #90caf9;
    font-size: 1.3rem;
    text-decoration: underline;
}

.cookie-policy-link:hover {
    color: white;
}

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

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

.page-header h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.9;
}

.page-header p {
    font-size: 1.8rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Blog Page ---------- */
.blog-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.search-box {
    display: flex;
    max-width: 400px;
    width: 100%;
}

.search-box input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-size: 1.6rem;
}

.search-box button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
}

.category-filter select {
    padding: 1rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1.6rem;
    min-width: 200px;
}

.blog-post {
    display: flex;
    background-color: var(--background);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 10px var(--shadow);
}

.post-image {
    flex: 0 0 300px;
    position: relative;
}

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

.post-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
}

.post-content {
    padding: 3rem;
    flex: 1;
    position: relative;
}

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

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
    gap: 0.5rem;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 600;
    transition: var(--transition);
}

.pagination a.active,
.pagination a:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination a.next {
    width: auto;
    padding: 0 1.5rem;
}

.pagination a.next svg {
    margin-left: 0.5rem;
}

/* Newsletter */
.newsletter {
    padding: 8rem 0;
    background-color: var(--primary-light);
}

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

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

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

.newsletter-form button {
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.2rem 2rem;
}

/* Tag New */
.tag-new {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: var(--secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 2;
}

.tag-new.mini {
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.3rem 0.8rem;
    font-size: 1rem;
}

/* ---------- Blog Single Post ---------- */
.blog-single {
    padding: 6rem 0;
}

.blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-header h1 {
    margin: 1.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-header h2 {
    font-size: 2.4rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.blog-featured-image {
    margin-bottom: 4rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
}

.blog-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.blog-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
}

.blog-main-content {
    font-size: 1.7rem;
    line-height: 1.7;
}

.blog-main-content p.lead {
    font-size: 2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.blog-main-content h2 {
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-size: 2.8rem;
}

.blog-main-content h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.blog-main-content ul,
.blog-main-content ol {
    margin-bottom: 2rem;
}

.blog-main-content li {
    margin-bottom: 1rem;
}

.info-box,
.tip-box {
    background-color: var(--primary-light);
    border-left: 4px solid var(--primary);
    padding: 2rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 3rem 0;
}

.tip-box {
    background-color: #fff8e1;
    border-color: var(--warning);
}

.info-box h4,
.tip-box h4 {
    margin-bottom: 1rem;
}

.author-bio {
    display: flex;
    align-items: center;
    background-color: var(--background-alt);
    padding: 2rem;
    border-radius: var(--radius);
    margin: 4rem 0;
}

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

.author-info h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.author-info p {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.post-tags {
    margin-bottom: 3rem;
}

.post-tags span {
    font-weight: 600;
    margin-right: 1rem;
}

.post-tags a {
    display: inline-block;
    background-color: var(--background-alt);
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    border-radius: 50px;
    font-size: 1.4rem;
    color: var(--text-light);
    transition: var(--transition);
}

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

.share-post {
    margin-bottom: 4rem;
}

.share-post span {
    font-weight: 600;
    margin-right: 1rem;
}

.share-post a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    background-color: var(--background-alt);
    border-radius: 50%;
    margin: 0 0.5rem;
    color: var(--text);
    transition: var(--transition);
}

.share-post a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

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

.back-to-blog {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.back-to-blog svg {
    margin-right: 0.8rem;
}

.post-nav-links {
    display: flex;
    gap: 2rem;
}

.prev-post,
.next-post {
    max-width: 200px;
}

.prev-post span,
.next-post span {
    display: block;
    font-size: 1.3rem;
    color: var(--text-lighter);
    margin-bottom: 0.5rem;
}

.prev-post p,
.next-post p {
    margin-bottom: 0;
    font-weight: 600;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: var(--background-alt);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.sidebar-widget h3 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.related-post {
    display: flex;
    align-items: center;
    position: relative;
}

.related-post img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    margin-right: 1.5rem;
}

.related-post h4 {
    font-size: 1.6rem;
    margin-bottom: 0;
    font-weight: 600;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 1rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    transition: var(--transition);
}

.category-list a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

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

.sidebar-form input {
    padding: 1rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.sidebar-form button {
    width: 100%;
}

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

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

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-info > p {
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    margin-bottom: 3rem;
}

.info-item .icon {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    margin-right: 2rem;
    flex-shrink: 0;
}

.info-item .content h3 {
    margin-bottom: 0.5rem;
}

.info-item .content p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.info-item .content p.note {
    font-size: 1.4rem;
    color: var(--text-lighter);
}

.contact-form-container {
    background-color: var(--background-alt);
    border-radius: var(--radius);
    padding: 4rem;
    box-shadow: 0 5px 15px var(--shadow);
}

.contact-form-container h2 {
    margin-bottom: 3rem;
}

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

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

.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 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1.6rem;
    font-family: var(--font-main);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-group input {
    width: auto;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 1.4rem;
}

.submit-btn {
    grid-column: 1 / -1;
    margin-top: 2rem;
}

.map-section {
    padding: 6rem 0;
    background-color: var(--background-alt);
}

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

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

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

.faq-section {
    padding: 6rem 0;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.faq-item {
    background-color: var(--background-alt);
    border-radius: var(--radius);
    padding: 2.5rem;
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--text-light);
}

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

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

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

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

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

.modal-content h2 {
    margin-bottom: 1.5rem;
}

.modal-content p {
    margin-bottom: 3rem;
}

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

/* ---------- About Us Page ---------- */
.about-intro {
    padding: 6rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    margin-top: 0;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
}

.mission-values {
    padding: 6rem 0;
    background-color: var(--background-alt);
}

.mission-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

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

.value-card {
    background-color: var(--background);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: 0 4px 10px var(--shadow);
    text-align: center;
}

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

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

.value-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.team-section {
    padding: 6rem 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

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

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

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

.team-member img {
    width: 100%;
    max-width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 2rem;
    box-shadow: 0 5px 15px var(--shadow);
}

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

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

.team-member p:last-of-type {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.team-member .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-member .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    background-color: var(--background-alt);
    border-radius: 50%;
    color: var(--text);
    transition: var(--transition);
}

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

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

.achievements h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.achievement-number {
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.achievement-card p {
    color: var(--text);
    margin-bottom: 0;
}

.cta-section {
    padding: 8rem 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

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

.cta-content p {
    margin-bottom: 3rem;
    font-size: 1.8rem;
}

/* ---------- Services Page ---------- */
.services-intro {
    padding: 6rem 0;
}

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

.services-grid-section {
    padding: 6rem 0;
    background-color: var(--background-alt);
}

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

.service-card {
    background-color: var(--background);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: 0 4px 10px var(--shadow);
    transition: var(--transition);
}

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

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

.service-card h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 3rem;
}

.service-card ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    padding-left: 2.5rem;
}

.service-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.service-card .btn-small {
    display: block;
    text-align: center;
}

.destination-expertise {
    padding: 6rem 0;
}

.destination-expertise h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    color: var(--text-light);
}

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

.expertise-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 10px var(--shadow);
    transition: var(--transition);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow);
}

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

.expertise-card h3 {
    padding: 2rem 2rem 0.5rem;
    margin-bottom: 0;
}

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

.process-section {
    padding: 6rem 0;
    background-color: var(--background-alt);
}

.process-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    left: 2.5rem;
    top: 6rem;
    bottom: -2rem;
    width: 2px;
    background-color: var(--primary-light);
}

.step-number {
    width: 5rem;
    height: 5rem;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-right: 2.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.pricing-section {
    padding: 6rem 0;
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.pricing-tier {
    background-color: var(--background-alt);
    border-radius: var(--radius);
    padding: 3rem;
    transition: var(--transition);
    position: relative;
}

.pricing-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow);
}

.pricing-tier.featured {
    background-color: var(--primary-light);
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-tier.featured:hover {
    transform: translateY(-5px) scale(1.05);
}

.tier-header {
    text-align: center;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.tier-header h3 {
    margin-bottom: 1rem;
}

.price-range {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-tier ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-tier ul li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    padding-left: 3rem;
}

.pricing-tier ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.tier-note {
    font-style: italic;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 0;
}

.pricing-note {
    text-align: center;
    color: var(--text-lighter);
    font-size: 1.4rem;
}

/* ---------- Media Queries ---------- */
@media (max-width: 1200px) {
    html {
        font-size: 58%;
    }
    
    .blog-content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 56%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .pricing-tier.featured {
        transform: none;
    }
    
    .pricing-tier.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 54%;
    }
    
    h1 {
        font-size: 3.6rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero h2 {
        font-size: 2.4rem;
    }
    
    header .container {
        flex-direction: column;
        padding: 2rem var(--container-padding);
    }
    
    .logo {
        margin-bottom: 1.5rem;
    }
    
    nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    nav ul li {
        margin: 0 1.5rem;
    }
    
    .blog-post {
        flex-direction: column;
    }
    
    .post-image {
        flex: 0 0 auto;
        height: 200px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .process-step:not(:last-child):after {
        display: none;
    }
    
    .step-number {
        margin: 0 auto 2rem;
    }
    
    .contact-form-container {
        padding: 3rem 2rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 52%;
    }
    
    .hero {
        padding: 8rem 0;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .post-nav-links {
        flex-direction: column;
        width: 100%;
    }
    
    .prev-post, .next-post {
        max-width: none;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation: fadeIn 0.6s ease-out;
}
