/* ============================================
   EKSELAN TURİZM - GoFly Theme
   Prefix: ek-
   ============================================ */

/* --- CSS Variables --- */
:root {
    --ek-primary: #2563EB;
    --ek-primary-light: #3B82F6;
    --ek-primary-dark: #1D4ED8;
    --ek-primary-deeper: #1E3A5F;
    --ek-secondary: #F59E0B;
    --ek-secondary-light: #FBBF24;
    --ek-success: #25D366;
    --ek-danger: #EF4444;
    --ek-white: #FFFFFF;
    --ek-gray-50: #F9FAFB;
    --ek-gray-100: #F3F4F6;
    --ek-gray-200: #E5E7EB;
    --ek-gray-300: #D1D5DB;
    --ek-gray-400: #9CA3AF;
    --ek-gray-500: #6B7280;
    --ek-gray-600: #4B5563;
    --ek-gray-700: #374151;
    --ek-gray-800: #1F2937;
    --ek-gray-900: #111827;
    --ek-font: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ek-font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --ek-radius: 6px;
    --ek-radius-sm: 4px;
    --ek-radius-lg: 8px;
    --ek-radius-xl: 12px;
    --ek-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --ek-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --ek-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --ek-container: 1200px;
    --ek-header-height: 70px;
    --ek-topbar-height: 40px;
    --ek-transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--ek-font);
    font-size: 15px;
    line-height: 1.6;
    color: var(--ek-gray-700);
    background: var(--ek-white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--ek-transition); }
ul, ol { list-style: none; }

/* --- Container --- */
.ek-container {
    max-width: var(--ek-container);
    margin: 0 auto;
    padding: 0 1rem;
}

/* --- Grid --- */
.ek-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .ek-grid--2, .ek-grid--3, .ek-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .ek-grid--3 { grid-template-columns: repeat(3, 1fr); }
    .ek-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* --- Section --- */
.ek-section {
    padding: 5rem 0;
}
.ek-hero + .ek-section,
.ek-hero + section {
    padding-top: 8rem;
}
.ek-section--gray {
    background: var(--ek-gray-50);
}
.ek-section__header {
    text-align: center;
    margin-bottom: 3rem;
}
.ek-section__title {
    font-family: var(--ek-font-heading);
    font-size: 40px;
    font-weight: 600;
    color: var(--ek-gray-900);
    line-height: 1.1;
    margin-bottom: 0;
}
.ek-section__subtitle {
    font-family: var(--ek-font);
    font-size: 18px;
    font-weight: 400;
    color: var(--ek-gray-500);
    line-height: 28px;
    padding-top: 20px;
    max-width: 545px;
    width: 100%;
    margin: 0 auto;
}
.ek-section__header--light .ek-section__title {
    color: var(--ek-white);
}
.ek-section__header--light .ek-section__subtitle {
    color: rgba(255,255,255,0.8);
}

/* --- Buttons --- */
.ek-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all var(--ek-transition);
    line-height: 1.4;
}
.ek-btn--primary {
    background: var(--ek-primary);
    color: var(--ek-white);
}
.ek-btn--primary:hover {
    background: var(--ek-primary-dark);
    color: var(--ek-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.4);
}
.ek-btn--secondary {
    background: var(--ek-secondary);
    color: var(--ek-white);
}
.ek-btn--secondary:hover {
    background: var(--ek-secondary-light);
    color: var(--ek-white);
}
.ek-btn--whatsapp {
    background: var(--ek-success);
    color: var(--ek-white);
}
.ek-btn--whatsapp:hover {
    background: #1EBE57;
    color: var(--ek-white);
}
.ek-btn--outline {
    background: transparent;
    border: 2px solid var(--ek-primary);
    color: var(--ek-primary);
}
.ek-btn--outline:hover {
    background: var(--ek-primary);
    color: var(--ek-white);
}
.ek-btn--outline-white {
    background: transparent;
    border: 2px solid var(--ek-white);
    color: var(--ek-white);
}
.ek-btn--outline-white:hover {
    background: var(--ek-white);
    color: var(--ek-primary);
}
.ek-btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
}
.ek-btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* --- Badges --- */
.ek-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ek-badge--new {
    background: var(--ek-primary);
    color: var(--ek-white);
}
.ek-badge--campaign {
    background: var(--ek-secondary);
    color: var(--ek-white);
}
.ek-badge--urgent {
    background: var(--ek-danger);
    color: var(--ek-white);
    animation: ek-pulse 2s infinite;
}
.ek-badge--hot {
    background: #FF6B35;
    color: var(--ek-white);
}
@keyframes ek-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ============================================
   HEADER
   ============================================ */
.ek-header {
    background: var(--ek-white);
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Row 1: Logo - Arama - Giriş Yap */
.ek-header__top {
    border-bottom: 1px solid var(--ek-gray-100);
}
.ek-header__top-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: auto;
    padding: 0.75rem 0;
}
.ek-header__logo {
    flex-shrink: 0;
}
.ek-header__logo img {
    height: 44px;
    width: auto;
}
.ek-header__search {
    flex: 1;
    max-width: 60%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f4f4f4;
    border: 1px solid var(--ek-gray-200);
    border-radius: 25px;
    padding: 1rem 1.25rem;
    transition: all var(--ek-transition);
}
.ek-header__search:focus-within {
    border-color: var(--ek-primary);
    background: var(--ek-white);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.ek-header__search i {
    font-size: 1.125rem;
    color: var(--ek-gray-400);
    flex-shrink: 0;
}
.ek-header__search input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--ek-font);
    font-size: 0.875rem;
    color: var(--ek-gray-800);
}
.ek-header__search input::placeholder {
    color: var(--ek-gray-400);
}
.ek-header__login {
    flex-shrink: 0;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ek-gray-900);
    color: var(--ek-white) !important;
    padding: 0.625rem 1.5rem;
    border-radius: var(--ek-radius);
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all var(--ek-transition);
}
.ek-header__login:hover {
    background: var(--ek-gray-800);
    color: var(--ek-white) !important;
}

/* Row 2: Menü - WhatsApp */
.ek-header__bottom {
    background: var(--ek-white);
}
.ek-header__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
}
.ek-header__nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.ek-header__nav a {
    padding: 0.5rem 1rem;
    font-family: var(--ek-font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ek-gray-700);
    border-radius: var(--ek-radius-sm);
    transition: all var(--ek-transition);
}
.ek-header__nav a:hover {
    color: var(--ek-primary);
    background: rgba(37,99,235,0.06);
}
.ek-header__nav a.active {
    color: var(--ek-primary);
    font-weight: 600;
}
.ek-header__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #F0F0F0;
    color: var(--ek-gray-700) !important;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--ek-radius);
    transition: all var(--ek-transition);
}
.ek-header__whatsapp img {
    width: 20px;
    height: 20px;
}
.ek-header__whatsapp:hover {
    opacity: 0.8;
}

.ek-header__hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--ek-gray-700);
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}

/* Mobile menu */
.ek-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1100;
    opacity: 0;
    transition: opacity var(--ek-transition);
}
.ek-mobile-menu-open .ek-mobile-overlay {
    display: block;
    opacity: 1;
}

.ek-mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: var(--ek-white);
    z-index: 1200;
    padding: 1.5rem;
    overflow-y: auto;
    transition: right var(--ek-transition);
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}
.ek-mobile-menu-open .ek-mobile-nav {
    right: 0;
}
.ek-mobile-nav__close {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}
.ek-mobile-nav__close button {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--ek-gray-500);
    cursor: pointer;
}
.ek-mobile-nav a {
    display: block;
    padding: 0.875rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ek-gray-700);
    border-bottom: 1px solid var(--ek-gray-100);
}
.ek-mobile-nav a:hover {
    color: var(--ek-primary);
}

