/*
Theme Name: Trekking Theme
Theme URI: https://himalayancomebackorg
Author: Himalayan Comeback
Author URI: https://himalayancomebackorg
Description: A custom WordPress theme for Himalayan trekking adventures with custom Tours post type, responsive design, and modern interactions.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: himalayan-comeback-theme
Tags: adventure, travel, tours, trekking, custom-post-types, responsive
*/

/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    margin: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #4A4A4A;
    background-color: #FFFFFF;
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: relative;
}

/* Force remove all possible WordPress top spacing */
html.wp-toolbar,
body.admin-bar,
body.admin-bar .site-header,
body.logged-in,
body.logged-in .site-header {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Hide WordPress admin bar completely */
#wpadminbar,
.admin-bar #wpadminbar {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    position: absolute !important;
    top: -99999px !important;
}

/* Ensure site header starts at absolute top */
.site-header {
    top: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove any top spacing from all possible page wrappers */
#page,
.site,
.site-content,
#content,
.site-main,
main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove excessive bottom spacing from main content wrappers */
#main-content,
main {
    margin-bottom: 0 !important;
}

/* Remove Elementor page top spacing */
.elementor,
.elementor-page,
.elementor-edit-mode,
.elementor-editor-active,
.elementor-default,
.elementor-kit-6,
body.elementor-page,
div.elementor {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove top spacing from first Elementor section */
.elementor > .elementor-section:first-child,
.elementor-section-wrap > .elementor-section:first-child,
.elementor-inner > .elementor-section:first-child,
body > .elementor > .elementor-section:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Ensure all Elementor containers start at top */
.elementor-location-header,
.e-con,
.e-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove spacing from body's first child */
body > *:first-child,
body > div:first-child,
body > main:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Target Elementor edit mode specifically */
.elementor-editor-active body,
.elementor-editor-active .elementor,
.elementor-editor-active .elementor-section-wrap {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2C3E50;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
}

/* ========================================
   COLOR SYSTEM
   ======================================== */

:root {
    --color-primary: #FF7A3D;
    --color-primary-hover: #E66A2D;
    --color-secondary: #5B9BD5;
    --color-dark: #2C3E50;
    --color-light: #F5F5F5;
    --color-white: #FFFFFF;
    --color-text: #4A4A4A;
    --color-border: #E0E0E0;
    --transition: all 0.3s ease;
    --animation-fast: 0.3s;
    --animation-medium: 0.6s;
    --animation-slow: 0.9s;
}

/* ========================================
   LAYOUT & CONTAINERS
   ======================================== */

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

.container-fluid {
    width: 100%;
    padding: 0 20px !important;
}

.section {
    padding: 100px 0 !important;
}

.section + .section {
    margin-top: 0;
}

.hero-section + .section {
    padding-top: 100px !important;
}

/* Remove extra space when hero is the only section */
.hero-section + .site-footer {
    margin-top: 0;
}

.section-small {
    padding: 100px 0 !important;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 122, 61, 0.4);
}

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

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

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

.btn-white:hover {
    background-color: var(--color-light);
    color: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

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

.cta-section .btn-primary:hover {
    background-color: var(--color-light);
    color: var(--color-primary-hover);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

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

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

.btn-large {
    padding: 18px 42px;
    font-size: 1.125rem;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.site-header {
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1400px;
    margin: 0 auto;
    transition: padding 0.3s ease;
}

.site-header.scrolled .header-container {
    padding: 12px 40px;
}

.site-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    transition: color 0.3s ease;
    z-index: 10;
}

.site-header.scrolled .site-logo {
    color: var(--color-dark);
}

.site-logo .logo-link {
    color: inherit;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.site-logo img {
    max-height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.site-logo:hover img {
    transform: scale(1.05);
}

.primary-navigation {
    display: flex;
    align-items: center;
    gap: 50px;
}

.primary-navigation ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

.primary-navigation li {
    list-style: none;
}

.primary-navigation ul a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-white);
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.site-header.scrolled .primary-navigation ul a {
    color: var(--color-text);
}

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

.primary-navigation ul a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.primary-navigation ul a:hover::after,
.primary-navigation ul a.active::after {
    width: 100%;
}

.btn-nav-cta {
    padding: 8px 24px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 122, 61, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    transition: var(--transition);
}

.site-header.scrolled .mobile-menu-toggle span {
    background-color: var(--color-dark);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    transform: translateZ(0);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
    font-weight: 700;
    line-height: 1.2;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    opacity: 1;
    animation: typewriter 2.5s steps(30) 0.5s forwards;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--color-white);
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    text-align: center;
    width: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    display: block;
    width: 30px;
    height: 30px;
    border-left: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transform: rotate(-45deg);
    opacity: 0.8;
}

/* ========================================
   TOUR CARDS
   ======================================== */

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

.tour-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.tour-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tour-card a:first-child {
    display: block;
    overflow: hidden;
}

.tour-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card:hover .tour-card-image {
    transform: scale(1.1);
}

.tour-card-content {
    padding: 25px;
}

.tour-card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.tour-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.875rem;
    color: var(--color-text);
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-card-excerpt {
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tour-difficulty {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--color-light);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-dark);
}

.tour-difficulty.easy {
    background-color: #D4EDDA;
    color: #155724;
}

.tour-difficulty.moderate {
    background-color: #FFF3CD;
    color: #856404;
}

.tour-difficulty.challenging {
    background-color: #F8D7DA;
    color: #721C24;
}

.tour-difficulty.strenuous {
    background-color: #D1ECF1;
    color: #0C5460;
}

/* ========================================
   SECTIONS
   ======================================== */

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3.5rem;
    color: var(--color-dark);
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Featured Treks Section */
.featured-treks-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
    position: relative;
    padding: 100px 0 !important;
}

.about-section {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 50%, #2C3E50 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding: 100px 0 !important;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.about-section .section-title,
.about-section .about-text h2 {
    color: var(--color-white);
}

.about-section .section-title::after {
    background: linear-gradient(to right, var(--color-primary), #FFFFFF);
}

.about-section .about-text p {
    color: rgba(255, 255, 255, 0.9);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content-no-image {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 122, 61, 0.2), rgba(91, 155, 213, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.about-image:hover::before {
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

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

.about-text h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-text .btn {
    margin-top: 1rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials-section {
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.testimonial-card {
    text-align: center;
    padding: 50px 35px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: var(--color-primary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F0 100%);
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 25px;
    object-fit: cover;
    border: 5px solid var(--color-white);
    box-shadow: 0 5px 20px rgba(255, 122, 61, 0.2);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--color-text);
    position: relative;
}

.testimonial-author {
    font-weight: 700;
    color: var(--color-dark);
    font-size: 1.1rem;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--color-white);
    font-weight: 700;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   FILTERS
   ======================================== */

.filters-bar {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.filters-label {
    font-weight: 600;
    color: var(--color-dark);
}

.filter-select {
    padding: 10px 15px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    font-size: 1rem;
    color: var(--color-text);
    background-color: var(--color-white);
    cursor: pointer;
    transition: var(--transition);
}

.filter-select:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* ========================================
   FORMS
   ======================================== */

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

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: var(--color-text);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 60px 0 30px;
}

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

.footer-widget h3 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer-widget ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-widget a:hover {
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

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

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

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

.tour-info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.info-box {
    background-color: var(--color-light);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--color-border);
}

.info-box-label {
    font-size: 0.875rem;
    color: var(--color-text);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-box-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
}

.itinerary-section {
    margin: 60px 0;
}

.itinerary-item {
    background-color: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.itinerary-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-light);
    transition: var(--transition);
}

.itinerary-header:hover {
    background-color: #E8E8E8;
}

.itinerary-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark);
}

.itinerary-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.itinerary-content.active {
    padding: 20px 25px;
    max-height: 500px;
}

.tour-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 40px 0;
}

.gallery-item {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

/* ========================================
   BLOG & SIDEBAR
   ======================================== */

.content-area {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.post-entry {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
}

.post-thumbnail {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.875rem;
    color: var(--color-text);
}

.post-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.post-title a {
    color: var(--color-dark);
}

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

.sidebar {
    position: sticky;
    top: 100px;
}

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

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

.sidebar-widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

/* ========================================
   PAGINATION
   ======================================== */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background-color: var(--color-light);
    border-radius: 4px;
    color: var(--color-dark);
    font-weight: 500;
    transition: var(--transition);
}

.page-numbers:hover,
.page-numbers.current {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* ========================================
   404 PAGE
   ======================================== */

.error-404 {
    text-align: center;
    padding: 100px 20px;
}

.error-404 h1 {
    font-size: 8rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.error-404 h2 {
    margin-bottom: 20px;
}

.error-404 p {
    font-size: 1.125rem;
    margin-bottom: 30px;
}

/* ========================================
   UTILITIES
   ======================================== */

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        gap: 40px;
    }
    
    .content-area {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px !important;
    }
    
    .container-full .container {
        padding: 0 15px !important;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 80px 0 !important;
    }
    
    .hero-section + .section {
        padding-top: 80px !important;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .header-container {
        padding: 12px 20px;
    }
    
    .site-logo {
        color: var(--color-white);
    }
    
    .site-header.scrolled .site-logo {
        color: var(--color-dark);
    }
    
    .primary-navigation {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 40px 20px;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .primary-navigation.active {
        left: 0;
    }
    
    .primary-navigation ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .primary-navigation li {
        width: 100%;
        border-bottom: 1px solid var(--color-border);
    }
    
    .primary-navigation ul a {
        display: block;
        padding: 15px 0;
        font-size: 1.125rem;
        color: var(--color-dark) !important;
    }
    
    .btn-nav-cta {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }
    
    .mobile-menu-toggle span {
        background-color: var(--color-white);
    }
    
    .site-header.scrolled .mobile-menu-toggle span {
        background-color: var(--color-dark);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-section {
        height: 100vh;
        min-height: 500px;
        background-attachment: scroll;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 20px 15px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 1.5rem;
        white-space: nowrap;
        overflow: hidden;
        border-right: none;
        width: auto;
        opacity: 0;
        animation: typewriterMobile 2.5s steps(30) 0.5s forwards;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 95%;
        display: inline-block;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-section::before,
    .cta-section::after {
        width: 300px;
        height: 300px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .filters-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .tour-info-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .error-404 h1 {
        font-size: 5rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 20px !important;
    }
    
    .container-full .container {
        padding: 0 20px !important;
    }
    
    .hero-title {
        font-size: 1.5rem;
        white-space: nowrap;
        overflow: hidden;
        border-right: none;
        width: auto;
        opacity: 0;
        animation: typewriterMobile 2.5s steps(30) 0.5s forwards;
        text-align: center;
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .tour-info-boxes {
        grid-template-columns: 1fr;
    }
    
    .tour-gallery {
        grid-template-columns: 1fr;
    }
}

/* Extra Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.35rem;
        max-width: 100%;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

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

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

/* Fade Up Animation for Scroll */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Bounce Animation for Scroll Indicator */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Scale In Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

/* Slide In From Left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

/* Slide In From Right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Rotate In Animation */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

.rotate-in {
    animation: rotateIn 0.8s ease-out;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Typewriter Animation */
@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Typewriter Animation for Mobile - uses opacity reveal */
@keyframes typewriterMobile {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }
    1% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

@keyframes blinkCursor {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--color-white);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-section {
        background-attachment: scroll;
    }
}

/* ========================================
   HOMEPAGE SECTIONS
   ======================================== */

/* Specialist Section */
.specialist-section {
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
    padding: 100px 0 !important;
}

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

.specialist-images {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.specialist-image-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.specialist-image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.specialist-image-small {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.specialist-image-small img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.specialist-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.specialist-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--color-text);
}

.specialist-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text);
    margin-top: 5px;
}

/* Featured Tours Section */
.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text);
    max-width: 700px;
    margin: -20px auto 40px;
}

.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #E5E7EB;
}

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

.section-cta {
    text-align: center;
    margin-top: 50px;
}

.no-tours-message,
.no-posts-message {
    text-align: center;
    padding: 60px 20px;
    font-size: 1.125rem;
    color: var(--color-text);
}

/* Featured Tours Section */
.featured-tours-section {
    padding: 100px 0 !important;
}

/* Features Section */
.features-section {
    background: #FFFFFF;
    padding: 100px 0 !important;
}

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

.feature-box {
    text-align: center;
    padding: 40px 30px;
    background: #F8F9FA;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: #FFFFFF;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    color: white;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.feature-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
}

/* Outreach Section */
.outreach-section {
    background: linear-gradient(135deg, #4CAF50 0%, #45A049 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.container-full {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

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

.outreach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 500px;
    padding: 100px 0 !important;
}

.outreach-info {
    padding: 0 60px;
    color: white;
}

.outreach-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.outreach-info h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.outreach-info p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.outreach-images {
    padding: 40px 60px;
}

.outreach-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.outreach-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.outreach-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.outreach-img:hover img {
    transform: scale(1.1);
}

.outreach-stats-bar {
    background: #FFC107;
    padding: 40px 0;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

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

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    font-family: 'Playfair Display', serif;
}

.stat-text {
    display: block;
    font-size: 1rem;
    color: #2C3E50;
    margin-top: 5px;
}

/* Global Family Section */
.global-family-section {
    /* Background color can be controlled via Elementor */
    padding: 100px 0 !important;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.global-family-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    z-index: 0;
}

.global-family-section .container {
    position: relative;
    z-index: 1;
}

.global-family-section .section-title {
    color: #1a1a1a;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
    text-align: left !important;
}

.elementor-widget-trekking_global_family .global-family-section .section-title {
    text-align: left !important;
}

.elementor-widget-trekking_global_family .family-header {
    text-align: left;
}

.global-family-section .section-title::after {
    display: none;
}


/* New custom subtitle class - no global conflicts */
.family-section-subtitle {
    color: #333;
    font-size: 1.25rem;
    margin-top: 25px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    line-height: 1.6;
    text-align: left;
    display: block;
}

.family-header .family-section-subtitle {
    text-align: left;
}

.family-content {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 60px;
    align-items: start;
}

.family-text {
    padding-top: 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.family-header {
    text-align: left;
    margin-bottom: 30px;
}

.family-header * {
    text-align: left;
}

.family-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
    text-align: left;
}

.family-quote {
    background: transparent;
    padding: 30px;
    padding-left: 25px;
    border-left: 3px solid #ff6b35;
    border-radius: 0;
    margin-top: 30px;
    text-align: left;
}

.family-quote p {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
    text-align: left;
}

.family-quote cite {
    font-size: 0.9rem;
    font-style: normal;
    color: #666;
    text-align: left;
}

.family-image-grid {
    position: relative;
    height: 520px;
    width: 100%;
    margin-left: 30px;
}

.family-img {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background: #fff;
    border: 8px solid #fff;
}

.family-img:first-child {
    top: 0;
    left: 0;
    z-index: 2;
    width: 240px;
}

.family-img:first-child img {
    height: 280px;
}

.family-img:last-child {
    top: 120px;
    left: 140px;
    z-index: 1;
    width: 340px;
}

.family-img:last-child img {
    height: 240px;
}

.family-img img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

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

.family-cta {
    text-align: center;
    margin-top: 50px;
}

/* Private Treks Section - Revamped */
.private-treks-section {
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 50%, #F8F9FA 100%);
    padding: 120px 0 !important;
    position: relative;
    overflow: hidden;
}

/* Video Background */
.private-treks-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.private-treks-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.private-treks-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.65;
    z-index: 1;
}

.private-treks-section.has-video-background .container {
    position: relative;
    z-index: 2;
}

.private-treks-section.has-video-background .private-treks-content h2,
.private-treks-section.has-video-background .private-treks-intro,
.private-treks-section.has-video-background .private-cta-text {
    color: #ffffff;
    -webkit-text-fill-color: initial;
    background: none;
}

.private-treks-section.has-video-background .private-treks-content h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.private-treks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
}

.private-treks-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.private-treks-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.private-treks-badge::before {
    content: '✨';
    font-size: 1rem;
}

.private-treks-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.15);
}

.private-treks-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff !important;
    line-height: 1.2;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8) !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
}

