/*
Theme Name: HillTrails Pro
Theme URI: https://hilltrails.in
Author: HillTrails Tours
Description: Elementor-compatible travel theme for NCR hill station tours. Includes Homepage, Packages, Contact, and easy Add Package admin panel.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: hilltrails
Tags: travel, tours, elementor, one-page, responsive
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --pine:       #1B3A2D;
  --moss:       #2E6B4F;
  --sage:       #5A9E78;
  --sunrise:    #E8954A;
  --dusk:       #C4713A;
  --snow:       #F7F4EE;
  --cloud:      #FFFFFF;
  --slate:      #2D2D2D;
  --mist:       #7A7A7A;
  --border:     #E2DDD6;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.14);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--slate); background: var(--snow); -webkit-font-smoothing: antialiased; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   ELEMENTOR COMPATIBILITY HELPERS
   ============================================================ */
/* These classes let Elementor sections blend with our theme */
.ht-section          { padding: 80px 0; }
.ht-section--dark    { background: var(--pine); color: var(--cloud); }
.ht-section--white   { background: var(--cloud); }
.ht-section--snow    { background: var(--snow); }
.ht-container        { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.ht-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sunrise); margin-bottom: 10px;
}
.ht-heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px); font-weight: 700;
  color: var(--pine); line-height: 1.15; margin-bottom: 14px;
}
.ht-heading--light { color: var(--cloud); }
.ht-sub { font-size: 17px; color: var(--mist); max-width: 500px; line-height: 1.7; }
.ht-sub--light { color: rgba(255,255,255,.65); }

/* ============================================================
   BUTTONS (Elementor can also create these, but having them
   as classes means designers can reuse in custom HTML widgets)
   ============================================================ */
.ht-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  border: none; transition: all .22s ease; text-decoration: none;
  font-family: var(--font-body);
}
.ht-btn--primary  { background: var(--sunrise); color: var(--cloud); }
.ht-btn--primary:hover { background: var(--dusk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,149,74,.35); }
.ht-btn--green    { background: var(--moss); color: var(--cloud); }
.ht-btn--green:hover { background: var(--pine); transform: translateY(-2px); }
.ht-btn--outline  { background: transparent; color: var(--cloud); border: 2px solid rgba(255,255,255,.7); }
.ht-btn--outline:hover { background: rgba(255,255,255,.12); border-color: var(--cloud); }
.ht-btn--full     { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#ht-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  transition: background .3s, box-shadow .3s;
}
#ht-header.scrolled {
  background: var(--pine);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.ht-nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 32px; max-width: 1240px; margin: 0 auto;
}
.ht-logo {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  color: var(--cloud); letter-spacing: -.02em; text-decoration: none;
}
.ht-logo span { color: var(--sunrise); }
.ht-nav-links { display: flex; align-items: center; gap: 28px; }
.ht-nav-links a {
  color: rgba(255,255,255,.85); font-size: 14px; font-weight: 500;
  transition: color .2s; text-decoration: none;
}
.ht-nav-links a:hover, .ht-nav-links a.active { color: var(--sunrise); }
.ht-nav-book {
  background: var(--sunrise); color: var(--cloud) !important;
  padding: 10px 22px; border-radius: 50px; font-weight: 700 !important;
}
.ht-nav-book:hover { background: var(--dusk) !important; }
.ht-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.ht-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cloud); border-radius: 2px; transition: all .3s;
}
/* Mobile overlay nav */
.ht-mobile-nav {
  display: none; position: fixed; inset: 0;
  background: var(--pine); z-index: 99998;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.ht-mobile-nav.open { display: flex; }
.ht-mobile-nav a { font-family: var(--font-head); font-size: 28px; color: var(--cloud); font-weight: 700; }
.ht-mobile-nav a:hover { color: var(--sunrise); }
.ht-mobile-close {
  position: absolute; top: 22px; right: 24px;
  background: none; border: none; color: var(--cloud); font-size: 28px; cursor: pointer;
}

/* ============================================================
   PAGE HERO (used on inner pages — Packages, Contact)
   ============================================================ */
.ht-page-hero {
  min-height: 340px; background: linear-gradient(135deg, var(--pine) 0%, #0F2318 100%);
  display: flex; align-items: center; padding: 120px 24px 60px;
  position: relative; overflow: hidden;
}
.ht-page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: url('assets/images/hero-bg.jpg');
  background-size: cover; background-position: center; opacity: .2;
}
.ht-page-hero-inner { position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; width: 100%; }
.ht-page-hero h1 {
  font-family: var(--font-head); font-size: clamp(32px,5vw,58px);
  font-weight: 700; color: var(--cloud); line-height: 1.1; margin-bottom: 12px;
}
.ht-page-hero p { font-size: 18px; color: rgba(255,255,255,.7); }

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
#ht-hero {
  min-height: 100vh; position: relative;
  background: linear-gradient(150deg, var(--pine) 0%, #091A10 100%);
  display: flex; align-items: center; overflow: hidden;
}
.ht-hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/images/hero-bg.jpg');
  background-size: cover; background-position: center; opacity: .28;
}
.ht-hero-mountains {
  position: absolute; bottom: 0; left: 0; right: 0; height: 180px; opacity: .18;
}
.ht-hero-content {
  position: relative; z-index: 2; max-width: 1160px;
  margin: 0 auto; padding: 140px 24px 80px; width: 100%;
}
.ht-hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,149,74,.14); border: 1px solid rgba(232,149,74,.4);
  color: var(--sunrise); font-size: 11px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 26px;
}
.ht-hero-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 6.5vw, 78px); font-weight: 700;
  color: var(--cloud); line-height: 1.05; margin-bottom: 22px; max-width: 700px;
}
.ht-hero-title em { font-style: italic; color: var(--sunrise); }
.ht-hero-sub {
  font-size: 18px; color: rgba(255,255,255,.7);
  max-width: 480px; line-height: 1.7; margin-bottom: 40px;
}
.ht-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.ht-hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.ht-stat-num {
  font-family: var(--font-head); font-size: 34px;
  font-weight: 700; color: var(--cloud); line-height: 1;
}
.ht-stat-lbl { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; }

