/* ==================================
   BASE STYLES & VARIABLES
   ================================== */
:root {
    --primary-font: 'Manrope', sans-serif;
    --heading-font: 'Playfair Display', serif;
    --bg-color: #FAF8F5;
    --text-color: #433A3F;
    --title-color: #433A3F;
    --accent-color: #E87A00;
    --accent-hover-color: #c46700;
    --card-bg: #FFFFFF;
    --border-color: #e0dcd7;
}

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

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: var(--primary-font);
    margin: 0;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.8;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

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

/* Top Destinations */
.topdestinations {
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.destination-section {
    background-color: white;
}

.tour-section {
    background-color: white;
}

/* ==================================
   TYPOGRAPHY
   ================================== */
h1,
h2,
h3,
h4 {
    font-family: var(--heading-font);
    color: var(--title-color);
    font-weight: 700;
    margin-top: 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.subsection-title {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.1rem;
}

/* ==================================
   BUTTONS & LINKS
   ================================== */
.cta-button {
    background-color: var(--accent-color);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--accent-hover-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.link-button {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

/* ==================================
   HEADER & NAVIGATION
   ================================== */
.header-hero-wrapper {
    position: relative;
    background: url('https://www.bhutantourismagency.com/wp-content/uploads/2017/12/fgfd.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.new-main-header {
    flex-shrink: 0;
}

.new-hero-section {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-main-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Mobile: justify space-between for logo and hamburger */
@media (max-width: 767px) {
    .new-main-header {
        justify-content: space-between;
        gap: 0;
    }
}

.new-main-header .logo {
    flex-shrink: 0;
    width: 150px;
}

.new-main-header .logo img {
    height: auto;
    /* Maintain aspect ratio */
}

.new-main-header .main-nav {
    display: none;
    /* Hidden on mobile */
    justify-content: center;
}

.new-main-header .nav-links {
    display: flex;
    position: relative;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.new-main-header .nav-links a {
    text-decoration: none;
    position: relative;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.new-main-header .nav-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.new-main-header.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
}

.new-main-header.scrolled .nav-links a {
    color: var(--text-color);
}

/* Dropdown menu styles */
.nav-links .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    max-width: 280px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 0;
}

.nav-links .dropdown:hover .dropdown-menu,
.nav-links .dropdown.show .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-links .dropdown-menu li {
    padding: 0;
    list-style: none;
}

.nav-links .dropdown-menu a {
    padding: 12px 20px;
    color: var(--text-color);
    display: block;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 6px;
    margin: 2px 8px;
    position: relative;
}

.nav-links .dropdown-menu a:hover {
    background: var(--accent-color);
    color: white;
    transform: translateX(3px);
}

/* Dropdown toggle arrow */
.dropdown-toggle::after {
    content: "▾";
    margin-left: 8px;
    display: inline-block;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after,
.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Add a subtle triangle pointer */
.nav-links .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.1));
}

/* Mobile menu dropdown styles */
@media (max-width: 767px) {
    .nav-links .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 0;
        border: none;
        padding: 0;
        margin-top: 8px;
        min-width: auto;
        max-width: none;
    }

    .nav-links .dropdown-menu::before {
        display: none;
    }

    .nav-links .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-links .dropdown-menu a {
        margin: 0;
        border-radius: 0;
        padding: 12px 20px;
        color: rgba(255, 255, 255, 0.9);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        transform: none;
    }
}

.new-main-header.scrolled .nav-links a:hover {
    color: var(--accent-color);
}

/* Scrolled header dropdown adjustments */
.new-main-header.scrolled .nav-links .dropdown-menu {
    top: calc(100% + 8px);
}

.new-main-header.scrolled .dropdown-toggle::after {
    color: var(--text-color);
}

/* Close dropdown when clicking outside */
.nav-links .dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Ensure dropdown stays open on hover of menu items */
.nav-links .dropdown-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}



.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-selector,
.search-button {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    display: none;
    /* Hidden on mobile */
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.lang-selector i {
    font-size: 0.7rem;
    margin-left: 4px;
}

/* --- New Hero Section --- */
.new-hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--text-color);
    padding: 2rem;
    flex: 1;
    min-height: 100vh;
}

.hero-text-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.hero-title {
    font-family: var(--primary-font);
    /* Using a bold sans-serif */
    font-weight: 800;
    /* Extra bold */
    font-size: 4rem;
    /* Responsive font size */
    line-height: 1.1;
    color: #FFFFFF;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.hero-title span {
    display: block;
}

.hero-text-content h2,
.hero-text-content p {
    color: white;
}

.hero-text-content h2 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-top: 0;
}

