/* ================================================================
   EXPLORE SIKKIM NOW — Main Stylesheet
   Version: 1.0.0
   ================================================================ */

/* ── CSS Variables ── */
:root {
    --esn-primary: #1a5632;
    --esn-primary-dark: #0f3d22;
    --esn-primary-light: #2d8659;
    --esn-accent: #c0392b;
    --esn-gold: #d4a941;
    --esn-text: #333;
    --esn-text-light: #666;
    --esn-text-muted: #767676;
    --esn-bg: #fff;
    --esn-bg-light: #f8f9fa;
    --esn-bg-dark: #1a1a2e;
    --esn-border: #e0e0e0;
    --esn-shadow: 0 2px 15px rgba(0,0,0,.08);
    --esn-shadow-lg: 0 10px 40px rgba(0,0,0,.12);
    --esn-radius: 8px;
    --esn-radius-lg: 12px;
    --esn-transition: .3s ease;
    --esn-font-body: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    --esn-font-heading: 'Playfair Display', Georgia, serif;
    --esn-font-accent: 'DM Sans', sans-serif;
    --esn-container: 1200px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
    font-family: var(--esn-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--esn-text);
    background: var(--esn-bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--esn-primary); text-decoration: none; transition: color var(--esn-transition); }
a:hover { color: var(--esn-primary-dark); }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--esn-font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--esn-text);
}
.screen-reader-text {
    position: absolute; width: 1px; height: 1px; padding: 0;
    margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}
.screen-reader-text:focus {
    position: static; width: auto; height: auto;
    padding: 10px 20px; margin: 0; overflow: visible;
    clip: auto; white-space: normal;
    background: #fff; z-index: 100000;
}

/* ── Container ── */
.esn-container {
    max-width: var(--esn-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Buttons ── */
.esn-btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--esn-font-accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--esn-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--esn-transition);
    text-align: center;
}
.esn-btn--primary {
    background: var(--esn-primary);
    color: #fff;
    border-color: var(--esn-primary);
}
.esn-btn--primary:hover {
    background: var(--esn-primary-dark);
    border-color: var(--esn-primary-dark);
    color: #fff;
}
.esn-btn--outline {
    background: transparent;
    color: var(--esn-primary);
    border-color: var(--esn-primary);
}
.esn-btn--outline:hover {
    background: var(--esn-primary);
    color: #fff;
}
.esn-btn--sm { padding: 8px 18px; font-size: 13px; }
.esn-btn--lg { padding: 16px 36px; font-size: 16px; }

/* ================================================================
   HEADER
   ================================================================ */
.esn-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,.05);
    transition: all 0.35s ease;
}
.esn-header.scrolled {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,.1);
}
.esn-header.scrolled .esn-header__inner {
    height: 64px;
}
.esn-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
}
/* Floating Logo */
.esn-header__logo {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    transition: all 0.35s ease;
}
.esn-header__logo a {
    display: block;
}
.esn-header__logo img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border: 3px solid rgba(26,86,50,0.12);
    transition: all 0.35s ease;
    position: relative;
    top: 35px;
    margin-top: 4px;
}
/* Scrolled state — logo shrinks and tucks in */
.esn-header.scrolled .esn-header__logo img {
    width: 70px;
    height: 70px;
    top: 0;
    margin-top: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.esn-header__logo .esn-logo-text {
    font-family: var(--esn-font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--esn-primary);
}

/* Nav */
.esn-nav-list {
    display: flex;
    list-style: none;
    gap: 5px;
}
.esn-nav-list li { position: relative; }
.esn-nav-list > li > a {
    display: block;
    padding: 10px 15px;
    font-family: var(--esn-font-accent);
    font-size: 15px;
    font-weight: 500;
    color: var(--esn-text);
    transition: color var(--esn-transition);
}
.esn-nav-list > li > a:hover,
.esn-nav-list > li.current-menu-item > a,
.esn-nav-list > li.current-menu-ancestor > a {
    color: var(--esn-primary);
}
/* Dropdown */
.esn-nav-list .sub-menu {
    position: absolute;
    top: 100%; left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: var(--esn-shadow-lg);
    border-radius: var(--esn-radius);
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--esn-transition);
    z-index: 100;
}
.esn-nav-list li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.esn-nav-list .sub-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    color: var(--esn-text);
}
.esn-nav-list .sub-menu a:hover { color: var(--esn-primary); background: var(--esn-bg-light); }
.esn-nav-list .sub-menu .sub-menu {
    left: 100%; top: 0;
}

/* Header Actions */
.esn-header__actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.esn-search-toggle {
    background: none; border: none; cursor: pointer;
    font-size: 18px; color: var(--esn-text);
    padding: 8px;
}
.esn-header__cta { white-space: nowrap; }

/* Hamburger */
.esn-menu-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    padding: 8px;
}
.esn-hamburger {
    display: flex; flex-direction: column;
    gap: 5px; width: 24px;
}
.esn-hamburger span {
    display: block; height: 2px;
    background: var(--esn-text);
    transition: all var(--esn-transition);
}

/* Search Overlay */
.esn-search-overlay {
    padding: 15px 0;
    border-top: 1px solid var(--esn-border);
}
.esn-search-form {
    display: flex; gap: 10px;
}
.esn-search-input {
    flex: 1; padding: 12px 20px;
    border: 1px solid var(--esn-border);
    border-radius: var(--esn-radius);
    font-size: 16px;
    font-family: var(--esn-font-body);
}
.esn-search-submit {
    padding: 12px 20px;
    background: var(--esn-primary);
    color: #fff; border: none;
    border-radius: var(--esn-radius);
    cursor: pointer;
}

/* Mobile Drawer */
.esn-mobile-drawer { display: none; }
.esn-mobile-drawer[aria-hidden="false"] { display: block; }
.esn-mobile-drawer__overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 9998;
}
.esn-mobile-drawer__panel {
    position: fixed; top: 0; right: 0;
    width: 300px; height: 100vh;
    background: #fff;
    z-index: 9999;
    padding: 30px 20px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--esn-transition);
}
.esn-mobile-drawer[aria-hidden="false"] .esn-mobile-drawer__panel {
    transform: translateX(0);
}
.esn-mobile-drawer__close {
    position: absolute; top: 15px; right: 15px;
    background: none; border: none;
    font-size: 24px; cursor: pointer;
}
.esn-mobile-nav-list {
    list-style: none; padding: 20px 0;
}
.esn-mobile-nav-list li { border-bottom: 1px solid var(--esn-border); }
.esn-mobile-nav-list a {
    display: block; padding: 12px 0;
    font-size: 16px; color: var(--esn-text);
}
.esn-mobile-nav-list .sub-menu {
    list-style: none; padding-left: 20px;
    display: none;
}
.esn-mobile-drawer__cta {
    display: block; margin-top: 20px; text-align: center;
}

/* Main content push */
.esn-main { margin-top: 80px; }

/* ================================================================
   PAGE BANNER
   ================================================================ */
.esn-page-banner {
    background: linear-gradient(135deg, var(--esn-primary-dark), var(--esn-primary));
    color: #fff;
    padding: 115px 0 40px;
}
.esn-page-banner .esn-breadcrumbs { margin-bottom: 10px; }
.esn-page-banner .esn-breadcrumbs a { color: rgba(255,255,255,.7); }
.esn-page-banner .esn-breadcrumbs .current { color: #fff; }
.esn-page-banner .esn-breadcrumbs .sep { color: rgba(255,255,255,.4); margin: 0 8px; }
.esn-page-title {
    font-size: 36px;
    color: #fff;
    margin: 0;
}

/* Breadcrumbs generic */
.esn-breadcrumbs {
    font-size: 14px;
    font-family: var(--esn-font-accent);
}
.esn-breadcrumbs a { color: var(--esn-text-light); }
.esn-breadcrumbs .sep { margin: 0 8px; color: var(--esn-text-muted); }

/* ================================================================
   SECTIONS
   ================================================================ */
.esn-section { padding: 80px 0; }
.esn-section:nth-child(even) { background: var(--esn-bg-light); }
.esn-section-header {
    text-align: center;
    margin-bottom: 50px;
}
.esn-section-header--centered { max-width: 700px; margin-left: auto; margin-right: auto; }
.esn-section-subtitle {
    display: inline-block;
    font-family: var(--esn-font-accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--esn-primary);
    margin-bottom: 10px;
}
.esn-section-title {
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 1.3;
}
.esn-section-desc {
    font-size: 16px;
    color: var(--esn-text-light);
    max-width: 600px;
    margin: 0 auto 20px;
}
.esn-section-footer { text-align: center; margin-top: 40px; }

/* ================================================================
   TRIP CARDS
   ================================================================ */
.esn-trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.esn-trip-card {
    background: #fff;
    border-radius: var(--esn-radius-lg);
    overflow: hidden;
    box-shadow: var(--esn-shadow);
    transition: transform var(--esn-transition), box-shadow var(--esn-transition);
}
.esn-trip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--esn-shadow-lg);
}
.esn-trip-card__image { position: relative; overflow: hidden; }
.esn-trip-card__image img {
    width: 100%; height: 250px; object-fit: cover;
    transition: transform var(--esn-transition);
}
.esn-trip-card:hover .esn-trip-card__image img { transform: scale(1.05); }
.esn-trip-card__badge {
    position: absolute; top: 15px; left: 15px;
    background: var(--esn-accent);
    color: #fff; padding: 4px 12px;
    border-radius: 20px; font-size: 12px;
    font-weight: 600;
}
.esn-trip-card__content { padding: 20px; }
.esn-trip-card__title {
    font-size: 18px; margin-bottom: 10px;
    font-family: var(--esn-font-heading);
}
.esn-trip-card__title a { color: var(--esn-text); }
.esn-trip-card__title a:hover { color: var(--esn-primary); }
.esn-trip-card__meta {
    display: flex; flex-wrap: wrap; gap: 15px;
    font-size: 13px; color: var(--esn-text-light);
    margin-bottom: 15px;
}
.esn-trip-card__meta i { margin-right: 5px; color: var(--esn-primary); }
.esn-trip-card__footer {
    display: flex; justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--esn-border);
}
.esn-price {
    font-size: 22px; font-weight: 700;
    color: var(--esn-primary);
    font-family: var(--esn-font-accent);
}

