/* ============================================================
   style.css — Istiqomah Travel & Tours
   Mobile-first, hand-written, zero frameworks
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #1a7a4a;
  --green-dark: #135c38;
  --green-lite: #e8f5ee;
  --gold:       #c8952a;
  --gold-lite:  #fdf3e0;
  --red:        #c0392b;
  --amber:      #d68910;
  --text:       #1a1a1a;
  --text-muted: #666;
  --bg:         #ffffff;
  --bg-alt:     #f8faf9;
  --border:     #e0e0e0;
  --radius:     10px;
  --shadow:     0 2px 12px rgba(0,0,0,.10);
  --font:       'Segoe UI', system-ui, -apple-system, sans-serif;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }

/* ── Utility ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.sr-only   { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
  min-height: 48px;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-wa     { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1ebe5c; }

.btn-primary  { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }

.btn-outline  { background: transparent; border: 2px solid var(--green); color: var(--green); }
.btn-outline:hover { background: var(--green-lite); }

.btn-sm { padding: 10px 16px; font-size: .9rem; min-height: 40px; }
.btn-full { width: 100%; }

/* ── Badges ───────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.badge-full    { background: var(--red);   color: #fff; }
.badge-low     { background: var(--amber); color: #fff; }
.badge-cat     { background: var(--green-lite); color: var(--green-dark); }
.badge-umrah   { background: #fffbe6; color: #7d5a00; }
.badge-overseas { background: #e8f0ff; color: #1a3a8c; }
.badge-local   { background: #e8f5ee; color: var(--green-dark); }

/* ── Site Header ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo-link { flex-shrink: 0; }
.logo-img  { height: 44px; width: auto; }
.logo-text { font-size: 1.2rem; font-weight: 800; color: var(--green); }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav a  {
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
  transition: background var(--transition);
}
.main-nav a:hover { background: var(--green-lite); text-decoration: none; color: var(--green-dark); }

.header-wa { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, #2da05e 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .35;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 48px 16px;
  max-width: 640px;
}
.hero-content h1 {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 28px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Trust Strip ──────────────────────────────────────────── */
.trust-strip {
  background: var(--green-dark);
  color: #fff;
  padding: 12px 0;
}
.trust-strip .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
}
.trust-item svg { flex-shrink: 0; }

/* ── Section ──────────────────────────────────────────────── */
.section { padding: 56px 0; }
.section-alt { background: var(--bg-alt); }

.section-header { text-align: center; margin-bottom: 36px; }
.section-header h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.section-header p { color: var(--text-muted); font-size: 1rem; }

/* ── Category Cards ───────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.cat-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
  color: var(--text);
}
.cat-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  text-decoration: none;
}
.cat-icon { font-size: 2.5rem; margin-bottom: 12px; }
.cat-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
.cat-card p  { font-size: .9rem; color: var(--text-muted); margin-bottom: 10px; }
.cat-count   { font-size: .85rem; font-weight: 600; color: var(--green); }

/* ── Package Cards ────────────────────────────────────────── */
.pkg-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.pkg-strip::-webkit-scrollbar { height: 4px; }
.pkg-strip::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pkg-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 280px;  /* for strip mode */
}
.pkg-grid .pkg-card { width: auto; }

.pkg-card-img {
  position: relative;
  height: 170px;
  overflow: hidden;
  background: var(--bg-alt);
}
.pkg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.pkg-card:hover .pkg-card-img img { transform: scale(1.04); }
.pkg-card-badge { position: absolute; top: 10px; left: 10px; }
.pkg-seats      { position: absolute; top: 10px; right: 10px; }

.pkg-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.pkg-card-name { font-size: 1rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.pkg-card-meta { font-size: .83rem; color: var(--text-muted); display: flex; flex-wrap: wrap; gap: 8px; }
.pkg-card-meta span { display: flex; align-items: center; gap: 3px; }
.pkg-card-desc { font-size: .88rem; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pkg-card-price { font-size: 1.1rem; font-weight: 800; color: var(--green-dark); margin-top: auto; }
.pkg-card-price small { font-size: .75rem; font-weight: 400; color: var(--text-muted); }

.pkg-card-actions { padding: 0 16px 16px; display: flex; gap: 8px; }
.pkg-card-actions .btn { flex: 1; font-size: .88rem; padding: 10px 8px; min-height: 44px; }

/* ── Filter Bar ───────────────────────────────────────────── */
.filter-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  position: sticky;
  top: 65px;
  z-index: 50;
}
.filter-inner { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.filter-tabs  { display: flex; gap: 4px; flex-wrap: wrap; }
.filter-tab {
  padding: 8px 14px;
  border-radius: 20px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all var(--transition);
  min-height: 38px;
  display: flex;
  align-items: center;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  text-decoration: none;
}
.filter-price select {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: .9rem;
  background: var(--bg-alt);
  color: var(--text);
  cursor: pointer;
  min-height: 38px;
}

/* ── Package Detail ───────────────────────────────────────── */
.pkg-detail { padding: 32px 0 80px; }
.pkg-detail h1 { font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 900; color: var(--green-dark); margin-bottom: 10px; }

.pkg-hero-img { width: 100%; max-height: 420px; object-fit: cover; border-radius: var(--radius); }

.pkg-thumb-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0;
  scroll-snap-type: x mandatory;
}
.pkg-thumb-strip img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  scroll-snap-align: start;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.pkg-thumb-strip img:hover, .pkg-thumb-strip img.active { border-color: var(--green); }

.pkg-meta-box {
  background: var(--green-lite);
  border: 1px solid #b2d9c3;
  border-radius: var(--radius);
  padding: 20px;
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}
.pkg-meta-item { display: flex; flex-direction: column; gap: 2px; }
.pkg-meta-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); font-weight: 600; }
.pkg-meta-val   { font-size: 1rem; font-weight: 700; color: var(--green-dark); }