.private-treks-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #ffffff !important;
    margin-bottom: 0;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8) !important;
}

.private-treks-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    margin-bottom: 0;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 70px;
}

.private-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 42px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.35s ease;
    position: relative;
    overflow: visible;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    min-height: 360px;
}

.private-feature::before {
    display: none;
}

.private-feature:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.25);
}

.private-feature-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 50%;
    position: relative;
    transition: all 0.35s ease;
    border: 2.5px solid rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.private-feature-icon::before {
    display: none;
}

.private-feature:hover .private-feature-icon {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

.private-feature-icon svg,
.private-feature-icon i {
    font-size: 36px;
    transition: all 0.35s ease;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.private-feature-icon.has-image {
    padding: 0;
    overflow: hidden;
    border: none;
    background: transparent;
}

.private-feature-icon.has-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.35s ease;
}

.private-feature:hover .private-feature-icon.has-image {
    border: none;
    background: transparent;
}

.private-feature:hover .private-feature-icon.has-image img {
    transform: scale(1.1);
}

.private-feature-text h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #ffffff !important;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.private-feature-text p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92) !important;
    margin: 0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75) !important;
    font-weight: 400;
}

/* CTA section removed per user request */

/* Moments Section */
.moments-section {
    background: #FFFFFF;
    padding: 100px 0 !important;
}

.moments-carousel-wrapper {
    position: relative;
    margin-top: 50px;
    padding: 0 60px;
}

.moments-carousel {
    overflow: hidden;
    border-radius: 12px;
}

.moments-track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease;
}

.moment-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.moment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.moment-image {
    position: relative;
    overflow: hidden;
}

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

.moment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.moment-card:hover .moment-overlay {
    opacity: 1;
}

.moment-play-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.moment-play-btn:hover {
    transform: scale(1.1);
}

.moment-info {
    padding: 20px;
}

.moment-info h4 {
    font-size: 1.125rem;
    margin-bottom: 5px;
    color: var(--color-dark);
}

.moment-info p {
    font-size: 0.875rem;
    color: var(--color-text);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.moments-social {
    text-align: center;
    margin-top: 40px;
}

.moments-social p {
    font-size: 1.125rem;
    color: var(--color-text);
}

.social-tag {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.social-tag:hover {
    text-decoration: underline;
}

/* Blog Section */
.blog-section {
    background-image: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 100px 0 80px !important;
    position: relative;
    min-height: auto;
}

/* Blog Section with Background Image and Overlay */
.blog-section.has-overlay {
    position: relative;
}

.blog-section.has-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.blog-section.has-overlay .container {
    position: relative;
    z-index: 2;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.blog-card-image-link {
    display: block;
    overflow: hidden;
}

.blog-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-card-content {
    padding: 30px;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.875rem;
    color: var(--color-text);
}

.blog-date,
.blog-category {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.blog-card-title a {
    color: var(--color-dark);
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--color-primary);
}

.blog-card-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 12px;
}

/* Blog Layout Variations */
.blog-layout-list .blog-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-card-list {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
}

.blog-card-list .blog-card-image-link {
    flex: 0 0 320px;
    height: 240px;
}

.blog-card-list .blog-card-image {
    height: 100%;
}

.blog-card-list .blog-card-content {
    flex: 1;
}

/* Masonry Layout */
.blog-layout-masonry {
    column-count: 3;
    column-gap: 40px;
}

.blog-layout-masonry.blog-columns-2 {
    column-count: 2;
}

.blog-layout-masonry.blog-columns-4 {
    column-count: 4;
}

.blog-layout-masonry .blog-card {
    break-inside: avoid;
    margin-bottom: 40px;
}

/* Column Variations */
.blog-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

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

/* ========================================
   BLOG HERO SECTION
   ======================================== */

.blog-hero-section {
    position: relative;
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.9) 0%, rgba(26, 77, 46, 0.7) 100%);
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.blog-hero-search {
    margin-top: 40px;
}

.blog-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    gap: 8px;
}

.blog-search-wrapper .search-icon {
    position: absolute;
    left: 22px;
    color: #999;
    pointer-events: none;
    width: 18px;
    height: 18px;
    z-index: 1;
}

.blog-search-input {
    flex: 1;
    border: none;
    padding: 14px 20px 14px 48px;
    font-size: 1rem;
    border-radius: 50px;
    outline: none;
    color: #333;
}

.blog-search-input::placeholder {
    color: #999;
    opacity: 0.8;
}

.blog-search-input:focus {
    outline: none;
}

.blog-search-wrapper:focus-within {
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
}

.blog-search-wrapper:focus-within .search-icon {
    color: var(--color-primary);
}

.blog-search-submit {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    white-space: nowrap;
}

.blog-search-submit:hover {
    background: #e55a28;
    transform: scale(1.05);
}

/* ========================================
   BLOG FEATURED POSTS SECTION
   ======================================== */

.blog-featured-section {
    position: relative;
}

.blog-featured-grid {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.blog-featured-large-small {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.blog-featured-large-small .large-card {
    grid-row: 1 / 3;
}

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

.blog-featured-card {
    position: relative;
    min-height: 350px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: all 0.4s ease;
}

.blog-featured-card.large-card {
    min-height: 730px;
}

.blog-featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    transition: all 0.3s ease;
}

.blog-featured-card:hover::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.blog-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.blog-featured-card-link {
    display: block;
    height: 100%;
    text-decoration: none;
}

.blog-featured-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
}

.blog-featured-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.blog-featured-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-featured-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.large-card .blog-featured-card-title {
    font-size: 2.5rem;
}