/* ── Carousel (featured treks) ──────────────────────── */
.esn-carousel {
    position: relative;
    overflow: hidden;
    overflow-x: clip;
    overflow-y: visible;
    padding: 10px 0;
}
.esn-carousel__track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.esn-carousel__slide {
    flex: 0 0 calc((100% - 60px) / 3);
    min-width: 0;
}
.esn-carousel__slide .esn-trip-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.esn-carousel__slide .esn-trip-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.esn-carousel__slide .esn-trip-card__footer {
    margin-top: auto;
}

/* Carousel arrows */
.esn-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--esn-border);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--esn-text);
    transition: all 0.3s;
}
.esn-carousel__arrow:hover {
    background: var(--esn-primary);
    color: #fff;
    border-color: var(--esn-primary);
    box-shadow: 0 6px 20px rgba(26, 86, 50, 0.25);
}
.esn-carousel__arrow--prev {
    left: -24px;
}
.esn-carousel__arrow--next {
    right: -24px;
}
.esn-carousel__arrow:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

/* Featured treks section tweaks */
.esn-featured-treks .esn-container {
    overflow: visible;
}
.esn-featured-treks .esn-section-footer {
    text-align: center;
    margin-top: 45px;
}
.esn-featured-treks .esn-section-footer .esn-btn--outline {
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.esn-price-old {
    text-decoration: line-through;
    color: var(--esn-text-muted);
    font-size: 14px;
    margin-right: 5px;
}

/* ================================================================
   SERVICES
   ================================================================ */
.esn-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.esn-service-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: var(--esn-radius-lg);
    box-shadow: var(--esn-shadow);
    text-align: center;
    transition: all var(--esn-transition);
    position: relative;
    overflow: hidden;
}
.esn-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--esn-shadow-lg);
}
.esn-service-card__number {
    position: absolute; top: 15px; right: 20px;
    font-size: 48px; font-weight: 800;
    color: rgba(26,86,50,.05);
    font-family: var(--esn-font-heading);
}
.esn-service-card__icon {
    width: 70px; height: 70px;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(26,86,50,.08);
    border-radius: 50%;
    font-size: 28px;
    color: var(--esn-primary);
}
.esn-service-card h3 {
    font-size: 20px; margin-bottom: 10px;
    font-family: var(--esn-font-heading);
}
.esn-service-card p {
    font-size: 14px; color: var(--esn-text-light);
    margin-bottom: 15px;
}
.esn-service-card__link {
    font-size: 14px; font-weight: 600;
    color: var(--esn-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.esn-service-card__link i { margin-left: 5px; transition: transform var(--esn-transition); }
.esn-service-card__link:hover i { transform: translateX(5px); }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.esn-testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.esn-testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: var(--esn-radius-lg);
    box-shadow: var(--esn-shadow);
}
.esn-testimonial-card__stars {
    color: var(--esn-gold);
    margin-bottom: 15px;
    font-size: 16px;
}
.esn-testimonial-card__stars i { margin-right: 3px; }
.esn-testimonial-card blockquote {
    font-size: 15px;
    line-height: 1.8;
    color: var(--esn-text);
    margin-bottom: 20px;
    font-style: italic;
}
.esn-testimonial-card__author {
    display: flex; align-items: center; gap: 15px;
}

/* Letter avatars */
.esn-avatar {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    border-radius: 50% !important;
    font-family: var(--esn-font-heading) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    background-color: #1a5632 !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    border: none !important;
    text-decoration: none !important;
}
.esn-avatar--2 {
    background-color: #b8922e !important;
    color: #1a1000 !important;
}
.esn-avatar--3 {
    background-color: #2c4a66 !important;
    color: #ffffff !important;
}
/* avatar images replaced with letter avatars */
.esn-testimonial-card__author strong { display: block; font-size: 16px; }
.esn-testimonial-card__author span { font-size: 13px; color: var(--esn-text-muted); }

/* ================================================================
   COUNTERS
   ================================================================ */
section.esn-counters {
    background: linear-gradient(135deg, #0f3d22, #1a5632) !important;
    color: #ffffff !important;
}
.esn-counter__number,
.esn-counter__suffix,
.esn-counter__label {
    color: #ffffff !important;
}
.esn-counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.esn-counter__number {
    font-size: 48px; font-weight: 800;
    font-family: var(--esn-font-heading);
    display: inline;
}
.esn-counter__suffix {
    font-size: 36px; font-weight: 700;
    display: inline;
}
.esn-counter__label {
    font-size: 16px;
    margin-top: 8px;
    opacity: .85;
}

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.esn-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.esn-why-card {
    text-align: center;
    padding: 30px 20px;
}
.esn-why-card__icon {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(26,86,50,.08);
    border-radius: 50%;
    font-size: 32px;
    color: var(--esn-primary);
}
.esn-why-card h3 {
    font-size: 18px; margin-bottom: 10px;
}
.esn-why-card p {
    font-size: 14px; color: var(--esn-text-light);
}

/* ================================================================
   IMAGE CONTENT
   ================================================================ */
.esn-image-content__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.esn-image-content__images { position: relative; }
.esn-image-content__images img {
    border-radius: var(--esn-radius-lg);
}
.esn-image-content__secondary {
    position: absolute;
    bottom: -30px; right: -20px;
    max-width: 250px;
    border: 5px solid #fff;
    box-shadow: var(--esn-shadow-lg);
}

/* ================================================================
   BLOG CARDS
   ================================================================ */





.esn-blog-card__date {
    position: absolute; top: 15px; left: 15px;
    background: var(--esn-primary);
    color: #fff; padding: 8px 12px;
    border-radius: var(--esn-radius);
    text-align: center; line-height: 1.2;
}
.esn-blog-card__day { display: block; font-size: 22px; font-weight: 700; }
.esn-blog-card__month { display: block; font-size: 12px; text-transform: uppercase; }

.esn-blog-card__meta {
    display: flex; gap: 15px;
    font-size: 13px; color: var(--esn-text-muted);
    margin-bottom: 10px;
}
.esn-blog-card__meta i { margin-right: 5px; }







/* ================================================================
   BLOG LAYOUT
   ================================================================ */
.esn-blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 50px 0;
}
.esn-blog-layout__sidebar .widget {
    background: #fff;
    padding: 25px;
    border-radius: var(--esn-radius);
    box-shadow: var(--esn-shadow);
    margin-bottom: 25px;
}
.esn-blog-layout__sidebar .widget-title {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--esn-primary);
}

/* ================================================================
   SINGLE POST
   ================================================================ */
