/* 
 * GentleRidge - Main Stylesheet
 * Version: 1.0
 * Last updated: 2024
 */

/* ===== Base Styles ===== */
:root {
    --primary-color: #1e88e5;
    --primary-dark: #1565c0;
    --primary-light: #64b5f6;
    --secondary-color: #ff8f00;
    --secondary-dark: #ef6c00;
    --secondary-light: #ffb74d;
    --text-dark: #212121;
    --text-medium: #424242;
    --text-light: #757575;
    --background-light: #ffffff;
    --background-grey: #f5f7fa;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --font-size-decreased: 0.925;
}

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

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

body.font-size-decreased {
    font-size: var(--font-size-decreased);
}

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

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

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

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

button, .btn, .cta-button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    font-size: 2.2rem;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

/* ===== Header Styles ===== */
header {
    background-color: var(--background-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

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

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

.nav-links {
    display: flex;
    gap: 30px;
}

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

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

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

.font-size-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--background-grey);
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    color: var(--text-medium);
    font-size: 0.9rem;
}

.font-size-btn:hover {
    background-color: var(--border-color);
}

.font-size-btn svg {
    width: 16px;
    height: 16px;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

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

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

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 14px 30px;
    border-radius: var(--border-radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* ===== Features Section ===== */
.features {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius-md);
    background-color: var(--background-light);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-medium);
}

/* ===== Popular Tours Section ===== */
.popular-tours {
    padding: 80px 0;
    background-color: var(--background-grey);
}

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

.tour-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.tour-info {
    padding: 20px;
}

.tour-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.tour-info p {
    color: var(--text-medium);
    margin-bottom: 15px;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.btn-small {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
}

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

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

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

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

.testimonial {
    min-width: 100%;
    scroll-snap-align: start;
}

.testimonial-content {
    background-color: var(--background-grey);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-content:after {
    content: '"';
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 4rem;
    color: var(--primary-light);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.testimonial-author strong {
    display: block;
    font-weight: 600;
}

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

/* ===== Blog Preview Section ===== */
.blog-preview {
    padding: 80px 0;
    background-color: var(--background-grey);
}

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

.blog-post-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.blog-post-info {
    padding: 20px;
}

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

.blog-post-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    line-height: 1.4;
}

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

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-block;
    position: relative;
}

.read-more:after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover:after {
    transform: translateX(3px);
}

.view-all-container {
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: var(--border-radius-md);
    font-weight: 500;
}

.view-all-btn:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* ===== Newsletter Section ===== */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(rgba(30, 136, 229, 0.9), rgba(21, 101, 192, 0.9)), url('images/9.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

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

.newsletter h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

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

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

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

.newsletter-form button {
    background-color: var(--secondary-color);
    color: white;
    padding: 0 25px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    background-color: var(--secondary-dark);
}

.subscription-counter {
    margin-top: 20px;
    font-size: 0.95rem;
    opacity: 0.8;
}

#subscriberCount {
    font-weight: 700;
    color: var(--secondary-light);
}

/* ===== Footer Styles ===== */
footer {
    background-color: #1a2a36;
    color: #e0e0e0;
    padding: 60px 0 20px;
}

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

.footer-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
}

.footer-column h3:after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--primary-light);
    margin-top: 10px;
}

.footer-column p, 
.footer-column address p {
    margin-bottom: 10px;
    color: #bdbdbd;
    font-style: normal;
}

.footer-column address p svg {
    margin-right: 10px;
    vertical-align: middle;
}

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

.footer-column ul li a {
    color: #bdbdbd;
}

.footer-column ul li a:hover {
    color: white;
}

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

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #9e9e9e;
}

.legal-links {
    margin-bottom: 15px;
}

.legal-links a {
    color: #bdbdbd;
    margin: 0 10px;
    font-size: 0.9rem;
}

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

/* ===== Cookie Consent ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #323232;
    color: white;
    padding: 15px 30px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-consent.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

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

.cookie-buttons button {
    padding: 8px 15px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
}

#acceptCookies {
    background-color: var(--success-color);
    color: white;
}

#customizeCookies {
    background-color: #616161;
    color: white;
}

#rejectCookies {
    background-color: var(--error-color);
    color: white;
}

.cookie-content a {
    color: var(--primary-light);
    font-size: 0.9rem;
}

.cookie-content a:hover {
    text-decoration: underline;
}

/* ===== Page Header ===== */
.page-header {
    background-color: var(--background-grey);
    padding: 60px 0;
    text-align: center;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: var(--text-light);
}

.breadcrumb li a {
    color: var(--primary-color);
}

.breadcrumb li.active {
    color: var(--text-medium);
}

/* ===== About Page Styles ===== */
.about-intro {
    padding: 80px 0;
}

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

.about-text h2 {
    margin-bottom: 25px;
    font-size: 2.2rem;
}

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

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

.our-mission {
    padding: 80px 0;
    background-color: var(--background-grey);
}

.mission-content h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

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

