/* ═══════════════════════════════════════════════════
   MINI MAR CATERING — css/client.css
   Client website styles: header, hero, sections,
   packages, gallery, booking, footer, telegram float
   ═══════════════════════════════════════════════════ */

body { background: var(--cream); }

/* ── PAGE LOADER ── */
.page-loader {
  position: fixed; inset: 0;
  background: var(--green);
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.5s;
}
.page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-emoji {
  font-size: 56px;
  animation: loaderPulse 1.2s ease-in-out infinite;
  margin-bottom: 16px;
}
.loader-text {
  color: rgba(255,255,255,0.65);
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
}
.loader-bar {
  width: 180px; height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 100px; margin-top: 14px; overflow: hidden;
}
.loader-fill {
  height: 100%; background: var(--gold);
  border-radius: 100px;
  animation: loaderBar 1.5s ease-in-out infinite;
}

/* ── NOTICE BAR ── */
#notice-bar {
  background: var(--gold); color: white;
  text-align: center; padding: 10px 48px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  position: relative; display: none;
}
#notice-bar.show { display: block; }
#notice-bar button {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: white; cursor: pointer; font-size: 18px;
}

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900; transition: all 0.3s;
}
header.scrolled {
  background: rgba(31,61,43,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
header.top { background: transparent; }

.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  height: 76px; display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; text-decoration: none;
}
.logo-mark {
  width: 46px; height: 46px; background: var(--gold);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 22px; flex-shrink: 0;
}
.logo-text strong { display: block; color: white; font-size: 17px; font-weight: 800; letter-spacing: 0.5px; }
.logo-text span   { color: rgba(255,255,255,0.55); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }

nav { display: flex; align-items: center; gap: 2px; }
nav a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: all 0.2s; border: none; background: none;
  font-family: 'Outfit', sans-serif;
}
nav a:hover, nav a.active { color: white; background: rgba(255,255,255,0.1); }
.nav-cta {
  background: var(--gold) !important; color: white !important;
  padding: 9px 20px !important; border-radius: 10px !important; font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; }

.hamburger {
  display: none; background: none; border: none;
  color: white; font-size: 22px; cursor: pointer;
}
.mob-menu {
  display: none; background: var(--green);
  flex-direction: column; padding: 12px 20px 20px;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  color: rgba(255,255,255,0.85); padding: 11px 14px;
  border-radius: 8px; font-size: 15px; font-weight: 500;
  cursor: pointer; transition: background 0.2s;
}
.mob-menu a:hover { background: rgba(255,255,255,0.1); color: white; }

/* ── PAGES ── */
.pg { display: none; }
.pg.active { display: block; }

/* ── SECTIONS ── */
.section { padding: 88px 32px; }
.container { max-width: 1200px; margin: 0 auto; }

/* ── FILTER BAR ── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 8px 20px; border-radius: 100px;
  border: 1.5px solid rgba(31,61,43,0.2);
  background: transparent; color: var(--muted);
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--green); color: white; border-color: var(--green);
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(155deg, var(--green) 0%, #2d5940 100%);
  padding: 140px 32px 72px; text-align: center; color: white;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 68px); font-weight: 700;
  color: white; margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,0.65); font-size: 17px; max-width: 540px; margin: 0 auto; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--green) 0%, #234530 55%, #1a3325 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; position: relative;
  overflow: hidden; padding: 120px 32px 80px;
}
.hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.hero-orbs span {
  position: absolute; border-radius: 50%;
  background: var(--gold); opacity: 0.06;
  animation: float 8s ease-in-out infinite;
}
.hero-orbs span:nth-child(1) { width: 500px; height: 500px; top: -100px; left: -100px; }
.hero-orbs span:nth-child(2) { width: 350px; height: 350px; bottom: -50px; right: -50px; animation-delay: 3s; }
.hero-orbs span:nth-child(3) { width: 200px; height: 200px; top: 40%; left: 60%; animation-delay: 5s; }

.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.18); border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold); padding: 8px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  margin-bottom: 28px; animation: fadeUp 0.7s ease both;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 96px);
  color: white; line-height: 1.1; font-weight: 700;
  margin-bottom: 22px; animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p {
  color: rgba(255,255,255,0.7); font-size: 18px;
  max-width: 560px; margin: 0 auto 40px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-divider {
  width: 60px; height: 3px; background: var(--gold);
  border-radius: 2px; margin: 56px auto 40px; opacity: 0.5;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; max-width: 680px; width: 100%;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-stat strong { display: block; font-size: 36px; font-weight: 800; color: var(--gold); }
.hero-stat span   { color: rgba(255,255,255,0.55); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }

/* ── WHY SECTION ── */
.why { background: white; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.why-card {
  padding: 32px 26px; border-radius: var(--r);
  border: 1.5px solid var(--border); transition: all 0.3s;
}
.why-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: var(--shadow); }
.why-icon {
  width: 54px; height: 54px; background: var(--gold-light);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 20px;
}
.why-card h3 { font-size: 17px; font-weight: 700; color: var(--green); margin-bottom: 9px; }
.why-card p  { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ── PACKAGES ── */
.pkg-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 26px; }
.pkg-card {
  background: white; border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all 0.3s; border: 1.5px solid var(--border);
}
.pkg-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(245,166,35,0.3); }
.pkg-thumb {
  height: 190px; display: flex; align-items: center;
  justify-content: center; font-size: 62px; position: relative;
}
.pkg-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: white;
  padding: 4px 12px; border-radius: 100px; font-size: 11px; font-weight: 700;
}
.pkg-body { padding: 24px; }
.pkg-body h3 { font-size: 19px; font-weight: 700; color: var(--green); margin-bottom: 6px; }
.pkg-body .desc { color: var(--muted); font-size: 13px; margin-bottom: 14px; line-height: 1.6; }
.pkg-meta { display: flex; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.pkg-meta span { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--muted); }
.pkg-meta i { color: var(--gold); font-size: 11px; }
.pkg-menu-list { list-style: none; margin-bottom: 20px; }
.pkg-menu-list li {
  font-size: 13px; color: var(--muted); padding: 3px 0;
  display: flex; align-items: center; gap: 8px;
}
.pkg-menu-list li::before { content: '✓'; color: var(--gold); font-weight: 800; font-size: 12px; }
.pkg-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 16px;
}
.pkg-price .amount { font-size: 28px; font-weight: 800; color: var(--green); }
.pkg-price .per    { font-size: 12px; color: var(--muted); display: block; margin-top: -4px; }
.no-packages { text-align: center; padding: 80px 24px; color: var(--muted); grid-column: 1 / -1; }
.no-packages i { font-size: 56px; opacity: 0.3; display: block; margin-bottom: 20px; }

/* ── COMPARE TABLE ── */
.compare-wrap  { overflow-x: auto; margin-top: 64px; }
.compare-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 700; color: var(--green); margin-bottom: 24px; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.compare-table th { background: var(--green); color: white; padding: 14px 18px; text-align: left; font-size: 13px; font-weight: 600; }
.compare-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); font-size: 14px; }
.compare-table tr:nth-child(even) td { background: var(--cream); }
.compare-table .check      { color: var(--gold); font-weight: 800; }
.compare-table .price-cell { font-weight: 800; color: var(--green); font-size: 16px; }

/* ── ESTIMATOR ── */
.estimator { background: var(--green); }
.estimator-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.estimator-left .sec-title { color: white; }
.estimator-left .sec-sub   { color: rgba(255,255,255,0.65); }
.estimator-card { background: white; border-radius: 20px; padding: 36px; box-shadow: var(--shadow-lg); }
.est-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.est-group label {
  display: block; font-size: 12px; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 7px;
}
.est-group select,
.est-group input {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: var(--r-sm); font-family: 'Outfit', sans-serif;
  font-size: 14px; color: var(--text); background: var(--cream); transition: border 0.2s;
}
.est-group select:focus, .est-group input:focus { outline: none; border-color: var(--gold); background: white; }
.est-result {
  background: var(--green); border-radius: 12px; padding: 20px 24px;
  margin-top: 20px; display: flex; align-items: center; justify-content: space-between;
}
.est-result-label { color: rgba(255,255,255,0.7); font-size: 13px; }
.est-result-value { color: var(--gold); font-size: 28px; font-weight: 800; }
.est-breakdown    { color: rgba(255,255,255,0.55); font-size: 12px; margin-top: 4px; }