.blog-featured-card-excerpt {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-featured-card .blog-read-more {
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-featured-card:hover .blog-read-more {
    gap: 12px;
}

/* ========================================
   BLOG CATEGORIES SECTION
   ======================================== */

.blog-categories-section {
    position: relative;
}

.blog-categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.blog-categories-pills {
    justify-content: center;
}

.blog-categories-badges .category-item {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.category-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.blog-categories-grid:not(.blog-categories-pills):not(.blog-categories-badges) {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.blog-categories-grid:not(.blog-categories-pills):not(.blog-categories-badges) .category-item {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
}

.blog-categories-grid:not(.blog-categories-pills):not(.blog-categories-badges) .category-icon svg {
    width: 32px;
    height: 32px;
}

.category-name {
    font-size: 1rem;
}

.category-count {
    opacity: 0.7;
    margin-left: 5px;
}

.category-all {
    background: var(--color-primary);
    color: white;
}

.category-all:hover {
    background: #e55a28;
}

/* ========================================
   BLOG NEWSLETTER SECTION
   ======================================== */

.blog-newsletter-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.blog-newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.9) 0%, rgba(26, 77, 46, 0.8) 100%);
    z-index: 1;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.newsletter-form {
    margin-bottom: 20px;
}

.newsletter-form-wrapper {
    display: flex;
    gap: 15px;
    max-width: 550px;
    margin: 0 auto;
}

.newsletter-email-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.newsletter-submit-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.newsletter-privacy-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Button Variants */
.btn-white {
    background: white;
    color: var(--color-dark);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* ========================================
   RESPONSIVE DESIGN - HOMEPAGE SECTIONS
   ======================================== */

@media (max-width: 1200px) {
    .moments-track {
        gap: 20px;
    }
    
    .moment-card {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 992px) {
    /* Adjust section padding for medium screens */
    .section,
    .specialist-section,
    .featured-tours-section,
    .features-section,
    .global-family-section,
    .private-treks-section,
    .moments-section,
    .blog-section,
    .about-section,
    .featured-treks-section,
    .cta-section {
        padding: 80px 0 !important;
    }
    
    .specialist-content,
    .outreach-content,
    .family-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .specialist-images {
        order: 2;
    }
    
    .family-images {
        order: 2;
    }
    
    .family-text {
        order: 1;
    }
    
    .outreach-content {
        padding: 80px 0 !important;
    }
    
    .outreach-info {
        padding: 0 30px;
    }
    
    .outreach-images {
        padding: 40px 30px;
    }
    
    .private-treks-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
    
    .private-feature {
        padding: 32px 20px 24px;
        min-height: 340px;
    }
    
    .private-treks-content h2 {
        font-size: 2.5rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 30px;
    }
    
    /* Blog Hero Tablet Responsive */
    .blog-hero-section {
        padding: 100px 0 70px;
    }
    
    .blog-hero-title {
        font-size: 3rem;
    }
    
    .blog-hero-subtitle {
        font-size: 1.15rem;
    }
    
    .blog-search-wrapper {
        max-width: 550px;
    }
    
    /* Blog Featured Posts Tablet */
    .blog-featured-large-small {
        grid-template-columns: 1fr;
    }
    
    .blog-featured-large-small .large-card {
        min-height: 500px;
    }
    
    .blog-featured-equal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Reduce section padding on tablets */
    .section,
    .specialist-section,
    .featured-tours-section,
    .features-section,
    .global-family-section,
    .private-treks-section,
    .moments-section,
    .blog-section,
    .about-section,
    .featured-treks-section,
    .cta-section {
        padding: 70px 0 !important;
    }
    
    .specialist-images {
        grid-template-columns: 1fr;
    }
    
    .specialist-image-main img,
    .specialist-image-small img {
        height: 300px;
    }
    
    .specialist-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .outreach-image-grid {
        grid-template-columns: 1fr;
    }
    
    .outreach-content {
        padding: 60px 0 !important;
    }
    
    .outreach-info {
        padding: 0 30px;
    }
    
    .outreach-images {
        padding: 30px 30px;
    }
    
    .outreach-info h2 {
        font-size: 2rem;
    }
    
    .family-image-grid {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-left: 0;
    }
    
    .family-img {
        position: relative;
        max-width: 100% !important;
        width: 100% !important;
        left: 0 !important;
        top: auto !important;
        bottom: auto !important;
    }
    
    .family-img:first-child img,
    .family-img:last-child img {
        height: 240px;
    }
    
    .family-img {
        border: 6px solid #fff;
    }
    
    .family-content {
        gap: 40px;
    }
    
    .family-text {
        padding: 35px 30px;
    }
    
    .moments-carousel-wrapper {
        padding: 0 50px;
    }
    
    .moment-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    /* Blog Hero Responsive */
    .blog-hero-section {
        padding: 80px 0 60px;
    }
    
    .blog-hero-title {
        font-size: 2.25rem;
        margin-bottom: 16px;
        line-height: 1.2;
    }
    
    .blog-hero-subtitle {
        font-size: 1.0625rem;
        margin-bottom: 30px;
        line-height: 1.5;
    }
    
    .blog-hero-search {
        margin-top: 30px;
        padding: 0 15px;
    }
    
    .blog-search-wrapper {
        flex-direction: column;
        padding: 10px;
        border-radius: 16px;
        gap: 10px;
        max-width: 100%;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }
    
    .blog-search-input {
        padding: 14px 18px;
        border-radius: 12px;
        font-size: 1rem;
        width: 100%;
    }
    
    .blog-search-submit {
        width: 100%;
        padding: 14px 28px;
        border-radius: 12px;
        font-size: 1rem;
        justify-content: center;
    }
    
    .blog-search-wrapper .search-icon {
        display: none;
    }
    
    /* Blog Featured Posts Responsive */
    .blog-featured-large-small,
    .blog-featured-equal-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-featured-card.large-card {
        min-height: 400px;
    }
    
    .blog-featured-card-title,
    .large-card .blog-featured-card-title {
        font-size: 1.5rem;
    }
    
    /* Blog Layout Responsive */
    .blog-card-list {
        flex-direction: column;
        gap: 0;
    }
    
    .blog-card-list .blog-card-image-link {
        flex: 1;
        height: 250px;
    }
    
    .blog-layout-masonry {
        column-count: 1;
    }
    
    .blog-columns-2,
    .blog-columns-4 {
        grid-template-columns: 1fr;
    }
    
    /* Blog Categories Responsive */
    .blog-categories-grid:not(.blog-categories-pills):not(.blog-categories-badges) {
        grid-template-columns: 1fr;
    }
    
    /* Blog Newsletter Responsive */
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-description {
        font-size: 1rem;
    }
    
    .newsletter-form-wrapper {
        flex-direction: column;
    }
    
    .newsletter-submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    /* Blog section responsive background */
    .blog-section {
        background-size: 100% auto;
        background-position: bottom center;
        background-attachment: scroll !important;
        padding: 80px 0 60px !important;
    }
}

@media (max-width: 576px) {
    /* Further reduce section padding on mobile */
    .section,
    .specialist-section,
    .featured-tours-section,
    .features-section,
    .global-family-section,
    .private-treks-section,
    .moments-section,
    .blog-section,
    .about-section,
    .featured-treks-section,
    .cta-section {
        padding: 60px 0 !important;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Blog Hero Small Mobile */
    .blog-hero-section {
        padding: 60px 0 50px;
    }
    
    .blog-hero-content {
        padding: 0 5px;
        max-width: 100%;
    }
    
    .blog-hero-title {
        font-size: 1.875rem;
        margin-bottom: 14px;
        line-height: 1.15;
        padding: 0 10px;
    }
    
    .blog-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .blog-hero-search {
        margin-top: 25px;
    }
    
    .blog-search-wrapper {
        padding: 8px;
        gap: 8px;
        margin: 0 10px;
    }
    
    .blog-search-input {
        padding: 12px 16px;
        font-size: 0.9375rem;
    }
    
    .blog-search-submit {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }
    
    /* Blog Featured Posts Small Mobile */
    .blog-featured-card {
        min-height: 320px;
    }
    
    .blog-featured-card.large-card {
        min-height: 350px;
    }
    
    .blog-featured-card-content {
        padding: 20px;
    }
    
    .blog-featured-card-title,
    .large-card .blog-featured-card-title {
        font-size: 1.25rem;
    }
    
    /* Blog Categories Small Mobile */
    .category-item {
        padding: 12px 20px;
        font-size: 0.9375rem;
    }
    
    /* Blog Newsletter Small Mobile */
    .newsletter-title {
        font-size: 1.75rem;
    }
    
    .newsletter-description {
        font-size: 0.9375rem;
    }
    
    .newsletter-email-input,
    .newsletter-submit-btn {
        padding: 12px 18px;
        font-size: 0.9375rem;
    }
    
    .specialist-text h2 {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .private-treks-content h2 {
        font-size: 2rem;
    }
    
    .private-treks-intro {
        font-size: 1.125rem;
    }
    
    .private-treks-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .private-feature {
        padding: 28px 25px 20px;
        gap: 14px;
        min-height: auto;
    }
    
    .private-feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .private-feature-icon svg,
    .private-feature-icon i {
        font-size: 32px;
    }
    
    .private-feature-text h3 {
        font-size: 1rem;
        min-height: auto;
        margin-bottom: 10px;
    }
    
    .private-feature-text p {
        font-size: 0.9rem;
    }
    
    .moments-carousel-wrapper {
        padding: 0 40px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .family-content {
        gap: 40px;
    }
    
    .family-image-grid {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-left: 0;
    }
    
    .family-img {
        position: relative;
        max-width: 100% !important;
        width: 100% !important;
        left: 0 !important;
        top: auto !important;
        bottom: auto !important;
    }
    
    .family-img:first-child img,
    .family-img:last-child img {
        height: 200px;
    }
    
    .family-img {
        border: 5px solid #fff;
    }
    
    .global-family-section .section-title {
        font-size: 2rem;
    }
    
    .family-section-subtitle {
        margin-bottom: 40px;
    }
    
    .family-text {
        padding: 30px 25px;
    }
    
    /* Blog section responsive background for mobile */
    .blog-section {
        background-size: 100% auto;
        background-position: bottom center;
        background-attachment: scroll !important;
        padding: 60px 0 50px !important;
    }
}

/* ========================================
   ELEMENTOR COMPATIBILITY
   ======================================== */

/* Make ALL sections full-width in Elementor */
.elementor-widget-trekking_hero .hero-section,
.elementor-widget-trekking_specialist .specialist-section,
.elementor-widget-featured-tours .featured-tours-section,
.elementor-widget-trekking_features .features-section,
.elementor-widget-trekking_outreach .outreach-section,
.elementor-widget-trekking_global_family .global-family-section,
.elementor-widget-trekking_private_treks .private-treks-section,
.elementor-widget-trekking_moments .moments-section,
.elementor-widget-trekking_blog .blog-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Ensure inner containers maintain proper centered width */
.elementor-widget-trekking_specialist .container,
.elementor-widget-featured-tours .container,
.elementor-widget-trekking_features .container,
.elementor-widget-trekking_global_family .container,
.elementor-widget-trekking_private_treks .container,
.elementor-widget-trekking_moments .container,
.elementor-widget-trekking_blog .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Full-width containers for special sections */
.elementor-widget-trekking_outreach .container-full {
    width: 100%;
    max-width: none;
    padding: 0;
}

/* Remove default Elementor padding from all widgets */
.elementor-widget-trekking_hero > .elementor-widget-container,
.elementor-widget-trekking_specialist > .elementor-widget-container,
.elementor-widget-featured-tours > .elementor-widget-container,
.elementor-widget-trekking_features > .elementor-widget-container,
.elementor-widget-trekking_outreach > .elementor-widget-container,
.elementor-widget-trekking_global_family > .elementor-widget-container,
.elementor-widget-trekking_private_treks > .elementor-widget-container,
.elementor-widget-trekking_moments > .elementor-widget-container,
.elementor-widget-trekking_blog > .elementor-widget-container {
    padding: 0;
}

/* Ensure proper spacing between Elementor sections */
.elementor-widget-trekking_hero,
.elementor-widget-trekking_specialist,
.elementor-widget-featured-tours,
.elementor-widget-trekking_features,
.elementor-widget-trekking_outreach,
.elementor-widget-trekking_global_family,
.elementor-widget-trekking_private_treks,
.elementor-widget-trekking_moments,
.elementor-widget-trekking_blog {
    margin-bottom: 0;
}

/* ========================================
   TOUR SEARCH WIDGET STYLES
   ======================================== */

.tour-search-widget {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}

/* Hero search bar specific styles */
.hero-search-widget {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}

.hero-search-bar {
    background-color: #ffffff;
}

.hero-search-icon {
    background-color: #ff6b35;
}

.hero-search-input {
    color: #333333;
}

.tour-search-container {
    position: relative;
    z-index: 100;
}

/* Ensure hero section and Elementor widgets don't clip the dropdown */
.hero-section,
.hero-content,
.elementor-widget-trekking_hero,
.elementor-widget-trekking_hero > .elementor-widget-container,
.hero-search-widget,
.tour-search-widget,
.tour-search-container {
    overflow: visible !important;
    position: relative;
}

/* Make sure Elementor sections allow overflow */
.elementor-section.elementor-section-height-full,
.elementor-section.elementor-section-height-min-height {
    overflow: visible !important;
}

/* Prevent any Elementor container from clipping the dropdown */
.elementor-widget-trekking_hero .elementor-column,
.elementor-widget-trekking_hero .elementor-inner-section,
.elementor-widget-trekking_hero .elementor-column-wrap,
.elementor-widget-trekking_hero .elementor-widget-wrap {
    overflow: visible !important;
}

/* Ensure parent sections don't clip */
.elementor-section:has(.tour-search-widget),
.elementor-column:has(.tour-search-widget),
.elementor-widget-wrap:has(.tour-search-widget) {
    overflow: visible !important;
}

.tour-search-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #ffffff;
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.tour-search-bar:focus-within {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #ff6b35;
    border-radius: 50%;
    color: #ffffff;
}

.search-icon svg {
    width: 20px;
    height: 20px;
}

.tour-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: inherit;
    color: #333333;
    background: transparent;
}

.tour-search-input::placeholder {
    color: #666666;
    opacity: 0.7;
}

.tour-search-results {
    display: none; /* Hidden by default */
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.12), 0 2px 10px rgba(0, 0, 0, 0.08);
    max-height: 550px;
    overflow-y: auto;
    z-index: 99999 !important;
    animation: slideDown 0.3s ease;
}

.tour-search-results[style*="display: block"] {
    display: block !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.results-container {
    padding: 8px;
}

.tour-search-result-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    margin-bottom: 4px;
    position: relative;
}

.tour-search-result-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(to right, transparent, #e5e5e5 20%, #e5e5e5 80%, transparent);
    opacity: 0.5;
}

.tour-search-result-item:hover {
    background-color: #f8f9fa;
    border-color: #ff6b35;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1);
}

.result-thumbnail {
    flex-shrink: 0;
    width: 120px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s ease;
}

.tour-search-result-item:hover .result-thumbnail {
    transform: scale(1.05);
}

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

.tour-search-result-item:hover .result-thumbnail img {
    transform: scale(1.1);
}

.result-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.tour-search-result-item:hover .result-title {
    color: #ff6b35;
}

.result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: #666666;
    margin-bottom: 10px;
    font-weight: 500;
}

.result-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.result-meta-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #ff6b35;
}

.result-excerpt {
    font-size: 14px;
    color: #777777;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.no-results {
    padding: 50px 30px;
    text-align: center;
    color: #666666;
}

.no-results svg {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: #ddd;
    opacity: 0.7;
}

.no-results p {
    font-size: 16px;
    margin: 0;
    font-weight: 500;
    color: #888;
}

.search-loading {
    padding: 50px 30px;
    text-align: center;
}

.search-loading p {
    margin-top: 15px;
    color: #666;
    font-size: 14px;
}

.loading-spinner {
    width: 45px;
    height: 45px;
    margin: 0 auto;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff6b35;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Search error state */
.search-error {
    padding: 50px 30px;
    text-align: center;
    color: #E74C3C;
}

.search-error svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 15px;
    color: #E74C3C;
}

.search-error p {
    font-size: 15px;
    margin: 0;
    font-weight: 500;
}

/* Scrollbar styling for results */
.tour-search-results::-webkit-scrollbar {
    width: 8px;
}

.tour-search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.tour-search-results::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.tour-search-results::-webkit-scrollbar-thumb:hover {
    background: #ff6b35;
}

/* Responsive styles */
@media (max-width: 768px) {
    .tour-search-bar {
        padding: 12px 20px;
    }

    .search-icon {
        width: 35px;
        height: 35px;
    }

    .search-icon svg {
        width: 18px;
        height: 18px;
    }

    .tour-search-input {
        font-size: 14px;
    }

    .tour-search-result-item {
        gap: 15px;
        padding: 16px;
    }

    .result-thumbnail {
        width: 90px;
        height: 75px;
    }

    .result-title {
        font-size: 16px;
    }

    .result-meta {
        font-size: 13px;
        gap: 12px;
    }

    .result-excerpt {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .tour-search-widget {
        max-width: 100%;
    }

    .tour-search-bar {
        padding: 10px 15px;
        gap: 10px;
        border-radius: 40px;
    }

    .tour-search-results {
        border-radius: 12px;
        max-height: 450px;
    }

    .tour-search-result-item {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }

    .tour-search-result-item:hover {
        transform: translateX(0);
    }

    .result-thumbnail {
        width: 100%;
        height: 140px;
    }

    .result-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .result-meta {
        flex-direction: row;
        gap: 10px;
        font-size: 12px;
    }

    .result-meta-item svg {
        width: 14px;
        height: 14px;
    }

    .result-excerpt {
        font-size: 13px;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .site-header,
    .site-footer,
    .btn,
    .filters-bar,
    .mobile-menu-toggle {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    a {
        text-decoration: underline;
    }
}

/* ========================================
   HERO BUTTON OVERRIDE
   ======================================== */

/* Force hero button to match search bar rounded style */
.hero-button,
.hero-button.btn,
a.hero-button {
    border-radius: 50px !important;
}

/* ========================================
   ABOUT PAGE WIDGETS
   ======================================== */

/* Ensure About page widgets are full-width in Elementor */
.elementor-widget-about_hero .elementor-widget-container,
.elementor-widget-about_story .elementor-widget-container,
.elementor-widget-about_mission .elementor-widget-container,
.elementor-widget-team_members .elementor-widget-container,
.elementor-widget-expert_guides .elementor-widget-container,
.elementor-widget-about_testimonials .elementor-widget-container,
.elementor-widget-about_cta .elementor-widget-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

/* Remove Elementor section constraints for About widgets */
.elementor-widget-about_hero .elementor-widget-container > *,
.elementor-widget-about_story .elementor-widget-container > *,
.elementor-widget-about_mission .elementor-widget-container > *,
.elementor-widget-team_members .elementor-widget-container > *,
.elementor-widget-expert_guides .elementor-widget-container > *,
.elementor-widget-about_testimonials .elementor-widget-container > *,
.elementor-widget-about_cta .elementor-widget-container > * {
    width: 100%;
    max-width: 100%;
}

/* Force Elementor sections containing About widgets to be full-width */
.elementor-widget-about_hero,
.elementor-widget-about_story,
.elementor-widget-about_mission,
.elementor-widget-team_members,
.elementor-widget-expert_guides,
.elementor-widget-about_testimonials,
.elementor-widget-about_cta {
    width: 100% !important;
    max-width: 100% !important;
}

/* Remove all Elementor section/column padding for About widgets */
.elementor-section:has(.elementor-widget-about_hero),
.elementor-section:has(.elementor-widget-about_story),
.elementor-section:has(.elementor-widget-about_mission),
.elementor-section:has(.elementor-widget-team_members),
.elementor-section:has(.elementor-widget-expert_guides),
.elementor-section:has(.elementor-widget-about_testimonials),
.elementor-section:has(.elementor-widget-about_cta) {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Remove Elementor container constraints */
.elementor-section:has(.elementor-widget-about_hero) .elementor-container,
.elementor-section:has(.elementor-widget-about_story) .elementor-container,
.elementor-section:has(.elementor-widget-about_mission) .elementor-container,
.elementor-section:has(.elementor-widget-team_members) .elementor-container,
.elementor-section:has(.elementor-widget-expert_guides) .elementor-container,
.elementor-section:has(.elementor-widget-about_testimonials) .elementor-container,
.elementor-section:has(.elementor-widget-about_cta) .elementor-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Remove Elementor column constraints */
.elementor-section:has(.elementor-widget-about_hero) .elementor-column,
.elementor-section:has(.elementor-widget-about_story) .elementor-column,
.elementor-section:has(.elementor-widget-about_mission) .elementor-column,
.elementor-section:has(.elementor-widget-team_members) .elementor-column,
.elementor-section:has(.elementor-widget-expert_guides) .elementor-column,
.elementor-section:has(.elementor-widget-about_testimonials) .elementor-column,
.elementor-section:has(.elementor-widget-about_cta) .elementor-column {
    width: 100% !important;
    padding: 0 !important;
}

/* Remove column wrap padding */
.elementor-section:has(.elementor-widget-about_hero) .elementor-column-wrap,
.elementor-section:has(.elementor-widget-about_story) .elementor-column-wrap,
.elementor-section:has(.elementor-widget-about_mission) .elementor-column-wrap,
.elementor-section:has(.elementor-widget-team_members) .elementor-column-wrap,
.elementor-section:has(.elementor-widget-about_guides) .elementor-column-wrap,
.elementor-section:has(.elementor-widget-about_testimonials) .elementor-column-wrap,
.elementor-section:has(.elementor-widget-about_cta) .elementor-column-wrap {
    padding: 0 !important;
}

/* Alternative selectors without :has() for better browser support */
.elementor-widget-about_hero .elementor-widget-wrap,
.elementor-widget-about_story .elementor-widget-wrap,
.elementor-widget-about_mission .elementor-widget-wrap,
.elementor-widget-team_members .elementor-widget-wrap,
.elementor-widget-expert_guides .elementor-widget-wrap,
.elementor-widget-about_testimonials .elementor-widget-wrap,
.elementor-widget-about_cta .elementor-widget-wrap {
    padding: 0 !important;
}

/* Force full-width on desktop - override Elementor boxed width */
@media (min-width: 768px) {
    .elementor-section.elementor-section-boxed:has(.elementor-widget-about_hero) > .elementor-container,
    .elementor-section.elementor-section-boxed:has(.elementor-widget-about_story) > .elementor-container,
    .elementor-section.elementor-section-boxed:has(.elementor-widget-about_mission) > .elementor-container,
    .elementor-section.elementor-section-boxed:has(.elementor-widget-team_members) > .elementor-container,
    .elementor-section.elementor-section-boxed:has(.elementor-widget-expert_guides) > .elementor-container,
    .elementor-section.elementor-section-boxed:has(.elementor-widget-about_testimonials) > .elementor-container,
    .elementor-section.elementor-section-boxed:has(.elementor-widget-about_cta) > .elementor-container {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Override ALL Elementor boxed sections on About page */
    body.page .elementor-section.elementor-section-boxed > .elementor-container,
    body.elementor-page .elementor-section-boxed > .elementor-container,
    .elementor-section-boxed > .elementor-container {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Force all Elementor sections to full width */
    .elementor-section.elementor-section-boxed {
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Remove top spacing from Elementor for pages with About Hero */
body.page:has(.elementor-widget-about_hero) .elementor,
body.elementor-page:has(.elementor-widget-about_hero) .elementor {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Ensure first section with hero starts behind header */
.elementor-section:has(.elementor-widget-about_hero):first-child {
    margin-top: -80px !important;
    padding-top: 80px !important;
}

/* Hero widget positioning */
.elementor-widget-about_hero {
    margin-top: 0 !important;
    position: relative;
    z-index: 1;
}

/* Ensure site header stays on top */
.site-header {
    position: fixed;
    z-index: 9999 !important;
}

/* On single tour pages, make header non-fixed (only menu bar should be sticky) */
body.single-tour .site-header,
body.single-trek-page .site-header {
    position: relative !important;
}

/* About Hero Section */
.about-hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding: 0;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 0;
    width: 100%;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.95;
}

/* About Story Section */
.about-story-section {
    padding: 100px 0;
    background-color: #FFFFFF;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
}

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

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

.about-story-content.image-left {
    grid-template-columns: 1fr 1fr;
}

.about-story-content.image-left .about-story-text {
    order: 2;
}

.about-story-content.image-left .about-story-image {
    order: 1;
}

.about-story-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
}

.about-story-text p {
    margin-bottom: 1.25rem;
}

.about-story-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.about-story-image:hover {
    transform: translateY(-8px);
}

.about-story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-story-image:hover img {
    transform: scale(1.05);
}

/* About Mission Section */
.about-mission-section {
    padding: 100px 0;
    background-color: #F8F9FA;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
}

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

.about-mission-content {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text);
}

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

/* Team Members Section */
.team-members-section {
    padding: 100px 0;
    background-color: #FFFFFF;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
}

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

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.team-member-card {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-8px);
}

.team-member-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--color-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.team-member-card:hover .team-member-avatar {
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.team-member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.team-member-role {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.team-member-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text);
}

/* Expert Guides Section */
.expert-guides-section {
    padding: 100px 0;
    background-color: #F8F9FA;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
}

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

.expert-guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.guide-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.guide-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.guide-card-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.guide-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.guide-card:hover .guide-card-image img {
    transform: scale(1.1);
}

.guide-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}

.guide-card-content {
    padding: 25px;
}

.guide-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.guide-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text);
}

/* About Testimonials Section */
.about-testimonials-section {
    padding: 100px 0;
    background-color: #FFFFFF;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
}

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

.about-testimonials-wrapper {
    max-width: 900px;
    margin: 60px auto 0;
}

.about-testimonial-item {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    margin-bottom: 30px;
}

.about-testimonial-item::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: var(--color-primary);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-quote {
    font-size: 1.15rem;
    line-height: 1.9;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
}

/* About CTA Section */
.about-cta-section {
    padding: 100px 0;
    text-align: center;
    background-color: #E8F4F8;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
}

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

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

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.about-cta-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--color-text);
}

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

/* ========================================
   ABOUT PAGE RESPONSIVE STYLES
   ======================================== */

@media (max-width: 992px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-story-content,
    .about-story-content.image-left {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-story-content.image-left .about-story-text,
    .about-story-content.image-left .about-story-image {
        order: unset;
    }

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

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

@media (max-width: 768px) {
    .about-hero-section {
        min-height: 100vh;
        padding: 0;
    }

    .about-hero-content {
        padding: 20px 0;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-story-section,
    .about-mission-section,
    .team-members-section,
    .expert-guides-section,
    .about-testimonials-section,
    .about-cta-section {
        padding: 60px 0;
    }

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

    .team-members-grid {
        gap: 35px;
    }

    .team-member-avatar {
        width: 120px;
        height: 120px;
    }

    .about-cta-title {
        font-size: 2rem;
    }

    .about-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .about-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-testimonial-item {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        min-height: 100vh;
    }

    .about-hero-content {
        padding: 20px 0;
    }

    .about-hero-title {
        font-size: 1.75rem;
    }

    .about-hero-subtitle {
        font-size: 0.95rem;
    }

    .about-story-section,
    .about-mission-section,
    .team-members-section,
    .expert-guides-section,
    .about-testimonials-section,
    .about-cta-section {
        padding: 50px 0;
    }

    /* Minimal horizontal padding on mobile */
    .about-story-section .container,
    .about-mission-section .container,
    .team-members-section .container,
    .expert-guides-section .container,
    .about-testimonials-section .container,
    .about-cta-section .container {
        padding: 0 15px;
    }

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

    .about-mission-content,
    .about-testimonials-wrapper {
        margin-top: 30px;
    }

    .team-members-grid {
        grid-template-columns: 1fr;
    }

    .expert-guides-grid {
        grid-template-columns: 1fr;
    }

    .guide-card-image {
        height: 300px;
    }

    .about-testimonial-item {
        padding: 30px 20px;
    }

    .testimonial-quote {
        font-size: 1rem;
    }
}

/* ========================================
   TREKS PAGE WIDGETS
   ======================================== */

/* Treks Hero Widget */
.treks-hero-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.treks-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 50, 80, 0.7), rgba(0, 30, 50, 0.5));
    z-index: 1;
}

.treks-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 40px 0;
}

.treks-hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.treks-hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
    color: #f0f0f0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

/* Tours Grid Widget - Filters Bar */
.filters-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.filters-label {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.filter-select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.filter-select:hover {
    border-color: #ff6b35;
}

.filter-select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Tours Grid */
.tours-grid-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.tours-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

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

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

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

/* Tour Card */
.tour-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.tour-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.tour-card:hover .tour-card-image {
    transform: scale(1.1);
}

/* Badges */
.tour-badge {
    position: absolute;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.difficulty-badge {
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
}

.difficulty-badge.easy {
    color: #10b981;
    border: 2px solid #10b981;
}

.difficulty-badge.moderate {
    color: #f59e0b;
    border: 2px solid #f59e0b;
}

.difficulty-badge.challenging,
.difficulty-badge.hard,
.difficulty-badge.strenuous {
    color: #ef4444;
    border: 2px solid #ef4444;
}

.duration-badge {
    bottom: 12px;
    left: 12px;
    background: rgba(255, 107, 53, 0.95);
    color: white;
}

/* Card Content */
.tour-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.3;
    min-height: 52px;
}

.tour-card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tour-card-title a:hover {
    color: #ff6b35;
}

/* Price */
.tour-price {
    margin: 12px 0 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-label {
    font-size: 14px;
    color: #666;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #ff6b35;
}

.price-suffix {
    font-size: 14px;
    color: #666;
}

/* Excerpt */
.tour-card-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 14px;
}

/* Button */
.tour-btn {
    width: 100%;
    padding: 14px 24px;
    background: #ff6b35;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.tour-btn:hover {
    background: #e55a28;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.tour-btn svg {
    transition: transform 0.3s ease;
}

.tour-btn:hover svg {
    transform: translateX(4px);
}

/* No Tours Found */
.no-tours-found {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-tours-found h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 12px;
}

.no-tours-found p {
    color: #666;
    font-size: 16px;
}

/* Responsive Styles for Treks Page */
@media (max-width: 1024px) {
    .tours-grid-3,
    .tours-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .tour-card-image-wrapper {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .treks-hero-title {
        font-size: 36px;
    }
    
    .treks-hero-subtitle {
        font-size: 16px;
    }

    .filters-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-select {
        width: 100%;
    }

    .tours-grid-2,
    .tours-grid-3,
    .tours-grid-4 {
        grid-template-columns: 1fr;
    }

    .tour-card-image-wrapper {
        height: 220px;
    }

    .tour-card-title {
        font-size: 18px;
        min-height: auto;
    }

    .price-amount {
        font-size: 24px;
    }
}

/* ========================================
   TREKS PAGE ELEMENTOR OVERRIDES
   ======================================== */

/* AGGRESSIVE overrides for Treks Hero - Full Width */
.elementor-widget-treks_hero,
.elementor-element .elementor-widget-treks_hero,
body .elementor-widget-treks_hero {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

.elementor-widget-treks_hero > .elementor-widget-container,
.elementor-element .elementor-widget-treks_hero > .elementor-widget-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove ALL Elementor section/column padding for Treks Hero */
.elementor-section:has(.elementor-widget-treks_hero),
.elementor-top-section:has(.elementor-widget-treks_hero) {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

.elementor-section:has(.elementor-widget-treks_hero) .elementor-container,
.elementor-section:has(.elementor-widget-treks_hero) > .elementor-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.elementor-section:has(.elementor-widget-treks_hero) .elementor-column,
.elementor-section:has(.elementor-widget-treks_hero) .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.elementor-section:has(.elementor-widget-treks_hero) .elementor-column-wrap,
.elementor-section:has(.elementor-widget-treks_hero) .elementor-widget-wrap,
.elementor-section:has(.elementor-widget-treks_hero) .elementor-element-populated {
    padding: 0 !important;
    margin: 0 !important;
}

/* Override Elementor boxed/full-width settings */
.elementor-section.elementor-section-boxed:has(.elementor-widget-treks_hero),
.elementor-section.elementor-section-full_width:has(.elementor-widget-treks_hero) {
    max-width: 100vw !important;
    width: 100vw !important;
    padding: 0 !important;
}

.elementor-section.elementor-section-boxed:has(.elementor-widget-treks_hero) > .elementor-container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
}

/* Editor Mode Specific Overrides */
.elementor-editor-active .elementor-section:has(.elementor-widget-treks_hero),
.elementor-editor-active .elementor-element:has(.elementor-widget-treks_hero) {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Reduce container padding globally for treks-related pages */
body.page .elementor-section .elementor-container,
body.page-id .elementor-section .elementor-container {
    max-width: 100% !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}

/* Force Elementor sections to full width */
body.page .elementor,
body.page .elementor-section,
body.page .elementor-top-section,
body.page .elementor-section-wrap {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Override Elementor default content width */
.elementor-section.elementor-section-boxed,
.elementor-section.elementor-section-full_width {
    max-width: 100% !important;
    width: 100% !important;
}

/* Force all Elementor containers to use full width */
.elementor .elementor-container {
    max-width: 100% !important;
}

/* Override Elementor page wrapper constraints */
.elementor .elementor-inner,
.elementor-page .elementor-inner {
    max-width: 100% !important;
}

.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100% !important;
}

/* Override theme container max-width for Elementor pages */
/* Only apply to containers NOT inside Elementor widgets (which handle their own) */
body.elementor-page > .container,
body.page > .container,
body.elementor-page .site-content > .container,
body.page .site-content > .container {
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

/* Note: Elementor widgets manage their own inner containers with widget-specific rules */

/* Override site-content wrapper for full width */
body.elementor-page .site-content,
body.page .site-content,
body.elementor-page .site-main,
body.page .site-main,
body.elementor-page main,
body.page main,
body.elementor-page #content,
body.page #content {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
}

/* But NOT for hero sections - keep them full width */
body.page .elementor-section:has(.elementor-widget-treks_hero) .elementor-container,
body.page .elementor-section:has(.elementor-widget-trekking_hero) .elementor-container,
body.page .elementor-section:has(.elementor-widget-gallery_hero) .elementor-container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media (max-width: 768px) {
    body.elementor-page .container,
    body.page .container {
        padding: 0 15px !important;
    }
    
    body.page .elementor-section .elementor-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    /* Keep hero full width on mobile too */
    body.page .elementor-section:has(.elementor-widget-treks_hero) .elementor-container,
    body.page .elementor-section:has(.elementor-widget-gallery_hero) .elementor-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* ========================================
   GALLERY PAGE WIDGETS
   ======================================== */

/* Gallery Hero Widget */
.gallery-hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gallery-hero-background {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.6), rgba(44, 62, 80, 0.4));
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gallery-hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.95;
}

.gallery-hero-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #FF6B35;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.gallery-hero-button:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: #ffffff;
}

/* Gallery Filters Widget */
.gallery-filters-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.gallery-filter-btn {
    padding: 10px 25px;
    background-color: #f5f5f5;
    color: #333333;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.gallery-filter-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.gallery-filter-btn.active {
    background-color: #FF6B35;
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

/* Gallery Grid Widget */
.gallery-grid-section {
    padding: 20px 0;
    max-width: 100%;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
    padding: 0 40px;
}

.gallery-grid[data-columns="2"] {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-grid[data-columns="3"] {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-grid[data-columns="4"] {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

.gallery-item.gallery-item-hidden {
    display: none;
}

.gallery-item.gallery-item-filtered {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.gallery-load-more-container {
    text-align: center;
    margin-top: 40px;
}

.gallery-load-more {
    padding: 15px 40px;
    background-color: #FF6B35;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.gallery-load-more:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.gallery-load-more:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    box-shadow: none;
}

/* Gallery CTA Widget */
.gallery-cta-section {
    padding: 80px 40px;
    background-color: #f9f9f9;
    text-align: center;
}

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

.gallery-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.gallery-cta-subtitle {
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.gallery-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #FF6B35;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.gallery-cta-button:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: #ffffff;
}

/* Full-width override for gallery hero */
.elementor-widget-gallery_hero > .elementor-widget-container,
.elementor-element .elementor-widget-gallery_hero > .elementor-widget-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.elementor-section:has(.elementor-widget-gallery_hero),
.elementor-top-section:has(.elementor-widget-gallery_hero) {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

.elementor-section:has(.elementor-widget-gallery_hero) .elementor-container,
.elementor-section:has(.elementor-widget-gallery_hero) > .elementor-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.elementor-section:has(.elementor-widget-gallery_hero) .elementor-column,
.elementor-section:has(.elementor-widget-gallery_hero) .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.elementor-section:has(.elementor-widget-gallery_hero) .elementor-widget-wrap,
.elementor-section:has(.elementor-widget-gallery_hero) .elementor-element-populated {
    padding: 0 !important;
    margin: 0 !important;
}

/* Override Elementor container padding for other gallery widgets */
.elementor-section:has(.elementor-widget-gallery_filters),
.elementor-section:has(.elementor-widget-gallery_grid),
.elementor-section:has(.elementor-widget-gallery_cta) {
    max-width: 100% !important;
    width: 100% !important;
}

.elementor-section:has(.elementor-widget-gallery_filters) .elementor-container,
.elementor-section:has(.elementor-widget-gallery_grid) .elementor-container,
.elementor-section:has(.elementor-widget-gallery_cta) .elementor-container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.elementor-section:has(.elementor-widget-gallery_filters) .elementor-column > .elementor-element-populated,
.elementor-section:has(.elementor-widget-gallery_grid) .elementor-column > .elementor-element-populated,
.elementor-section:has(.elementor-widget-gallery_cta) .elementor-column > .elementor-element-populated {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.elementor-widget-gallery_filters > .elementor-widget-container,
.elementor-widget-gallery_grid > .elementor-widget-container,
.elementor-widget-gallery_cta > .elementor-widget-container {
    padding: 0 !important;
}

/* Ensure contact widget alignment */
.elementor-widget-contact_info,
.elementor-widget-contact_form {
    margin: 0 !important;
}

.elementor-widget-contact_info .elementor-widget-container,
.elementor-widget-contact_form .elementor-widget-container {
    padding: 0 !important;
    margin: 0 !important;
}

/* Add spacing between columns when side-by-side */
@media (min-width: 768px) {
    /* Direct widget padding approach - 60px each side = 120px total gap */
    .elementor-widget-contact_form {
        padding-right: 60px !important;
    }
    
    .elementor-widget-contact_info {
        padding-left: 60px !important;
    }
}

/* Alternative: Add margin if padding doesn't work */
@media (min-width: 768px) {
    .elementor-widget-contact_form > .elementor-widget-container {
        margin-right: 60px !important;
        padding-right: 0 !important;
    }
    
    .elementor-widget-contact_info > .elementor-widget-container {
        margin-left: 60px !important;
        padding-left: 0 !important;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-grid[data-columns="4"] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-hero-title {
        font-size: 2rem;
    }

    .gallery-hero-subtitle {
        font-size: 1rem;
    }

    .gallery-grid[data-columns="3"],
    .gallery-grid[data-columns="4"] {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-filters {
        justify-content: center;
        padding: 0 20px;
    }

    .gallery-grid {
        padding: 0 20px;
    }

    .gallery-cta-section {
        padding: 60px 20px;
    }

    .gallery-cta-title {
        font-size: 2rem;
    }

    .gallery-cta-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-hero-title {
        font-size: 1.5rem;
    }

    .gallery-hero-subtitle {
        font-size: 0.9rem;
    }

    .gallery-grid[data-columns="2"],
    .gallery-grid[data-columns="3"],
    .gallery-grid[data-columns="4"] {
        grid-template-columns: 1fr;
    }

    .gallery-filters {
        padding: 0 15px;
    }

    .gallery-grid {
        padding: 0 15px;
    }

    .gallery-cta-section {
        padding: 50px 15px;
    }

    .gallery-filter-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .gallery-cta-title {
        font-size: 1.75rem;
    }
}

/* Gallery Lightbox */
.gallery-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-lightbox-overlay.active {
    opacity: 1;
}

.gallery-lightbox-container {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.gallery-lightbox-container img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 8px;
}

.gallery-lightbox-caption {
    color: #ffffff;
    text-align: center;
    padding: 15px;
    font-size: 1rem;
}

.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 3rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    line-height: 1;
}

.gallery-lightbox-close:hover {
    transform: scale(1.1);
}

/* ============================================
   SINGLE BLOG POST REVAMP
   ============================================ */

/* Hero Section */
.single-post-hero {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.single-post-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.single-post-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(6, 182, 212, 0.75) 100%);
    z-index: 2;
}

/* Decorative patterns */
.single-post-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.single-post-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 2;
}

.single-post-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 80px 40px;
    color: #ffffff;
}

.single-post-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* Breadcrumb */
.post-breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.post-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.post-breadcrumb a:hover {
    opacity: 0.8;
}

.post-breadcrumb .separator {
    margin: 0 8px;
    opacity: 0.6;
}

.post-breadcrumb .current {
    opacity: 0.7;
}

/* Hero Categories */
.post-hero-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.post-hero-category {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.post-hero-category:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Title */
.single-post-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 35px 0;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

/* Hero Meta */
.post-hero-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

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

.author-avatar {
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
}

.post-date {
    font-size: 0.875rem;
    opacity: 0.9;
    color: #ffffff;
}

.post-hero-stats {
    display: flex;
    gap: 20px;
    align-items: center;
}

.post-hero-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #ffffff;
    opacity: 0.9;
}

.post-hero-stats svg {
    opacity: 0.8;
}

/* Reading Progress Bar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.reading-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: width 0.1s ease;
}

/* Main Article */
.single-post-article {
    background: #ffffff;
    padding: 100px 0 120px 0;
    position: relative;
}

.single-post-wrapper {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 48px;
}

.single-post-content-area {
    position: relative;
    width: 100%;
    z-index: 1;
}

/* Social Share Sidebar (Sticky) */
.social-share-sidebar {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 60px;
    padding: 24px 0;
    background: transparent;
    border-radius: 0;
    align-items: center;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    max-width: 100%;
}

.share-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    margin-right: 12px;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f3f4f6;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
}

.share-btn:hover {
    background: #e5e7eb;
    transform: none;
}

.share-btn.facebook:hover {
    background: #1877f2;
    color: #ffffff;
    border-color: #1877f2;
}

.share-btn.twitter:hover {
    background: #1da1f2;
    color: #ffffff;
    border-color: #1da1f2;
}

.share-btn.linkedin:hover {
    background: #0077b5;
    color: #ffffff;
    border-color: #0077b5;
}

.share-btn.whatsapp:hover {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
}

/* Entry Content */
.entry-content {
    font-size: 1.1875rem;
    line-height: 2;
    color: #1a1a1a;
    margin-bottom: 80px;
    letter-spacing: -0.003em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.entry-content p {
    margin-bottom: 2.5em;
    max-width: 100%;
    font-size: 1.1875rem;
    color: #292929;
}

.entry-content h2 {
    font-size: 2.125rem;
    font-weight: 700;
    margin-top: 3.5em;
    margin-bottom: 1.25em;
    color: #0a0a0a;
    line-height: 1.3;
    letter-spacing: -0.02em;
    max-width: 100%;
}

.entry-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 3em;
    margin-bottom: 1em;
    color: #1a1a1a;
    letter-spacing: -0.015em;
    max-width: 100%;
}

.entry-content h4 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-top: 2.5em;
    margin-bottom: 1em;
    color: #1a1a1a;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 3em;
    padding-left: 2.5em;
    margin-top: 2em;
}

.entry-content li {
    margin-bottom: 1.5em;
    padding-left: 0.75em;
    line-height: 1.9;
    font-size: 1.125rem;
}

.entry-content ul li {
    position: relative;
}

.entry-content ul li::marker {
    color: var(--color-primary);
    font-size: 1.2em;
}

.entry-content a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid rgba(37, 99, 235, 0.3);
    transition: all 0.2s ease;
}

.entry-content a:hover {
    color: #1d4ed8;
    border-bottom-color: #1d4ed8;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 4em 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.entry-content img:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
}

.entry-content blockquote {
    border-left: 4px solid #2563eb;
    padding: 0.5em 0 0.5em 2em;
    margin: 3.5em 0;
    background: transparent;
    font-style: italic;
    font-size: 1.3125rem;
    color: #4b5563;
    line-height: 1.8;
    max-width: 100%;
}

.entry-content code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Courier New', monospace;
    font-size: 0.9em;
    color: #e11d48;
    border: 1px solid #e5e7eb;
}

.entry-content pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.5em;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2em 0;
    border: 1px solid #334155;
}

.entry-content pre code {
    background: none;
    color: inherit;
    padding: 0;
    border: none;
    font-weight: normal;
}

/* Strong and em tags */
.entry-content strong {
    font-weight: 600;
    color: #0a0a0a;
}

.entry-content em {
    font-style: italic;
}

/* Page Links (Multi-page posts) */
.page-links {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.page-links-title {
    font-weight: 600;
    color: var(--color-dark);
}

.page-links a,
.page-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-links a:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.page-links .current {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

/* Tags Section */
.post-tags-section {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 32px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin: 72px 0;
    flex-wrap: wrap;
    background: transparent;
}

.tags-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #6b7280;
    font-size: 0.875rem;
}

.post-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.post-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #f3f4f6;
    border-radius: 6px;
    color: #4b5563;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    font-weight: 500;
}

.post-tag:hover {
    background: #e5e7eb;
    color: #1f2937;
}

/* Author Bio Box */
.author-bio-box {
    display: flex;
    gap: 24px;
    padding: 48px 0;
    background: transparent;
    border-radius: 0;
    margin: 80px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.author-bio-avatar img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: none;
}

.author-bio-content {
    flex: 1;
}

.author-bio-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #0a0a0a;
    letter-spacing: -0.01em;
}

.author-bio-name a {
    color: #0a0a0a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.author-bio-name a:hover {
    color: #2563eb;
}

.author-bio-description {
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 16px 0;
    font-size: 1rem;
}

.author-bio-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.author-bio-link:hover {
    color: #1d4ed8;
}

/* Post Navigation */
.single-post-navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 88px;
}

.nav-post {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
}

.nav-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.nav-post:hover::before {
    transform: scaleX(1);
}

.nav-post:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
    border-color: var(--color-primary);
}

.nav-post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.nav-post:hover .nav-post-image img {
    transform: scale(1.05);
}

.nav-post-content {
    padding: 28px;
}

.nav-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.nav-title {
    margin: 0;
    font-size: 1.1875rem;
    font-weight: 700;
    line-height: 1.4;
    color: #111827;
    letter-spacing: -0.01em;
}

.nav-title a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-title a:hover {
    color: var(--color-primary);
}

/* Related Posts Section */
.related-posts-section {
    margin-bottom: 80px;
    padding: 64px 0;
    background: transparent;
    border-top: 1px solid #e5e7eb;
}

.related-posts-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 48px;
    color: #0a0a0a;
    text-align: left;
    letter-spacing: -0.015em;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-post-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.related-post-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
}

