/* ==========================================================================
   ELITE STAY HOTELS — Design System
   Primary #0E3B5A | Secondary #14B8A6 | Accent #F59E0B
   Headings: Poppins | Body: Inter
   ========================================================================== */

:root {
    --esh-primary: #0E3B5A;
    --esh-primary-rgb: 14, 59, 90;
    --esh-secondary: #14B8A6;
    --esh-secondary-rgb: 20, 184, 166;
    --esh-accent: #F59E0B;
    --esh-accent-rgb: 245, 158, 11;
    --esh-bg: #F8FAFC;
    --esh-dark: #071A2E;
    --esh-text: #1E293B;
    --esh-card: #FFFFFF;
    --esh-muted: #64748B;
    --esh-border: rgba(14, 59, 90, 0.10);
    --esh-gradient: linear-gradient(135deg, #0E3B5A 0%, #14B8A6 100%);
    --esh-gradient-amber: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    --esh-shadow-sm: 0 4px 14px rgba(7, 26, 46, 0.06);
    --esh-shadow-md: 0 12px 32px rgba(7, 26, 46, 0.10);
    --esh-shadow-lg: 0 24px 60px rgba(7, 26, 46, 0.16);
    --esh-radius-sm: 12px;
    --esh-radius-md: 18px;
    --esh-radius-lg: 28px;
    --esh-nav-h: 84px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--esh-text);
    background: var(--esh-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.esh-font-display {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--esh-dark);
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

:focus-visible {
    outline: 3px solid var(--esh-secondary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

.esh-container {
    max-width: 1280px;
}

.esh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--esh-secondary);
    background: rgba(var(--esh-secondary-rgb), 0.09);
    padding: 7px 16px;
    border-radius: 99px;
    margin-bottom: 16px;
}

.esh-eyebrow i {
    font-size: .9rem;
}

.esh-section-title {
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    margin-bottom: 14px;
}

.esh-section-sub {
    color: var(--esh-muted);
    font-size: 1.05rem;
    max-width: 620px;
}

.esh-section {
    padding: 96px 0;
}

@media(max-width:767px) {
    .esh-section {
        padding: 64px 0;
    }
}

/* ---------- Buttons ---------- */
.esh-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    border-radius: 99px;
    padding: 14px 30px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
    cursor: pointer;
}

.esh-btn:active {
    transform: scale(.97);
}

.esh-btn-primary {
    background: var(--esh-primary);
    color: #fff;
    box-shadow: var(--esh-shadow-sm);
}

.esh-btn-primary:hover {
    background: #0c3350;
    color: #fff;
    box-shadow: var(--esh-shadow-md);
    transform: translateY(-2px);
}

.esh-btn-cta {
    background: var(--esh-gradient-amber);
    color: #071A2E;
    box-shadow: 0 10px 26px rgba(var(--esh-accent-rgb), 0.35);
}

.esh-btn-cta:hover {
    color: #071A2E;
    box-shadow: 0 14px 34px rgba(var(--esh-accent-rgb), 0.45);
    transform: translateY(-2px);
}

.esh-btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .55);
    color: #fff;
}

.esh-btn-outline:hover {
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

.esh-btn-ghost {
    background: rgba(var(--esh-primary-rgb), 0.06);
    color: var(--esh-primary);
}

.esh-btn-ghost:hover {
    background: rgba(var(--esh-primary-rgb), 0.12);
    color: var(--esh-primary);
}

.esh-btn-sm {
    padding: 10px 20px;
    font-size: .85rem;
}

.esh-btn-block {
    width: 100%;
}

/* ripple */
.esh-btn .esh-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: esh-ripple .6s linear;
    background: rgba(255, 255, 255, .55);
    pointer-events: none;
}

@keyframes esh-ripple {
    to {
        transform: scale(3);
        opacity: 0;
    }
}

/* ---------- Header ---------- */
.esh-topbar {
    background: var(--esh-dark);
    color: #cbd8e2;
    font-size: .83rem;
    padding: 8px 0;
}

.esh-topbar a {
    color: #fff;
    font-weight: 600;
}

.esh-topbar .esh-topbar-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
}

.esh-topbar .esh-topbar-phone i {
    color: var(--esh-secondary);
}

.esh-navbar {
    height: var(--esh-nav-h);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid rgba(14, 59, 90, 0.08);
    transition: box-shadow .3s ease, background .3s ease;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.esh-navbar.esh-scrolled {
    box-shadow: 0 8px 30px rgba(7, 26, 46, 0.10);
    background: rgba(255, 255, 255, 0.92);
}

.esh-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--esh-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.esh-logo .esh-logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--esh-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
    box-shadow: var(--esh-shadow-sm);
}