/* Destination chips bar */
.ht-dest-bar { background: var(--pine); padding: 16px 0; }
.ht-dest-row {
  display: flex; align-items: center; gap: 10px;
  overflow-x: auto; scrollbar-width: none; padding: 0 24px;
  max-width: 1160px; margin: 0 auto;
}
.ht-dest-row::-webkit-scrollbar { display: none; }
.ht-chip {
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap; color: rgba(255,255,255,.7);
  font-size: 13px; font-weight: 500;
  padding: 8px 16px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
  transition: all .2s; cursor: pointer; text-decoration: none; background: none;
}
.ht-chip:hover, .ht-chip.active {
  background: var(--sunrise); color: var(--cloud); border-color: var(--sunrise);
}

/* ============================================================
   PACKAGE CARDS (used on both Home + Packages page)
   ============================================================ */
.ht-packages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.ht-pkg-card {
  background: var(--cloud); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.ht-pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ht-pkg-img {
  position: relative; height: 210px; overflow: hidden;
  background: var(--pine);
}
.ht-pkg-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .4s;
}
.ht-pkg-card:hover .ht-pkg-img img { transform: scale(1.06); }
.ht-pkg-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; font-size: 60px;
  background: linear-gradient(135deg, var(--pine), #0F2318);
}
.ht-pkg-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--sunrise); color: var(--cloud);
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 50px;
}
.ht-pkg-dur {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,.6); color: var(--cloud);
  font-size: 11px; font-weight: 600; padding: 4px 10px;
  border-radius: 50px; backdrop-filter: blur(4px);
}
.ht-pkg-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.ht-pkg-loc {
  font-size: 11px; color: var(--mist); font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px;
}
.ht-pkg-title {
  font-family: var(--font-head); font-size: 19px; font-weight: 700;
  color: var(--pine); line-height: 1.3; margin-bottom: 12px;
}
.ht-pkg-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.ht-pkg-tag {
  font-size: 10px; font-weight: 700; color: var(--moss);
  background: rgba(46,107,79,.1); padding: 4px 10px; border-radius: 50px;
}
.ht-pkg-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border); margin-top: auto;
}
.ht-pkg-price-from { font-size: 11px; color: var(--mist); }
.ht-pkg-price-amt {
  font-family: var(--font-head); font-size: 26px; font-weight: 700;
  color: var(--pine); line-height: 1;
}
.ht-pkg-price-per { font-size: 11px; color: var(--mist); }
.ht-pkg-btn {
  background: var(--sunrise); color: var(--cloud);
  border: none; padding: 10px 18px; border-radius: 50px;
  font-size: 12px; font-weight: 700; cursor: pointer;
  transition: all .2s; text-decoration: none; display: inline-block;
}
.ht-pkg-btn:hover { background: var(--dusk); transform: translateY(-1px); }