.related-post-image {
    display: block;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.related-post-card:hover .related-post-image img {
    transform: scale(1.08);
}

.related-post-content {
    padding: 25px;
}

.related-post-category {
    margin-bottom: 12px;
}

.related-post-category a {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.related-post-category a:hover {
    background: var(--color-primary);
    color: #ffffff;
}

.related-post-title {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.related-post-title a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.related-post-meta {
    display: flex;
    gap: 15px;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.related-post-date,
.related-post-read-time {
    display: flex;
    align-items: center;
}

/* Comments Section */
.comments-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid #e5e5e5;
}

/* Sidebar */
.single-post-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .single-post-wrapper {
        max-width: 1000px;
        padding: 0 50px;
    }
}

@media (max-width: 992px) {
    .single-post-hero {
        height: 550px;
    }
    
    .single-post-hero-content {
        padding: 60px 30px;
    }
    
    .single-post-title {
        font-size: 2.5rem;
    }
    
    .single-post-wrapper {
        max-width: 750px;
        padding: 0 40px;
    }
    
    .social-share-sidebar {
        justify-content: center;
        flex-wrap: wrap;
        padding: 24px 32px;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .single-post-navigation {
        grid-template-columns: 1fr;
    }
    
    .post-tags-section {
        padding: 35px 40px;
    }
    
    .author-bio-box {
        padding: 45px 50px;
    }
}

@media (max-width: 768px) {
    .single-post-hero {
        height: 450px;
    }
    
    .single-post-hero-content {
        padding: 40px 25px;
    }
    
    .single-post-title {
        font-size: 2.25rem;
    }
    
    .post-hero-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .entry-content {
        font-size: 1.0625rem;
    }
    
    .entry-content > p:first-of-type::first-letter {
        font-size: 3.5em;
    }
    
    .entry-content h2 {
        font-size: 1.75rem;
    }
    
    .entry-content h3 {
        font-size: 1.375rem;
    }
    
    .author-bio-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 35px 25px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .related-posts-section {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .post-breadcrumb {
        font-size: 0.75rem;
    }
    
    .post-breadcrumb .current {
        display: none;
    }
    
    .post-tags-section {
        padding: 30px 25px;
    }
    
    .share-label {
        display: none;
    }
}

@media (max-width: 480px) {
    .single-post-hero {
        height: 400px;
    }
    
    .single-post-hero-content {
        padding: 30px 20px;
    }
    
    .single-post-title {
        font-size: 2rem;
    }
    
    .single-post-article {
        padding: 40px 0;
    }
    
    .social-share-sidebar {
        gap: 8px;
    }
    
    .share-btn {
        width: 40px;
        height: 40px;
    }
    
    .share-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* =================================================================
   Contact Page Widgets
   ================================================================= */

/* Contact Hero */
.contact-hero-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Contact Info Cards */
.contact-info-section {
    padding: 80px 0 60px 0;
    margin: 0;
}

.contact-info-section .container {
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
    background-color: transparent;
}

.contact-info-header {
    margin-top: 0;
    margin-bottom: 40px;
    padding-top: 0;
    text-align: left;
}

.contact-info-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 12px;
    padding-top: 0;
    color: #2C3E50;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.contact-info-section-subtitle {
    font-size: 1rem;
    color: #5A5A5A;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
}

.contact-info-icon-circle,
.elementor-widget-contact_info .contact-info-icon-circle {
    flex-shrink: 0;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px !important;
    background: linear-gradient(135deg, #FF7A3D 0%, #FF9A3D 100%) !important;
    color: #FFFFFF !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 122, 61, 0.25);
}

.contact-info-item:hover .contact-info-icon-circle,
.elementor-widget-contact_info .contact-info-item:hover .contact-info-icon-circle {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 122, 61, 0.4);
}

.contact-info-icon-circle i,
.contact-info-icon-circle svg {
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
}

.contact-info-details {
    flex: 1;
}

.contact-info-item-title {
    font-size: 0.8rem;
    margin: 6px 0 6px 0;
    font-weight: 700;
    color: #FF7A3D;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.contact-info-item-content {
    font-size: 1.05rem;
    margin-bottom: 0;
    font-weight: 500;
    color: #2C3E50;
    line-height: 1.5;
}

.contact-info-item-content a {
    text-decoration: none;
    color: #2C3E50;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-info-item-content a:hover {
    color: #FF7A3D;
}

.contact-info-item-description {
    font-size: 0.85rem;
    margin: 4px 0 0 0;
    color: #888888;
}

/* Legacy support for old class names */
.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 5px 0;
}

.contact-info-icon,
.elementor-widget-contact_info .contact-info-icon {
    flex-shrink: 0;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px !important;
    background: linear-gradient(135deg, #FF7A3D 0%, #FF9A3D 100%) !important;
    color: #FFFFFF !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 122, 61, 0.25);
}

.contact-info-card:hover .contact-info-icon,
.elementor-widget-contact_info .contact-info-card:hover .contact-info-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 122, 61, 0.4);
}

.contact-info-icon i,
.contact-info-icon svg {
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
}

.contact-info-title {
    font-size: 1.1rem;
    margin: 0 0 4px 0;
    font-weight: 700;
    color: #2C3E50;
}

.contact-info-content {
    font-size: 0.95rem;
    margin-bottom: 0;
    font-weight: 400;
    color: #5A5A5A;
    line-height: 1.4;
}

.contact-info-content a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #FF7A3D;
}

.contact-info-description {
    font-size: 0.85rem;
    margin: 4px 0 0 0;
    color: #888888;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0 60px 0;
    background: #FFFFFF;
}

.contact-form-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.contact-form-title {
    font-size: 2rem;
    text-align: left;
    margin-top: 0;
    margin-bottom: 15px;
    padding-top: 0;
    font-weight: 700;
    line-height: 1.2;
}

.contact-form-subtitle {
    text-align: left;
    font-size: 1rem;
    margin-bottom: 35px;
    color: #666666;
    line-height: 1.6;
}

.contact-form {
    background: #FFFFFF;
}

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

.form-row.has-two-columns {
    grid-template-columns: repeat(2, 1fr);
}

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

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #2C3E50;
}