/* ── ADD-ONS STRIP ── */
.addons-strip { background: white; padding: 48px 32px; display: none; }
.addons-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.addons-strip h3 { font-size: 18px; font-weight: 700; color: var(--green); white-space: nowrap; }
.addon-pills { display: flex; gap: 10px; flex-wrap: wrap; flex: 1; }
.addon-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: 100px; padding: 8px 16px;
  font-size: 13px; font-weight: 500; color: var(--text); transition: all 0.2s;
}
.addon-pill span.price { color: var(--gold); font-weight: 700; }
.addon-pill:hover { border-color: var(--gold); background: var(--gold-light); }

/* ── TIKTOK SECTION ── */
.tiktok-sec { background: var(--green); padding: 88px 32px; }
.tiktok-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 18px; max-width: 900px; margin: 0 auto 40px; }
.tt-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r); overflow: hidden; cursor: pointer;
  transition: all 0.3s; text-decoration: none;
}
.tt-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.14); }
.tt-thumb {
  aspect-ratio: 9/16; max-height: 240px;
  background: rgba(0,0,0,0.25); display: flex;
  align-items: center; justify-content: center; font-size: 40px; position: relative;
}
.tt-play {
  position: absolute; width: 48px; height: 48px;
  background: rgba(245,166,35,0.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 17px;
}
.tt-info { padding: 14px; }
.tt-info p    { color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.tt-info span { color: rgba(255,255,255,0.45); font-size: 12px; }

/* ── TESTIMONIALS ── */
.testi { background: white; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.testi-card {
  background: var(--cream); border-radius: var(--r);
  padding: 28px; border: 1.5px solid var(--border); transition: all 0.3s;
}
.testi-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-stars  { color: var(--gold); font-size: 17px; margin-bottom: 14px; }
.testi-text   { color: var(--text); font-size: 15px; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-light); display: flex;
  align-items: center; justify-content: center; font-size: 20px;
}
.testi-name  { font-weight: 700; font-size: 14px; color: var(--green); }
.testi-event { font-size: 12px; color: var(--muted); }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: white; border-radius: var(--r-sm); margin-bottom: 10px;
  overflow: hidden; border: 1.5px solid var(--border); transition: border 0.2s;
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--text); text-align: left; gap: 16px;
}
.faq-q i { color: var(--gold); font-size: 16px; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }
.faq-a p { color: var(--muted); font-size: 14px; line-height: 1.75; }

/* ── CTA BAND ── */
.cta-band { background: var(--gold); padding: 72px 32px; text-align: center; }
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 52px); color: white; margin-bottom: 12px; font-weight: 700;
}
.cta-band p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 32px; }
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 16px; }
.gal-item {
  position: relative; border-radius: var(--r-sm); overflow: hidden;
  cursor: pointer; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 60px; transition: transform 0.3s;
}
.gal-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(31,61,43,0.9) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 18px;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span { color: white; font-size: 13px; font-weight: 600; }

/* ── LIGHTBOX ── */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.96); z-index: 9999;
  align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lb-inner { max-width: 680px; width: 100%; text-align: center; }
.lb-img {
  width: 100%; min-height: 320px; border-radius: var(--r);
  background: var(--green); display: flex;
  align-items: center; justify-content: center; font-size: 110px;
}
.lb-caption { color: rgba(255,255,255,0.65); margin-top: 14px; font-size: 14px; }
.lb-close {
  position: absolute; top: 22px; right: 22px;
  background: none; border: none; color: white; font-size: 30px; cursor: pointer;
}