/* Packages page filter bar */
.ht-filter-bar {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; margin-bottom: 40px;
}
.ht-filter-btn {
  padding: 9px 20px; border-radius: 50px; font-size: 13px; font-weight: 600;
  border: 2px solid var(--border); background: var(--cloud); color: var(--mist);
  cursor: pointer; transition: all .2s;
}
.ht-filter-btn:hover, .ht-filter-btn.active {
  background: var(--pine); color: var(--cloud); border-color: var(--pine);
}

/* ============================================================
   WHY US CARDS
   ============================================================ */
.ht-why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.ht-why-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 30px 22px; transition: background .25s;
}
.ht-why-card:hover { background: rgba(255,255,255,.12); }
.ht-why-icon {
  width: 50px; height: 50px; background: rgba(232,149,74,.15);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 18px;
}
.ht-why-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--cloud); margin-bottom: 8px; }
.ht-why-desc { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.ht-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.ht-steps::before {
  content: ''; position: absolute; top: 30px; left: 14%; right: 14%;
  height: 2px; background: var(--border); z-index: 0;
}
.ht-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.ht-step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--snow); border: 3px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  color: var(--pine); margin-bottom: 18px; transition: all .25s;
}
.ht-step:hover .ht-step-num { background: var(--sunrise); border-color: var(--sunrise); color: var(--cloud); }
.ht-step-title { font-weight: 700; font-size: 15px; color: var(--pine); margin-bottom: 8px; }
.ht-step-desc { font-size: 13px; color: var(--mist); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.ht-reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.ht-review-card {
  background: var(--cloud); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.ht-review-stars { color: var(--sunrise); font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
.ht-review-text { font-size: 14px; color: var(--slate); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.ht-review-author { display: flex; align-items: center; gap: 12px; }
.ht-review-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--moss);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 17px; font-weight: 700;
  color: var(--cloud); flex-shrink: 0;
}
.ht-review-name { font-weight: 700; font-size: 13px; color: var(--pine); }
.ht-review-loc  { font-size: 11px; color: var(--mist); margin-top: 2px; }

/* ============================================================
   LEAD / BOOKING FORM SECTION
   ============================================================ */
.ht-book-section {
  background: linear-gradient(135deg, var(--moss) 0%, var(--pine) 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.ht-book-section::after {
  content: '🏔'; position: absolute; right: 4%; top: 50%;
  transform: translateY(-50%); font-size: 200px; opacity: .05; pointer-events: none;
}
.ht-book-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.ht-book-perks { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.ht-book-perk {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.82); font-size: 14px;
}
.ht-book-perk::before {
  content: '✓'; width: 22px; height: 22px; background: var(--sunrise);
  color: var(--cloud); border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.ht-form-box {
  background: var(--cloud); border-radius: var(--radius);
  padding: 36px; box-shadow: 0 24px 64px rgba(0,0,0,.22);
}
.ht-form-title { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--pine); margin-bottom: 4px; }
.ht-form-sub   { font-size: 13px; color: var(--mist); margin-bottom: 22px; }
.ht-field      { margin-bottom: 14px; }
.ht-field label { display: block; font-size: 12px; font-weight: 700; color: var(--slate); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .05em; }
.ht-field input, .ht-field select, .ht-field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 15px; font-family: var(--font-body);
  color: var(--slate); background: var(--snow); outline: none; transition: border-color .2s;
}
.ht-field input:focus, .ht-field select:focus, .ht-field textarea:focus {
  border-color: var(--moss); background: var(--cloud);
}
.ht-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ht-submit {
  width: 100%; padding: 15px; background: var(--sunrise); color: var(--cloud);
  border: none; border-radius: 50px; font-size: 16px; font-weight: 700;
  font-family: var(--font-body); cursor: pointer; margin-top: 6px; transition: all .22s;
}
.ht-submit:hover { background: var(--dusk); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,149,74,.4); }
.ht-form-note { text-align: center; font-size: 11px; color: var(--mist); margin-top: 10px; }
#ht-form-success { display: none; text-align: center; padding: 24px 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.ht-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.ht-contact-info { display: flex; flex-direction: column; gap: 28px; }
.ht-contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--cloud); padding: 22px; border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.ht-contact-icon {
  width: 46px; height: 46px; background: rgba(232,149,74,.12);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 20px; flex-shrink: 0;
}
.ht-contact-label { font-size: 11px; font-weight: 700; color: var(--mist); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.ht-contact-val   { font-size: 16px; font-weight: 600; color: var(--pine); }
.ht-contact-val a { color: var(--pine); }
.ht-contact-val a:hover { color: var(--sunrise); }
.ht-map-box {
  background: var(--cloud); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border); margin-top: 24px;
  min-height: 220px; display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--mist);
}
/* Contact form on right */
.ht-contact-form-wrap {
  background: var(--cloud); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--border);
}