.esn-single-post__meta {
    display: flex; flex-wrap: wrap; gap: 20px;
    font-size: 14px; color: var(--esn-text-light);
    margin-bottom: 25px;
}
.esn-single-post__meta i { margin-right: 5px; color: var(--esn-primary); }
.esn-single-post__featured {
    position: relative;
    margin-bottom: 35px;
    border-radius: var(--esn-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.esn-single-post__featured::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--esn-radius-lg);
    border: 1px solid rgba(255,255,255,0.15);
    pointer-events: none;
}
.esn-single-post__featured img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}
.esn-single-post__featured:hover img {
    transform: scale(1.02);
}
.esn-single-post__content {
    font-family: var(--esn-font-body);
    font-size: 17px;
    line-height: 1.85;
    font-weight: 500;
    color: var(--esn-text);
    letter-spacing: 0.01em;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.esn-single-post__content h2 {
    margin: 40px 0 18px;
    font-size: 28px;
    font-family: var(--esn-font-heading);
    font-weight: 700;
    color: var(--esn-text);
    line-height: 1.3;
}
.esn-single-post__content h3 {
    margin: 35px 0 14px;
    font-size: 22px;
    font-family: var(--esn-font-heading);
    font-weight: 600;
    color: var(--esn-text);
    line-height: 1.35;
}
.esn-single-post__content p {
    margin-bottom: 22px;
    font-weight: 500;
}
.esn-single-post__content img {
    border-radius: var(--esn-radius-lg);
    margin: 28px 0;
    box-shadow: 0 3px 16px rgba(0,0,0,0.08);
    border: 4px solid #fff;
    outline: 1px solid rgba(0,0,0,0.06);
    max-width: 100%;
    height: auto;
    transition: box-shadow 0.3s ease;
}
.esn-single-post__content img:hover {
    box-shadow: 0 6px 28px rgba(0,0,0,0.12);
}
/* Captioned images (WP figure blocks) */
.esn-single-post__content figure {
    margin: 32px 0;
}
.esn-single-post__content figure img {
    margin: 0 0 0;
    border-radius: var(--esn-radius-lg) var(--esn-radius-lg) 0 0;
}
.esn-single-post__content figcaption {
    background: #f8faf9;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--esn-text-muted);
    font-style: italic;
    text-align: center;
    border: 4px solid #fff;
    border-top: none;
    outline: 1px solid rgba(0,0,0,0.06);
    outline-offset: 0;
    border-radius: 0 0 var(--esn-radius-lg) var(--esn-radius-lg);
}
.esn-single-post__content ul, .esn-single-post__content ol {
    margin: 15px 0 20px 30px;
}
.esn-single-post__tags {
    padding: 20px 0;
    border-top: 1px solid var(--esn-border);
    margin-top: 30px;
    font-size: 14px;
}
.esn-single-post__tags i { color: var(--esn-primary); margin-right: 8px; }
.esn-single-post__author-box {
    display: flex; gap: 20px;
    padding: 25px;
    background: var(--esn-bg-light);
    border-radius: var(--esn-radius);
    margin: 30px 0;
}




/* ================================================================
   COMMENTS
   ================================================================ */

.esn-comments__title {
    font-size: 24px; margin-bottom: 25px;
}

.esn-comment-list .comment-body {
    padding: 20px;
    border-bottom: 1px solid var(--esn-border);
}
.comment-meta { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
.comment-author img { border-radius: 50%; }

/* ================================================================
   PAGE CONTENT
   ================================================================ */
.esn-page-content {
    padding: 50px 0;
    font-size: 17px;
    line-height: 1.8;
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.esn-cta-banner {
    background: linear-gradient(135deg, var(--esn-primary-dark), var(--esn-primary-light));
    text-align: center;
    padding: 60px 0;
}

/* ================================================================
   CTA FEATURES
   ================================================================ */
.esn-cta-features__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.esn-cta-feature {
    background: var(--esn-bg-dark);
    color: #fff;
    border-radius: var(--esn-radius-lg);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}
.esn-cta-feature__content { position: relative; z-index: 1; }
.esn-cta-feature .esn-section-subtitle { color: var(--esn-gold); }
.esn-cta-feature h3 {
    font-size: 28px; color: #fff;
    margin-bottom: 15px;
}
.esn-cta-feature p {
    color: rgba(255,255,255,.7);
    margin-bottom: 25px;
}

/* ================================================================
   SPECIAL ITINERARY
   ================================================================ */
.esn-special-itinerary {
    background: var(--esn-bg-dark);
    color: #fff;
    text-align: center;
}
.esn-special-itinerary .esn-section-title { color: #fff; }
.esn-special-itinerary .esn-section-desc { color: rgba(255,255,255,.7); }

/* ================================================================
   404
   ================================================================ */
.esn-404 { text-align: center; padding: 80px 0; }
.esn-404 h2 { font-size: 32px; margin-bottom: 15px; }
.esn-404 p { margin-bottom: 25px; color: var(--esn-text-light); }
.esn-404__search { margin-top: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }


/* ================================================================
   WTE — THEME HARMONIZATION
   Only color, font, and spacing overrides. Layout is WTE's own.
   ================================================================ */

/* Trip single wrapper — contain width (match WTE's 1320px default) */
#wp-travel-trip-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Gallery banner — full width */
.wpte-gallery-wrapper {
    margin-bottom: 30px;
}
.wpte-gallery-wrapper img {
    width: 100%;
    height: auto;
}
/* Banner image: full-width, show top of image to avoid head cropping */
.wpte-gallery-wrapper__multi-banners .banner-layout-1 .wpte-trip-feat-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: top center;
}
@media (max-width: 480px) {
    .wpte-gallery-wrapper__multi-banners .banner-layout-1 .wpte-trip-feat-img img {
        height: 250px;
    }
}

/* Title area */
.trip-content-area .entry-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--esn-border);
}
.trip-content-area .entry-title {
    font-family: var(--esn-font-heading);
    font-size: 32px;
    color: var(--esn-text);
    margin-bottom: 8px;
}
.wte-title-duration {
    font-family: var(--esn-font-accent);
    color: var(--esn-primary);
    font-weight: 600;
}

/* Content + sidebar — WTE handles the flex layout natively.
   Only add min-width:0 to prevent content overflow. */
body.single-trip .trip-content-area .content-area {
    min-width: 0;
}

/* Nested main inside our main — remove double margins */
.esn-main .site-main {
    padding: 0;
    margin: 0;
}

/* Tab navigation — theme colors */
.nav-tab-wrapper {
    border-bottom: 2px solid var(--esn-border);
    margin-bottom: 0;
}
.nav-tab-wrapper .nav-tab {
    font-family: var(--esn-font-accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--esn-text-light);
    padding: 12px 20px;
    border: none;
    border-bottom: 3px solid transparent;
    background: none;
    transition: all 0.3s ease;
    text-decoration: none;
}
.nav-tab-wrapper .nav-tab:hover {
    color: var(--esn-primary);
}
.nav-tab-wrapper .nav-tab.nav-tab-active {
    color: var(--esn-primary);
    border-bottom-color: var(--esn-primary);
    background: none;
}

/* Tab content panels */
.nb-configurations {
    padding: 25px 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* ================================================================
   ITINERARY — Clean stacked layout with pill day badges
   ================================================================ */
.wte-itinerary-header-wrapper {
    margin-bottom: 24px;
}
.wte-itinerary-header-wrapper .wp-travel-engine-itinerary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.wpte-itinerary-title {
    font-family: var(--esn-font-heading);
    color: var(--esn-primary);
    font-size: 22px;
    margin: 0;
}
.wte-itinerary-header-wrapper .aib-button-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.wte-itinerary-header-wrapper .aib-button-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--esn-primary);
    cursor: pointer;
}

/* No timeline — clean open spacing */
.wte-trip-itinerary-v2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Each day block */
.itinerary-row {
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    overflow: visible;
}

/* Head wrap — stacked: pill on top, heading below, no shared box */
.wte-itinerary-head-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
}

/* Day pill — light background, dark text, readable */
.wte-itinerary-head-wrap .title {
    display: inline-block;
    width: fit-content;
    background: #e8f5ee;
    color: var(--esn-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    line-height: 1.4;
    font-family: var(--esn-font-accent);
    border: 1px solid #c8e6d5;
}

/* Toggle arrow + title wrapper */
.accordion-tabs-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: var(--esn-bg-light);
    border: 1px solid var(--esn-border);
    border-radius: var(--esn-radius);
    padding: 14px 18px;
    transition: background var(--esn-transition), border-color var(--esn-transition);
}
.itinerary-row.active .accordion-tabs-toggle {
    background: #fff;
    border-color: var(--esn-primary-light);
}
.accordion-tabs-toggle:hover {
    border-color: var(--esn-primary-light);
}

/* Toggle icon */
.accordion-tabs-toggle .custom-toggle-tabs {
    color: var(--esn-text-muted);
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.2s;
    order: 2;
    margin-left: auto;
}
.accordion-tabs-toggle .custom-toggle-tabs.open {
    transform: rotate(180deg);
}
.itinerary-row.active .accordion-tabs-toggle .custom-toggle-tabs {
    color: var(--esn-primary);
}

/* Itinerary heading text */
.itinerary-title {
    padding: 0;
    background: none;
    font-family: var(--esn-font-heading);
    font-weight: 600;
    font-size: 17px;
    color: var(--esn-text);
    cursor: pointer;
    display: block;
    line-height: 1.4;
    order: 1;
}
.itinerary-title span {
    display: block;
}
.itinerary-row.active .itinerary-title {
    color: var(--esn-primary-dark);
}

/* Itinerary content / description — its own block */
.itinerary-content {
    padding: 20px 22px 8px;
    background: #fff;
    border: 1px solid var(--esn-border);
    border-top: none;
    border-radius: 0 0 var(--esn-radius) var(--esn-radius);
    margin-top: -1px;
}
.itinerary-content .content {
    font-size: 14px;
    line-height: 1.8;
    color: var(--esn-text-light);
}
.itinerary-content .content p {
    margin-bottom: 16px;
}
.itinerary-content .content ul {
    padding-left: 20px;
    margin: 0 0 16px;
}
.itinerary-content .content ul li {
    margin-bottom: 10px;
    position: relative;
}
.itinerary-content .content ul li::marker {
    color: var(--esn-primary-light);
}
.itinerary-content .content strong {
    color: var(--esn-text);
}

/* Responsive */
@media (max-width: 768px) {
    .wte-trip-itinerary-v2 {
        gap: 18px;
    }
    .accordion-tabs-toggle {
        padding: 12px 14px;
    }
    .itinerary-title {
        font-size: 15px;
    }
    .itinerary-content {
        padding: 16px 16px 6px;
    }
    .wte-itinerary-head-wrap .title {
        font-size: 11px;
        padding: 4px 13px;
    }
}
@media (max-width: 480px) {
    .wte-trip-itinerary-v2 {
        gap: 16px;
    }
    .accordion-tabs-toggle {
        padding: 10px 12px;
    }
    .itinerary-title {
        font-size: 14px;
    }
    .itinerary-content {
        padding: 14px 14px 4px;
    }
}

@media (max-width: 400px) {
    #wp-travel-trip-wrapper { padding: 0 16px; }
    .trip-content-area .entry-title { font-size: 20px; }
    .wte-trip-facts { padding: 16px; }
    .tour-question { padding: 20px 16px; }
}

/* FAQ styling */
.faq-row {
    border: 1px solid var(--esn-border);
    border-radius: var(--esn-radius);
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-title {
    padding: 15px 20px;
    background: var(--esn-bg-light);
    font-weight: 600;
    cursor: pointer;
}
.faq-content {
    padding: 15px 20px;
}

/* Cost includes/excludes */
.wte-trip-inc-exc-content ul {
    list-style: none;
    padding: 0;
}
.wte-trip-inc-exc-content ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    border-bottom: 1px solid var(--esn-border);
}
.wte-trip-inc-exc-content ul li::before {
    position: absolute;
    left: 0;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.wte-trip-inc-exc-content .includes ul li::before {
    content: "\f00c";
    color: var(--esn-primary);
}
.wte-trip-inc-exc-content .excludes ul li::before {
    content: "\f00d";
    color: var(--esn-accent);
}

/* Trip facts sidebar */
.secondary-trip-info {
    margin-bottom: 25px;
}
.wte-trip-facts {
    background: var(--esn-bg-light);
    border-radius: var(--esn-radius-lg);
    padding: 20px;
}
.wte-trip-facts .widget-title {
    font-family: var(--esn-font-heading);
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--esn-primary);
}
.trip-facts-value li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--esn-border);
}
.trip-facts-value .icon-holder {
    flex-shrink: 0;
    color: var(--esn-primary);
}
.trip-facts-value .icon-holder svg {
    width: 20px;
    height: 20px;
}
.trip-facts-text label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--esn-text-muted);
    font-family: var(--esn-font-accent);
    letter-spacing: 0.5px;
}
.trip-facts-text .value {
    font-weight: 600;
    font-size: 14px;
}

/* Sidebar widgets general */
#secondary .widget {
    margin-bottom: 25px;
}
.tour-question {
    background: var(--esn-primary);
    color: #fff;
    padding: 25px;
    border-radius: var(--esn-radius-lg);
    text-align: center;
}
.tour-question .icon {
    font-size: 36px;
    margin-bottom: 10px;
    opacity: 0.8;
}
.tour-question .title {
    font-family: var(--esn-font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.tour-question .desc {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 15px;
    line-height: 1.6;
}
.tour-question .btn-theme-2 {
    display: inline-block;
    background: #fff;
    color: var(--esn-primary);
    padding: 10px 24px;
    border-radius: var(--esn-radius);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.tour-question .btn-theme-2:hover {
    background: var(--esn-gold);
    color: #fff;
}

/* WTE Enquiry modal */
.modal.fade .modal-dialog {
    max-width: 600px;
    margin: 80px auto;
}
.modal .modal-content {
    border-radius: var(--esn-radius-lg);
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal .modal-header {
    border-bottom: 1px solid var(--esn-border);
    padding: 20px 25px;
}
.modal .modal-title {
    font-family: var(--esn-font-heading);
}
.modal .modal-body {
    padding: 25px;
}

/* WTE breadcrumbs */
#wte-crumbs {
    max-width: var(--esn-container);
    margin: 0 auto;
    padding: 15px 20px;
    font-size: 13px;
}
body.single-trip #wte-crumbs {
    padding: 0;
}
#wte-crumbs a {
    color: var(--esn-primary);
    text-decoration: none;
}

/* Trip search bar — overlapping hero/intro */
.esn-trip-search {
    position: relative;
    z-index: 100;
    margin-top: -50px;
    padding: 0;
    background: none;
    pointer-events: auto;
}
.esn-trip-search .esn-container {
    max-width: var(--esn-container);
    margin: 0 auto;
    padding: 0 20px;
}
.esn-trip-search .wpte-gblock-wrapper {
    background: #fff;
    border-radius: var(--esn-radius-lg);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    padding: 0;
    overflow: visible;
}
.wpte-trip-sfilter-wrapper {
    max-width: 100%;
    margin: 0;
}
.wpte-trip__search-fields.horizontal {
    display: flex;
    gap: 0;
    align-items: stretch;
    flex-wrap: nowrap;
}

/* Each field — separated by subtle borders */
.wpte-trip__search-fields .wpte-trip__adv-field {
    flex: 1;
    min-width: 0;
    padding: 18px 22px;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.wpte-trip__search-fields .wpte-trip__adv-field:last-of-type {
    border-right: none;
}

/* Hide Activities (2nd) and Difficulty (6th) on homepage */
.esn-home .wpte-trip__search-fields .wpte-trip__adv-field:nth-child(2),
.esn-home .wpte-trip__search-fields .wpte-trip__adv-field:nth-child(6) {
    display: none;
}

/* Field icon */
.wpte-trip__search-fields .wpte-trip__adv-field .icon {
    color: var(--esn-gold);
    margin-bottom: 4px;
    display: block;
    line-height: 1;
}
.wpte-trip__search-fields .wpte-trip__adv-field .icon svg {
    fill: var(--esn-gold);
    width: 18px;
    height: 18px;
}

/* Field text input */
.wpte-trip__search-fields .wpte-trip__adv-field .wpte__input {
    border: none;
    padding: 0;
    font-size: 15px;
    font-family: var(--esn-font-body);
    font-weight: 500;
    color: var(--esn-text);
    background: transparent;
    width: 100%;
    outline: none;
    box-shadow: none;
}
.wpte-trip__search-fields .wpte-trip__adv-field .wpte__input::placeholder {
    color: var(--esn-text);
    font-weight: 500;
}

/* Field labels (WTE default) */
.wpte-trip__search-fields .wpte-trip__adv-field label {
    font-family: var(--esn-font-accent);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--esn-text-muted);
    margin-bottom: 4px;
    display: block;
}

/* Range slider text */
.wpte-trip__adv-field .wpte-trip__search-range-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--esn-text);
}

/* Dropdown options panel */
.wpte-trip__search-fields .wpte__select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 100%;
    background: #fff;
    border-radius: var(--esn-radius);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.06);
    z-index: 200;
    padding: 15px 8px;
    margin-top: 4px;
    /* Hidden by default — WTE adds .options-open to reveal */
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px) scaleY(0.8);
    transform-origin: top;
    transition: all 0.3s ease;
}
.wpte-trip__search-fields .wpte-trip__adv-field.options-open .wpte__select-options {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scaleY(1);
}
.wpte-trip__search-fields .wpte__select-options ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    max-height: 315px;
    overflow-y: auto;
}
.wpte-trip__search-fields .wpte__select-options ul li {
    margin: 0 !important;
    padding-left: 0 !important;
}
.wpte-trip__search-fields .wpte__select-options ul li span {
    display: block;
    padding: 11px 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--esn-text);
}
.wpte-trip__search-fields .wpte__select-options ul li span:hover {
    background-color: #f5f5f5;
}
.wpte-trip__search-fields .wpte__select-options ul li.selected > span {
    background-color: var(--esn-primary);
    color: #fff;
    border-radius: 4px;
}

/* Submit button — accent color, flush right */
.wpte-trip__submit-field {
    flex-shrink: 0;
    display: flex;
}
.wpte-trip__search-submit {
    background: var(--esn-gold);
    color: #fff;
    border: none;
    padding: 0 36px;
    height: auto;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: var(--esn-font-accent);
    letter-spacing: 0.3px;
    border-radius: 0 var(--esn-radius-lg) var(--esn-radius-lg) 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wpte-trip__search-submit:hover {
    background: #c19833;
}

/* Kill gap after search on homepage */
.esn-home .esn-trip-search + .esn-intro,
.esn-home .esn-trip-search + .esn-section {
    padding-top: 60px;
}

/* Remove double padding on who-we-are (inner section has its own) */
.esn-who-we-are {
    padding: 0;
}
.esn-who-we-are .sikkim-tour-section {
    border-top: none !important;
    border-bottom: none !important;
}

/* Trip archive/taxonomy pages */
.wp-travel-engine-archive-outer-wrap {
    max-width: var(--esn-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* WTE pagination */
.wte-pagination {
    text-align: center;
    margin-top: 40px;
}
.wte-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--esn-radius);
    border: 1px solid var(--esn-border);
    font-size: 14px;
    text-decoration: none;
    color: var(--esn-text);
    transition: all 0.3s;
}
.wte-pagination .page-numbers.current,
.wte-pagination .page-numbers:hover {
    background: var(--esn-primary);
    color: #fff;
    border-color: var(--esn-primary);
}

/* Trip cards in archive */
.category-trips-single-wrap {
    border-radius: var(--esn-radius-lg);
    overflow: hidden;
    box-shadow: var(--esn-shadow);
    transition: transform 0.3s ease;
}
.category-trips-single-wrap:hover {
    transform: translateY(-3px);
}


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .esn-services-grid,
    .esn-why-grid,
    .esn-counters-grid { grid-template-columns: repeat(2, 1fr); }
    .esn-header__nav { display: none; }
    .esn-header__cta { display: none; }
    .esn-menu-toggle { display: block; }
    body.single-trip .trip-content-area > .row {
        flex-direction: column !important;
    }
    body.single-trip .trip-content-area .content-area,
    body.single-trip .trip-content-area .widget-area {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    #secondary.widget-area { position: static; }
    .esn-blog-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .esn-section { padding: 50px 0; }
    .esn-section-title { font-size: 28px; }
    .esn-page-title { font-size: 28px; }
    .esn-testimonials-slider { grid-template-columns: 1fr; }
    .esn-cta-features__grid { grid-template-columns: 1fr; }
    .esn-image-content__grid { grid-template-columns: 1fr; }
    .esn-trips-grid { grid-template-columns: 1fr; }
    /* Carousel responsive */
    .esn-carousel__slide {
        flex: 0 0 100%;
    }
    .esn-carousel__arrow { display: none; }
    
    .esn-header__inner { height: 70px; }
    .esn-page-banner { padding-top: 65px; }
    .esn-main { margin-top: 65px; }
    .trip-content-area .entry-title { font-size: 24px; }
    /* Search bar responsive */
    .esn-trip-search {
        margin-top: -30px;
    }
    .wpte-trip__search-fields.horizontal {
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .wpte-trip__search-fields .wpte-trip__adv-field {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 14px 18px;
    }
    .wpte-trip__submit-field {
        width: 100%;
    }
    .wpte-trip__search-submit {
        border-radius: 0 0 var(--esn-radius-lg) var(--esn-radius-lg);
        width: 100%;
        min-height: 52px;
    }

    .nav-tab-wrapper .nav-tab {
        padding: 10px 14px; font-size: 12px;
    }
    .nav-tab-wrapper {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        white-space: nowrap;
        gap: 0;
    }
    .nav-tab-wrapper::-webkit-scrollbar {
        display: none;
    }
    .nav-tab-wrapper .nav-tab {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .esn-services-grid,
    .esn-why-grid,
    .esn-counters-grid { grid-template-columns: 1fr; }
    .esn-counter__number { font-size: 36px; }
    .esn-section-title { font-size: 24px; }
}

/* Very narrow screens (366-400px) */
@media (max-width: 400px) {
    .esn-container { padding: 0 16px; }
    .esn-page-title { font-size: 22px; }
    .esn-section-title { font-size: 22px; }
    .esn-btn { padding: 10px 22px; font-size: 13px; }
    .esn-btn--lg { padding: 14px 28px; font-size: 14px; }
    .esn-single-post__content { font-size: 16px; }
    .esn-trip-card__content { padding: 16px; }
    .esn-trip-card__title { font-size: 16px; }
    .esn-blog-card__content { padding: 18px 16px 20px; }
    .esn-testimonial-card { padding: 24px 20px; }
    .esn-single-post { padding: 20px 16px; }
    .esn-comment-form { padding: 18px 14px; }
    .esn-cta-feature { padding: 35px 25px; }
    .esn-service-card { padding: 28px 20px; }
    .esn-page-banner { padding: 50px 0 30px; }
}

/* ================================================================
   GENERIC PAGE TEMPLATE
   ================================================================ */
.esn-page-content {
    padding: 60px 0 80px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--esn-text);
}
.esn-page-featured {
    margin: 0 0 40px;
    border-radius: var(--esn-radius-lg);
    overflow: hidden;
}
.esn-page-featured__img {
    width: 100%;
    height: auto;
    display: block;
}
.esn-page-body h2 {
    font-family: var(--esn-font-heading);
    font-size: 28px;
    color: var(--esn-primary-dark);
    margin: 40px 0 16px;
}
.esn-page-body h3 {
    font-size: 22px;
    color: var(--esn-primary);
    margin: 30px 0 12px;
}
.esn-page-body p {
    margin-bottom: 18px;
}
.esn-page-body {
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.esn-page-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--esn-radius);
}
.esn-page-body ul, .esn-page-body ol {
    padding-left: 24px;
    margin-bottom: 18px;
}
.esn-page-body a {
    color: var(--esn-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.esn-page-body a:hover {
    color: var(--esn-accent);
}
.esn-page-links {
    margin-top: 30px;
    font-family: var(--esn-font-accent);
}


/* ================================================================
   SECTION LABELS & HEADERS (shared)
   ================================================================ */
.esn-section-label {
    display: inline-block;
    font-family: var(--esn-font-accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--esn-accent);
    margin-bottom: 12px;
}
.esn-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}
.esn-section-header .esn-section-title {
    margin-bottom: 16px;
}
.esn-section-desc {
    font-size: 17px;
    color: var(--esn-text-light);
    line-height: 1.7;
}

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

/* Intro */
.esn-about-intro {
    padding: 80px 0;
}
.esn-about-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.esn-about-intro__text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--esn-text-light);
    margin-bottom: 30px;
}
.esn-about-intro__image {
    position: relative;
}
.esn-about-intro__image img {
    width: 100%;
    border-radius: var(--esn-radius-lg);
    box-shadow: var(--esn-shadow-lg);
}
.esn-about-intro__badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--esn-primary);
    color: #fff;
    padding: 20px;
    border-radius: var(--esn-radius-lg);
    text-align: center;
    box-shadow: var(--esn-shadow-lg);
}
.esn-about-intro__badge-number {
    display: block;
    font-family: var(--esn-font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}
.esn-about-intro__badge-text {
    display: block;
    font-family: var(--esn-font-accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Founders */
.esn-about-founders {
    padding: 80px 0;
    background: var(--esn-bg-light);
}
.esn-about-founders__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.esn-about-founders__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.esn-about-founders__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--esn-radius);
}
.esn-about-founders__img--main {
    grid-row: span 2;
}
.esn-about-founders__content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--esn-text-light);
    margin-bottom: 18px;
}
.esn-about-founders__reg {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: var(--esn-radius);
    border-left: 4px solid var(--esn-gold);
    margin: 24px 0;
}
.esn-about-founders__reg i {
    color: var(--esn-gold);
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}
.esn-about-founders__reg p {
    margin: 0;
    font-size: 15px;
}
.esn-about-founders__location {
    color: var(--esn-primary) !important;
    font-weight: 500;
}
.esn-about-founders__location i {
    margin-right: 8px;
    color: var(--esn-accent);
}

/* About Services */
.esn-about-services {
    padding: 80px 0;
}
.esn-about-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.esn-about-service-card {
    background: #fff;
    border-radius: var(--esn-radius-lg);
    padding: 35px 30px;
    box-shadow: var(--esn-shadow);
    transition: transform var(--esn-transition), box-shadow var(--esn-transition);
    border-top: 3px solid transparent;
}
.esn-about-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--esn-shadow-lg);
    border-top-color: var(--esn-primary);
}
.esn-about-service-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--esn-primary-light), var(--esn-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.esn-about-service-card__icon i {
    color: #fff;
    font-size: 22px;
}
.esn-about-service-card__title {
    font-family: var(--esn-font-heading);
    font-size: 20px;
    color: var(--esn-primary-dark);
    margin-bottom: 12px;
}
.esn-about-service-card__desc {
    font-size: 15px;
    color: var(--esn-text-light);
    line-height: 1.7;
}

/* About Gallery Strip */
.esn-about-gallery {
    overflow: hidden;
}
.esn-about-gallery__strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.esn-about-gallery__item {
    height: 280px;
    overflow: hidden;
}
.esn-about-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.esn-about-gallery__item:hover img {
    transform: scale(1.08);
}

/* About Reasons (Why Choose Us) */
.esn-about-reasons {
    padding: 80px 0;
    background: var(--esn-bg-light);
}
.esn-about-reasons__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.esn-about-reason-card {
    background: #fff;
    border-radius: var(--esn-radius-lg);
    padding: 35px 30px;
    text-align: center;
    box-shadow: var(--esn-shadow);
    transition: transform var(--esn-transition);
}
.esn-about-reason-card:hover {
    transform: translateY(-4px);
}
.esn-about-reason-card__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(26, 86, 50, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.esn-about-reason-card__icon i {
    color: var(--esn-primary);
    font-size: 26px;
}
.esn-about-reason-card__title {
    font-family: var(--esn-font-heading);
    font-size: 19px;
    color: var(--esn-primary-dark);
    margin-bottom: 10px;
}
.esn-about-reason-card__desc {
    font-size: 15px;
    color: var(--esn-text-light);
    line-height: 1.7;
}

/* About CTA */
.esn-about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--esn-primary-dark), var(--esn-primary-light));
    color: #fff;
}
.esn-about-cta__inner {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}
.esn-about-cta__title {
    font-family: var(--esn-font-heading);
    font-size: 34px;
    margin-bottom: 20px;
    color: #fff;
}
.esn-about-cta__text {
    font-size: 17px;
    line-height: 1.8;
    opacity: .9;
    margin-bottom: 35px;
}
.esn-about-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.esn-btn--outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: var(--esn-radius);
    color: #fff;
    font-family: var(--esn-font-accent);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--esn-transition);
}
.esn-btn--outline-white:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    color: #fff;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */

/* Contact Cards */
.esn-contact-cards {
    padding: 60px 0 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}