@media (max-width: 1023px) {
    .ek-header__search { display: none; }
    .ek-header__bottom { display: none; }
    .ek-header__login { display: none; }
    .ek-header__hamburger { display: block; }
}

/* ============================================
   HERO - VIDEO SLIDER
   ============================================ */
.ek-hero {
    position: relative;
    overflow: visible;
    height: 450px;
    background: var(--ek-gray-900);
}
.ek-hero__video-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.ek-hero__video-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.ek-hero__video-slide--active {
    opacity: 1;
}
.ek-hero__video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Video overlay */
.ek-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.2) 40%,
        rgba(0,0,0,0.3) 70%,
        rgba(0,0,0,0.6) 100%
    );
    z-index: 2;
}

/* Hero content */
.ek-hero__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 0 1rem;
    height: 450px;
}
.ek-hero__title {
    font-family: var(--ek-font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--ek-white);
    margin-bottom: 0.75rem;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
    white-space: nowrap;
}
.ek-hero__subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    white-space: nowrap;
    line-height: 1.6;
}

/* Video slider controls */
.ek-hero__slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ek-hero__slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border: none;
    color: var(--ek-white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--ek-transition);
}
.ek-hero__slider-btn:hover {
    background: rgba(255,255,255,0.35);
}
.ek-hero__dots {
    display: flex;
    gap: 0.5rem;
}
.ek-hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all var(--ek-transition);
}
.ek-hero__dot--active {
    background: var(--ek-white);
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   HERO SEARCH FORM
   ============================================ */
.ek-hero-search {
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    z-index: 10;
    transform: translateY(35%);
}
.ek-hero-search__tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    padding-left: 1.5rem;
}
.ek-hero-search__tab {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: none;
    cursor: pointer;
    transition: all var(--ek-transition);
    border-radius: var(--ek-radius) var(--ek-radius) 0 0;
    margin-right: 4px;
    font-family: var(--ek-font);
}
.ek-hero-search__tab--active {
    background: var(--ek-white);
    color: var(--ek-primary);
}
.ek-hero-search__tab:hover:not(.ek-hero-search__tab--active) {
    background: rgba(255,255,255,0.2);
    color: var(--ek-white);
}

.ek-hero-search__form {
    background: var(--ek-white);
    border-radius: 0 var(--ek-radius-lg) var(--ek-radius-lg) var(--ek-radius-lg);
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.ek-hero-search__row {
    display: flex;
    align-items: stretch;
    gap: 1rem;
}
.ek-hero-search__field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--ek-gray-200);
    border-radius: var(--ek-radius-sm);
    transition: border-color var(--ek-transition);
}
.ek-hero-search__field:focus-within {
    border-color: var(--ek-primary);
}
.ek-hero-search__field i {
    font-size: 1.25rem;
    color: var(--ek-primary);
    flex-shrink: 0;
}
.ek-hero-search__field-inner {
    flex: 1;
    min-width: 0;
}
.ek-hero-search__field-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ek-gray-400);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.ek-hero-search__field select,
.ek-hero-search__field input {
    width: 100%;
    border: none;
    outline: none;
    font-family: var(--ek-font);
    font-size: 0.9rem;
    color: var(--ek-gray-800);
    background: transparent;
    padding: 0;
}
.ek-hero-search__field select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.ek-hero-search__hint {
    font-size: 0.8125rem;
    color: var(--ek-gray-400);
    padding: 0.75rem 1rem 0;
    margin: 0;
}
.ek-hero-search__hint a {
    color: var(--ek-primary);
    font-weight: 600;
}
.ek-hero-search__panel {
    display: none;
}
.ek-hero-search__panel--active {
    display: block;
}

/* Flatpickr overrides */
.flatpickr-calendar {
    font-family: var(--ek-font) !important;
    border-radius: var(--ek-radius-lg) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15) !important;
    border: none !important;
}
.flatpickr-months .flatpickr-month {
    height: 44px !important;
}
.flatpickr-current-month {
    font-family: var(--ek-font-heading) !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--ek-primary) !important;
    border-color: var(--ek-primary) !important;
}
.flatpickr-day.today {
    border-color: var(--ek-primary) !important;
}
.flatpickr-day:hover {
    background: rgba(37,99,235,0.08) !important;
    border-color: transparent !important;
}
.flatpickr-day.today:hover {
    background: var(--ek-primary) !important;
    color: #fff !important;
}
.ek-datepicker,
.ek-datepicker-checkin,
.ek-datepicker-checkout {
    cursor: pointer !important;
}

.ek-hero-search__divider {
    width: 1px;
    height: 40px;
    background: var(--ek-gray-200);
    flex-shrink: 0;
    align-self: center;
}
.ek-hero-search__submit {
    flex-shrink: 0;
    padding: 1rem 2rem;
    background: var(--ek-primary);
    color: var(--ek-white);
    border: none;
    border-radius: var(--ek-radius-sm);
    font-family: var(--ek-font);
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--ek-transition);
}
.ek-hero-search__submit:hover {
    background: var(--ek-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.4);
}

@media (max-width: 620px) {
    .ek-hero {
        height: 550px;
    }
    .ek-hero__content {
        height: 290px;
        padding: 2rem 1rem;
    }
    .ek-hero__title {
        font-size: 2rem;
        white-space: normal;
    }
    .ek-hero__subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        white-space: normal;
    }
    .ek-hero-search__tabs {
        flex-wrap: wrap;
        gap: 2px;
        padding-left: 0.5rem;
    }
    .ek-hero-search__tab {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    .ek-hero-search__row {
        flex-direction: column;
    }
    .ek-hero-search__field {
        width: 100%;
    }
    .ek-hero-search__divider {
        display: none;
    }
    .ek-hero-search__submit {
        width: 100%;
        justify-content: center;
    }
    .ek-hero-search__form {
        border-radius: var(--ek-radius-lg);
    }
}

/* ============================================
   TABS
   ============================================ */
.ek-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}
.ek-tabs__btn {
    padding: 0.625rem 1.5rem;
    border: 2px solid var(--ek-gray-200);
    border-radius: 50px;
    background: var(--ek-white);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ek-gray-600);
    cursor: pointer;
    transition: all var(--ek-transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--ek-font);
}
.ek-tabs__btn:hover {
    border-color: var(--ek-primary);
    color: var(--ek-primary);
}
.ek-tabs__btn--active {
    background: var(--ek-primary);
    border-color: var(--ek-primary);
    color: var(--ek-white);
}
.ek-tabs__count {
    font-size: 0.6875rem;
    background: rgba(0,0,0,0.1);
    padding: 0.125rem 0.5rem;
    border-radius: 50px;
}
.ek-tabs__btn--active .ek-tabs__count {
    background: rgba(255,255,255,0.25);
}
.ek-tabs__content {
    display: none;
}
.ek-tabs__content--active {
    display: block;
}

/* ============================================
   TOUR CARD
   ============================================ */