.inclusions-list { list-style: none; display: grid; gap: 8px; }
.inclusions-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
}
.inclusions-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  margin-top: 1px;
  flex-shrink: 0;
}

/* Sticky bottom bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -2px 12px rgba(0,0,0,.12);
  padding: 12px 16px;
  z-index: 200;
  display: flex;
  gap: 12px;
  align-items: center;
}
.sticky-bar .price { font-size: 1.1rem; font-weight: 800; color: var(--green-dark); white-space: nowrap; }
.sticky-bar .btn   { flex: 1; }

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img  { max-width: 95vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  color: #fff;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 4px;
}
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

/* ── Testimonials ─────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--green-lite);
  position: absolute;
  top: 8px;
  left: 16px;
  line-height: 1;
  font-family: Georgia, serif;
}
.testi-quote  { font-style: italic; color: var(--text-muted); margin-bottom: 16px; font-size: .95rem; padding-top: 20px; }
.testi-author { font-weight: 700; font-size: .9rem; color: var(--green-dark); }
.testi-meta   { font-size: .82rem; color: var(--text-muted); }

/* ── Lead Capture ─────────────────────────────────────────── */
.lead-section {
  background: var(--green-dark);
  color: #fff;
  padding: 48px 0;
  text-align: center;
}
.lead-section h2 { font-size: 1.6rem; margin-bottom: 8px; }
.lead-section p  { opacity: .85; margin-bottom: 28px; }
.lead-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; max-width: 460px; margin: 0 auto; }
.lead-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 16px;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  min-height: 52px;
}

/* ── Forms ────────────────────────────────────────────────── */
.form-wrap { max-width: 620px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .95rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font);
  color: var(--text);
  transition: border-color var(--transition);
  min-height: 48px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,122,74,.12);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-required { color: var(--red); margin-left: 2px; }
.form-submit { width: 100%; min-height: 52px; font-size: 1.05rem; }
.form-note { font-size: .82rem; color: var(--text-muted); margin-top: 6px; }

/* ── Alert / Flash ────────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-weight: 600;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info    { background: var(--green-lite); color: var(--green-dark); border: 1px solid #b2d9c3; }

/* ── Empty State ──────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.empty-state .icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h3    { font-size: 1.2rem; color: var(--text); margin-bottom: 10px; }
.empty-state p     { margin-bottom: 20px; }

/* ── About Section ────────────────────────────────────────── */
.about-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
.about-text h2 { font-size: 1.8rem; font-weight: 800; color: var(--green-dark); margin-bottom: 16px; }
.about-text p  { color: var(--text-muted); margin-bottom: 12px; }
.about-lic     { display: inline-flex; align-items: center; gap: 8px; background: var(--gold-lite); border: 1px solid var(--gold); border-radius: 8px; padding: 10px 16px; font-weight: 700; color: var(--gold); margin-top: 10px; }
.about-img     { border-radius: var(--radius); overflow: hidden; background: var(--bg-alt); min-height: 220px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); }

/* ── Share Strip ──────────────────────────────────────────── */
.share-strip { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0; }