.esn-contact-cards__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.esn-contact-card {
    background: #fff;
    border-radius: var(--esn-radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--esn-shadow-lg);
    transition: transform var(--esn-transition);
}
.esn-contact-card:hover {
    transform: translateY(-4px);
}
.esn-contact-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--esn-primary-light), var(--esn-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.esn-contact-card__icon i {
    color: #fff;
    font-size: 22px;
}
.esn-contact-card__title {
    font-family: var(--esn-font-heading);
    font-size: 18px;
    color: var(--esn-primary-dark);
    margin-bottom: 10px;
}
.esn-contact-card__line {
    font-size: 15px;
    color: var(--esn-text-light);
    margin: 0;
    text-decoration: none;
    display: block;
}
a.esn-contact-card__line {
    color: var(--esn-primary);
    font-weight: 500;
}
a.esn-contact-card__line:hover {
    color: var(--esn-accent);
}
.esn-contact-card__line--secondary {
    font-size: 14px;
    margin-top: 4px;
}

/* Contact Form + Image Grid */
.esn-contact-form-section {
    padding: 80px 0;
}
.esn-contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.esn-contact-form__desc {
    font-size: 16px;
    color: var(--esn-text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}
.esn-contact-form__form .wpcf7-form {
    max-width: 100%;
}
.esn-contact-form__form input[type="text"],
.esn-contact-form__form input[type="email"],
.esn-contact-form__form input[type="tel"],
.esn-contact-form__form textarea,
.esn-contact-form__form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--esn-border);
    border-radius: var(--esn-radius);
    font-family: var(--esn-font-body);
    font-size: 15px;
    transition: border-color var(--esn-transition);
    background: var(--esn-bg-light);
}
.esn-contact-form__form input:focus,
.esn-contact-form__form textarea:focus,
.esn-contact-form__form select:focus {
    border-color: var(--esn-primary);
    outline: none;
    background: #fff;
}
.esn-contact-form__form textarea {
    min-height: 150px;
    resize: vertical;
}
.esn-contact-form__form .wpcf7-submit {
    background: linear-gradient(135deg, var(--esn-primary), var(--esn-primary-light));
    color: #fff;
    padding: 14px 40px;
    border: none;
    border-radius: var(--esn-radius);
    font-family: var(--esn-font-accent);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--esn-transition);
}
.esn-contact-form__form .wpcf7-submit:hover {
    background: linear-gradient(135deg, var(--esn-primary-dark), var(--esn-primary));
    transform: translateY(-2px);
}
.esn-contact-form__form p {
    margin-bottom: 16px;
}
.esn-contact-form__image {
    border-radius: var(--esn-radius-lg);
    overflow: hidden;
    box-shadow: var(--esn-shadow-lg);
    position: sticky;
    top: 100px;
}
.esn-contact-form__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Map */
.esn-contact-map {
    width: 100%;
    height: 400px;
    background: var(--esn-bg-light);
}
.esn-contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ================================================================
   ABOUT + CONTACT RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .esn-about-intro__grid,
    .esn-about-founders__grid,
    .esn-contact-form__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .esn-about-services__grid,
    .esn-about-reasons__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .esn-contact-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .esn-about-gallery__strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .esn-about-intro__badge {
        bottom: auto;
        top: 20px;
        left: auto;
        right: 20px;
    }
    .esn-contact-form__image {
        position: static;
    }
}

@media (max-width: 768px) {
    .esn-about-intro,
    .esn-about-founders,
    .esn-about-services,
    .esn-about-reasons,
    .esn-about-cta,
    .esn-contact-form-section {
        padding: 50px 0;
    }
    .esn-about-services__grid,
    .esn-about-reasons__grid,
    .esn-contact-cards__grid {
        grid-template-columns: 1fr;
    }
    .esn-about-founders__gallery {
        grid-template-columns: 1fr 1fr;
    }
    .esn-about-founders__img--main {
        grid-row: auto;
    }
    .esn-about-gallery__strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .esn-about-gallery__item {
        height: 200px;
    }
    .esn-about-cta__title {
        font-size: 26px;
    }
    .esn-contact-map {
        height: 300px;
    }
    .esn-page-content {
        padding: 40px 0 60px;
    }
}

@media (max-width: 480px) {
    .esn-about-gallery__strip {
        grid-template-columns: 1fr;
    }
    .esn-about-gallery__item {
        height: 180px;
    }
    .esn-about-cta__actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Very narrow About/Contact (366-400px) */
@media (max-width: 400px) {
    .esn-about-intro,
    .esn-about-founders,
    .esn-about-services,
    .esn-about-reasons,
    .esn-about-cta,
    .esn-contact-form-section { padding: 40px 0; }
    .esn-about-service-card,
    .esn-about-reason-card { padding: 28px 20px; }
    .esn-about-cta__title { font-size: 22px; }
    .esn-contact-card { padding: 28px 18px; }
    .esn-contact-form__form input[type="text"],
    .esn-contact-form__form input[type="email"],
    .esn-contact-form__form input[type="tel"],
    .esn-contact-form__form textarea,
    .esn-contact-form__form select { padding: 12px 14px; font-size: 14px; }
}
/* ══════════════════════════════════════════════════════════════
   ENQUIRY MODAL POPUP
   ══════════════════════════════════════════════════════════════ */
.esn-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.esn-modal-overlay.esn-modal-active {
    opacity: 1;
}
.esn-modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 720px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px 40px 30px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.esn-modal-overlay.esn-modal-active .esn-modal-content {
    transform: translateY(0);
}
.esn-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    z-index: 1;
}
.esn-modal-close:hover {
    color: #c0392b;
    background: #f5f5f5;
}

/* Enquiry form in modal — breathe */
.esn-modal-content .wte_enquiry_contact_form-wrap {
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
}
.esn-modal-content .enquiry-form-title,
.esn-modal-content .wte-enquiry-title {
    font-family: var(--esn-font-heading, 'Playfair Display', serif);
    color: var(--esn-primary, #1a5632);
    margin-bottom: 15px;
    font-size: 22px;
}
.esn-modal-content .wte_enquiry_contact_form .row-repeater {
    margin-bottom: 16px;
}
.esn-modal-content .wte_enquiry_contact_form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}
.esn-modal-content .wte_enquiry_contact_form input.input,
.esn-modal-content .wte_enquiry_contact_form select,
.esn-modal-content .wte_enquiry_contact_form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    font-family: var(--esn-font-body, 'Raleway', sans-serif);
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.esn-modal-content .wte_enquiry_contact_form input.input:focus,
.esn-modal-content .wte_enquiry_contact_form select:focus,
.esn-modal-content .wte_enquiry_contact_form textarea:focus {
    outline: none;
    border-color: var(--esn-primary, #1a5632);
    box-shadow: 0 0 0 3px rgba(26, 86, 50, 0.1);
}
.esn-modal-content .enquiry-submit {
    background: var(--esn-primary, #1a5632);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: var(--esn-font-body, 'Raleway', sans-serif);
}
.esn-modal-content .enquiry-submit:hover {
    background: #145028;
}

/* ══════════════════════════════════════════════════════════════
   TRIP REVIEWS SECTION — Multi-Category
   ══════════════════════════════════════════════════════════════ */
.esn-reviews-section {
    padding: 40px 0 20px;
    margin-top: 20px;
    border-top: 2px solid #eee;
}
.esn-reviews-title {
    font-family: var(--esn-font-heading, 'Playfair Display', serif);
    font-size: 24px;
    color: var(--esn-primary, #1a5632);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.esn-reviews-title .fa-star {
    color: #f39c12;
    font-size: 20px;
}
.esn-reviews-summary {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
.esn-reviews-count {
    font-weight: 400;
    color: #777;
    font-size: 14px;
}

/* Rating Breakdown */
.esn-reviews-breakdown {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin: 20px 0 30px;
    padding: 24px;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}
.esn-reviews-overall-badge {
    text-align: center;
    min-width: 100px;
    flex-shrink: 0;
}
.esn-overall-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--esn-primary, #1a5632);
    line-height: 1;
}
.esn-overall-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin: 6px 0 4px;
    font-size: 16px;
}
.esn-overall-label {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.esn-reviews-category-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.esn-category-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}
.esn-cat-label {
    width: 130px;
    font-size: 13px;
    color: #555;
    flex-shrink: 0;
}
.esn-bar-track {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}
.esn-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--esn-primary, #1a5632), #2d8659);
    border-radius: 4px;
    transition: width 0.6s ease;
}
.esn-cat-score {
    width: 28px;
    text-align: right;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

/* Stars display */
.esn-stars-display,
.esn-overall-stars {
    display: flex;
    gap: 2px;
}
.esn-stars-display .fas.fa-star,
.esn-stars-display .fas.fa-star-half-alt,
.esn-overall-stars .fas.fa-star,
.esn-overall-stars .fas.fa-star-half-alt {
    color: #f39c12;
}
.esn-stars-display .far.fa-star,
.esn-overall-stars .far.fa-star {
    color: #ddd;
}

/* Review Items */
.esn-reviews-list {
    margin-bottom: 30px;
}
.esn-review-item {
    padding: 24px 0;
    border-bottom: 1px solid #eee;
}
.esn-review-item:last-child {
    border-bottom: none;
}
.esn-review-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}
.esn-review-avatar img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
}
.esn-review-author {
    font-size: 15px;
    color: #333;
    display: block;
}
.esn-review-stars {
    display: flex;
    gap: 2px;
    font-size: 14px;
    margin: 2px 0;
}
.esn-review-stars .fas.fa-star,
.esn-review-stars .fas.fa-star-half-alt {
    color: #f39c12;
}
.esn-review-stars .far.fa-star {
    color: #ddd;
}
.esn-review-date {
    font-size: 12px;
    color: #999;
}
.esn-review-ratings-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.esn-review-cat-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}
.esn-review-cat-chip .chip-label {
    color: #555;
    font-weight: 500;
}
.esn-review-cat-chip .chip-stars {
    display: flex;
    gap: 1px;
    font-size: 11px;
}
.esn-review-cat-chip .chip-stars .fas.fa-star {
    color: #f39c12;
}
.esn-review-cat-chip .chip-stars .far.fa-star {
    color: #ccc;
}
.esn-review-content p {
    margin: 5px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}
.esn-no-reviews {
    color: #888;
    font-style: italic;
    margin: 15px 0 30px;
}