.esh-logo span {
    color: var(--esh-secondary);
}

.esh-nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: .93rem;
    color: var(--esh-text);
    padding: 10px 16px !important;
    position: relative;
}

.esh-nav-link::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 2px;
    background: var(--esh-secondary);
    transform: scaleX(0);
    transition: transform .25s ease;
    transform-origin: left;
}

.esh-nav-link:hover::after,
.esh-nav-link.active::after {
    transform: scaleX(1);
}

.esh-nav-link.active {
    color: var(--esh-primary);
}

/* ---------- Hero ---------- */
.esh-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: var(--esh-dark);
    overflow: hidden;
}

.esh-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.esh-hero-media video,
.esh-hero-media .esh-hero-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.esh-hero-fallback {
    background:
        radial-gradient(circle at 15% 20%, rgba(20, 184, 166, .35), transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(245, 158, 11, .25), transparent 40%),
        linear-gradient(135deg, #0E3B5A 0%, #071A2E 60%, #0a2c46 100%);
}

.esh-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 26, 46, .55) 0%, rgba(7, 26, 46, .78) 100%);
    z-index: 1;
}

.esh-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.esh-hero-content h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.12;
}

.esh-hero-content h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #5EEAD4, #F59E0B);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.esh-hero-content p.lead {
    color: rgba(255, 255, 255, .82);
    font-size: 1.15rem;
    max-width: 560px;
}

.esh-floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, .18);
    z-index: 1;
    animation: esh-float 7s ease-in-out infinite;
}

@keyframes esh-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-22px) rotate(8deg);
    }
}

/* Search box */
.esh-search-card {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--esh-radius-lg);
    padding: 26px;
    box-shadow: var(--esh-shadow-lg);
    position: relative;
    z-index: 3;
}

.esh-search-field {
    background: rgba(255, 255, 255, .94);
    border-radius: var(--esh-radius-sm);
    padding: 12px 16px;
    height: 100%;
}

.esh-search-field label {
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--esh-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.esh-search-field label i {
    color: var(--esh-secondary);
}

.esh-search-field input,
.esh-search-field select {
    border: none;
    background: transparent;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--esh-dark);
    padding: 2px 0;
}

.esh-search-field input:focus,
.esh-search-field select:focus {
    outline: none;
    box-shadow: none;
}

/* Trust badges */
.esh-trust-strip {
    position: relative;
    z-index: 2;
}

.esh-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.esh-trust-item i {
    font-size: 1.35rem;
    color: var(--esh-secondary);
}

.esh-trust-item span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .92rem;
}

/* ---------- Cards: media placeholder ---------- */
.esh-media-ph {
    position: relative;
    overflow: hidden;
    border-radius: var(--esh-radius-md) var(--esh-radius-md) 0 0;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .85);
}

.esh-media-ph i {
    font-size: 2.6rem;
    opacity: .85;
}

.esh-media-ph::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 26, 46, 0) 40%, rgba(7, 26, 46, .55) 100%);
}

.esh-ph-1 {
    background: linear-gradient(135deg, #0E3B5A, #14B8A6);
  
}

.esh-ph-2 {
    background: linear-gradient(135deg, #14532d, #14B8A6);
}

.esh-ph-3 {
    background: linear-gradient(135deg, #7c2d12, #F59E0B);
}

.esh-ph-4 {
    background: linear-gradient(135deg, #1e293b, #0E3B5A);
}

.esh-ph-5 {
    background: linear-gradient(135deg, #0f172a, #334155);
}

.esh-ph-6 {
    background: linear-gradient(135deg, #052e2b, #14B8A6);
}

.esh-ph-7 {
    background: linear-gradient(135deg, #4a044e, #0E3B5A);
}

.esh-ph-8 {
    background: linear-gradient(135deg, #78350f, #F59E0B);
}

.esh-ph-9 {
    background: linear-gradient(135deg, #082f49, #14B8A6);
}

/* ---------- Destination cards ---------- */
.esh-dest-card {
    border-radius: var(--esh-radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--esh-shadow-sm);
    transition: transform .35s ease, box-shadow .35s ease;
    height: 320px;
    display: flex;
    align-items: flex-end;
}

.esh-dest-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--esh-shadow-lg);
}

.esh-dest-card .esh-dest-bg {
    position: absolute;
    inset: 0;
    transition: transform .5s ease;
}

.esh-dest-card:hover .esh-dest-bg {
    transform: scale(1.08);
}

.esh-dest-card .esh-dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 26, 46, 0) 30%, rgba(7, 26, 46, .85) 100%);
}

.esh-dest-card .esh-dest-body {
    position: relative;
    z-index: 2;
    padding: 22px;
    color: #fff;
    width: 100%;
}

.esh-dest-card h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 2px;
}

.esh-dest-card .esh-dest-count {
    font-size: .82rem;
    color: rgba(255, 255, 255, .75);
}

.esh-dest-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    background: rgba(255, 255, 255, .92);
    color: var(--esh-primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .78rem;
    padding: 5px 12px;
    border-radius: 99px;
}

/* ---------- Hotel Cards ---------- */
.esh-hotel-card {
    background: var(--esh-card);
    border-radius: var(--esh-radius-md);
    overflow: hidden;
    box-shadow: var(--esh-shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
    border: 1px solid var(--esh-border);
    height: 100%;
}

.esh-hotel-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--esh-shadow-lg);
}

.esh-hotel-card .esh-rating-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, .95);
    border-radius: 99px;
    padding: 5px 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    color: var(--esh-primary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.esh-hotel-card .esh-rating-badge i {
    color: var(--esh-accent);
}

.esh-hotel-card .esh-fav-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--esh-primary);
    border: none;
    transition: .2s;
}

.esh-hotel-card .esh-fav-btn:hover {
    color: #ef4444;
    transform: scale(1.1);
}

.esh-hotel-card .esh-hotel-body {
    padding: 20px;
}

.esh-hotel-card h3 {
    font-size: 1.08rem;
    margin-bottom: 4px;
}

.esh-hotel-card .esh-hotel-loc {
    color: var(--esh-muted);
    font-size: .86rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.esh-hotel-card .esh-hotel-loc i {
    color: var(--esh-secondary);
}

.esh-amenity-chip {
    font-size: .72rem;
    color: var(--esh-primary);
    background: rgba(var(--esh-primary-rgb), .06);
    padding: 4px 10px;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 0 6px 6px 0;
}

.esh-hotel-price {
    border-top: 1px dashed var(--esh-border);
    padding-top: 14px;
    margin-top: 14px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.esh-hotel-price .esh-price-old {
    font-size: .8rem;
    color: var(--esh-muted);
    text-decoration: line-through;
}

.esh-hotel-price .esh-price-new {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--esh-primary);
}

.esh-hotel-price .esh-price-per {
    font-size: .72rem;
    color: var(--esh-muted);
}

/* ---------- Why choose us / icon boxes ---------- */
.esh-icon-box {
    background: var(--esh-card);
    border-radius: var(--esh-radius-md);
    padding: 14px 26px;
    box-shadow: var(--esh-shadow-sm);
    height: 20%;
    border: 1px solid var(--esh-border);
    transition: transform .3s ease, box-shadow .3s ease;
}

.esh-icon-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--esh-shadow-md);
}

.esh-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--esh-gradient);
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.esh-icon-box h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.esh-icon-box p {
    color: var(--esh-muted);
    font-size: .92rem;
    margin: 0;
}

/* ---------- Deals ---------- */
.esh-deal-card {
    border-radius: var(--esh-radius-md);
    padding: 28px;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--esh-shadow-sm);
    transition: transform .3s ease;
}

.esh-deal-card:hover {
    transform: translateY(-6px);
}

.esh-deal-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(6px);
    padding: 5px 14px;
    border-radius: 99px;
    font-size: .75rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.esh-deal-card h3 {
    color: #fff;
    font-size: 1.3rem;
}

/* ---------- Amenities strip ---------- */
.esh-amenity-item {
    text-align: center;
    padding: 22px 10px;
}

.esh-amenity-item i {
    font-size: 1.9rem;
    color: var(--esh-secondary);
    margin-bottom: 10px;
    display: block;
}

.esh-amenity-item span {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: .85rem;
}

/* ---------- Testimonials ---------- */
.esh-review-card {
    background: rgba(255, 255, 255, .65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: var(--esh-radius-md);
    padding: 26px;
    box-shadow: var(--esh-shadow-sm);
    height: 100%;
}

.esh-review-stars i {
    color: var(--esh-accent);
    font-size: .9rem;
}

.esh-review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--esh-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.esh-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    color: var(--esh-muted);
}

/* ---------- Counters ---------- */
.esh-counter-box {
    text-align: center;
    color: #fff;
}

.esh-counter {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
}