.required {
    color: #E53935;
}

/* Checkbox styling */
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.form-checkbox-group label {
    font-size: 0.875rem;
    color: #666666;
    line-height: 1.6;
    cursor: pointer;
    font-weight: 400;
}

.form-checkbox-group input[type="checkbox"] {
    margin-top: 3px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #FAFAFA;
}

.form-control:focus {
    outline: none;
    border-color: #2196F3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
    background-color: #FFFFFF;
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form-submit {
    width: auto;
    padding: 14px 40px;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: #2196F3;
    color: #FFFFFF;
}

.contact-form-submit:hover {
    background-color: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.contact-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-response {
    margin: 20px 0;
}

.alert {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.alert-success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.alert-error {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

/* Contact Map */
.contact-map-section {
    padding: 70px 0;
}

.contact-map-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.contact-map-wrapper iframe {
    width: 100%;
    border: none;
    display: block;
}

.contact-map-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.contact-map-image:hover {
    opacity: 0.9;
}

.map-placeholder {
    background: #F5F5F5;
    padding: 100px 20px;
    text-align: center;
    border-radius: 8px;
    color: #999;
}

/* Contact Social */
.contact-social-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

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

.contact-social-title {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2C3E50;
    letter-spacing: -0.5px;
}

.contact-social-description {
    margin-bottom: 35px;
    font-size: 1rem;
    color: #5A5A5A;
    line-height: 1.6;
}

.contact-social-section .social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.contact-social-section .social-link,
.elementor-widget-contact_social .social-link {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-size: 20px !important;
    background: linear-gradient(135deg, #2C3E50 0%, #3A4F63 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
}

.contact-social-section .social-link:hover,
.elementor-widget-contact_social .social-link:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, #FF7A3D 0%, #FF9A3D 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 0 8px 24px rgba(255, 122, 61, 0.4);
}

.contact-social-section .social-link i,
.contact-social-section .social-link svg {
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
}

/* Responsive Design */
@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-group:not(.form-group-half) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-info-section {
        padding: 50px 0 40px 0;
    }
    
    .contact-form-section {
        padding: 50px 0 40px 0;
    }
    
    /* Remove side padding on mobile when stacked */
    .elementor-widget-contact_form,
    .elementor-widget-contact_info {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .elementor-widget-contact_form > .elementor-widget-container,
    .elementor-widget-contact_info > .elementor-widget-container {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .contact-info-list,
    .contact-info-grid {
        gap: 20px;
    }
    
    .contact-info-item,
    .contact-info-card {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .contact-info-icon-circle,
    .contact-info-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
    }
    
    .contact-form-submit {
        font-size: 1rem;
        padding: 14px 28px;
    }
    
    .contact-social-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-section {
        padding: 60px 0;
        min-height: 300px;
    }
    
    .contact-hero-title {
        font-size: 1.75rem;
    }
    
    .contact-info-section {
        padding: 40px 0 35px 0;
    }
    
    .contact-form-section {
        padding: 40px 0 35px 0;
    }
    
    .contact-map-section {
        padding: 45px 0;
    }
    
    .contact-social-section {
        padding: 45px 0;
    }
}

/* ========================================
   TREK WIDGETS - INCLUDES/EXCLUDES
   ======================================== */

.trek-includes-excludes {
    padding: 60px 0;
}

.trek-includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trek-includes-column,
.trek-excludes-column {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trek-includes-column:hover,
.trek-excludes-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.trek-includes-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.2;
}

.includes-list,
.excludes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.includes-list .list-item,
.excludes-list .list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.includes-list .list-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: #27ae60;
}

.excludes-list .list-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: #e74c3c;
}

.includes-list .list-item span,
.excludes-list .list-item span {
    flex: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .trek-includes-excludes {
        padding: 40px 0;
    }
    
    .trek-includes-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 15px;
    }
    
    .trek-includes-column,
    .trek-excludes-column {
        padding: 28px 20px;
        border-radius: 10px;
    }
    
    .trek-includes-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .includes-list,
    .excludes-list {
        gap: 12px;
    }
    
    .includes-list .list-item,
    .excludes-list .list-item {
        font-size: 0.95rem;
        gap: 10px;
    }
    
    .includes-list .list-icon,
    .excludes-list .list-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .trek-includes-excludes {
        padding: 30px 0;
    }
    
    .trek-includes-grid {
        gap: 20px;
        padding: 0 12px;
    }
    
    .trek-includes-column,
    .trek-excludes-column {
        padding: 24px 16px;
        border-radius: 8px;
    }
    
    .trek-includes-title {
        font-size: 1.35rem;
        margin-bottom: 18px;
    }
    
    .includes-list .list-item,
    .excludes-list .list-item {
        font-size: 0.9rem;
    }
}

/* ========================================
   TREK WIDGETS - ITINERARY
   ======================================== */

.trek-itinerary {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.trek-itinerary-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.2;
    padding: 0 20px;
}

.itinerary-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px;
}

.itinerary-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.itinerary-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.itinerary-item.active {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.itinerary-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    user-select: none;
    background: #ffffff;
    transition: background-color 0.3s ease;
}

.itinerary-item-header:hover {
    background: #f8f9fa;
}

.itinerary-item.active .itinerary-item-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.itinerary-item-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.itinerary-day {
    font-size: 0.85rem;
    font-weight: 700;
    color: #FF7A3D;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.itinerary-day-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.itinerary-toggle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1a1a1a;
}

.itinerary-toggle:hover {
    background: #e9ecef;
}

.itinerary-item.active .itinerary-toggle {
    transform: rotate(180deg);
}

.itinerary-toggle svg {
    transition: color 0.3s ease;
}

.itinerary-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.itinerary-item.active .itinerary-item-content {
    border-top: 1px solid #e9ecef;
}

.itinerary-details {
    padding: 20px 28px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: #f8f9fa;
}

.itinerary-detail {
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}

.itinerary-detail strong {
    color: #1a1a1a;
    font-weight: 600;
}

.itinerary-description {
    padding: 20px 28px 28px;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.itinerary-description p {
    margin: 0 0 12px 0;
}

.itinerary-description p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .trek-itinerary {
        padding: 40px 0;
    }
    
    .trek-itinerary-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .itinerary-accordion {
        gap: 12px;
        padding: 0 15px;
    }
    
    .itinerary-item {
        border-radius: 10px;
    }
    
    .itinerary-item-header {
        padding: 18px 20px;
        gap: 12px;
    }
    
    .itinerary-day {
        font-size: 0.75rem;
    }
    
    .itinerary-day-title {
        font-size: 1.05rem;
    }
    
    .itinerary-toggle {
        width: 32px;
        height: 32px;
    }
    
    .itinerary-toggle svg {
        width: 18px;
        height: 18px;
    }
    
    .itinerary-details {
        padding: 16px 20px 8px;
        gap: 14px;
    }
    
    .itinerary-detail {
        font-size: 0.85rem;
    }
    
    .itinerary-description {
        padding: 16px 20px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .trek-itinerary {
        padding: 30px 0;
    }
    
    .trek-itinerary-title {
        font-size: 1.5rem;
        margin-bottom: 24px;
        padding: 0 12px;
    }
    
    .itinerary-accordion {
        gap: 10px;
        padding: 0 12px;
    }
    
    .itinerary-item {
        border-radius: 8px;
    }
    
    .itinerary-item-header {
        padding: 16px 16px;
    }
    
    .itinerary-day {
        font-size: 0.7rem;
    }
    
    .itinerary-day-title {
        font-size: 1rem;
    }
    
    .itinerary-toggle {
        width: 30px;
        height: 30px;
    }
    
    .itinerary-details {
        padding: 14px 16px 6px;
        flex-direction: column;
        gap: 8px;
    }
    
    .itinerary-description {
        padding: 14px 16px 18px;
        font-size: 0.9rem;
    }
}

/* ========================================
   TREK WIDGETS - FAQ
   ======================================== */

.trek-faq {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.trek-faq-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.2;
    padding: 0 20px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px;
}

.faq-item {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #FF7A3D;
    box-shadow: 0 4px 16px rgba(255, 122, 61, 0.15);
}

.faq-item.active {
    border-color: #FF7A3D;
    box-shadow: 0 6px 20px rgba(255, 122, 61, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #f8f9fa;
    color: #FF7A3D;
}

.faq-item.active .faq-question {
    background: #fff5f0;
    color: #FF7A3D;
}

.faq-question-text {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    color: #555;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #FF7A3D;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 28px;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.faq-item.active .faq-answer {
    padding: 0 28px 24px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0 0 12px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .trek-faq {
        padding: 40px 0;
    }
    
    .trek-faq-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .faq-accordion {
        gap: 12px;
        padding: 0 15px;
    }
    
    .faq-item {
        border-radius: 10px;
        border-width: 1.5px;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 1.05rem;
    }
    
    .faq-question-text {
        padding-right: 15px;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .trek-faq {
        padding: 30px 0;
    }
    
    .trek-faq-title {
        font-size: 1.5rem;
        margin-bottom: 24px;
        padding: 0 12px;
    }
    
    .faq-accordion {
        gap: 10px;
        padding: 0 12px;
    }
    
    .faq-item {
        border-radius: 8px;
    }
    
    .faq-question {
        padding: 16px 16px;
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .faq-question-text {
        padding-right: 12px;
    }
    
    .faq-icon {
        width: 18px;
        height: 18px;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 16px 18px;
    }
}

/* ========================================
   TREK WIDGETS - HIGHLIGHTS
   ======================================== */

.trek-highlights {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.trek-highlights-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.2;
    padding: 0 20px;
}

.highlights-list {
    list-style: none;
    padding: 0 20px;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3498db;
    font-size: 16px;
    margin-top: 2px;
}

.highlight-icon i,
.highlight-icon svg {
    width: 100%;
    height: 100%;
}

.highlight-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .trek-highlights {
        padding: 40px 0;
    }
    
    .trek-highlights-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .highlights-list {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 15px;
    }
    
    .highlight-item {
        padding: 16px;
        border-radius: 8px;
    }
    
    .highlight-icon {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
    
    .highlight-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .trek-highlights {
        padding: 30px 0;
    }
    
    .trek-highlights-title {
        font-size: 1.5rem;
        margin-bottom: 24px;
        padding: 0 12px;
    }
    
    .highlights-list {
        gap: 12px;
        padding: 0 12px;
    }
    
    .highlight-item {
        padding: 14px;
        gap: 12px;
    }
    
    .highlight-icon {
        width: 18px;
        height: 18px;
        font-size: 12px;
    }
    
    .highlight-text {
        font-size: 0.9rem;
    }
}

/* ========================================
   TREK WIDGETS - OVERVIEW
   ======================================== */

.trek-overview {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.trek-overview-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.2;
    padding: 0 20px;
}

.trek-overview-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    padding: 0 20px;
}

.trek-overview-content p {
    margin-bottom: 18px;
}

.trek-overview-content p:last-child {
    margin-bottom: 0;
}

.trek-overview-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 15px;
}

.trek-overview-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 24px;
    margin-bottom: 12px;
}

.trek-overview-content ul,
.trek-overview-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.trek-overview-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .trek-overview {
        padding: 40px 0;
    }
    
    .trek-overview-title {
        font-size: 1.75rem;
        margin-bottom: 24px;
        padding: 0 15px;
    }
    
    .trek-overview-content {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .trek-overview-content h3 {
        font-size: 1.35rem;
        margin-top: 24px;
        margin-bottom: 12px;
    }
    
    .trek-overview-content h4 {
        font-size: 1.15rem;
        margin-top: 18px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .trek-overview {
        padding: 30px 0;
    }
    
    .trek-overview-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
        padding: 0 12px;
    }
    
    .trek-overview-content {
        font-size: 0.95rem;
        padding: 0 12px;
    }
    
    .trek-overview-content h3 {
        font-size: 1.25rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    
    .trek-overview-content h4 {
        font-size: 1.1rem;
        margin-top: 16px;
        margin-bottom: 8px;
    }
    
    .trek-overview-content ul,
    .trek-overview-content ol {
        padding-left: 24px;
    }
}

/* ========================================
   TREK WIDGETS - BRIEF DATA
   ======================================== */

.trek-brief-data {
    margin-bottom: 60px;
}

.trek-brief-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    overflow: hidden;
}

.trek-brief-header .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.trek-brief-header .header-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trek-brief-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.2;
}

.trek-brief-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.reviews-badge,
.recommendation-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #555;
}