/* ── BOOKING ── */
.booking-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.form-card {
  background: white; border-radius: var(--r);
  padding: 36px; box-shadow: var(--shadow-sm); border: 1.5px solid var(--border);
}
.form-card h2      { font-size: 22px; font-weight: 700; color: var(--green); margin-bottom: 6px; }
.form-card .sub    { color: var(--muted); font-size: 13px; margin-bottom: 28px; }
.form-card .f-group input,
.form-card .f-group select,
.form-card .f-group textarea {
  background: var(--cream);
}
.form-card .f-group input:focus,
.form-card .f-group select:focus,
.form-card .f-group textarea:focus { background: white; }
.form-card .f-group label { color: var(--green); }

.sum-title    { font-size: 16px; font-weight: 700; color: var(--green); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.sum-pkg      { background: var(--cream); border-radius: var(--r-sm); padding: 18px; margin-bottom: 16px; border: 1.5px solid var(--border); }
.sum-pkg-name { font-weight: 700; font-size: 16px; color: var(--green); margin-bottom: 4px; }
.sum-pkg-price{ color: var(--gold); font-weight: 800; font-size: 14px; }
.sum-line {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px;
}
.sum-line:last-child { border-bottom: none; }
.sum-total {
  display: flex; justify-content: space-between;
  padding: 14px 0; font-weight: 800; font-size: 18px;
  color: var(--green); border-top: 2px solid var(--border); margin-top: 8px;
}

.addon-check-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: 13px; cursor: pointer;
}
.addon-check-item:last-child { border-bottom: none; }
.addon-check-item input[type=checkbox] { accent-color: var(--gold); width: 16px; height: 16px; }
.addon-check-item .addon-name  { flex: 1; color: var(--text); font-weight: 500; }
.addon-check-item .addon-price { color: var(--gold); font-weight: 700; }