.esh-counter-label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .75);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* ---------- CTA banner ---------- */
.esh-cta-banner {
    background: var(--esh-gradient);
    border-radius: var(--esh-radius-lg);
    padding: 56px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.esh-cta-banner::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    top: -140px;
    right: -100px;
}

.esh-cta-banner h2 {
    color: #fff;
}

.esh-cta-phone {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #fff;
}

/* ---------- FAQ ---------- */
.esh-accordion .accordion-item {
    border: 1px solid var(--esh-border);
    border-radius: var(--esh-radius-sm) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.esh-accordion .accordion-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--esh-dark);
    background: #fff;
    padding: 18px 22px;
}

.esh-accordion .accordion-button:not(.collapsed) {
    color: var(--esh-primary);
    background: rgba(var(--esh-secondary-rgb), .06);
    box-shadow: none;
}

.esh-accordion .accordion-button:focus {
    box-shadow: none;
}

.esh-accordion .accordion-button::after {
    filter: hue-rotate(150deg);
}

.esh-accordion .accordion-body {
    color: var(--esh-muted);
    padding: 0 22px 20px;
}

/* ---------- Footer ---------- */
.esh-footer {
    background: var(--esh-dark);
    color: rgba(255, 255, 255, .7);
}

.esh-footer h5 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
}

.esh-footer a {
    color: rgba(255, 255, 255, .65);
    font-size: .92rem;
    transition: .2s;
    line-height: 2.2;
}

.esh-footer a:hover {
    color: var(--esh-secondary);
    padding-left: 4px;
}

.esh-footer-brand p {
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
}

.esh-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: .25s;
}

.esh-social-icon:hover {
    background: var(--esh-secondary);
    transform: translateY(-3px);
}

.esh-newsletter input {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    border-radius: 99px 0 0 99px;
    padding: 12px 18px;
}

.esh-newsletter input::placeholder {
    color: rgba(255, 255, 255, .45);
}

.esh-newsletter button {
    border-radius: 0 99px 99px 0;
}

.esh-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
}

.esh-footer-bottom a {
    color: rgba(255, 255, 255, .5);
}

/* ---------- Page header (inner pages) ---------- */
.esh-page-header {
    background: var(--esh-gradient);
    padding: 150px 0 70px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.esh-page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, .25), transparent 45%);
}

.esh-page-header h1 {
    color: #fff;
    position: relative;
    z-index: 1;
}

.esh-breadcrumb {
    position: relative;
    z-index: 1;
    font-size: .9rem;
    color: rgba(255, 255, 255, .75);
}

.esh-breadcrumb a {
    color: #fff;
}

/* ---------- Filters sidebar ---------- */
.esh-filter-card {
    background: #fff;
    border-radius: var(--esh-radius-md);
    padding: 24px;
    box-shadow: var(--esh-shadow-sm);
    border: 1px solid var(--esh-border);
}

.esh-filter-card h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 14px;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--esh-primary);
}

.esh-filter-card .form-check {
    margin-bottom: 8px;
}

.esh-filter-card .form-check-input:checked {
    background-color: var(--esh-secondary);
    border-color: var(--esh-secondary);
}

/* ---------- Forms ---------- */
.esh-form-control {
    border: 1.5px solid var(--esh-border);
    border-radius: var(--esh-radius-sm);
    padding: 13px 16px;
    font-family: 'Inter', sans-serif;
    transition: .2s;
}

.esh-form-control:focus {
    border-color: var(--esh-secondary);
    box-shadow: 0 0 0 4px rgba(var(--esh-secondary-rgb), .12);
    outline: none;
}

.esh-form-card {
    background: #fff;
    border-radius: var(--esh-radius-lg);
    padding: 40px;
    box-shadow: var(--esh-shadow-md);
}

label.esh-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: 6px;
    color: var(--esh-dark);
}

/* ---------- Values / about ---------- */
.esh-value-card {
    border-left: 3px solid var(--esh-secondary);
    padding: 6px 0 6px 20px;
    margin-bottom: 22px;
}

/* ---------- Skeleton loading ---------- */
.esh-skeleton {
    position: relative;
    overflow: hidden;
    background: #e2e8f0;
}

.esh-skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .6), transparent);
    animation: esh-shimmer 1.4s infinite;
}

@keyframes esh-shimmer {
    100% {
        transform: translateX(100%);
    }

    0% {
        transform: translateX(-100%);
    }
}

/* ---------- Utilities / animations ---------- */
.esh-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.esh-fade-up.esh-in {
    opacity: 1;
    transform: translateY(0);
}

.esh-zoom {
    opacity: 0;
    transform: scale(.92);
    transition: opacity .7s ease, transform .7s ease;
}

.esh-zoom.esh-in {
    opacity: 1;
    transform: scale(1);
}

.esh-slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s ease, transform .7s ease;
}

.esh-slide-left.esh-in {
    opacity: 1;
    transform: translateX(0);
}

.esh-slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s ease, transform .7s ease;
}

.esh-slide-right.esh-in {
    opacity: 1;
    transform: translateX(0);
}

.esh-delay-1 {
    transition-delay: .1s;
}

.esh-delay-2 {
    transition-delay: .2s;
}

.esh-delay-3 {
    transition-delay: .3s;
}

.esh-delay-4 {
    transition-delay: .4s;
}

.esh-back-to-top {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--esh-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--esh-shadow-md);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    border: none;
}

.esh-back-to-top.esh-show {
    opacity: 1;
    visibility: visible;
}

.esh-back-to-top:hover {
    background: var(--esh-secondary);
    transform: translateY(-4px);
}

.esh-sticky-call {
    position: fixed;
    bottom: 26px;
    left: 26px;
    z-index: 1050;
    background: var(--esh-gradient-amber);
    color: #071A2E;
    padding: 14px 22px;
    border-radius: 99px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    box-shadow: 0 10px 26px rgba(var(--esh-accent-rgb), 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: esh-pulse 2.4s infinite;
}

@keyframes esh-pulse {

    0%,
    100% {
        box-shadow: 0 10px 26px rgba(245, 158, 11, .4);
    }

    50% {
        box-shadow: 0 10px 34px rgba(245, 158, 11, .65);
    }
}

.esh-map-frame {
    border-radius: var(--esh-radius-md);
    overflow: hidden;
    box-shadow: var(--esh-shadow-sm);
    border: 0;
    width: 100%;
    height: 100%;
    min-height: 320px;
}

.esh-pagination .page-link {
    border: none;
    color: var(--esh-primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 10px !important;
    margin: 0 4px;
}

.esh-pagination .page-item.active .page-link {
    background: var(--esh-gradient);
    color: #fff;
}

.esh-legal-content h2 {
    font-size: 1.4rem;
    margin-top: 34px;
}

.esh-legal-content p,
.esh-legal-content li {
    color: var(--esh-muted);
}

.esh-legal-content {
    line-height: 1.8;
}

.esh-404-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(6rem, 20vw, 11rem);
    background: var(--esh-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

@media (max-width:991px) {
    .esh-search-card {
        padding: 18px;
    }
}

/* popup */

    /* --- POPUP OVERLAY --- */
.simple-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
    backdrop-filter: blur(5px); /* Soft background blur */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Active state - triggers popup instantly */
.simple-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- POPUP CARD --- */
.simple-popup-card {
    background-color: #ffffff;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    position: relative; /* Essential for absolute positioning of close button */
    padding: 40px 24px 30px 24px; /* Added top padding so button doesn't overlap text */
    box-sizing: border-box;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.simple-popup-overlay.active .simple-popup-card {
    transform: translateY(0);
}

/* Close Cross Button (UPDATED) */
.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f1f5f9; /* Soft background to make it visible */
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 100; /* Forces button to be on very top */
}

.popup-close-btn:hover {
    background-color: #e2e8f0;
    color: #0f172a;
    transform: scale(1.1);
}

/* --- CONTENT --- */
.popup-icon {
    font-size: 32px;
    color: #1a2b49; /* Professional Dark Blue */
    margin-bottom: 12px;
}

.popup-title {
    font-size: 20px;
    color: #1a2b49;
    margin: 0 0 4px 0;
    font-weight: 700;
}

.popup-subtitle {
    font-size: 12px;
    color: #c5a880; /* Elegant Gold */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

/* --- BASIC INFO SECTION --- */
.info-list {
    text-align: left;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #475569;
    margin-bottom: 10px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row i {
    color: #1a2b49;
    width: 16px;
    font-size: 14px;
}

/* --- CALL TO ACTION BUTTON --- */
.popup-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%; /* Changed to 100% for better design symmetry */
    padding: 15px;
    background-color: #1a2b49; /* Solid Professional Blue */
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
    box-shadow: 0 4px 12px rgba(26, 43, 73, 0.2);
    box-sizing: border-box;
}

.popup-call-btn:hover {
    background-color: #111e33;
}

.popup-call-btn i {
    font-size: 16px;
}

/* Active Indicator dot */
.active-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
    font-size: 11px;
    color: #64748b;
}

.green-dot {
    width: 6px;
    height: 6px;
    background-color: #22c55e;
    border-radius: 50%;
}
    /* popup */