.mission-item {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.mission-item p {
    color: var(--text-medium);
}

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

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

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

.team-member img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover img {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.team-member p {
    color: var(--text-medium);
    margin-bottom: 10px;
}

.team-member p:nth-child(3) {
    color: var(--primary-color);
    font-weight: 500;
}

.achievements {
    padding: 80px 0;
    background-color: var(--background-grey);
}

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

.achievement {
    display: flex;
    gap: 20px;
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.achievement-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.achievement-info h3 {
    margin-bottom: 10px;
}

.achievement-info p {
    color: var(--text-medium);
}

/* ===== Blog Page Styles ===== */
.blog-content {
    padding: 80px 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 40px;
}

.blog-post {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-md);
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.date, .category {
    color: var(--text-light);
}

.category {
    background-color: var(--primary-light);
    color: white;
    padding: 2px 8px;
    border-radius: var(--border-radius-sm);
}

.post-content h2 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.post-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: var(--primary-dark);
    color: white;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background-color: var(--background-light);
    padding: 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
}

.sidebar-widget h3:after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    margin-top: 8px;
}

.category-list li {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.category-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.category-list a {
    color: var(--text-medium);
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
}

.category-list a:hover {
    color: var(--primary-color);
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post {
    display: flex;
    gap: 15px;
}

.popular-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

.popular-post h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.popular-post h4 a {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

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

.popular-post .date {
    font-size: 0.8rem;
}

.sidebar-subscribe {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-subscribe input {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
}

.sidebar-subscribe button {
    background-color: var(--primary-color);
    color: white;
    padding: 10px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
}

.sidebar-subscribe button:hover {
    background-color: var(--primary-dark);
}

/* ===== Blog Post Page Styles ===== */
.blog-header {
    padding: 30px 0;
    background-color: var(--background-grey);
    text-align: left;
}

.blog-post-layout {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 40px;
    padding: 60px 0;
}

.post-full {
    background-color: var(--background-light);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.post-header {
    padding: 30px 30px 0;
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.post-header .post-meta {
    margin-bottom: 30px;
}

.post-header .author {
    color: var(--text-medium);
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-body {
    padding: 30px;
}

.post-body h2, .post-body h3 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.post-body p, .post-body ul, .post-body ol {
    margin-bottom: 20px;
    color: var(--text-medium);
}

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

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

.post-image-inline {
    margin: 30px 0;
    text-align: center;
}

.post-image-inline img {
    max-width: 100%;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
}

.image-caption {
    margin-top: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.post-tags span {
    color: var(--text-medium);
    font-weight: 500;
}

.post-tags a {
    background-color: var(--background-grey);
    color: var(--text-medium);
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
}

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

.post-author {
    display: flex;
    gap: 20px;
    background-color: var(--background-grey);
    padding: 30px;
    border-radius: var(--border-radius-md);
    margin-top: 40px;
}

.post-author img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.author-info p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.share-post {
    margin-top: 40px;
    padding: 30px;
    border-top: 1px solid var(--border-color);
}

.share-post h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.social-share-buttons a {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--background-grey);
    color: var(--text-medium);
    padding: 8px 15px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.related-posts {
    padding: 30px;
    border-top: 1px solid var(--border-color);
}

.related-posts h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.related-post h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.related-post .date {
    font-size: 0.8rem;
}

.sidebar-cta {
    display: block;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 20px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    font-weight: 500;
    margin-top: 15px;
}

.sidebar-cta:hover {
    background-color: var(--secondary-dark);
    color: white;
}

/* ===== Contact Page Styles ===== */
.contact-info {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.contact-card {
    background-color: var(--background-grey);
    padding: 30px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.contact-card h3 {
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-medium);
    margin-bottom: 5px;
}

.contact-form-section {
    padding: 80px 0;
    background-color: var(--background-grey);
}

.contact-layout {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 50px;
}

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

.form-container h2 {
    margin-bottom: 15px;
}

.form-container > p {
    color: var(--text-medium);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.form-group label {
    color: var(--text-medium);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
}

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

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox label {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 10px;
}

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

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

.map-container h2 {
    margin-bottom: 20px;
}

.map {
    margin-bottom: 30px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.office-info h3 {
    margin-bottom: 15px;
}

.office-info p {
    color: var(--text-medium);
    margin-bottom: 15px;
}

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

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

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.faq-question {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
    cursor: pointer;
    position: relative;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-answer {
    color: var(--text-medium);
}

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

.modal.active {
    display: flex;
}

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

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

.thank-you-message {
    text-align: center;
}

.thank-you-message svg {
    color: var(--success-color);
    margin-bottom: 20px;
}

.thank-you-message h2 {
    margin-bottom: 15px;
}

.thank-you-message p {
    color: var(--text-medium);
    margin-bottom: 25px;
}

.close-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
}

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

/* ===== Responsive Styles ===== */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .about-content,
    .blog-post-layout,
    .blog-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        margin-top: 15px;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .tours-grid,
    .mission-grid,
    .team-grid,
    .blog-posts-grid {
        gap: 20px;
    }
    
    .blog-post {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        gap: 30px;
    }
}

@media screen and (max-width: 576px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-card,
    .feature-card {
        padding: 20px;
    }
    
    .social-share-buttons {
        flex-direction: column;
    }
}

/* Print Styles */
@media print {
    header, footer, .newsletter, .cookie-consent, .sidebar-widget, .related-posts {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    .container {
        width: 100%;
        max-width: none;
    }
    
    .blog-post-layout, .blog-layout {
        display: block;
    }
    
    .post-full {
        box-shadow: none;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
    }
}