.rating-stars {
    display: flex;
    gap: 3px;
    color: #f39c12;
    font-size: 0.75rem;
}

.rating-stars i {
    font-size: inherit;
}

.reviews-badge a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.reviews-badge a:hover {
    color: #FF7A3D;
    text-decoration: underline;
}

.recommendation-badge i {
    color: #e74c3c;
    font-size: 1rem;
}

.trek-brief-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    max-width: 900px;
    margin: 0;
}

.trek-data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background-color: #e8f4f8;
    border-radius: 12px;
    margin-top: -30px;
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.data-item {
    padding: 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.trek-data-grid.columns-3 .data-item:nth-child(3n) {
    border-right: none;
}

.trek-data-grid.columns-2 .data-item:nth-child(2n) {
    border-right: none;
}

.data-item:last-child,
.data-item:nth-last-child(-n+3) {
    border-bottom: none;
}

.trek-data-grid.columns-2 .data-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.data-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.data-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .trek-brief-title {
        font-size: 2.5rem;
    }
    
    .trek-data-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
        gap: 0;
    }
    
    .trek-data-grid.columns-3 .data-item:nth-child(3n) {
        border-right: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .trek-data-grid .data-item:nth-child(2n) {
        border-right: none;
    }
    
    .trek-data-grid .data-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .trek-brief-data {
        margin-bottom: 40px;
    }
    
    .trek-brief-header {
        padding: 60px 0;
    }
    
    .trek-brief-header .header-content {
        padding: 0 15px;
    }
    
    .trek-brief-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .trek-brief-meta {
        gap: 16px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .trek-brief-description {
        font-size: 1rem;
    }
    
    .trek-data-grid {
        grid-template-columns: 1fr;
        padding: 24px 15px;
        margin: -20px 15px 0;
        border-radius: 10px;
    }
    
    .trek-data-grid.columns-3 .data-item:nth-child(3n),
    .trek-data-grid.columns-2 .data-item:nth-child(2n),
    .data-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .data-item:last-child {
        border-bottom: none;
    }
    
    .data-item {
        padding: 16px 0;
    }
}

@media (max-width: 480px) {
    .trek-brief-header {
        padding: 50px 0;
    }
    
    .trek-brief-header .header-content {
        padding: 0 12px;
    }
    
    .trek-brief-title {
        font-size: 1.75rem;
        margin-bottom: 14px;
    }
    
    .trek-brief-meta {
        gap: 12px;
    }
    
    .reviews-badge,
    .recommendation-badge {
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .trek-brief-description {
        font-size: 0.95rem;
    }
    
    .trek-data-grid {
        padding: 20px 12px;
        margin: -15px 12px 0;
        border-radius: 8px;
    }
    
    .data-item {
        padding: 14px 0;
    }
    
    .data-label {
        font-size: 0.75rem;
    }
    
    .data-value {
        font-size: 1rem;
    }
}

/* ========================================
   TREK WIDGETS - MAP
   ======================================== */

.trek-map-section {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.trek-map-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.2;
    padding: 0 20px;
}

.trek-map-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trek-map-container {
    position: relative;
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
}

.trek-map-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.trek-map-container:hover .trek-map-image {
    transform: scale(1.02);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .trek-map-section {
        padding: 40px 0;
    }
    
    .trek-map-title {
        font-size: 1.75rem;
        margin-bottom: 16px;
        padding: 0 15px;
    }
    
    .trek-map-description {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .trek-map-container {
        border-radius: 10px;
        padding: 0 15px;
    }
    
    .trek-map-image {
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .trek-map-section {
        padding: 30px 0;
    }
    
    .trek-map-title {
        font-size: 1.5rem;
        margin-bottom: 14px;
        padding: 0 12px;
    }
    
    .trek-map-description {
        font-size: 0.95rem;
        margin-bottom: 24px;
        padding: 0 12px;
    }
    
    .trek-map-container {
        border-radius: 8px;
        padding: 0 12px;
    }
}

/* ========================================
   TREK WIDGETS - COST DETAILS (Strong Override)
   ======================================== */

/* Force proper container styling */
.elementor-widget-single_trek_cost .elementor-widget-container {
    padding: 0 !important;
}

.trek-cost-section {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.trek-cost-title,
.trek-cost-section h2 {
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 30px;
    color: #1a1a1a !important;
    text-align: center;
    line-height: 1.2;
    padding: 0;
}

.trek-cost-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555 !important;
    margin-bottom: 40px;
    padding: 0;
}

.trek-cost-content p {
    margin-bottom: 16px;
    color: #555 !important;
}

.trek-cost-content p:last-child {
    margin-bottom: 0;
}

.trek-pricing-table {
    padding: 0;
    width: 100%;
}

/* Strong table styling with higher specificity */
.trek-pricing-table table,
.trek-pricing-table .pricing-table,
.trek-cost-section table,
table.pricing-table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid #f0f0f0 !important;
    margin: 0 !important;
}

.trek-pricing-table thead,
.trek-pricing-table .pricing-table thead,
.trek-cost-section table thead,
table.pricing-table thead {
    background: #1a1a1a !important;
}

.trek-pricing-table thead th,
.trek-pricing-table .pricing-table thead th,
.trek-cost-section table thead th,
table.pricing-table thead th {
    padding: 18px 24px !important;
    text-align: left !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #ffffff !important;
    border: none !important;
    background: #1a1a1a !important;
}

.trek-pricing-table tbody tr,
.trek-pricing-table .pricing-table tbody tr,
.trek-cost-section table tbody tr,
table.pricing-table tbody tr {
    border-bottom: 1px solid #f0f0f0 !important;
    transition: all 0.3s ease;
    background: #ffffff;
}

.trek-pricing-table tbody tr:last-child,
.trek-pricing-table .pricing-table tbody tr:last-child,
.trek-cost-section table tbody tr:last-child,
table.pricing-table tbody tr:last-child {
    border-bottom: none !important;
}

.trek-pricing-table tbody tr:hover,
.trek-pricing-table .pricing-table tbody tr:hover,
.trek-cost-section table tbody tr:hover,
table.pricing-table tbody tr:hover {
    background-color: #fff5ed !important;
    transform: translateX(4px);
    box-shadow: -4px 0 0 #e67e22;
}

.trek-pricing-table tbody td,
.trek-pricing-table .pricing-table tbody td,
.trek-cost-section table tbody td,
table.pricing-table tbody td {
    padding: 20px 24px !important;
    font-size: 1rem !important;
    color: #555 !important;
    border: none !important;
    background: transparent !important;
}

.trek-pricing-table tbody td:first-child,
.trek-pricing-table .pricing-table tbody td:first-child,
.trek-cost-section table tbody td:first-child,
table.pricing-table tbody td:first-child {
    color: #1a1a1a !important;
    font-weight: 500 !important;
}

.trek-pricing-table tbody td:last-child,
.trek-pricing-table .pricing-table tbody td:last-child,
.trek-cost-section table tbody td:last-child,
table.pricing-table tbody td:last-child {
    text-align: right !important;
}

.trek-pricing-table tbody td strong,
.trek-pricing-table .pricing-table tbody td strong,
.trek-cost-section table tbody td strong,
table.pricing-table tbody td strong {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #e67e22 !important;
}

/* Mobile Responsive - Strong Override */
@media (max-width: 768px) {
    /* Add mobile padding to prevent edge-to-edge bleeding */
    .elementor-widget-single_trek_cost .elementor-widget-container {
        padding: 0 20px !important;
    }
    
    .trek-cost-section {
        padding: 40px 0;
    }
    
    .trek-cost-title,
    .trek-cost-section h2 {
        font-size: 1.75rem !important;
        margin-bottom: 24px;
        padding: 0 !important;
    }
    
    .trek-cost-content {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 !important;
    }
    
    .trek-pricing-table {
        padding: 0 !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .trek-pricing-table table,
    .trek-pricing-table .pricing-table,
    .trek-cost-section table,
    table.pricing-table {
        border-radius: 10px !important;
        min-width: 100% !important;
        width: 100% !important;
    }
    
    .trek-pricing-table thead,
    .trek-pricing-table .pricing-table thead,
    .trek-cost-section table thead,
    table.pricing-table thead {
        background: #1a1a1a !important;
    }
    
    .trek-pricing-table thead th,
    .trek-pricing-table .pricing-table thead th,
    .trek-cost-section table thead th,
    table.pricing-table thead th {
        padding: 16px 18px !important;
        font-size: 0.875rem !important;
        background: #1a1a1a !important;
    }
    
    .trek-pricing-table tbody td,
    .trek-pricing-table .pricing-table tbody td,
    .trek-cost-section table tbody td,
    table.pricing-table tbody td {
        padding: 16px 18px !important;
        font-size: 0.95rem !important;
    }
    
    .trek-pricing-table tbody td:first-child,
    .trek-pricing-table .pricing-table tbody td:first-child,
    .trek-cost-section table tbody td:first-child,
    table.pricing-table tbody td:first-child {
        font-weight: 500 !important;
    }
    
    .trek-pricing-table tbody td strong,
    .trek-pricing-table .pricing-table tbody td strong,
    .trek-cost-section table tbody td strong,
    table.pricing-table tbody td strong {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    /* Reduce padding slightly on very small screens */
    .elementor-widget-single_trek_cost .elementor-widget-container {
        padding: 0 15px !important;
    }
    
    .trek-cost-section {
        padding: 30px 0;
    }
    
    .trek-cost-title,
    .trek-cost-section h2 {
        font-size: 1.5rem !important;
        margin-bottom: 20px;
        padding: 0 !important;
    }
    
    .trek-cost-content {
        font-size: 0.95rem;
        margin-bottom: 24px;
        padding: 0 !important;
    }
    
    .trek-pricing-table {
        padding: 0 !important;
    }
    
    .trek-pricing-table table,
    .trek-pricing-table .pricing-table,
    .trek-cost-section table,
    table.pricing-table {
        border-radius: 8px !important;
        min-width: 100% !important;
        width: 100% !important;
    }
    
    .trek-pricing-table thead,
    .trek-pricing-table .pricing-table thead,
    .trek-cost-section table thead,
    table.pricing-table thead {
        background: #1a1a1a !important;
    }
    
    .trek-pricing-table thead th,
    .trek-pricing-table .pricing-table thead th,
    .trek-cost-section table thead th,
    table.pricing-table thead th {
        padding: 14px !important;
        font-size: 0.8rem !important;
        background: #1a1a1a !important;
    }
    
    .trek-pricing-table tbody td,
    .trek-pricing-table .pricing-table tbody td,
    .trek-cost-section table tbody td,
    table.pricing-table tbody td {
        padding: 14px !important;
        font-size: 0.9rem !important;
    }
    
    .trek-pricing-table tbody td:first-child,
    .trek-pricing-table .pricing-table tbody td:first-child,
    .trek-cost-section table tbody td:first-child,
    table.pricing-table tbody td:first-child {
        font-weight: 500 !important;
    }
    
    .trek-pricing-table tbody td strong,
    .trek-pricing-table .pricing-table tbody td strong,
    .trek-cost-section table tbody td strong,
    table.pricing-table tbody td strong {
        font-size: 1.05rem !important;
    }
}

/* ========================================
   TREK WIDGETS - HERO GALLERY (Complete Control)
   ======================================== */

/* Force proper gallery layout - override any Elementor conflicts */
.elementor-widget-single_trek_hero_gallery .elementor-widget-container,
.elementor-widget-single_trek_hero_gallery .elementor-widget-container > div {
    padding: 0 !important;
    margin: 0 !important;
}

/* Main gallery container - Desktop Layout */
.trek-hero-gallery,
div[class*="trek-hero-gallery"] {
    display: grid !important;
    grid-template-columns: 58% 1fr !important;
    gap: 12px !important;
    height: 460px !important;
    width: 100% !important;
    margin-bottom: 40px !important;
    max-width: 100% !important;
    overflow: visible !important;
}

/* Main image (left side) */
.trek-hero-gallery .hero-gallery-main,
div[class*="trek-hero-gallery"] .hero-gallery-main {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    border-radius: 10px !important;
}

.trek-hero-gallery .hero-gallery-main a,
div[class*="trek-hero-gallery"] .hero-gallery-main a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.trek-hero-gallery .hero-gallery-main img,
div[class*="trek-hero-gallery"] .hero-gallery-main img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.3s ease !important;
}

.trek-hero-gallery .hero-gallery-main:hover img,
div[class*="trek-hero-gallery"] .hero-gallery-main:hover img {
    transform: scale(1.05) !important;
}

/* Thumbnails container (right side) */
.trek-hero-gallery .hero-gallery-thumbnails,
div[class*="trek-hero-gallery"] .hero-gallery-thumbnails {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 12px !important;
    height: 100% !important;
}

/* Individual thumbnails */
.trek-hero-gallery .hero-gallery-thumb,
div[class*="trek-hero-gallery"] .hero-gallery-thumb {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 10px !important;
    height: 100% !important;
    min-height: 0 !important;
    min-width: 0 !important;
}

.trek-hero-gallery .hero-gallery-thumb a,
div[class*="trek-hero-gallery"] .hero-gallery-thumb a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.trek-hero-gallery .hero-gallery-thumb img,
div[class*="trek-hero-gallery"] .hero-gallery-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.3s ease !important;
}

.trek-hero-gallery .hero-gallery-thumb:hover img,
div[class*="trek-hero-gallery"] .hero-gallery-thumb:hover img {
    transform: scale(1.1) !important;
}

/* Overlay for "See all photos" thumbnail */
.trek-hero-gallery .hero-gallery-thumb.has-overlay::before,
div[class*="trek-hero-gallery"] .hero-gallery-thumb.has-overlay::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 1 !important;
    border-radius: 10px !important;
    transition: background 0.3s ease !important;
}

.trek-hero-gallery .hero-gallery-thumb.has-overlay:hover::before,
div[class*="trek-hero-gallery"] .hero-gallery-thumb.has-overlay:hover::before {
    background: rgba(0, 0, 0, 0.7) !important;
}

/* "See all photos" button */
.trek-hero-gallery .see-all-photos-btn,
div[class*="trek-hero-gallery"] .see-all-photos-btn {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    background: rgba(0, 0, 0, 0.85) !important;
    color: white !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    z-index: 2 !important;
    white-space: nowrap !important;
    backdrop-filter: blur(8px) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.trek-hero-gallery .hero-gallery-thumb.has-overlay:hover .see-all-photos-btn,
div[class*="trek-hero-gallery"] .hero-gallery-thumb.has-overlay:hover .see-all-photos-btn {
    background: rgba(255, 122, 61, 0.95) !important;
    transform: translate(-50%, -50%) scale(1.05) !important;
}

.trek-hero-gallery .see-all-photos-btn svg,
div[class*="trek-hero-gallery"] .see-all-photos-btn svg {
    width: 16px !important;
    height: 16px !important;
}

/* Hidden gallery items for lightbox */
.trek-hero-gallery .hidden-gallery-items,
div[class*="trek-hero-gallery"] .hidden-gallery-items {
    display: none !important;
}

/* Tablet */
@media (max-width: 1024px) {
    .trek-hero-gallery,
    div[class*="trek-hero-gallery"] {
        height: 420px !important;
    }
}

/* Mobile - Single Column Layout */
@media (max-width: 768px) {
    /* Add mobile padding to prevent edge-to-edge bleeding */
    .elementor-widget-single_trek_hero_gallery .elementor-widget-container {
        padding: 0 20px !important;
    }
    
    .trek-hero-gallery,
    div[class*="trek-hero-gallery"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto !important;
        gap: 10px !important;
        height: auto !important;
        margin-bottom: 30px !important;
    }
    
    .trek-hero-gallery .hero-gallery-main,
    div[class*="trek-hero-gallery"] .hero-gallery-main {
        width: 100% !important;
        height: 280px !important;
        border-radius: 8px !important;
    }
    
    .trek-hero-gallery .hero-gallery-thumbnails,
    div[class*="trek-hero-gallery"] .hero-gallery-thumbnails {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(2, 1fr) !important;
        gap: 10px !important;
        height: auto !important;
    }
    
    .trek-hero-gallery .hero-gallery-thumb,
    div[class*="trek-hero-gallery"] .hero-gallery-thumb {
        width: 100% !important;
        height: 135px !important;
        border-radius: 8px !important;
    }
    
    .trek-hero-gallery .see-all-photos-btn,
    div[class*="trek-hero-gallery"] .see-all-photos-btn {
        padding: 9px 14px !important;
        font-size: 12px !important;
        border-radius: 7px !important;
        gap: 6px !important;
    }
    
    .trek-hero-gallery .see-all-photos-btn svg,
    div[class*="trek-hero-gallery"] .see-all-photos-btn svg {
        width: 14px !important;
        height: 14px !important;
    }
    
    /* Touch optimization */
    .trek-hero-gallery .hero-gallery-thumb,
    div[class*="trek-hero-gallery"] .hero-gallery-thumb {
        -webkit-tap-highlight-color: rgba(255, 122, 61, 0.2) !important;
        touch-action: manipulation !important;
        user-select: none !important;
        -webkit-user-select: none !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    /* Reduce padding slightly on very small screens */
    .elementor-widget-single_trek_hero_gallery .elementor-widget-container {
        padding: 0 15px !important;
    }
    
    .trek-hero-gallery,
    div[class*="trek-hero-gallery"] {
        gap: 8px !important;
        margin-bottom: 24px !important;
    }
    
    .trek-hero-gallery .hero-gallery-main,
    div[class*="trek-hero-gallery"] .hero-gallery-main {
        height: 240px !important;
        border-radius: 6px !important;
    }
    
    .trek-hero-gallery .hero-gallery-thumbnails,
    div[class*="trek-hero-gallery"] .hero-gallery-thumbnails {
        gap: 8px !important;
    }
    
    .trek-hero-gallery .hero-gallery-thumb,
    div[class*="trek-hero-gallery"] .hero-gallery-thumb {
        height: 115px !important;
        border-radius: 6px !important;
    }
    
    .trek-hero-gallery .see-all-photos-btn,
    div[class*="trek-hero-gallery"] .see-all-photos-btn {
        padding: 8px 12px !important;
        font-size: 11px !important;
        border-radius: 6px !important;
        gap: 5px !important;
    }
    
    .trek-hero-gallery .see-all-photos-btn svg,
    div[class*="trek-hero-gallery"] .see-all-photos-btn svg {
        width: 12px !important;
        height: 12px !important;
    }
}

/* ========================================
   REGION TAXONOMY ARCHIVE PAGES - CLEAN DESIGN
   ======================================== */

/* Navbar visible on region pages */
.tax-region .site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.tax-region .site-header .site-logo,
.tax-region .site-header .primary-navigation ul a {
    color: var(--color-dark);
}

.tax-region .site-header .mobile-menu-toggle span {
    background-color: var(--color-dark);
}

/* Hero Section - Large with Rounded Corners & Margins */
.region-hero-clean {
    position: relative;
    height: calc(100vh - 120px);
    min-height: 500px;
    max-height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 90px 20px 20px;
    border-radius: 20px;
    overflow: hidden;
}

.region-hero-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.region-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 60px 40px;
}

/* Region Title */
.region-title {
    font-size: 3.5rem;
    font-weight: 400;
    margin: 0 0 20px;
    line-height: 1.2;
    letter-spacing: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.region-tagline {
    font-size: 1.15rem;
    font-weight: 300;
    margin: 0;
    opacity: 1;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

/* Find Your Path Section */
.find-your-path {
    background: #ffffff;
    padding: 60px 20px 80px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #2d2d2d;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #ff6b35;
    border-radius: 2px;
}

/* Clean Filter Bar */
.filter-bar-clean {
    display: flex;
    gap: 15px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 50px;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    background: #fff9e6;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid #f0e6c8;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 1rem;
    color: #333;
}

.search-input::placeholder {
    color: #999;
}

.filter-select {
    padding: 12px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #ffffff;
    font-size: 1rem;
    color: #666;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    min-width: 150px;
}

.filter-select:hover,
.filter-select:focus {
    border-color: #ff6b35;
}

/* Tours Grid - Clean Design */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tour Card - White Card Style */
.tour-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper */
.tour-card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.tour-card-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

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

.tour-card:hover .tour-card-image {
    transform: scale(1.1);
}

/* Badge - Difficulty (Top Right) */
.tour-card-badge-difficulty {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.tour-card-badge-difficulty.easy {
    background: #4caf50;
    color: #ffffff;
}

.tour-card-badge-difficulty.moderate {
    background: #ff9800;
    color: #ffffff;
}

.tour-card-badge-difficulty.challenging,
.tour-card-badge-difficulty.hard {
    background: #f44336;
    color: #ffffff;
}

/* Badge - Duration (Bottom Left) */
.tour-card-badge-duration {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255, 107, 53, 0.95);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.tour-card-badge-duration svg {
    width: 14px;
    height: 14px;
}

/* Card Content */
.tour-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 12px;
    line-height: 1.3;
}

.tour-card-title a {
    color: #2d2d2d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tour-card-title a:hover {
    color: #ff6b35;
}

/* Price Display */
.tour-card-price {
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-label {
    font-size: 0.75rem;
    color: #999;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.price-unit {
    font-size: 0.9rem;
    color: #666;
}

/* Card Meta */
.tour-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #666;
}

.tour-meta-item svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.tour-meta-difficulty {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
}

.tour-meta-difficulty.easy {
    background: #e8f5e9;
    color: #4caf50;
}

.tour-meta-difficulty.moderate {
    background: #fff9e6;
    color: #ff9800;
}

.tour-meta-difficulty.challenging,
.tour-meta-difficulty.hard {
    background: #ffebee;
    color: #f44336;
}

/* Excerpt */
.tour-card-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

/* View Details Button */
.tour-card-button {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    background: #ff6b35;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: auto;
}

.tour-card-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* No Tours Found State */
.no-tours-found {
    text-align: center;
    padding: 80px 20px;
    background: #f9f9f9;
    border-radius: 16px;
    margin-top: 40px;
}

.no-tours-icon {
    color: #ddd;
    margin-bottom: 20px;
}

.no-tours-found h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.no-tours-found p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Pagination Enhancements */
.region-tours .pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.region-tours .pagination ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.region-tours .pagination li {
    margin: 0;
}

.region-tours .pagination a,
.region-tours .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 15px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.region-tours .pagination a:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
}

.region-tours .pagination .current {
    background: #ff6b35;
    border-color: #ff6b35;
    color: #ffffff;
}

/* ========================================
   RESPONSIVE DESIGN - REGION PAGES CLEAN
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .region-hero-clean {
        height: calc(100vh - 110px);
        min-height: 450px;
        max-height: 600px;
        margin: 90px 15px 15px;
    }
    
    .region-title {
        font-size: 2.8rem;
    }
    
    .region-tagline {
        font-size: 1rem;
    }
    
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .region-hero-clean {
        height: calc(100vh - 100px);
        min-height: 400px;
        max-height: 550px;
        margin: 80px 15px 15px;
    }
    
    .region-hero-content {
        padding: 40px 25px;
    }
    
    .region-title {
        font-size: 2.2rem;
    }
    
    .region-tagline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .filter-bar-clean {
        flex-direction: column;
        gap: 12px;
    }
    
    .search-box {
        width: 100%;
        min-width: 100%;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tour-card-image-wrapper {
        height: 200px;
    }
    
    .tour-card-title {
        font-size: 1.2rem;
    }
    
    .price-amount {
        font-size: 1.3rem;
    }
    
    .find-your-path {
        padding: 40px 15px 60px;
    }
    
    .region-tours {
        padding: 80px 20px 100px;
    }
    
    .region-tours .filters-bar {
        top: 60px;
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .filters-label {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .filter-select {
        width: 100%;
        min-width: 100%;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .region-hero-clean {
        height: calc(100vh - 95px);
        min-height: 350px;
        max-height: 500px;
        margin: 75px 10px 10px;
    }
    
    .region-title {
        font-size: 1.8rem;
    }
    
    .region-tagline {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .tour-card-image-wrapper {
        height: 180px;
    }
    
    .tour-card-title {
        font-size: 1.1rem;
    }
    
    .tour-card-content {
        padding: 16px;
    }
    
    .price-amount {
        font-size: 1.2rem;
    }
    
    .tour-card-button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .filter-bar-clean {
        gap: 10px;
    }
}