.cta-button-outline {
    color: white;
    border-color: white;
    background-color: transparent;
    color: var(--text-color);
    padding: 15px 35px;
    border: 2px solid var(--text-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.cta-button-outline:hover {
    background-color: white;
    color: var(--text-color);
}

.hero-image-container {
    display: none;
    /* Hidden on mobile */
}

.hero-image-container img {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* --- Responsive Adjustments for New Sections --- */
@media (min-width: 768px) {

    .new-main-header .main-nav,
    .lang-selector,
    .search-button {
        display: flex;
    }

    .new-main-header .hamburger {
        display: none;
        /* Hide hamburger on desktop */
    }

    .new-main-header {
        gap: 4rem;
    }

    .new-hero-section {
        flex-direction: row;
        padding: 4rem;
        gap: 2rem;
    }

    .hero-text-content {
        text-align: left;
        max-width: 50%;
    }

    .hero-image-container {
        display: block;
        max-width: 50%;
    }

    .hero-title {
        font-size: 5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 7rem;
        /* Even larger on desktop */
    }
}

/* --- Mobile Navigation Styles --- */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 6rem 2rem 2rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav.is-active {
    transform: translateY(0);
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

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

.hamburger {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.new-main-header.scrolled .hamburger {
    color: var(--text-color);
}

/* --- Remove old styles that are no longer needed --- */
.main-header,
.hero-section {
    display: none;
    /* Hide the old elements to avoid conflicts */
}

/* ==================================
   MAIN CONTENT SECTIONS
   ================================== */
.hero-section {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://snapsea.fra1.cdn.digitaloceanspaces.com/d8e971d9-661b-4f90-bc38-17817c258b35/by%20Matt%20Dutile4.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 1rem;
}

.hero-content h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

/* --- Welcome Hero Section --- */
.welcome-hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
}

.welcome-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.welcome-content-overlay {
    position: relative;
    z-index: 2;
    padding: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-card {
    background: rgba(46, 125, 50, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.welcome-card h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
    font-weight: 700;
}

.welcome-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.welcome-cta-button {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.welcome-cta-button:hover {
    background-color: white;
    color: var(--accent-color);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mosaic-gallery {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.mosaic-item,
.grid-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    min-height: 250px;
}

.mosaic-item img,
.grid-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mosaic-item span,
.grid-image-card span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1rem;
    font-weight: 600;
}

/* Make entire mosaic tile clickable */
.mosaic-link {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1; /* above overlay */
}

/* Hover effect for mosaic items – similar feel to card-hover-special */
.mosaic-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(142, 97, 35, 0.9) 0%,
            rgba(142, 108, 35, 0.5) 100%);
    opacity: 0;
    z-index: 0;
    transition: opacity 0.4s ease;
    pointer-events: none; /* allow clicks to pass through overlay */
}

.mosaic-item:hover::after {
    opacity: 1;
}

.mosaic-item img {
    transition: transform 0.4s ease;
}

.mosaic-item:hover img {
    transform: scale(1.05);
}

.mosaic-item span {
    z-index: 1; /* keep text above overlay */
    transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}

.mosaic-item:hover span {
    background: none; /* let the overlay gradient show through */
}

.image-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

.sdf-banner {
    padding: 4rem 1.5rem;
    background-color: #EFEAE4;
    text-align: center;
}

.sdf-content h2 {
    font-size: 2rem;
}

.tour-category-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.tour-category-layout.reversed .tour-image-showcase {
    order: -1;
}

/* Stack image first */
.tour-image-showcase img {
    width: 100%;
    border-radius: 8px;
}

.tour-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* --- Featured Adventures Section --- */
.featured-adventures-section {
    background: var(--bg-color);
    /* padding: 6rem 0; */
    margin: 0;
}

.adventures-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.adventures-title {
    color: white;
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    /* margin-bottom: 4rem; */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.adventures-grid {
    display: grid;
    padding: 40px 0;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 320px;
    margin: 0 auto;
}

/* --- Tour Packages Grid (3 columns on desktop) --- */
.tour-packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .tour-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tour-packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.adventure-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 450px;
    background: white;
}

.adventure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.adventure-image {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

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

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

.adventure-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    color: white;
}

.adventure-overlay h3 {
    color: white;
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.adventure-location {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 0 0.8rem 0;
    text-transform: uppercase;
}

.adventure-difficulty {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 0.3rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.adventure-distance {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

.other-tours-grid,
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.tour-card,
.blog-post-card {
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

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

.card-content,
.blog-card-content {
    padding: 1.5rem;
}

.card-content h4,
.blog-card-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-details i {
    color: var(--accent-color);
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.split-form {
    margin-top: 2rem;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
}

.quick-contact-form {
    display: grid;
    gap: 1rem;
}

.quick-contact-form input,
.quick-contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
}


.blog-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-color);
}

.blog-card-content h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.booking-form .form-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    border: 1px solid var(--border-color);
}

#contact button {
    width: 100%;
}

.testimonials-section {
    background-color: white;
}

.testimonial-carousel {
    position: relative;
    margin-top: 3rem;
    padding: 0 60px;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px;
}

.testimonial-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 300px;
    min-width: 300px;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* Makes the image a circle */
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid var(--accent-color);
}

/* Testimonial carousel arrows */
.testimonial-left {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.testimonial-right {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

/* Mobile responsive for testimonial arrows */
@media (max-width: 767px) {
    .testimonial-carousel {
        padding: 0 50px;
    }

    .testimonial-left,
    .testimonial-right {
        width: 40px;
        height: 40px;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .testimonial-left {
        left: 5px;
    }

    .testimonial-right {
        right: 5px;
    }
}

.testimonial-content p {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.testimonial-content h4 {
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

/* ==================================
   FOOTER
   ================================== */
.main-footer {
    position: relative;
    color: #e8e6e7;
    text-align: center;
    padding: 4rem 1.5rem;
}

.footer-with-bg {
    background: url('https://www.bhutantourismagency.com/wp-content/uploads/2025/10/1000400295-scaled.jpg') center/cover no-repeat;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(35, 40, 46, 0.7);
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-heading h3 {
    font-family: var(--heading-font);
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.footer-heading p {
    color: #cfd2d4;
    margin: 0 0 1.5rem 0;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.social-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
}

.footer-legal p {
    margin: 0;
    color: #d7d7d8;
    font-size: 0.95rem;
}

/* ==================================
   ANIMATION & UTILITIES
   ================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================================
   TABLET STYLES (min-width: 768px)
   ================================== */
@media (min-width: 768px) {
    .container {
        padding: 5rem 2rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .subsection-title {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .nav-links {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .mobile-nav {
        display: none;
    }

    .welcome-content-overlay {
        justify-content: flex-end;
        padding: 2rem 4rem;
    }

    .welcome-card {
        max-width: 450px;
        margin-right: 2rem;
    }

    .split-layout,
    .tour-category-layout {
        grid-template-columns: 1fr 1fr;

    }

    .tour-category-layout.reversed .tour-image-showcase {
        order: 0;
    }

    .mosaic-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-grid,
    .adventures-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 700px;
    }

    .other-tours-grid,
    .blog-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .other-tours-grid,
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .split-form {
        margin-top: 0;
    }

    .booking-form .form-group {
        grid-template-columns: 1fr 1fr;
    }

    #contact button {
        width: auto;
        justify-self: center;
    }
}

/* ==================================
   DESKTOP STYLES (min-width: 1024px)
   ================================== */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 4.5rem;
    }

    .welcome-hero-section {
        height: 80vh;
    }

    .welcome-card {
        max-width: 480px;
        padding: 4rem;
    }

    .welcome-card h2 {
        font-size: 2.5rem;
    }

    .mosaic-gallery {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 250px;
    }

    .mosaic-item.tall {
        grid-row: span 2;
    }

    .mosaic-item.wide {
        grid-column: span 2;
    }

    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .adventures-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: 1300px;
    }

    .adventures-title {
        font-size: 4rem;
    }

    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==================================
   PAGE HERO (Generic for inner pages)
   ================================== */
.page-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: flex-end;
    background-position: center;
    background-size: cover;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.55));
}

.page-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 6rem 1.5rem 3rem;
    color: #fff;
}

.page-hero-content h1 {
    color: #fff;
    font-family: var(--heading-font);
    font-size: 2.8rem;
    margin-bottom: 0.75rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .sep {
    opacity: 0.7;
}

/* Top destinations */


.programs-section {
    display: flex;
    align-items: center;
    /* background-color: #f8f9fa; */
    padding: 50px;
    font-family: "Montserrat", sans-serif;
    overflow: hidden;
    max-width: 1400px;
    margin: auto;
}

.programs-description {
    flex: 0 0 25%;
    padding-right: 40px;
}

/* .programs-description .handwriting-font {
    font-family: "Caveat", cursive;
    font-size: 2.5em;
    color: #E87A00;
    margin: 0;
    font-weight: normal;
} */

.programs-description h3 {
    font-size: 1.5em;
    font-weight: 700;
    margin-top: -10px;
    letter-spacing: 2px;
}

.programs-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 0.9em;
}

.explore-link .arrow-icon {
    background-color: #E87A00;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.explore-link:hover .arrow-icon {
    background-color: #E87A00;
}

.programs-section {
    position: relative;
}

.programs-cards-container {
    flex: 1;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    scroll-snap-type: x proximity;
}

.programs-cards-container::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.card {
    flex: 0 0 220px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

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

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

.card h4 {
    margin: 0;
    font-size: 1.2em;
    color: white;
}

.card-hover-special .card-content {
    background: linear-gradient(to top,
            rgba(142, 97, 35, 0.9) 0%,
            rgba(142, 108, 35, 0.5) 100%);
    opacity: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.card-hover-special:hover .card-content {
    opacity: 1;
}

.card-hover-special:not(:hover) h4 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    background: none;
    z-index: 2;
    opacity: 1;
}

.card-hover-special .card-content h4 {
    position: static;
    color: white;
    opacity: 1;
}

.card-hover-content {
    margin-top: 10px;
}

.card-hover-content p {
    margin: 0 0 15px;
    font-size: 0.9em;
    line-height: 1.5;
}

.card-hover-content a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
}

/* Make entire card clickable without breaking hover overlay */
.card-link {
    display: block;
}

.card-link img {
    width: 100%;
    height: auto;
    display: block;
}

.card-cta {
    color: white;
    font-weight: bold;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: opacity 0.3s, transform 0.3s;
}

.left-arrow {
    left: 5px;
}

.right-arrow {
    right: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .scroll-arrow {
        width: 48px;
        height: 48px;
        font-size: 28px;
    }

    .left-arrow {
        left: 2px;
    }

    .right-arrow {
        right: 2px;
    }
}

/* Disable hover effects on touch devices */
@media (hover: none) {
    .scroll-arrow {
        background-color: rgba(255, 255, 255, 0.9);
    }
}


/* Small phones: stack vertically, hide arrows */
@media (max-width: 600px) {
    .programs-section {
        flex-direction: column;
        padding: 20px;
    }

    .programs-description {
        flex: none;
        width: 100%;
        padding-right: 0;
        margin-bottom: 12px;
    }

    .programs-cards-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        overflow: visible;
        /* no horizontal scroll */
        padding: 0;
    }

    .card {
        flex: none;
        width: 100%;
        height: auto;
        min-height: 220px;
        border-radius: 12px;
    }

    .card img {
        height: 220px;
        object-fit: cover;
    }

    .scroll-arrow {
        display: none !important;
    }

    #destinations .topdestinations,
    #destinations .mosaic-gallery {
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
    }

    /* ensure mosaic items don't overflow the padded container */
    #destinations .mosaic-gallery .mosaic-item,
    #destinations .mosaic-gallery img {
        max-width: 100%;
        display: block;
        box-sizing: border-box;
    }

}

/* Small tablets: keep a horizontal carousel with touch snapping and larger cards */
@media (min-width: 601px) and (max-width: 900px) {
    .programs-section {
        flex-direction: column;
        padding: 22px;
    }

    .programs-description {
        flex: none;
        width: 100%;
        padding-right: 0;
        margin-bottom: 16px;
    }

    .programs-cards-container {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding: 12px 6px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .programs-cards-container::-webkit-scrollbar {
        display: none;
    }

    .card {
        flex: 0 0 75%;
        min-width: 260px;
        height: 320px;
        scroll-snap-align: center;
    }

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

    /* move arrows slightly down so they don't overlap the description */
    .scroll-arrow {
        position: absolute;
        bottom: 8px;
        top: auto;
        display: flex;
    }

    .left-arrow {
        left: 8px;
    }

    .right-arrow {
        right: 8px;
    }
}

/* Ensure arrows remain visible on wide screens (greater than 900px) */
@media (min-width: 901px) {
    .scroll-arrow {
        display: flex;
    }
}

/* ==================================
   TOUR DETAIL PAGE STYLES
   ================================== */

/* Tour Detail Hero Section */
.tour-detail-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.tour-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.tour-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 3rem;
}

.tour-detail-title {
    color: white;
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Tour Detail Wrapper */
.tour-detail-wrapper {
    background-color: var(--bg-color);
    padding: 4rem 0;
}

/* Overview Section */
.tour-overview-section {
    margin-bottom: 4rem;
}

.overview-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.overview-image {
    order: -1;
}

.overview-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--title-color);
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.tour-quick-info {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quick-info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 30px;
    text-align: center;
}

.quick-info-item div {
    display: flex;
    flex-direction: column;
}

.quick-info-item strong {
    font-size: 1.1rem;
    color: var(--title-color);
    margin-bottom: 0.25rem;
}

.quick-info-item span {
    color: var(--accent-color);
    font-weight: 600;
}

/* Tour Highlights Section */
.tour-highlights-section {
    margin-bottom: 4rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 30px;
    text-align: center;
}

.highlight-item div {
    display: flex;
    flex-direction: column;
}

.highlight-item strong {
    font-size: 1rem;
    color: var(--title-color);
    margin-bottom: 0.25rem;
}

.highlight-item span {
    color: var(--text-color);
    font-size: 0.9rem;
}

.tour-features {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tour-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 2rem;
}

.tour-features li:last-child {
    border-bottom: none;
}

.tour-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Itinerary Section */
.tour-itinerary-section {
    margin-bottom: 4rem;
}

.itinerary-list {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.itinerary-item {
    display: flex;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    align-items: flex-start;
    gap: 2rem;
}

.itinerary-item:last-child {
    border-bottom: none;
}

.day-number {
    background: var(--accent-color);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.day-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--title-color);
    font-size: 1.3rem;
}

.day-content p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

/* Payment Conditions Section */
.payment-conditions-section {
    margin-bottom: 4rem;
}

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

.payment-column {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.payment-column h3 {
    color: var(--title-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.payment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-color);
    line-height: 1.5;
}

.payment-list.includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #E87A00;
    font-weight: bold;
}

.payment-list.excludes li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.insurance-text {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Tour Contact Section */
.tour-contact-section {
    margin-bottom: 4rem;
}

.contact-card {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--title-color);
}

/* Related Tours Section */
.related-tours-section {
    margin-bottom: 2rem;
}

.related-tours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.related-tour-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.tour-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
}

.tour-overlay h4 {
    margin: 0;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Responsive Design for Tour Detail Page */
@media (min-width: 768px) {
    .tour-detail-title {
        font-size: 4rem;
    }

    .overview-layout {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .overview-image {
        order: 0;
    }

    .overview-image img {
        height: 400px;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .related-tours-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tour-detail-title {
        font-size: 4.5rem;
    }
}

/* ==================================
   CONTACT US PAGE STYLES
   ================================== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    background: linear-gradient(135deg, #ff7b54 0%, #ff9478 50%, #4a90e2 100%);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 3rem;
}

.contact-title {
    color: white;
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Contact Wrapper */
.contact-wrapper {
    background-color: var(--bg-color);
    padding: 4rem 0;
}

/* Contact Main Content Layout */
.contact-main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    overflow-x: hidden; /* prevent accidental horizontal scroll */
}

/* Left Column Styles */
.contact-left-column {
    order: 2;
}

.contact-right-column {
    order: 1;
}

/* Ensure grid items can shrink inside the contact layout */
.contact-main-content > * {
    min-width: 0;
}

/* Make sure inner cards/forms never exceed their column width */
.online-enquiry-form,
.contact-info-section {
    max-width: 100%;
}

/* CF7 form safeguards */
.online-enquiry-form .wpcf7-form {
    max-width: 100%;
}

.online-enquiry-form .wpcf7-form input[type="text"],
.online-enquiry-form .wpcf7-form input[type="email"],
.online-enquiry-form .wpcf7-form input[type="tel"],
.online-enquiry-form .wpcf7-form textarea,
.online-enquiry-form .wpcf7-form select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Important Reminder Section */
.important-reminder {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.important-reminder h2 {
    color: var(--title-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.important-reminder h2::before {
    content: "⚠️";
    font-size: 1.2rem;
}

.important-reminder p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.email-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.email-link:hover {
    text-decoration: underline;
}

/* Online Enquiry Form */
.online-enquiry-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.online-enquiry-form h2 {
    color: var(--title-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group.full-width {
    flex: 1;
}

.contact-form .form-group.half-width {
    flex: 1;
}

.contact-form label {
    color: var(--title-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--primary-font);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(232, 122, 0, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.send-button {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.send-button:hover {
    background-color: var(--accent-hover-color);
    transform: translateY(-1px);
}

/* Contact Information Sections */
.contact-info-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    text-align: center;
}

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

.info-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-info-section h3 {
    color: var(--title-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.info-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.info-content a {
    color: var(--accent-color);
    text-decoration: none;
}

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

/* Map Section */
.contact-map-section {
    margin-top: 3rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Mobile Form Adjustments */
@media (max-width: 767px) {
    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }

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

    .contact-title {
        font-size: 2.5rem;
    }
}

/* Desktop Layout */
@media (min-width: 768px) {
    .contact-title {
        font-size: 4rem;
    }

    .contact-main-content {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }

    .contact-left-column {
        order: 1;
    }

    .contact-right-column {
        order: 2;
    }

    .map-container iframe {
        height: 450px;
    }
}

@media (min-width: 1024px) {
    .contact-title {
        font-size: 4.5rem;
    }

    .contact-main-content {
        gap: 5rem;
        grid-template-columns: 3fr 2fr; /* widen right column on desktop */
    }

    .contact-right-column { min-width: 380px; }
}

.split-form .wpcf7-form.quick-contact-form { display: block; }

.split-form .wpcf7-form input[type="text"],
.split-form .wpcf7-form input[type="email"],
.split-form .wpcf7-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}