/* ── Page Header ──────────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  padding: 40px 0 32px;
}
.page-header h1 { font-size: clamp(1.4rem, 4vw, 2.2rem); font-weight: 900; margin-bottom: 6px; }
.page-header p  { opacity: .85; }

/* ── Thank You ────────────────────────────────────────────── */
.thankyou-box {
  max-width: 560px;
  margin: 60px auto;
  text-align: center;
  padding: 40px 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.thankyou-box .check { font-size: 3.5rem; margin-bottom: 16px; }
.thankyou-box h1     { font-size: 1.8rem; color: var(--green-dark); margin-bottom: 10px; }
.thankyou-box p      { color: var(--text-muted); margin-bottom: 24px; }

/* ── 404 ──────────────────────────────────────────────────── */
.notfound-box {
  max-width: 500px;
  margin: 80px auto;
  text-align: center;
  padding: 40px 24px;
}
.notfound-box h1 { font-size: 5rem; font-weight: 900; color: var(--green); line-height: 1; }
.notfound-box h2 { font-size: 1.4rem; color: var(--green-dark); margin: 10px 0; }
.notfound-box p  { color: var(--text-muted); margin-bottom: 28px; }
.notfound-links  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Site Footer ──────────────────────────────────────────── */
.site-footer {
  background: #111;
  color: #ccc;
  padding-top: 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  padding-bottom: 40px;
}
.footer-logo      { height: 48px; width: auto; margin-bottom: 10px; filter: brightness(0) invert(1); }
.footer-logo-text { font-size: 1.3rem; font-weight: 800; color: #fff; }
.footer-tagline   { font-size: .9rem; color: #aaa; margin: 8px 0 4px; }
.footer-lic       { font-size: .85rem; color: var(--gold); }

.footer-nav h3, .footer-contact h3 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-nav ul li { margin-bottom: 8px; }
.footer-nav a     { color: #aaa; font-size: .9rem; transition: color var(--transition); }
.footer-nav a:hover { color: #fff; text-decoration: none; }

.footer-wa { margin-bottom: 16px; width: 100%; justify-content: center; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-links a { color: #aaa; transition: color var(--transition); }
.social-links a:hover { color: #fff; }

.footer-bottom {
  background: #0a0a0a;
  padding: 16px 0;
  font-size: .82rem;
  color: #666;
  text-align: center;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .main-nav, .header-wa { display: none; }
  .hamburger             { display: flex; }

  .main-nav.open {
    display: block;
    position: fixed;
    inset: 65px 0 0 0;
    background: #fff;
    z-index: 99;
    padding: 20px;
    overflow-y: auto;
  }
  .main-nav.open ul { flex-direction: column; gap: 0; }
  .main-nav.open a  { display: block; padding: 14px 16px; font-size: 1.1rem; border-bottom: 1px solid var(--border); }

  .hero-btns .btn { width: 100%; }

  .pkg-grid { grid-template-columns: 1fr 1fr; }

  .filter-inner { gap: 8px; }

  .sticky-bar .price { font-size: .95rem; }
}

@media (max-width: 480px) {
  .pkg-grid       { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 1.5rem; }
  .trust-strip .container { flex-direction: column; gap: 10px; }
  .lead-form { flex-direction: column; }
  .lead-form input, .lead-form .btn { width: 100%; }
  .pkg-card-actions { flex-direction: column; }
}

@media (min-width: 769px) {
  .pkg-strip { flex-wrap: wrap; overflow-x: visible; }
  .pkg-strip .pkg-card { width: auto; }
  .pkg-strip { display: grid; grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Rich text content ────────────────────────────────────── */
.rich-text h2, .rich-text h3 { color: var(--green-dark); margin: 20px 0 8px; }
.rich-text p  { margin-bottom: 12px; color: var(--text-muted); }
.rich-text ul { list-style: disc; padding-left: 20px; }
.rich-text li { margin-bottom: 6px; }

/* ── Logo image in header & footer ───────────────────────────── */
.logo-img       { height: 48px; width: auto; display: block; }
.footer-logo-img { height: 44px; width: auto; filter: brightness(0) invert(1); display:block; margin-bottom:10px; }
.footer-logo-link { display:inline-block; }

/* ── Galeri Trip Section ──────────────────────────────────────── */
.galeri-section {
  margin: 36px 0;
}
.galeri-heading {
  color: var(--green-dark);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

/* 16:9 responsive YouTube embed */
.yt-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.yt-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Google Photos album button */
.gallery-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--green-lite);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.gallery-btn:hover {
  background: #d0eadb;
  transform: translateY(-1px);
  text-decoration: none;
}
.gallery-btn svg {
  flex-shrink: 0;
  color: var(--green);
}
.gallery-sub {
  font-size: .78rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: auto;
}
@media (max-width: 480px) {
  .gallery-sub { display: none; }
}

/* ── About section media ─────────────────────────────────────── */
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-yt-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  width: 100%;
}
.about-yt-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ── Footer address column ───────────────────────────────────── */
.footer-address h3 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-address address {
  font-style: normal;
  color: #aaa;
  font-size: .88rem;
  line-height: 1.6;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-address address svg { flex-shrink: 0; margin-top: 2px; color: var(--green); }
.footer-maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 0;
}
.footer-maps-btn:hover { color: #4caf82; text-decoration: none; }

/* ── About section address & map ─────────────────────────────── */
.about-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-muted);
  font-size: .9rem;
  margin-top: 12px;
  line-height: 1.5;
}
.about-address svg { flex-shrink: 0; margin-top: 2px; color: var(--green); }
.about-maps-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--green);
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
}
.about-maps-link:hover { text-decoration: underline; }

/* Map embed inside about-img */
.about-map-embed {
  width: 100%;
  height: 100%;
  min-height: 260px;
}
.about-map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  display: block;
}

/* ── Location section on enquire page ────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
  align-items: start;
}
.location-info h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 24px;
}
.location-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.location-item svg { flex-shrink: 0; color: var(--green); margin-top: 2px; }
.location-item strong { display: block; font-size: .88rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.location-item p, .location-item a { font-size: .95rem; color: var(--text); line-height: 1.6; }

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-map  { height: 280px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