.ek-tour-card {
    background: var(--ek-white);
    border-radius: var(--ek-radius);
    overflow: hidden;
    box-shadow: var(--ek-shadow);
    transition: all var(--ek-transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.ek-tour-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ek-shadow-xl);
}
.ek-tour-card__image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--ek-gray-100);
}
.ek-tour-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.ek-tour-card:hover .ek-tour-card__image img {
    transform: scale(1.08);
}
.ek-tour-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ek-gray-100), var(--ek-gray-200));
    color: var(--ek-gray-300);
    font-size: 3rem;
}
.ek-tour-card__badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    z-index: 2;
}
.ek-tour-card__body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.ek-tour-card__title {
    font-family: var(--ek-font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--ek-gray-900);
    margin-bottom: 0.625rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ek-tour-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-bottom: 0.875rem;
    font-size: 0.8125rem;
    color: var(--ek-gray-500);
}
.ek-tour-card__meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.ek-tour-card__meta i {
    font-size: 0.875rem;
    color: var(--ek-primary);
}
.ek-tour-card__desc {
    font-size: 0.8125rem;
    color: var(--ek-gray-500);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.ek-tour-card__date {
    font-size: 0.75rem;
    color: var(--ek-primary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: auto;
    padding-top: 0.5rem;
}
.ek-tour-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--ek-gray-100);
    gap: 0.75rem;
}
.ek-tour-card__price {
    display: flex;
    flex-direction: column;
}
.ek-tour-card__price-label {
    font-size: 0.6875rem;
    color: var(--ek-gray-400);
    font-weight: 500;
}
.ek-tour-card__price-old {
    font-size: 0.8125rem;
    color: var(--ek-gray-400);
    text-decoration: line-through;
}
.ek-tour-card__price-new {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ek-primary);
}
.ek-tour-card__price small {
    font-size: 0.6875rem;
    color: var(--ek-gray-400);
    font-weight: 400;
}
.ek-tour-card__price-call {
    font-size: 0.8125rem;
    color: var(--ek-secondary);
    font-weight: 600;
}

/* ============================================
   CAMPAIGNS / DISCOUNTS (Swiper)
   ============================================ */
.ek-campaigns-slider {
    position: relative;
}
.ek-campaigns-slider .swiper {
    padding: 0.5rem 0;
}
.ek-campaign-card {
    position: relative;
    border-radius: var(--ek-radius-lg);
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    display: block;
}
.ek-campaign-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.ek-campaign-card:hover img {
    transform: scale(1.05);
}
.ek-campaign-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}
.ek-campaign-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--ek-danger);
    color: var(--ek-white);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
}
.ek-campaign-card__title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--ek-white);
    margin-bottom: 0.5rem;
}
.ek-campaign-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
.ek-campaign-card__price-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
}
.ek-campaign-card__price-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--ek-white);
}
.ek-campaign-card__meta {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.ek-campaign-card__meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

/* ============================================
   DISCOUNTS BANNERS (Swiper)
   ============================================ */
.ek-discounts-slider {
    position: relative;
}
.ek-discounts-slider .swiper {
    padding: 0.5rem 0;
}
.ek-discount-card {
    display: block;
    height: 190px;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
}
.ek-discount-card img {
    width: 100%;
    height: 100%;
}

/* Swiper navigation */
.ek-swiper-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ek-white);
    box-shadow: var(--ek-shadow-lg);
    border: none;
    color: var(--ek-gray-700);
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all var(--ek-transition);
}
.ek-swiper-nav:hover {
    background: var(--ek-primary);
    color: var(--ek-white);
}
.ek-swiper-nav--prev { left: -0.5rem; }
.ek-swiper-nav--next { right: -0.5rem; }
.ek-swiper-pagination {
    text-align: center;
    margin-top: 2rem;
}
.ek-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--ek-gray-300);
    opacity: 1;
}
.ek-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--ek-primary);
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   WHY US / BENEFITS
   ============================================ */
.ek-why-us {
    background: linear-gradient(135deg, var(--ek-primary-dark) 0%, var(--ek-primary) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.ek-why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.ek-why-us::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.02);
    border-radius: 50%;
}
.ek-why-us__title {
    text-align: center;
    font-family: var(--ek-font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--ek-white);
    margin-bottom: 3rem;
}
.ek-benefit-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--ek-radius-lg);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--ek-transition);
}
.ek-benefit-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}
.ek-benefit-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.ek-benefit-card__icon i {
    font-size: 1.75rem;
    color: var(--ek-white);
}
.ek-benefit-card h3 {
    font-family: var(--ek-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ek-white);
    margin-bottom: 0.75rem;
}
.ek-benefit-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}
.ek-why-us__cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ============================================
   FEATURED / POPULAR TOURS (Swiper)
   ============================================ */
.ek-featured-slider {
    position: relative;
}

/* ============================================
   LAST QUOTA
   ============================================ */
.ek-last-quota {
    background: linear-gradient(135deg, var(--ek-primary-deeper) 0%, var(--ek-primary-dark) 100%);
    padding: 5rem 0;
}

/* ============================================
   CONTACT CTA
   ============================================ */
.ek-contact-cta {
    background: var(--ek-gray-50);
    padding: 4rem 0;
}
.ek-contact-cta h2 {
    text-align: center;
    font-family: var(--ek-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ek-gray-900);
    margin-bottom: 2.5rem;
}
.ek-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2.5rem 2rem;
    border-radius: var(--ek-radius-lg);
    background: var(--ek-white);
    box-shadow: var(--ek-shadow);
    transition: all var(--ek-transition);
    text-align: center;
}
.ek-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ek-shadow-xl);
}
.ek-contact-card i {
    font-size: 2.5rem;
}
.ek-contact-card span {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ek-gray-900);
}
.ek-contact-card small {
    font-size: 0.9rem;
    color: var(--ek-gray-500);
}
.ek-contact-card--whatsapp i { color: var(--ek-success); }
.ek-contact-card--phone i { color: var(--ek-primary); }
.ek-contact-card--email i { color: var(--ek-secondary); }

/* ============================================
   FOOTER
   ============================================ */
.ek-footer {
    background: var(--ek-gray-900);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
}
.ek-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}
.ek-footer__brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ek-white);
    margin-bottom: 1rem;
}
.ek-footer__brand-name span {
    color: var(--ek-secondary);
}
.ek-footer__about {
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.ek-footer__social {
    display: flex;
    gap: 0.75rem;
}
.ek-footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    transition: all var(--ek-transition);
}
.ek-footer__social a:hover {
    background: var(--ek-primary);
    color: var(--ek-white);
}
.ek-footer h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--ek-white);
    margin-bottom: 1.5rem;
}
.ek-footer__links a {
    display: block;
    font-size: 0.875rem;
    padding: 0.375rem 0;
    color: rgba(255,255,255,0.55);
    transition: all var(--ek-transition);
}
.ek-footer__links a:hover {
    color: var(--ek-white);
    padding-left: 4px;
}
.ek-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}
.ek-footer__contact-item i {
    color: var(--ek-primary-light);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.ek-footer__bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
}

@media (max-width: 1023px) {
    .ek-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .ek-footer__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   EMPTY STATE
   ============================================ */
.ek-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--ek-gray-400);
    font-size: 0.9375rem;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .ek-section { padding: 3rem 0; }
    .ek-section__title { font-size: 28px; }
    .ek-section__subtitle { font-size: 15px; }
    .ek-contact-cta h2 { font-size: 1.5rem; }
    .ek-why-us__title { font-size: 1.75rem; }
    .ek-campaign-card { height: 250px; }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.ek-scroll-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ek-primary);
    color: var(--ek-white);
    border: none;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--ek-transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37,99,235,0.4);
}
.ek-scroll-top--visible {
    opacity: 1;
    visibility: visible;
}
.ek-scroll-top:hover {
    background: var(--ek-primary-dark);
    transform: translateY(-2px);
}