/* Review Form */
.esn-review-form-wrap {
    background: #f9fafb;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}
.esn-review-form-wrap h4 {
    font-family: var(--esn-font-heading, 'Playfair Display', serif);
    font-size: 20px;
    color: var(--esn-primary, #1a5632);
    margin: 0 0 6px;
}
.esn-review-form-intro {
    color: #666;
    font-size: 14px;
    margin: 0 0 22px;
}
.esn-review-form .esn-form-row {
    margin-bottom: 18px;
}
.esn-review-form .esn-form-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}
.esn-review-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}
.esn-review-form label .required {
    color: #c0392b;
}
.esn-review-form input[type="text"],
.esn-review-form input[type="email"],
.esn-review-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    font-family: var(--esn-font-body, 'Raleway', sans-serif);
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.esn-review-form input:focus,
.esn-review-form textarea:focus {
    outline: none;
    border-color: var(--esn-primary, #1a5632);
    box-shadow: 0 0 0 3px rgba(26, 86, 50, 0.1);
}
.esn-form-row--half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Rating Categories in Form */
.esn-rating-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
}
.esn-rating-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: border-color 0.2s;
}
.esn-rating-category:hover {
    border-color: #ccc;
}
.esn-rating-category.rated {
    border-color: var(--esn-primary, #1a5632);
    background: #f0faf4;
}
.esn-rc-label {
    font-size: 13px;
    font-weight: 500;
    color: #444;
    white-space: nowrap;
}

/* Star Rating Input */
.esn-star-rating-input {
    display: flex;
    gap: 3px;
    font-size: 20px;
}
.esn-star-rating-input .esn-star {
    cursor: pointer;
    color: #ddd;
    transition: color 0.15s, transform 0.15s;
}
.esn-star-rating-input .esn-star:hover,
.esn-star-rating-input .esn-star.hovered {
    color: #f39c12;
    transform: scale(1.1);
}
.esn-star-rating-input .esn-star.active {
    color: #f39c12;
}
.esn-star-rating-input .esn-star .fa-star {
    pointer-events: none;
}

/* Submit Button */
.esn-review-submit {
    background: var(--esn-primary, #1a5632);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    font-family: var(--esn-font-body, 'Raleway', sans-serif);
}
.esn-review-submit:hover {
    background: #145028;
    transform: translateY(-1px);
}
.esn-review-submit:active {
    transform: translateY(0);
}
.esn-review-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Review Message */
.esn-review-message {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
}
.esn-review-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.esn-review-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
    .esn-form-row--half {
        grid-template-columns: 1fr;
    }
    .esn-rating-categories {
        grid-template-columns: 1fr;
    }
    .esn-review-form-wrap {
        padding: 20px;
    }
    .esn-modal-content {
        padding: 30px 20px 20px;
        max-height: 90vh;
    }
    .esn-reviews-title {
        font-size: 20px;
    }
    .esn-reviews-breakdown {
        flex-direction: column;
        align-items: center;
    }
    .esn-reviews-category-bars {
        width: 100%;
    }
    .esn-cat-label {
        width: 100px;
    }
    .esn-review-ratings-grid {
        gap: 6px;
    }
}
@media (max-width: 480px) {
    .esn-review-cat-chip {
        font-size: 11px;
        padding: 3px 8px;
    }
    .esn-reviews-breakdown {
        padding: 18px 14px;
    }
    .esn-review-form-wrap {
        padding: 18px 14px;
    }
    .esn-modal-content {
        padding: 24px 16px 18px;
    }
}

/* ═══════════════════════════════════════════════
   SINGLE BLOG POST — Enhanced Styles
   ═══════════════════════════════════════════════ */

/* Share Buttons */
.esn-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    margin: 30px 0;
    border-top: 1px solid var(--esn-border);
    border-bottom: 1px solid var(--esn-border);
}
.esn-share__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--esn-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.esn-share__buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.esn-share__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.esn-share__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: #fff;
}
.esn-share__btn--facebook { background: #1877f2; }
.esn-share__btn--twitter { background: #000; }
.esn-share__btn--linkedin { background: #0a66c2; }
.esn-share__btn--whatsapp { background: #25d366; }
.esn-share__btn--email { background: var(--esn-primary); }

/* Author Box — Rounded, spacious */
.esn-author-box {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px;
    margin: 35px 0;
    background: linear-gradient(135deg, #f8faf9 0%, #f0f4f2 100%);
    border-radius: 16px;
    border: 1px solid rgba(26,86,50,0.08);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.esn-author-box__avatar {
    flex-shrink: 0;
}
.esn-author-box__avatar img {
    width: 96px !important;
    height: 96px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--esn-primary);
    box-shadow: 0 2px 8px rgba(26,86,50,0.15);
}
.esn-author-box__info {
    flex: 1;
    min-width: 0;
}
.esn-author-box__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--esn-primary);
    margin-bottom: 4px;
}
.esn-author-box__name {
    font-size: 20px;
    font-family: var(--esn-font-heading);
    font-weight: 700;
    color: var(--esn-text);
    margin: 0 0 10px;
}
.esn-author-box__bio {
    font-size: 15px;
    line-height: 1.7;
    color: var(--esn-text-light);
    margin: 0 0 12px;
}
.esn-author-box__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--esn-primary);
}
.esn-author-box__link i {
    margin-left: 4px;
    transition: margin-left 0.2s ease;
}
.esn-author-box__link:hover i {
    margin-left: 8px;
}

/* Post Navigation */
.esn-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 35px 0;
}
.esn-post-nav__link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid var(--esn-border);
    border-radius: var(--esn-radius-lg);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.esn-post-nav__link:hover {
    border-color: var(--esn-primary);
    box-shadow: 0 4px 16px rgba(26,86,50,0.1);
}
.esn-post-nav__link--next {
    text-align: right;
}
.esn-post-nav__direction {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--esn-primary);
}
.esn-post-nav__title {
    font-size: 15px;
    font-weight: 500;
    color: var(--esn-text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ─── Comments Section ─── */
.esn-comments {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--esn-border);
}
.esn-comments__title {
    font-size: 24px;
    font-family: var(--esn-font-heading);
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--esn-text);
}
.esn-comments__title i {
    color: var(--esn-primary);
    margin-right: 10px;
}
.esn-comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}
.esn-comment-list .comment {
    list-style: none;
}
.esn-comment-list .comment-body {
    display: flex;
    gap: 16px;
    padding: 24px;
    margin-bottom: 16px;
    background: #fff;
    border: 1px solid var(--esn-border);
    border-radius: var(--esn-radius-lg);
    transition: box-shadow 0.2s ease;
}
.esn-comment-list .comment-body:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.esn-comment-list .comment-author {
    flex-shrink: 0;
}
.esn-comment-list .comment-author img {
    border-radius: 50%;
    width: 56px;
    height: 56px;
}
.esn-comment-list .comment-author .fn {
    display: block;
    font-weight: 600;
    color: var(--esn-text);
    font-size: 15px;
}
.esn-comment-list .comment-author .says {
    display: none;
}
.esn-comment-list .comment-metadata {
    font-size: 13px;
    color: var(--esn-text-muted);
    margin-bottom: 10px;
}
.esn-comment-list .comment-metadata a {
    color: var(--esn-text-muted);
}
.esn-comment-list .comment-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--esn-text-light);
    margin-bottom: 8px;
}
.esn-comment-list .reply a {
    font-size: 13px;
    font-weight: 600;
    color: var(--esn-primary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.esn-comment-list .children {
    list-style: none;
    padding-left: 40px;
    margin-top: 8px;
}

/* Comment Reply Title */
.esn-comments__reply-title {
    font-size: 22px;
    font-family: var(--esn-font-heading);
    font-weight: 700;
    color: var(--esn-text);
    margin-bottom: 20px;
}
.esn-comments__reply-title i {
    color: var(--esn-primary);
    margin-right: 8px;
}

/* Comment Form */
.esn-comment-form {
    background: #fff;
    border: 1px solid var(--esn-border);
    border-radius: var(--esn-radius-lg);
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.esn-comment-form__notes {
    font-size: 14px;
    color: var(--esn-text-muted);
    margin-bottom: 24px;
}
.esn-comment-form__notes .required {
    color: #c0392b;
}
.esn-comment-form .comment-form-comment,
.esn-comment-form .comment-form-author,
.esn-comment-form .comment-form-email,
.esn-comment-form .comment-form-url {
    margin-bottom: 20px;
}
.esn-comment-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--esn-text);
    margin-bottom: 8px;
}
.esn-comment-form input[type="text"],
.esn-comment-form input[type="email"],
.esn-comment-form input[type="url"],
.esn-comment-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #dde2e0;
    border-radius: var(--esn-radius);
    font-family: var(--esn-font-body);
    font-size: 15px;
    color: var(--esn-text);
    background: #fafbfa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}
.esn-comment-form input[type="text"]:focus,
.esn-comment-form input[type="email"]:focus,
.esn-comment-form input[type="url"]:focus,
.esn-comment-form textarea:focus {
    border-color: var(--esn-primary);
    box-shadow: 0 0 0 3px rgba(26,86,50,0.1);
    background: #fff;
}
.esn-comment-form textarea {
    min-height: 160px;
    resize: vertical;
}
.esn-comment-form .form-submit {
    margin-top: 8px;
}
.esn-comment-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--esn-primary);
    color: #fff;
    border: none;
    border-radius: var(--esn-radius);
    font-family: var(--esn-font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.esn-comment-form__submit:hover {
    background: var(--esn-primary-dark);
    transform: translateY(-1px);
}
.esn-comment-form .comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
    font-size: 14px;
    color: var(--esn-text-light);
}
.esn-comment-form .comment-form-cookies-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--esn-primary);
}

/* Related Posts */
.esn-related-posts {
    padding: 70px 0;
    background: var(--esn-bg-light);
}
.esn-related-posts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* ─── Blog Card Enhancements (distinct cards) ─── */
.esn-blog-card {
    background: #fff;
    border-radius: var(--esn-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}
.esn-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.esn-blog-card__image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.esn-blog-card:hover .esn-blog-card__image img {
    transform: scale(1.05);
}
.esn-blog-card__content {
    padding: 24px;
}
.esn-blog-card__content h3 {
    font-size: 18px;
    font-family: var(--esn-font-heading);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.esn-blog-card__readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--esn-primary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: gap 0.2s ease;
}
.esn-blog-card__readmore:hover {
    gap: 10px;
}

/* ─── Single Post Responsive ─── */
@media (max-width: 768px) {
    .esn-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .esn-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
    }
    .esn-post-nav {
        grid-template-columns: 1fr;
    }
    .esn-post-nav__link--next {
        text-align: left;
    }
    .esn-related-posts__grid {
        grid-template-columns: 1fr;
    }
    .esn-comment-form {
        padding: 20px;
    }
    .esn-comment-list .children {
        padding-left: 16px;
    }
}

@media (max-width: 400px) {
    .esn-author-box { padding: 20px 16px; }
    .esn-author-box__avatar img {
        width: 72px !important;
        height: 72px !important;
    }
    .esn-author-box__name { font-size: 18px; }
    .esn-post-nav__link { padding: 16px 18px; }
    .esn-share__btn { width: 38px; height: 38px; font-size: 14px; }
    .esn-comment-list .comment-body { padding: 16px; gap: 12px; }
    .esn-comment-list .comment-author img { width: 44px; height: 44px; }
}


/* Full-Width Blog Layout (no sidebar) */
.esn-blog-fullwidth {
    padding: 50px 0;
}

/* Listing variant uses full container width */
.esn-blog-fullwidth--listing {
    max-width: 100%;
}

/* Blog Grid — 3 columns on listing pages */


@media (max-width: 1024px) {
    
}
@media (max-width: 640px) {
    
}


/* Blog listing page — force full-width, hide sidebar */
.page-template-page-templatestemplate-blog-php .esn-blog-layout {
    display: block;
}
.page-template-page-templatestemplate-blog-php .esn-blog-layout__sidebar {
    display: none;
}
.page-template-page-templatestemplate-blog-php .esn-blog-layout__main {
    max-width: 100%;
}

/* Archive/category pages — also full-width */
body.archive .esn-blog-layout,
body.search .esn-blog-layout {
    display: block;
}
body.archive .esn-blog-layout__sidebar,
body.search .esn-blog-layout__sidebar {
    display: none;
}

/* Single Post Card */
.esn-single-post {
    background: #fff;
    border-radius: var(--esn-radius-lg);
    padding: 40px 48px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

@media (max-width: 768px) {
    .esn-single-post {
        padding: 24px 20px;
        border-radius: var(--esn-radius);
    }
}


/* =============================================
   BLOG CARD — Premium Design
   ============================================= */
.esn-blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
    transition: transform 0.35s cubic-bezier(.22,.61,.36,1), box-shadow 0.35s cubic-bezier(.22,.61,.36,1);
    display: flex;
    flex-direction: column;
}
.esn-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26,86,50,0.12), 0 4px 12px rgba(0,0,0,0.06);
}

/* Image */
.esn-blog-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}
.esn-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.22,.61,.36,1);
}
.esn-blog-card:hover .esn-blog-card__image img {
    transform: scale(1.06);
}
/* Gradient overlay on image */
.esn-blog-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.35) 0%, transparent 50%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.esn-blog-card:hover .esn-blog-card__image::after {
    opacity: 0.7;
}

/* Date badge */
.esn-blog-card__date {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--esn-text);
    padding: 8px 12px;
    border-radius: 10px;
    text-align: center;
    line-height: 1.15;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.esn-blog-card__day {
    display: block;
    font-size: 22px;
    font-weight: 800;
    font-family: var(--esn-font-heading);
    color: var(--esn-primary);
}
.esn-blog-card__month {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--esn-text-muted);
}

/* Content */
.esn-blog-card__content {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Meta — single line, truncated */
.esn-blog-card__meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--esn-text-muted);
    margin-bottom: 12px;
    overflow: hidden;
}
.esn-blog-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 50%;
}
.esn-blog-card__meta span:first-child {
    flex-shrink: 0;
    max-width: none;
}
.esn-blog-card__meta i {
    font-size: 11px;
    color: var(--esn-primary-light);
    flex-shrink: 0;
}
.esn-blog-card__meta a {
    color: inherit;
}

/* Title */
.esn-blog-card__content h3 {
    font-size: 18px;
    font-family: var(--esn-font-heading);
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.esn-blog-card__content h3 a {
    color: var(--esn-text);
    transition: color 0.2s ease;
}
.esn-blog-card__content h3 a:hover {
    color: var(--esn-primary);
}

/* Excerpt */
.esn-blog-card__content p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--esn-text-light);
    margin: 0 0 auto;
    padding-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More */
.esn-blog-card__readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--esn-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: auto;
    transition: gap 0.25s ease, color 0.2s ease;
}
.esn-blog-card__readmore:hover {
    gap: 12px;
    color: var(--esn-primary-dark);
}
.esn-blog-card__readmore i {
    font-size: 11px;
    transition: transform 0.25s ease;
}
.esn-blog-card__readmore:hover i {
    transform: translateX(2px);
}

/* Blog Grid */
.esn-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 1024px) {
    .esn-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 640px) {
    .esn-blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .esn-blog-card__content {
        padding: 20px 20px 24px;
    }
}

@media (max-width: 400px) {
    .esn-blog-grid { gap: 16px; }
    .esn-blog-card__content { padding: 18px 16px 20px; }
    .esn-blog-card__content h3 { font-size: 16px; }
}


/* Mobile Logo in Drawer */
.esn-mobile-drawer__logo {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--esn-border);
}
.esn-mobile-drawer__logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    border: 2px solid rgba(26,86,50,0.1);
}

/* Header Logo Responsive */
@media (max-width: 1024px) {
    .esn-header__logo img {
        width: 100px;
        height: 100px;
        top: 18px;
        padding: 4px;
    }
    .esn-header.scrolled .esn-header__logo img {
        width: 58px;
        height: 58px;
        top: 0;
    }
}

@media (max-width: 480px) {
    .esn-page-banner { padding-top: 40px; }
    .esn-header__logo img {
        width: 72px;
        height: 72px;
        top: 8px;
        padding: 3px;
    }
    .esn-header.scrolled .esn-header__logo img {
        width: 50px;
        height: 50px;
        top: 0;
    }
}

@media (max-width: 400px) {
    .esn-header__logo img {
        width: 60px;
        height: 60px;
        top: 5px;
        padding: 2px;
        border-width: 2px;
    }
    .esn-header.scrolled .esn-header__logo img {
        width: 44px;
        height: 44px;
    }
    .esn-header__inner { height: 60px; }
    .esn-header.scrolled .esn-header__inner { height: 56px; }
    .esn-main { margin-top: 60px; }
}

/* ===== Destinations Page ===== */
.esn-destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.esn-dest-card {
    background: #fff;
    border-radius: var(--esn-radius-lg);
    overflow: hidden;
    box-shadow: var(--esn-shadow);
    transition: transform var(--esn-transition), box-shadow var(--esn-transition);
}
.esn-dest-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--esn-shadow-lg);
}
.esn-dest-card__image {
    position: relative;
    overflow: hidden;
}
.esn-dest-card__image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--esn-transition);
}
.esn-dest-card:hover .esn-dest-card__image img {
    transform: scale(1.05);
}
.esn-dest-card__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--esn-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--esn-font-accent);
}
.esn-dest-card__content {
    padding: 20px;
}
.esn-dest-card__title {
    font-size: 18px;
    margin-bottom: 8px;
    font-family: var(--esn-font-heading);
    line-height: 1.3;
}
.esn-dest-card__title a {
    color: var(--esn-text);
    text-decoration: none;
    transition: color var(--esn-transition);
}
.esn-dest-card__title a:hover {
    color: var(--esn-primary);
}
.esn-dest-card__desc {
    font-size: 14px;
    color: var(--esn-text-light);
    line-height: 1.6;
    margin: 0 0 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.esn-dest-card__footer {
    padding-top: 15px;
    border-top: 1px solid var(--esn-border);
}
@media (max-width: 768px) {
    .esn-destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .esn-dest-card__image img {
        height: 200px;
    }
}
@media (max-width: 480px) {
    .esn-destinations-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .esn-dest-card__image img {
        height: 200px;
    }
}

@media (max-width: 400px) {
    .esn-dest-card__content { padding: 16px; }
    .esn-dest-card__title { font-size: 16px; }
}

/* WTE taxonomy archive */
.tax-destination #wp-travel-trip-wrapper > .page-header,
.tax-activities #wp-travel-trip-wrapper > .page-header,
.tax-trip_types #wp-travel-trip-wrapper > .page-header,
.tax-difficulty #wp-travel-trip-wrapper > .page-header {
    display: none;
}
.tax-destination .wp-travel-inner-wrapper,
.tax-activities .wp-travel-inner-wrapper,
.tax-trip_types .wp-travel-inner-wrapper,
.tax-difficulty .wp-travel-inner-wrapper {
    padding-top: 40px;
}

.esn-tax-description {
    padding: 50px 0 40px;
}
.esn-tax-description p {
    font-size: 18px;
    line-height: 1.9;
    color: #333;
    margin: 0 0 12px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.esn-tax-description p:last-child {
    margin-bottom: 0;
}