/* ── CALENDAR ── */
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-top: 14px; }
.cal-header-row { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 6px; }
.cal-header-row span { text-align: center; font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 0.2s; border: 1.5px solid transparent;
}
.cal-day.empty    { background: none; cursor: default; }
.cal-day.available:hover { background: var(--gold-light); border-color: var(--gold); color: var(--gold-dark); }
.cal-day.selected { background: var(--gold); color: white; border-color: var(--gold); }
.cal-day.blocked  { background: #fef2f2; color: var(--red); text-decoration: line-through; cursor: not-allowed; }
.cal-day.past     { opacity: 0.3; cursor: not-allowed; }
.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-nav button { background: none; border: none; cursor: pointer; color: var(--green); font-size: 18px; padding: 4px 8px; }
.cal-nav h4 { font-size: 14px; font-weight: 700; color: var(--green); }

/* ── BOOKING SUCCESS ── */
.bk-success {
  display: none; text-align: center; padding: 48px 32px;
  background: white; border-radius: var(--r); box-shadow: var(--shadow-sm);
}
.bk-success.show { display: block; }
.bk-success i { font-size: 56px; color: var(--gold); margin-bottom: 16px; display: block; }
.ref-box {
  background: var(--green); color: white;
  border-radius: var(--r-sm); padding: 16px 24px;
  margin: 20px auto; max-width: 280px;
}
.ref-box .ref-label { font-size: 12px; opacity: 0.65; margin-bottom: 4px; }
.ref-box .ref-code  { font-size: 24px; font-weight: 800; letter-spacing: 3px; color: var(--gold); }

/* ── TRACK BOOKING ── */
.track-card {
  background: white; border-radius: var(--r); padding: 40px;
  box-shadow: var(--shadow-sm); max-width: 560px; margin: 0 auto;
  border: 1.5px solid var(--border);
}
.track-result { margin-top: 24px; display: none; }
.track-result.show { display: block; }
.status-badge { display: inline-block; padding: 6px 18px; border-radius: 100px; font-size: 13px; font-weight: 700; }
.sb-pending   { background: rgba(245,166,35,0.15); color: #c07c10; }
.sb-confirmed { background: rgba(31,61,43,0.1);    color: var(--green); }
.sb-completed { background: rgba(59,130,246,0.1);  color: var(--blue); }
.sb-cancelled { background: rgba(239,68,68,0.1);   color: var(--red); }
.track-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.track-row:last-child { border-bottom: none; }
.track-row .lbl { color: var(--muted); font-weight: 500; }
.track-row .val { font-weight: 600; color: var(--text); }

/* ── WARN BOX ── */
.warn-box {
  background: #fef3cd; border: 1px solid #f5c542;
  border-radius: 8px; padding: 10px 14px;
  font-size: 13px; color: #856404; margin-bottom: 14px; display: none;
}
.ok-box {
  background: #f0fdf4; border: 1px solid #86efac;
  border-radius: 8px; padding: 12px 16px;
  font-size: 14px; color: #16a34a; margin-top: 12px; display: none; text-align: center;
}

/* ── ABOUT ── */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual {
  border-radius: 24px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  height: 420px; display: flex; align-items: center;
  justify-content: center; font-size: 120px; box-shadow: var(--shadow-lg);
}
.about-nums { display: flex; gap: 32px; margin-top: 32px; }
.about-num strong { display: block; font-size: 34px; font-weight: 800; color: var(--green); }
.about-num span   { font-size: 13px; color: var(--muted); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.ci { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 26px; }
.ci-icon {
  width: 46px; height: 46px; background: var(--gold-light);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; color: var(--gold-dark); font-size: 18px; flex-shrink: 0;
}
.ci-text h4   { font-weight: 700; color: var(--green); margin-bottom: 3px; font-size: 15px; }
.ci-text p,
.ci-text a    { color: var(--muted); font-size: 14px; text-decoration: none; }
.ci-text a:hover { color: var(--gold); }
.tg-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #229ED9; color: white; padding: 13px 26px;
  border-radius: 12px; font-size: 15px; font-weight: 600;
  text-decoration: none; transition: all 0.25s; margin-top: 16px;
}
.tg-btn:hover { background: #1a8dc4; transform: translateY(-2px); }

/* ── FOOTER ── */
footer { background: var(--green); color: rgba(255,255,255,0.65); padding: 72px 32px 32px; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; line-height: 1.75; margin: 16px 0; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: white; text-decoration: none; font-size: 16px; transition: all 0.2s;
}
.footer-socials a:hover { background: var(--gold); transform: translateY(-2px); }
.footer-col h4    { color: white; font-weight: 700; font-size: 14px; margin-bottom: 18px; letter-spacing: 0.5px; }
.footer-col a     { display: block; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; margin-bottom: 9px; cursor: pointer; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col p     { color: rgba(255,255,255,0.55); font-size: 13px; margin-bottom: 9px; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 26px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; font-size: 13px;
}

/* ── TELEGRAM FLOAT ── */
.tg-float { position: fixed; bottom: 28px; right: 28px; z-index: 800; display: flex; align-items: center; gap: 0; }
.tg-float-tooltip {
  background: var(--green); color: white;
  padding: 8px 14px; border-radius: 10px 0 0 10px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
  transform: translateX(10px); opacity: 0; transition: all 0.25s; pointer-events: none;
}
.tg-float:hover .tg-float-tooltip { opacity: 1; transform: translateX(0); }
.tg-float-btn {
  width: 58px; height: 58px; background: #229ED9;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 26px;
  box-shadow: 0 4px 20px rgba(34,158,217,0.5);
  text-decoration: none; animation: tgPulse 2.5s ease-in-out infinite; flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .estimator-inner  { grid-template-columns: 1fr; }
  .booking-layout   { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .about-story      { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav          { display: none; }
  .hamburger   { display: block; }
  .hero-stats  { grid-template-columns: repeat(2, 1fr); }
  .section     { padding: 64px 20px; }
  .about-visual{ height: 280px; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 20px; }
  .hero-stat strong { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
}