/* ========== VISA SECTION ========== */
.ek-visa-section {
    background: #EEF2FF;
    padding: 4rem 0;
}
.ek-visa-section__header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.ek-visa-section__title {
    font-family: var(--ek-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ek-dark);
    margin-bottom: 0.5rem;
}
.ek-visa-section__subtitle {
    font-size: 1rem;
    color: var(--ek-gray);
}
.ek-visa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.ek-visa-card {
    background: var(--ek-white);
    border-radius: 16px;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform var(--ek-transition), box-shadow var(--ek-transition);
    text-decoration: none;
    display: block;
}
.ek-visa-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.ek-visa-card__image-wrap {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #E0E7FF;
}
.ek-visa-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ek-visa-card__name {
    font-family: var(--ek-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ek-dark);
    margin-bottom: 0.35rem;
}
.ek-visa-card__time {
    font-size: 0.9rem;
    color: var(--ek-gray);
}
.ek-visa-card__time span {
    color: var(--ek-primary);
    font-weight: 600;
}
.ek-visa-section__cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Visa Page Hero */
.ek-visa-hero {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ek-visa-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,58,138,0.7), rgba(37,99,235,0.5));
}
.ek-visa-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--ek-white);
}
.ek-visa-hero__title {
    font-family: var(--ek-font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.ek-visa-hero__subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Visa Page Grid Section */
.ek-visa-page-grid {
    padding: 4rem 0;
    background-image: url('/images/visa-package-grid-bg.png'), linear-gradient(180deg, #F2F2FF 0%, #F2F2FF 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* --- Visa Why Choose Us --- */
.ek-visa-why {
    padding: 4rem 0;
    background: var(--ek-white);
}
.ek-visa-why__header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.ek-visa-why__badge {
    display: inline-block;
    font-family: var(--ek-font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ek-gray-700);
    border: 1.5px solid var(--ek-gray-300);
    border-radius: 50px;
    padding: 0.35rem 1.25rem;
    margin-bottom: 1rem;
}
.ek-visa-why__title {
    font-family: var(--ek-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--ek-gray-900);
}
.ek-visa-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.ek-visa-why__card {
    border-radius: 16px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.ek-visa-why__card--yellow { background: #F0F4C3; }
.ek-visa-why__card--gray   { background: #F3F4F6; }
.ek-visa-why__card--purple { background: #E8E0F0; }
.ek-visa-why__card--green  { background: #D5ECD4; }
.ek-visa-why__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}
.ek-visa-why__icon i {
    font-size: 2.25rem;
    color: var(--ek-gray-900);
}
.ek-visa-why__card-title {
    font-family: var(--ek-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ek-gray-900);
    line-height: 1.35;
}
.ek-visa-why__card-desc {
    font-size: 0.92rem;
    color: var(--ek-gray-600);
    line-height: 1.6;
}

/* --- Visa Type Tabs (Detail Page) --- */
.ek-visa-type-tabs {
    padding: 2.5rem 0 0;
    background: var(--ek-gray-50);
}
.ek-visa-type-tabs__row {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
}
.ek-visa-type-tabs__row::-webkit-scrollbar { height: 0; }
.ek-visa-type-tab {
    flex: 0 0 auto;
    min-width: 150px;
    background: var(--ek-white);
    border: 2px solid var(--ek-gray-200);
    border-radius: var(--ek-radius-xl);
    padding: 1.25rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--ek-transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.ek-visa-type-tab:hover {
    border-color: var(--ek-primary-light);
    box-shadow: var(--ek-shadow);
}
.ek-visa-type-tab--active {
    border-color: var(--ek-primary);
    box-shadow: var(--ek-shadow-lg);
}
.ek-visa-type-tab--active .ek-visa-type-tab__name {
    color: var(--ek-primary);
}
.ek-visa-type-tab--active .ek-visa-type-tab__icon i {
    color: var(--ek-primary);
}
.ek-visa-type-tab__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #EEF2FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
}
.ek-visa-type-tab__icon i {
    font-size: 1.4rem;
    color: var(--ek-gray-700);
    transition: color var(--ek-transition);
}
.ek-visa-type-tab__name {
    font-family: var(--ek-font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ek-gray-800);
    transition: color var(--ek-transition);
}
.ek-visa-type-tab__price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ek-gray-600);
}
.ek-visa-type-tab__price span {
    font-weight: 400;
    color: var(--ek-gray-400);
    font-size: 0.8rem;
}

/* Visa Type Panels */
.ek-visa-type-panel {
    display: none;
}
.ek-visa-type-panel--active {
    display: block;
}

/* --- Visa Detail Page --- */
.ek-visa-detail__breadcrumb {
    background: var(--ek-gray-50);
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--ek-gray-200);
}
.ek-visa-detail__breadcrumb .ek-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}
.ek-visa-detail__breadcrumb a {
    color: var(--ek-gray-500);
    text-decoration: none;
    transition: color var(--ek-transition);
}
.ek-visa-detail__breadcrumb a:hover { color: var(--ek-primary); }
.ek-visa-detail__breadcrumb i { font-size: 0.65rem; color: var(--ek-gray-400); }
.ek-visa-detail__breadcrumb span { color: var(--ek-gray-700); font-weight: 500; }

.ek-visa-detail {
    padding: 3rem 0 4rem;
    background: var(--ek-white);
}

/* Two-column layout */
.ek-vdt-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
}
.ek-vdt-right {
    position: sticky;
    top: calc(var(--ek-header-height) + var(--ek-topbar-height) + 1rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Document Sections */
.ek-vdt-docs-section {
    margin-bottom: 2rem;
}
.ek-vdt-docs-section__title {
    font-family: var(--ek-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ek-gray-900);
    margin-bottom: 1rem;
}
.ek-vdt-docs-card {
    background: var(--ek-white);
    border: 1px solid var(--ek-gray-200);
    border-radius: 16px;
    padding: 1.5rem;
}

/* Shared document list */
.ek-vdt-docs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.ek-vdt-docs-list li {
    font-size: 0.95rem;
    color: var(--ek-gray-700);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.6;
}
.ek-vdt-docs-list li i {
    font-size: 0.85rem;
    color: var(--ek-primary);
    margin-top: 0.3rem;
    flex-shrink: 0;
}

/* Rejection Reasons Card */
.ek-vdt-rejection {
    background: #EEEAF8;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.ek-vdt-rejection__content { flex: 1; }
.ek-vdt-rejection__title {
    font-family: var(--ek-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ek-gray-900);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ek-vdt-rejection__title i { color: var(--ek-danger); font-size: 1.3rem; }
.ek-vdt-rejection__subtitle {
    font-family: var(--ek-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ek-gray-800);
    margin-bottom: 0.75rem;
}
.ek-vdt-rejection .ek-vdt-docs-list li i { color: var(--ek-primary); }
.ek-vdt-rejection__img {
    flex-shrink: 0;
    width: 180px;
}
.ek-vdt-rejection__img img {
    width: 100%;
    height: auto;
}

/* Important Notes Card */
.ek-vdt-notes {
    background: #F0F4C3;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}
.ek-vdt-notes__title {
    font-family: var(--ek-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ek-gray-900);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ek-vdt-notes__title i { color: var(--ek-secondary); font-size: 1.3rem; }
.ek-vdt-notes .ek-vdt-docs-list li i { color: var(--ek-primary); }

/* Pricing Card */
.ek-vdt-pricing {
    background: var(--ek-gray-50);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid var(--ek-gray-200);
}
.ek-vdt-pricing__name {
    font-family: var(--ek-font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ek-gray-900);
    margin-bottom: 0.75rem;
}
.ek-vdt-pricing__badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ek-primary);
    border: 1.5px solid var(--ek-primary);
    border-radius: 50px;
    padding: 0.3rem 0.85rem;
    margin-bottom: 1.25rem;
}
.ek-vdt-pricing__label {
    font-size: 0.85rem;
    color: var(--ek-gray-500);
    margin-bottom: 0.15rem;
}
.ek-vdt-pricing__amount {
    font-family: var(--ek-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--ek-gray-900);
    margin-bottom: 1.25rem;
}
.ek-vdt-pricing__amount span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--ek-gray-500);
}
.ek-vdt-pricing__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: var(--ek-primary);
    color: var(--ek-white);
    border-radius: 50px;
    font-family: var(--ek-font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--ek-transition);
    margin-bottom: 1rem;
}
.ek-vdt-pricing__btn:hover { background: var(--ek-primary-dark); color: var(--ek-white); }
.ek-vdt-pricing__btn i { font-size: 0.85rem; }
.ek-vdt-pricing__note {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--ek-gray-500);
    line-height: 1.5;
}
.ek-vdt-pricing__note i { font-size: 0.8rem; margin-top: 0.15rem; color: var(--ek-gray-400); }

/* Assistance Card */
.ek-vdt-assist {
    background: #D5ECD4;
    border-radius: 16px;
    overflow: hidden;
}
.ek-vdt-assist__top {
    padding: 1.75rem 1.75rem 1.25rem;
}
.ek-vdt-assist__title {
    font-family: var(--ek-font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ek-gray-900);
    margin-bottom: 0.75rem;
}
.ek-vdt-assist__features {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.ek-vdt-assist__features span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ek-gray-700);
}
.ek-vdt-assist__features i {
    font-size: 0.8rem;
    color: var(--ek-primary);
}
a.ek-vdt-assist__contact { text-decoration: none; }
.ek-vdt-assist__contact {
    background: var(--ek-white);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.ek-vdt-assist__wa-icon {
    width: 42px;
    height: 42px;
    background: var(--ek-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ek-vdt-assist__wa-icon img { width: 22px; height: 22px; filter: brightness(0) invert(1); }
.ek-vdt-assist__wa-label {
    font-size: 0.8rem;
    color: var(--ek-gray-500);
}
.ek-vdt-assist__wa-number {
    font-family: var(--ek-font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ek-gray-900);
}
.ek-vdt-assist__bottom {
    display: flex;
    justify-content: center;
    padding: 0 1rem;
}
.ek-vdt-assist__img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .ek-visa-grid { grid-template-columns: repeat(3, 1fr); }
    .ek-visa-card__image-wrap { width: 150px; height: 150px; }
    .ek-visa-why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .ek-visa-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .ek-visa-card__image-wrap { width: 130px; height: 130px; }
    .ek-visa-card { padding: 1.5rem 1rem 1rem; }
    .ek-visa-card__name { font-size: 1.1rem; }
    .ek-visa-hero { height: 260px; }
    .ek-visa-hero__title { font-size: 1.75rem; }
    .ek-visa-why__grid { grid-template-columns: repeat(2, 1fr); }
    .ek-visa-why__title { font-size: 1.5rem; }
    .ek-vdt-layout { grid-template-columns: 1fr; }
    .ek-vdt-right { position: static; }
    .ek-vdt-rejection { flex-direction: column; }
    .ek-vdt-rejection__img { width: 140px; align-self: center; }
    .ek-visa-type-tab { min-width: 130px; padding: 1rem; }
    .ek-visa-type-tab__icon { width: 40px; height: 40px; }
    .ek-visa-type-tab__icon i { font-size: 1.1rem; }
    .ek-visa-type-tab__name { font-size: 0.85rem; }
    .ek-visa-type-tab__price { font-size: 0.8rem; }
}
@media (max-width: 480px) {
    .ek-visa-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .ek-visa-card__image-wrap { width: 100px; height: 100px; }
    .ek-visa-section__title { font-size: 1.5rem; }
    .ek-visa-why__grid { grid-template-columns: 1fr; }
    .ek-visa-type-tab { min-width: 115px; padding: 0.85rem; }
}

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

/* Tour Card Link */
.ek-tour-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.ek-tour-card__link:hover .ek-tour-card__title {
    color: var(--ek-primary);
}

/* Tour Hero */
.ek-tour-hero {
    position: relative;
    height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.ek-tour-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
}
.ek-tour-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1rem 2.5rem;
    max-width: 800px;
}
.ek-tour-hero__badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.ek-tour-hero__title {
    font-family: var(--ek-font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--ek-white);
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.ek-tour-hero__meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}
.ek-tour-hero__meta i {
    margin-right: 4px;
    font-size: 0.85rem;
}

/* Tour Detail Breadcrumb */
.ek-tour-detail__breadcrumb {
    background: var(--ek-gray-50);
    border-bottom: 1px solid var(--ek-gray-200);
    padding: 0.75rem 0;
    font-size: 0.85rem;
    color: var(--ek-gray-500);
}
.ek-tour-detail__breadcrumb a {
    color: var(--ek-primary);
}
.ek-tour-detail__breadcrumb a:hover {
    text-decoration: underline;
}
.ek-tour-detail__breadcrumb i {
    font-size: 0.65rem;
    margin: 0 0.4rem;
    color: var(--ek-gray-400);
}

/* Tour Detail Main */
.ek-td-main {
    padding: 2rem 0 3rem;
}

/* Two Column Layout */
.ek-td-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2rem;
    align-items: start;
}
.ek-td-left {
    min-width: 0;
    overflow: hidden;
}
.ek-td-right {
    position: sticky;
    top: calc(var(--ek-header-height) + var(--ek-topbar-height) + 1rem);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Section Card */
.ek-td-section {
    background: var(--ek-white);
    border: 1px solid var(--ek-gray-200);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.ek-td-section__title {
    font-family: var(--ek-font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ek-gray-900);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ek-td-section__title i {
    color: var(--ek-primary);
    font-size: 1.1rem;
}

/* Short Description */
.ek-td-short-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ek-gray-600);
}

/* Highlights */
.ek-td-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.ek-td-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--ek-gray-700);
    line-height: 1.5;
}
.ek-td-highlights li i {
    color: var(--ek-primary);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Gallery */
.ek-td-gallery {
    border-radius: 12px;
    overflow: hidden;
}
.ek-td-gallery .swiper-slide img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
}
.ek-td-gallery .swiper-button-next,
.ek-td-gallery .swiper-button-prev {
    color: var(--ek-white);
    background: rgba(0,0,0,0.4);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.ek-td-gallery .swiper-button-next::after,
.ek-td-gallery .swiper-button-prev::after {
    font-size: 16px;
}
.ek-td-gallery .swiper-pagination-bullet-active {
    background: var(--ek-primary);
}

/* Description (CKEditor content) */
.ek-td-description {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--ek-gray-700);
}
.ek-td-description h2,
.ek-td-description h3,
.ek-td-description h4 {
    font-family: var(--ek-font-heading);
    color: var(--ek-gray-900);
    margin: 1.25rem 0 0.5rem;
}
.ek-td-description p {
    margin-bottom: 0.75rem;
}
.ek-td-description ul,
.ek-td-description ol {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    list-style: disc;
}
.ek-td-description img {
    border-radius: 8px;
    margin: 1rem 0;
}

/* Included / Excluded */
.ek-td-included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.ek-td-included-col__title {
    font-family: var(--ek-font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid;
}
.ek-td-included-col__title--green {
    color: #16A34A;
    border-color: #BBF7D0;
}
.ek-td-included-col__title--green i { color: #16A34A; }
.ek-td-included-col__title--red {
    color: #DC2626;
    border-color: #FECACA;
}
.ek-td-included-col__title--red i { color: #DC2626; }
.ek-td-included-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.ek-td-included-col li {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--ek-gray-700);
    line-height: 1.5;
}
.ek-td-included-col li i {
    font-size: 0.75rem;
    margin-top: 4px;
    flex-shrink: 0;
}
.ek-td-included-col__title--green + ul li i { color: #16A34A; }
.ek-td-included-col__title--red + ul li i { color: #DC2626; }

/* Program Accordion */
.ek-td-program {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.ek-td-program__day {
    border: 1px solid var(--ek-gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow var(--ek-transition);
}
.ek-td-program__day--open {
    box-shadow: var(--ek-shadow);
}
.ek-td-program__header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--ek-gray-50);
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--ek-font);
    transition: background var(--ek-transition);
}
.ek-td-program__header:hover {
    background: var(--ek-gray-100);
}
.ek-td-program__badge {
    background: var(--ek-primary);
    color: var(--ek-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    white-space: nowrap;
}
.ek-td-program__title {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ek-gray-800);
}
.ek-td-program__arrow {
    font-size: 0.75rem;
    color: var(--ek-gray-400);
    transition: transform var(--ek-transition);
}
.ek-td-program__day--open .ek-td-program__arrow {
    transform: rotate(180deg);
}
.ek-td-program__body {
    display: none;
    padding: 1.25rem;
    border-top: 1px solid var(--ek-gray-200);
}
.ek-td-program__day--open .ek-td-program__body {
    display: block;
}
.ek-td-program__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.ek-td-program__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--ek-gray-600);
}

/* Pricing Card */
.ek-td-pricing {
    background: var(--ek-gray-50);
    border: 1px solid var(--ek-gray-200);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}
.ek-td-pricing__name {
    font-family: var(--ek-font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ek-gray-900);
    margin-bottom: 0.5rem;
}
.ek-td-pricing__badge {
    display: inline-block;
    background: var(--ek-primary);
    color: var(--ek-white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}
.ek-td-pricing__label {
    font-size: 0.85rem;
    color: var(--ek-gray-500);
    margin-bottom: 0.25rem;
}
.ek-td-pricing__old {
    font-size: 0.95rem;
    color: var(--ek-gray-400);
    text-decoration: line-through;
    margin-bottom: 0.1rem;
}
.ek-td-pricing__amount {
    font-family: var(--ek-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ek-primary);
    margin-bottom: 0.25rem;
}
.ek-td-pricing__amount span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--ek-gray-500);
}
.ek-td-pricing__note-text {
    font-size: 0.8rem;
    color: var(--ek-gray-500);
    margin-bottom: 0.75rem;
}
.ek-td-pricing__btn {
    display: block;
    width: 100%;
    margin-top: 1rem;
    background: var(--ek-primary);
    color: var(--ek-white);
    text-align: center;
    padding: 0.85rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background var(--ek-transition);
}
.ek-td-pricing__btn:hover {
    background: var(--ek-primary-dark);
    color: var(--ek-white);
}

/* Tour Info Card */
.ek-td-info {
    background: var(--ek-white);
    border: 1px solid var(--ek-gray-200);
    border-radius: 16px;
    padding: 1.5rem;
}
.ek-td-info__title {
    font-family: var(--ek-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ek-gray-900);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--ek-gray-200);
}
.ek-td-info__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.ek-td-info__row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
}
.ek-td-info__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EEF2FF;
    border-radius: 8px;
    flex-shrink: 0;
}
.ek-td-info__icon i {
    color: var(--ek-primary);
    font-size: 0.85rem;
}
.ek-td-info__label {
    color: var(--ek-gray-500);
    min-width: 70px;
}
.ek-td-info__value {
    color: var(--ek-gray-800);
    font-weight: 500;
    margin-left: auto;
    text-align: right;
}

/* Tour Dates Card */
.ek-td-dates {
    background: var(--ek-white);
    border: 1px solid var(--ek-gray-200);
    border-radius: 16px;
    padding: 1.5rem;
}
.ek-td-dates__title {
    font-family: var(--ek-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ek-gray-900);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--ek-gray-200);
}
.ek-td-dates__list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.ek-td-dates__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    background: var(--ek-gray-50);
    font-size: 0.85rem;
}
.ek-td-dates__row--full {
    opacity: 0.5;
}
.ek-td-dates__range {
    color: var(--ek-gray-700);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.ek-td-dates__range i {
    color: var(--ek-primary);
    font-size: 0.8rem;
}
.ek-td-dates__status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ek-td-dates__badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}
.ek-td-dates__badge--active {
    background: #DCFCE7;
    color: #16A34A;
}
.ek-td-dates__badge--full {
    background: #FEE2E2;
    color: #DC2626;
}
.ek-td-dates__price {
    font-weight: 600;
    color: var(--ek-primary);
    font-size: 0.85rem;
}

/* Tour Assistance Card */
.ek-td-assist {
    border-radius: 16px;
    overflow: hidden;
    background: #D5ECD4;
}
.ek-td-assist__top {
    padding: 1.5rem;
}
.ek-td-assist__title {
    font-family: var(--ek-font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ek-gray-900);
    margin-bottom: 0.75rem;
}
.ek-td-assist__features {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}
.ek-td-assist__features span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--ek-gray-700);
}
.ek-td-assist__features i {
    color: #16A34A;
    font-size: 0.8rem;
}
.ek-td-assist__contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--ek-white);
    padding: 0.85rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow var(--ek-transition);
}
.ek-td-assist__contact:hover {
    box-shadow: var(--ek-shadow);
}
.ek-td-assist__wa-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EEF2FF;
    border-radius: 10px;
    flex-shrink: 0;
}
.ek-td-assist__wa-icon img {
    width: 20px;
    height: 20px;
}
.ek-td-assist__wa-label {
    font-size: 0.75rem;
    color: var(--ek-gray-500);
}
.ek-td-assist__wa-number {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ek-gray-900);
}
.ek-td-assist__bottom {
    display: flex;
    justify-content: center;
    padding: 0 1rem;
}
.ek-td-assist__img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
}

/* Related Tours */
.ek-td-related {
    padding: 3rem 0;
    background: var(--ek-gray-50);
}
.ek-td-related__title {
    font-family: var(--ek-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ek-gray-900);
    text-align: center;
    margin-bottom: 2rem;
}

/* Tour Detail Responsive */
@media (max-width: 768px) {
    .ek-tour-hero { height: 280px; }
    .ek-tour-hero__title { font-size: 1.5rem; }
    .ek-tour-hero__meta { font-size: 0.85rem; gap: 0.75rem; }
    .ek-td-layout { grid-template-columns: 1fr; }
    .ek-td-right { position: static; }
    .ek-td-included-grid { grid-template-columns: 1fr; }
    .ek-td-gallery { max-width: 100%; }
    .ek-td-gallery .swiper-slide img { aspect-ratio: 4 / 3; }
}
@media (max-width: 480px) {
    .ek-tour-hero { height: 220px; }
    .ek-tour-hero__title { font-size: 1.25rem; }
}

/* Categories View All Button */
.ek-categories__viewall {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   HOTEL PAGES
   ============================================ */

/* Hotel Autocomplete Dropdown */
.ek-hotel-autocomplete {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ek-white);
    border: 1px solid var(--ek-gray-200);
    border-radius: 8px;
    box-shadow: var(--ek-shadow-lg);
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
}
.ek-hotel-autocomplete__item {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    color: var(--ek-gray-700);
    cursor: pointer;
    transition: background var(--ek-transition);
}
.ek-hotel-autocomplete__item:hover {
    background: #EEF2FF;
    color: var(--ek-primary);
}

/* Hotel Search Bar */
.ek-hotel-search-bar {
    background: var(--ek-white);
    border-bottom: 1px solid var(--ek-gray-200);
    padding: 1.5rem 0;
}
.ek-hotel-search-form__row {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}
.ek-hotel-search-form__field {
    flex: 1;
    min-width: 150px;
    position: relative;
}
.ek-hotel-search-form__field--location {
    flex: 2;
}
.ek-hotel-search-form__field--small {
    flex: 0.7;
    min-width: 120px;
}
.ek-hotel-search-form__field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ek-gray-500);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ek-hotel-search-form__field label i {
    font-size: 0.7rem;
    margin-right: 3px;
}
.ek-hotel-search-form__field input,
.ek-hotel-search-form__field select {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--ek-gray-200);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: var(--ek-font);
    color: var(--ek-gray-700);
    background: var(--ek-gray-50);
    transition: border var(--ek-transition);
}
.ek-hotel-search-form__field input:focus,
.ek-hotel-search-form__field select:focus {
    outline: none;
    border-color: var(--ek-primary);
}
.ek-hotel-search-form__btn {
    padding: 0.6rem 1.5rem;
    background: var(--ek-primary);
    color: var(--ek-white);
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--ek-transition);
}
.ek-hotel-search-form__btn:hover {
    background: var(--ek-primary-dark);
}

/* Hotel Results */
.ek-hotel-results {
    padding: 2rem 0 3rem;
    min-height: 400px;
}
.ek-hotel-results__header {
    margin-bottom: 1.5rem;
}
.ek-hotel-results__header h2 {
    font-family: var(--ek-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ek-gray-900);
}
.ek-hotel-results__header p {
    font-size: 0.9rem;
    color: var(--ek-gray-500);
}
.ek-hotel-results__error {
    background: #FEF2F2;
    color: #DC2626;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.ek-hotel-results__empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--ek-gray-400);
}
.ek-hotel-results__empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}
.ek-hotel-results__empty h3 {
    font-family: var(--ek-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ek-gray-700);
    margin-bottom: 0.5rem;
}
.ek-hotel-results__empty p {
    font-size: 0.9rem;
    color: var(--ek-gray-500);
}
.ek-hotel-results__grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Hotel Card (Horizontal) */
.ek-hotel-card {
    background: var(--ek-white);
    border: 1px solid var(--ek-gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow var(--ek-transition);
}
.ek-hotel-card:hover {
    box-shadow: var(--ek-shadow-lg);
}
.ek-hotel-card__link {
    display: flex;
    color: inherit;
    text-decoration: none;
}
.ek-hotel-card__image {
    width: 260px;
    min-height: 180px;
    flex-shrink: 0;
    overflow: hidden;
}
.ek-hotel-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ek-hotel-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ek-gray-100);
    color: var(--ek-gray-300);
    font-size: 2.5rem;
}
.ek-hotel-card__body {
    flex: 1;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.ek-hotel-card__stars {
    margin-bottom: 0.35rem;
}
.ek-hotel-card__stars i {
    font-size: 0.75rem;
}
.ek-hotel-card__name {
    font-family: var(--ek-font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ek-gray-900);
    margin-bottom: 0.35rem;
}
.ek-hotel-card__location,
.ek-hotel-card__board,
.ek-hotel-card__room {
    font-size: 0.85rem;
    color: var(--ek-gray-500);
    margin-bottom: 0.2rem;
}
.ek-hotel-card__location i,
.ek-hotel-card__board i,
.ek-hotel-card__room i {
    font-size: 0.75rem;
    margin-right: 3px;
    color: var(--ek-primary);
}
.ek-hotel-card__price-col {
    width: 180px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    border-left: 1px solid var(--ek-gray-100);
    text-align: center;
}
.ek-hotel-card__price-label {
    font-size: 0.75rem;
    color: var(--ek-gray-400);
    margin-bottom: 0.15rem;
}
.ek-hotel-card__price {
    font-family: var(--ek-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ek-primary);
    margin-bottom: 0.5rem;
}
.ek-hotel-card__btn {
    display: inline-block;
    background: var(--ek-primary);
    color: var(--ek-white);
    padding: 0.45rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Hotel Detail - Facilities */
.ek-hotel-facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.ek-hotel-facility {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.75rem;
    background: #EEF2FF;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--ek-gray-700);
}
.ek-hotel-facility i {
    font-size: 0.7rem;
    color: var(--ek-primary);
}

/* Hotel Detail - Room Offers */
.ek-hotel-offers {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.ek-hotel-offer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border: 1px solid var(--ek-gray-200);
    border-radius: 10px;
    transition: box-shadow var(--ek-transition);
}
.ek-hotel-offer:hover {
    box-shadow: var(--ek-shadow);
}
.ek-hotel-offer__info {
    flex: 1;
    min-width: 0;
}
.ek-hotel-offer__room {
    font-family: var(--ek-font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ek-gray-900);
    margin-bottom: 0.25rem;
}
.ek-hotel-offer__board {
    font-size: 0.85rem;
    color: var(--ek-gray-500);
    margin-bottom: 0.2rem;
}
.ek-hotel-offer__board i {
    font-size: 0.75rem;
    color: var(--ek-primary);
    margin-right: 2px;
}
.ek-hotel-offer__refund {
    font-size: 0.8rem;
}
.ek-hotel-offer__price-col {
    text-align: right;
    flex-shrink: 0;
    padding-left: 1rem;
}
.ek-hotel-offer__price {
    font-family: var(--ek-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ek-primary);
}
.ek-hotel-offer__price-label {
    font-size: 0.7rem;
    color: var(--ek-gray-400);
}

/* Hotel Card - Themes on image */
.ek-hotel-card__image { position: relative; }
.ek-hotel-card__themes {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}
.ek-hotel-card__theme {
    background: rgba(0,0,0,0.55);
    color: var(--ek-white);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.ek-hotel-card__address {
    font-size: 0.8rem;
    color: var(--ek-gray-400);
    margin-bottom: 0.35rem;
}
.ek-hotel-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.4rem;
}
.ek-hotel-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.2rem 0.5rem;
    background: #EEF2FF;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--ek-gray-600);
}
.ek-hotel-card__tag i { font-size: 0.65rem; color: var(--ek-primary); }
.ek-hotel-card__tag--green { background: #DCFCE7; color: #16A34A; }
.ek-hotel-card__tag--green i { color: #16A34A; }
.ek-hotel-card__night {
    font-size: 0.7rem;
    color: var(--ek-gray-400);
    margin-bottom: 0.15rem;
}

/* Hotel Detail - Themes bar */
.ek-hotel-themes-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.ek-hotel-theme-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.85rem;
    background: var(--ek-primary);
    color: var(--ek-white);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.ek-hotel-theme-tag i { font-size: 0.7rem; }

/* Hotel Detail - Facility Categories */
.ek-hotel-facility-cat {
    font-family: var(--ek-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ek-gray-700);
    margin: 0.75rem 0 0.5rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--ek-gray-100);
}
.ek-hotel-facility--highlighted {
    background: #FEF3C7;
    border: 1px solid #F59E0B;
}

/* Hotel Detail - Room Types */
.ek-hotel-room-type {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--ek-gray-100);
}
.ek-hotel-room-type:last-child { border-bottom: none; }
.ek-hotel-room-type__name {
    font-family: var(--ek-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ek-gray-900);
    margin-bottom: 0.75rem;
}
.ek-hotel-room-type__photos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.ek-hotel-room-type__photos img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

/* Hotel Reservation Card */
.ek-hotel-reservation-card {
    background: var(--ek-white);
    border: 2px solid var(--ek-primary);
    border-radius: 16px;
    overflow: hidden;
}
.ek-hotel-reservation-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    background: #EEF2FF;
    border-bottom: 1px solid var(--ek-gray-200);
}
.ek-hotel-reservation-card__title {
    font-family: var(--ek-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ek-gray-900);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.ek-hotel-reservation-card__title i {
    color: var(--ek-primary);
    font-size: 0.85rem;
}
.ek-hotel-reservation-card__edit {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ek-primary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.ek-hotel-reservation-card__edit:hover {
    text-decoration: underline;
}
.ek-hotel-reservation-card__edit i {
    font-size: 0.7rem;
}
.ek-hotel-reservation-card__body {
    padding: 1rem 1.25rem;
}
.ek-hotel-reservation-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
}
.ek-hotel-reservation-card__row + .ek-hotel-reservation-card__row {
    border-top: 1px solid var(--ek-gray-100);
}
.ek-hotel-reservation-card__label {
    font-size: 0.85rem;
    color: var(--ek-gray-500);
}
.ek-hotel-reservation-card__value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ek-gray-900);
}

/* Hotel Prices Card */
.ek-hotel-prices-card {
    background: var(--ek-white);
    border: 1px solid var(--ek-gray-200);
    border-radius: 16px;
    padding: 1.25rem;
}
.ek-hotel-prices-card__title {
    font-family: var(--ek-font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ek-gray-900);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--ek-gray-200);
}
.ek-hotel-prices-card__title i {
    color: var(--ek-primary);
    font-size: 0.9rem;
}
.ek-hotel-prices-card__list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.ek-hotel-prices-card__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.75rem;
    background: var(--ek-gray-50);
    border-radius: 10px;
    gap: 0.75rem;
}
.ek-hotel-prices-card__info {
    flex: 1;
    min-width: 0;
}
.ek-hotel-prices-card__room {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ek-gray-800);
    margin-bottom: 0.15rem;
}
.ek-hotel-prices-card__board {
    font-size: 0.75rem;
    color: var(--ek-gray-500);
    margin-bottom: 0.2rem;
}
.ek-hotel-prices-card__board i {
    font-size: 0.65rem;
    color: var(--ek-primary);
    margin-right: 2px;
}
.ek-hotel-prices-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
}
.ek-hotel-prices-card__badge i { font-size: 0.55rem; }
.ek-hotel-prices-card__badge--green { background: #DCFCE7; color: #16A34A; }
.ek-hotel-prices-card__price {
    text-align: right;
    flex-shrink: 0;
}
.ek-hotel-prices-card__amount {
    font-family: var(--ek-font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ek-primary);
    display: block;
}
.ek-hotel-prices-card__night {
    font-size: 0.65rem;
    color: var(--ek-gray-400);
}

/* Hotel Rating Card */
.ek-hotel-rating-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--ek-primary);
    border-radius: 16px;
    padding: 1rem 1.25rem;
}
.ek-hotel-rating-card__score {
    width: 48px;
    height: 48px;
    background: var(--ek-white);
    color: var(--ek-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ek-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    flex-shrink: 0;
}
.ek-hotel-rating-card__text {
    font-family: var(--ek-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ek-white);
}

/* Hotel Map */
.ek-hotel-map {
    border-radius: 12px;
    overflow: hidden;
}

/* Hotel Offer - enhanced */
.ek-hotel-offer--unavailable { opacity: 0.5; }
.ek-hotel-offer__accom {
    font-size: 0.85rem;
    color: var(--ek-gray-500);
    margin-bottom: 0.2rem;
}
.ek-hotel-offer__accom i { font-size: 0.75rem; color: var(--ek-primary); margin-right: 2px; }
.ek-hotel-offer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.35rem;
}
.ek-hotel-offer__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}
.ek-hotel-offer__badge i { font-size: 0.65rem; }
.ek-hotel-offer__badge--green { background: #DCFCE7; color: #16A34A; }
.ek-hotel-offer__badge--red { background: #FEE2E2; color: #DC2626; }
.ek-hotel-offer__badge--gray { background: var(--ek-gray-100); color: var(--ek-gray-500); }
.ek-hotel-offer__cancel-info {
    margin-top: 0.35rem;
}
.ek-hotel-offer__cancel-info small {
    display: block;
    font-size: 0.7rem;
    color: var(--ek-gray-400);
}
.ek-hotel-offer__night {
    font-size: 0.7rem;
    color: var(--ek-gray-400);
    margin-bottom: 0.1rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.ek-contact-page {
    padding: 2.5rem 0 3rem;
}
.ek-contact-page__grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
}

/* Contact Form Card */
.ek-contact-form-card {
    background: var(--ek-white);
    border: 1px solid var(--ek-gray-200);
    border-radius: 16px;
    padding: 2rem;
}
.ek-contact-form-card__title {
    font-family: var(--ek-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ek-gray-900);
    margin-bottom: 0.35rem;
}
.ek-contact-form-card__subtitle {
    font-size: 0.9rem;
    color: var(--ek-gray-500);
    margin-bottom: 1.5rem;
}

/* Alert */
.ek-contact-alert {
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ek-contact-alert--success {
    background: #DCFCE7;
    color: #16A34A;
}
.ek-contact-alert--error {
    background: #FEE2E2;
    color: #DC2626;
}

/* Form */
.ek-contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.ek-contact-form__field {
    margin-bottom: 1rem;
}
.ek-contact-form__row .ek-contact-form__field {
    margin-bottom: 0;
}
.ek-contact-form__field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ek-gray-700);
    margin-bottom: 0.35rem;
}
.ek-contact-form__field label span {
    color: var(--ek-danger);
}
.ek-contact-form__field input,
.ek-contact-form__field select,
.ek-contact-form__field textarea {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--ek-gray-200);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: var(--ek-font);
    color: var(--ek-gray-700);
    background: var(--ek-gray-50);
    transition: border var(--ek-transition);
    resize: vertical;
}
.ek-contact-form__field input:focus,
.ek-contact-form__field select:focus,
.ek-contact-form__field textarea:focus {
    outline: none;
    border-color: var(--ek-primary);
    background: var(--ek-white);
}
.ek-contact-form__error {
    display: block;
    color: var(--ek-danger);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}
.ek-contact-form__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: var(--ek-primary);
    color: var(--ek-white);
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--ek-font);
    cursor: pointer;
    transition: background var(--ek-transition);
}
.ek-contact-form__btn:hover {
    background: var(--ek-primary-dark);
}

/* Contact Info Column */
.ek-contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.ek-contact-info-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: var(--ek-white);
    border: 1px solid var(--ek-gray-200);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: inherit;
    text-decoration: none;
    transition: box-shadow var(--ek-transition);
}
.ek-contact-info-card:hover {
    box-shadow: var(--ek-shadow);
}
.ek-contact-info-card--whatsapp {
    border-color: #25D366;
    background: #F0FFF4;
}
.ek-contact-info-card__icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EEF2FF;
    border-radius: 10px;
    flex-shrink: 0;
}
.ek-contact-info-card__icon i {
    font-size: 1.1rem;
    color: var(--ek-primary);
}
.ek-contact-info-card--whatsapp .ek-contact-info-card__icon {
    background: #DCFCE7;
}
.ek-contact-info-card--whatsapp .ek-contact-info-card__icon i {
    color: #25D366;
}
.ek-contact-info-card__label {
    font-size: 0.75rem;
    color: var(--ek-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.ek-contact-info-card__value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ek-gray-800);
}

/* Social */
.ek-contact-social {
    background: var(--ek-white);
    border: 1px solid var(--ek-gray-200);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 0.25rem;
}
.ek-contact-social h4 {
    font-family: var(--ek-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ek-gray-700);
    margin-bottom: 0.75rem;
}
.ek-contact-social__links {
    display: flex;
    gap: 0.6rem;
}
.ek-contact-social__links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EEF2FF;
    border-radius: 10px;
    color: var(--ek-primary);
    font-size: 1rem;
    transition: background var(--ek-transition), color var(--ek-transition);
}
.ek-contact-social__links a:hover {
    background: var(--ek-primary);
    color: var(--ek-white);
}

/* Hotel & Contact Responsive */
@media (max-width: 768px) {
    .ek-hotel-card__link { flex-direction: column; }
    .ek-hotel-card__image { width: 100%; height: 200px; min-height: auto; }
    .ek-hotel-card__price-col {
        width: 100%;
        border-left: none;
        border-top: 1px solid var(--ek-gray-100);
        flex-direction: row;
        justify-content: space-between;
    }
    .ek-hotel-search-form__row { flex-direction: column; }
    .ek-hotel-search-form__field { min-width: 100%; }
    .ek-hotel-offer { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .ek-hotel-offer__price-col { padding-left: 0; text-align: left; }
    .ek-hotel-room-type__photos { grid-template-columns: repeat(2, 1fr); }
    .ek-contact-page__grid { grid-template-columns: 1fr; }
    .ek-contact-form__row { grid-template-columns: 1fr; }
}
