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

:root {
    --purple: #6B48E8;
    --main: #4A90D9;
    --text: #1a1a2e;
    --text-mid: #4b5563;
    --text-light: #9ca3af;
    --white: #ffffff;
    --bg: #f5f6fa;
    --bg-light: #f3f4f6;
    --border: #e5e7eb;
    --shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 6px 28px rgba(0, 0, 0, 0.11);
    --radius: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Satoshi', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}



.mob-header {
    display: none;
}

.login-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 62px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.login-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--purple);
}

.login-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #9810FA, #500EAF);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.login-nav-pills {
  display: flex;
  align-items: center;
  gap: 10px;
}

.login-nav-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 24px;
  border: 1.5px solid var(--main);
  color: var(--main);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.login-nav-pill:hover {
  background: rgba(74, 108, 247, 0.06);
}

.login-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
}

.login-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

/* ════════════════════
   HERO BANNER
════════════════════ */
.pe-hero {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.pe-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1618773928121-c32242e63f39?w=1400&q=85') center/cover no-repeat;
}

.pe-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 10, 50, 0.45) 0%, rgba(30, 20, 70, 0.65) 100%);
}

.pe-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.pe-hero-content h1 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
    margin-bottom: 8px;
}

.pe-hero-content p {
    font-size: clamp(0.82rem, 1.4vw, 1rem);
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

/* ════════════════════
   MAIN
════════════════════ */
.pe-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 36px 32px 60px;
}

/* ── Section ── */
.pe-section {
    margin-bottom: 48px;
}

.pe-section-spiritual {
    background: linear-gradient(135deg, #f5f0ff, #ede8fb);
    border-radius: var(--radius);
    padding: 28px 24px 24px;
    margin-left: -8px;
    margin-right: -8px;
}

.pe-section-header {
    margin-bottom: 18px;
}

.pe-section-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.pe-section-sub {
    font-size: 0.84rem;
    color: var(--text-light);
}

/* ── Tab filters ── */
.pe-tabs-wrap {
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 22px;
}

.pe-tabs-wrap::-webkit-scrollbar {
    display: none;
}

.pe-tabs {
    display: flex;
    gap: 10px;
    padding-bottom: 4px;
    white-space: nowrap;
}

.pe-tab {
    padding: 8px 20px;
    border-radius: 24px;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--text-mid);
    font-size: 0.86rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    white-space: nowrap;
}

.pe-tab.active {
    background: transparent;
    border-color: var(--purple);
    color: var(--purple);
    font-weight: 700;
}

.pe-tab:hover:not(.active) {
    border-color: var(--purple);
    color: var(--purple);
}

/* ── Destination cards grid ── */
.pe-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* ── Destination card ── */
.pe-dest-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}

.pe-dest-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.pe-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.pe-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}

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

.pe-card-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pe-card-name {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.pe-card-name svg {
    color: var(--text-light);
    flex-shrink: 0;
}

.pe-card-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}

.pe-card-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

.pe-card-price {
    font-size: 0.78rem;
    color: var(--text-mid);
}

.pe-price-val {
    color: var(--purple);
    font-weight: 700;
    font-size: 0.88rem;
}

/* ════════════════════
   MOBILE (≤768px)
════════════════════ */
@media (max-width: 768px) {

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block;
    }

    /* Mobile header */
    .mob-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        top: 0;
        z-index: 100;
        padding: 12px 16px;
        background: rgba(20, 10, 50, 0.7);
        backdrop-filter: blur(10px);
    }

    .mob-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: var(--white);
        font-weight: 700;
        font-size: 1rem;
    }

    .mob-logo-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        background: linear-gradient(135deg, #6B48E8, #4A90D9);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .mob-menu-btn {
        background: none;
        border: none;
        cursor: pointer;
        color: var(--white);
        padding: 4px;
    }

    /* Hero */
    .pe-hero {
        height: 220px;
    }

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

    .pe-hero-content p {
        font-size: 0.82rem;
    }

    /* Main */
    .pe-main {
        padding: 20px 14px 40px;
    }

    /* Section */
    .pe-section {
        margin-bottom: 32px;
    }

    .pe-section-spiritual {
        padding: 20px 16px 16px;
        margin-left: -4px;
        margin-right: -4px;
    }

    .pe-section-title {
        font-size: 1.15rem;
    }

    /* Tabs */
    .pe-tabs {
        gap: 8px;
    }

    .pe-tab {
        padding: 7px 16px;
        font-size: 0.82rem;
    }

    /* Cards: 1 column, horizontal layout like screenshot */
    .pe-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* Card: vertical on mobile (image top) but sized like screenshot */
    .pe-dest-card {
        flex-direction: column;
        border-radius: 14px;
    }

    .pe-card-img {
        aspect-ratio: 16/9;
    }

    .pe-card-name {
        font-size: 0.95rem;
    }

    .pe-card-desc {
        font-size: 0.78rem;
    }

    .pe-card-price {
        font-size: 0.76rem;
    }

    .pe-price-val {
        font-size: 0.84rem;
    }
}

@media (max-width: 380px) {
    .pe-hero {
        height: 190px;
    }

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