/* ============================================================
   ADMIN — ADD PACKAGE PAGE (wp-admin styling)
   ============================================================ */
.ht-admin-wrap { max-width: 860px; }
.ht-admin-card {
  background: #fff; border-radius: 8px; border: 1px solid #e0e0e0;
  padding: 28px; margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.ht-admin-card h2 {
  font-size: 15px; font-weight: 700; color: #1e1e1e;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
  display: flex; align-items: center; gap: 8px;
}
.ht-admin-field { margin-bottom: 18px; }
.ht-admin-field label { display: block; font-size: 13px; font-weight: 600; color: #444; margin-bottom: 5px; }
.ht-admin-field input[type=text],
.ht-admin-field input[type=number],
.ht-admin-field input[type=date],
.ht-admin-field select,
.ht-admin-field textarea {
  width: 100%; padding: 10px 14px; border: 1px solid #ddd;
  border-radius: 6px; font-size: 14px; color: #333;
  outline: none; transition: border-color .2s; font-family: inherit;
}
.ht-admin-field input:focus,
.ht-admin-field select:focus,
.ht-admin-field textarea:focus { border-color: #2E6B4F; box-shadow: 0 0 0 3px rgba(46,107,79,.1); }
.ht-admin-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ht-admin-row3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.ht-admin-hint { font-size: 12px; color: #888; margin-top: 4px; }
.ht-admin-tag-input { display: flex; gap: 8px; flex-wrap: wrap; padding: 10px; border: 1px solid #ddd; border-radius: 6px; min-height: 44px; cursor: text; background: #fff; }
.ht-admin-tag { background: #e8f5ee; color: #2E6B4F; padding: 4px 10px; border-radius: 50px; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.ht-admin-tag button { background: none; border: none; cursor: pointer; color: #2E6B4F; font-size: 14px; line-height: 1; padding: 0; }
.ht-admin-tag-input input { border: none; outline: none; font-size: 13px; min-width: 120px; background: transparent; }
.ht-admin-preview { background: linear-gradient(135deg, #1B3A2D, #0F2318); border-radius: 8px; padding: 20px; color: white; margin-top: 10px; display: none; }
.ht-admin-save {
  background: #2E6B4F; color: #fff; padding: 13px 32px;
  border: none; border-radius: 6px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background .2s; font-family: inherit;
}
.ht-admin-save:hover { background: #1B3A2D; }
.ht-admin-notice { background: #f0fff6; border-left: 4px solid #2E6B4F; padding: 12px 16px; border-radius: 0 6px 6px 0; font-size: 14px; color: #1B3A2D; margin-bottom: 20px; display: none; }
.ht-img-upload-zone {
  border: 2px dashed #ddd; border-radius: 8px; padding: 32px;
  text-align: center; cursor: pointer; transition: all .2s; position: relative; overflow: hidden;
}
.ht-img-upload-zone:hover { border-color: #2E6B4F; background: #f9fff9; }
.ht-img-upload-zone img { max-height: 160px; margin: 0 auto; border-radius: 6px; display: none; }
.ht-img-upload-zone .ht-upload-placeholder { color: #aaa; font-size: 13px; }
.ht-img-upload-zone input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

/* ============================================================
   FOOTER
   ============================================================ */
#ht-footer { background: #0D1A10; color: rgba(255,255,255,.6); padding: 60px 0 0; }
.ht-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.ht-footer-brand .ht-logo { margin-bottom: 12px; display: block; }
.ht-footer-desc { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,.45); margin-bottom: 18px; }
.ht-footer-social { display: flex; gap: 10px; }
.ht-social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center;
  justify-content: center; font-size: 15px; transition: background .2s;
  text-decoration: none;
}
.ht-social-btn:hover { background: var(--sunrise); }
.ht-footer-title { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--cloud); margin-bottom: 16px; }
.ht-footer-links li { margin-bottom: 9px; }
.ht-footer-links a { font-size: 13px; color: rgba(255,255,255,.45); transition: color .2s; }
.ht-footer-links a:hover { color: var(--sunrise); }
.ht-footer-contact-row { display: flex; gap: 10px; font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 10px; line-height: 1.5; }
.ht-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.ht-footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }

/* WhatsApp float */
.ht-wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9990;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45); text-decoration: none;
  animation: waPulse 2.5s infinite;
}
.ht-wa-float:hover { transform: scale(1.1); }
.ht-wa-float svg { width: 28px; height: 28px; fill: white; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 6px 36px rgba(37,211,102,.72); }
}

/* ============================================================
   SINGLE PACKAGE PAGE
   ============================================================ */
.ht-single-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; padding: 60px 0; }
.ht-single-img { height: 420px; border-radius: var(--radius); overflow: hidden; background: var(--pine); margin-bottom: 36px; }
.ht-single-img img { width: 100%; height: 100%; object-fit: cover; }
.ht-info-block { margin-bottom: 32px; }
.ht-info-block h3 { font-family: var(--font-head); font-size: 19px; font-weight: 700; color: var(--pine); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.ht-checklist { display: flex; flex-direction: column; gap: 10px; }
.ht-checklist li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--slate); }
.ht-checklist--include li::before { content:'✓'; color: var(--moss); font-weight: 700; flex-shrink: 0; }
.ht-checklist--exclude li::before { content:'✗'; color: #d05050; flex-shrink: 0; }
.ht-sticky-box { position: sticky; top: 90px; background: var(--cloud); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.ht-sticky-price { font-family: var(--font-head); font-size: 38px; font-weight: 700; color: var(--pine); line-height: 1; }
.ht-sticky-per   { font-size: 13px; color: var(--mist); margin-bottom: 20px; }
.ht-info-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.ht-info-row:last-child { border: none; }
.ht-info-key { color: var(--mist); }
.ht-info-val { font-weight: 700; color: var(--pine); text-align: right; max-width: 200px; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center  { text-align: center; }
.text-center .ht-sub { margin: 0 auto; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-48 { margin-top: 48px; }
.hidden { display: none !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .ht-packages-grid { grid-template-columns: repeat(2,1fr); }
  .ht-why-grid { grid-template-columns: repeat(2,1fr); }
  .ht-footer-grid { grid-template-columns: 1fr 1fr; }
  .ht-single-layout { grid-template-columns: 1fr; }
  .ht-sticky-box { position: static; }
}
@media (max-width: 768px) {
  .ht-nav-links { display: none; }
  .ht-hamburger { display: flex; }
  .ht-packages-grid { grid-template-columns: 1fr; }
  .ht-why-grid { grid-template-columns: 1fr 1fr; }
  .ht-steps { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .ht-steps::before { display: none; }
  .ht-reviews-grid { grid-template-columns: 1fr; }
  .ht-book-inner { grid-template-columns: 1fr; gap: 36px; }
  .ht-contact-grid { grid-template-columns: 1fr; }
  .ht-footer-grid { grid-template-columns: 1fr; }
  .ht-hero-title { font-size: 38px; }
  .ht-hero-stats { gap: 28px; }
  .ht-admin-row, .ht-admin-row3 { grid-template-columns: 1fr; }
  .ht-field-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .ht-why-grid { grid-template-columns: 1fr; }
  .ht-steps { grid-template-columns: 1fr; }
  .ht-hero-actions { flex-direction: column; }
  .ht-hero-actions .ht-btn { width: 100%; justify-content: center; }
  .ht-form-box, .ht-contact-form-wrap { padding: 22px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }
