/* =====================================================================
   Shree Rajeshwar Travels — Front-end stylesheet
   Palette: Teal / Green primary  +  Orange accent
   ---------------------------------------------------------------------
   01. Tokens
   02. Reset & base
   03. Typography
   04. Layout
   05. Buttons & badges
   06. Header / navigation
   07. Hero
   08. Cards
   09. Sections
   10. Forms
   11. Footer
   12. Components (accordion, tabs, pagination, lightbox…)
   13. Animations
   14. Responsive
   ===================================================================== */

/* ---------------------------------------------------------------------
   01. Tokens
   ------------------------------------------------------------------ */
:root {
  /* Brand */
  --brand-50:  #ecfbf6;
  --brand-100: #d2f4ea;
  --brand-200: #a7e7d6;
  --brand-300: #6fd3bc;
  --brand-400: #34b79c;
  --brand-500: #129b82;
  --brand-600: #0e7c6b;
  --brand-700: #0b6153;
  --brand-800: #0a4d43;
  --brand-900: #073b34;

  /* Accent */
  --accent-50:  #fff5ec;
  --accent-100: #ffe6d1;
  --accent-400: #fb923c;
  --accent-500: #f97316;
  --accent-600: #ea6205;
  --accent-700: #c2500a;

  /* RGB channels of the three key colours — used inside rgba() so that
     shadows, overlays and gradients follow the active theme. */
  --brand-rgb:  18, 155, 130;   /* brand-500 */
  --accent-rgb: 249, 115, 22;   /* accent-500 */
  --dark-rgb:   7, 59, 52;      /* brand-900 */

  /* Neutrals */
  --ink:    #0d1f1b;
  --ink-2:  #26403a;
  --body:   #4d635e;
  --muted:  #7f948f;
  --line:   #e4eeeb;
  --line-2: #f0f6f4;
  --surface:      #ffffff;
  --surface-soft: #f5faf8;
  --surface-dark: #073b34;

  /* Effects */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow-xs: 0 1px 2px rgba(var(--dark-rgb), .06);
  --shadow-sm: 0 2px 8px rgba(var(--dark-rgb), .06);
  --shadow:    0 10px 30px -12px rgba(var(--dark-rgb), .18);
  --shadow-lg: 0 24px 60px -20px rgba(var(--dark-rgb), .28);
  --ring: 0 0 0 4px rgba(var(--brand-rgb), .18);

  /* Type */
  --font-head: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --container: 1200px;
  --gutter: 20px;
  --section-y: 96px;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------------------------------------------------------------------
   02. Reset & base
   ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: var(--brand-600); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent-500); }

ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }

:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--brand-200); color: var(--brand-900); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--surface-soft); }
::-webkit-scrollbar-thumb { background: var(--brand-200); border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-300); }

/* ---------------------------------------------------------------------
   03. Typography
   ------------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .5em;
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--ink);
}

h1 { font-size: clamp(2.1rem, 1.4rem + 3vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 1.2rem + 2.1vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + .9vw, 1.6rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.075rem; color: var(--body); }
.text-muted { color: var(--muted); }
.text-brand { color: var(--brand-600); }
.text-accent { color: var(--accent-500); }
.text-center { text-align: center; }

.rich-text h3 { margin-top: 1.6em; }
.rich-text h4 { margin-top: 1.4em; color: var(--ink-2); }
.rich-text ul { margin: 0 0 1.1em; padding-left: 1.2em; }
.rich-text ul li { list-style: disc; margin-bottom: .4em; }
.rich-text a { text-decoration: underline; }

/* ---------------------------------------------------------------------
   04. Layout
   ------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow { max-width: 860px; }

.section { padding-block: var(--section-y); }
.section-sm { padding-block: 64px; }
.section-soft { background: var(--surface-soft); }
.section-dark { background: var(--surface-dark); color: rgba(255,255,255,.78); }
.section-dark h2, .section-dark h3 { color: #fff; }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: 10px; }
.gap { gap: 18px; }

/* Section heading block */
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--body); font-size: 1.03rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  background: var(--brand-50);
  color: var(--brand-700);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.eyebrow svg { width: 15px; height: 15px; color: var(--accent-500); }
.section-head.center .eyebrow { margin-inline: auto; }
.section-dark .eyebrow { background: rgba(255,255,255,.1); color: var(--brand-200); }

/* Icons */
.icon    { width: 22px; height: 22px; flex: none; }
.icon-xs { width: 14px; height: 14px; flex: none; }
.icon-sm { width: 18px; height: 18px; flex: none; }
.icon-lg { width: 28px; height: 28px; flex: none; }

/* ---------------------------------------------------------------------
   05. Buttons & badges
   ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .25s var(--ease);
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(var(--brand-rgb), .8);
}
.btn-primary:hover {
  background: var(--brand-700);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -14px rgba(var(--brand-rgb), .9);
}

.btn-accent {
  background: var(--accent-500);
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(var(--accent-rgb), .85);
}
.btn-accent:hover {
  background: var(--accent-600);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -14px rgba(var(--accent-rgb), .95);
}

.btn-outline {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}
.btn-outline:hover {
  border-color: var(--brand-500);
  color: var(--brand-700);
  background: var(--brand-50);
}

.btn-ghost-light {
  border-color: rgba(255,255,255,.55);
  color: #fff;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,.08);
}
.btn-ghost-light:hover { background: #fff; color: var(--brand-700); border-color: #fff; }

.btn-white { background: #fff; color: var(--brand-700); }
.btn-white:hover { background: var(--accent-500); color: #fff; }

.btn-sm { padding: 9px 18px; font-size: .86rem; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  color: var(--brand-600);
}
.link-arrow svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.badge-brand  { background: var(--brand-50);  color: var(--brand-700); }
.badge-accent { background: var(--accent-50); color: var(--accent-700); }
.badge-solid  { background: var(--accent-500); color: #fff; }

/* Stars */
.stars { display: inline-flex; gap: 2px; color: #d6ded9; }
.stars .star svg { width: 15px; height: 15px; }
.stars .star.filled { color: #f5a623; }
.stars .star.filled svg { fill: currentColor; }

/* ---------------------------------------------------------------------
   06. Header / navigation
   ------------------------------------------------------------------ */
.topbar {
  background: var(--brand-800);
  color: rgba(255,255,255,.72);
  font-size: .84rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
}
.topbar-info { display: flex; align-items: center; gap: 24px; }
.topbar a { color: rgba(255,255,255,.82); display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; color: var(--brand-300); }
.topbar-social { display: flex; align-items: center; gap: 6px; }
.topbar-social a {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.topbar-social a:hover { background: var(--accent-500); }
.topbar-social svg { width: 14px; height: 14px; color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo img { max-height: 52px; width: auto; }
.logo-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: linear-gradient(140deg, var(--brand-500), var(--brand-700));
  color: #fff;
  box-shadow: 0 8px 18px -8px rgba(var(--brand-rgb),.9);
}
.logo-mark svg { width: 24px; height: 24px; }
.logo-text { line-height: 1.15; }
.logo-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
}
.logo-text span {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Desktop nav */
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: .94rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: all .2s var(--ease);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--brand-700);
  background: var(--brand-50);
}
.main-nav > ul > li > a.active { font-weight: 600; }
.main-nav .caret { width: 15px; height: 15px; opacity: .55; transition: transform .2s var(--ease); }
.has-dropdown { position: relative; }
.has-dropdown:hover .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 232px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .22s var(--ease);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-radius: 10px;
  font-size: .9rem;
  color: var(--body);
}
.dropdown a:hover { background: var(--brand-50); color: var(--brand-700); }
.dropdown svg { width: 16px; height: 16px; color: var(--brand-400); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  color: var(--ink);
}
.nav-toggle:hover { background: var(--brand-50); border-color: var(--brand-200); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(340px, 88vw);
  z-index: 1000;
  background: #fff;
  padding: 22px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .34s var(--ease);
  box-shadow: -20px 0 60px -20px rgba(var(--dark-rgb),.35);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px; margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  border-radius: 12px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-2);
}
.mobile-nav ul li a:hover,
.mobile-nav ul li a.active { background: var(--brand-50); color: var(--brand-700); }
.mobile-sub { padding-left: 12px; }
.mobile-sub a { font-size: .9rem !important; font-weight: 400 !important; color: var(--body) !important; }
.mobile-nav .btn { margin-top: 18px; }
.mobile-contact {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: .9rem;
}
.mobile-contact a { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; color: var(--body); }
.mobile-contact svg { width: 17px; height: 17px; color: var(--brand-500); margin-top: 3px; }

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 990;
  background: rgba(var(--dark-rgb), .45);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.backdrop.show { opacity: 1; visibility: visible; }

/* ---------------------------------------------------------------------
   07. Hero
   ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  overflow: hidden;
  background: #111417;
}
.hero-slide {
  grid-area: 1 / 1;
  position: relative;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s var(--ease), visibility .9s;
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 9s linear;
}
.hero-slide.active::before { transform: scale(1); }
/* Neutral (colour-free) scrim so the photo keeps its true colours
   while the white heading stays readable on top of it. */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(0,0,0,.74) 0%, rgba(0,0,0,.46) 45%, rgba(0,0,0,.08) 100%),
    linear-gradient(to top, rgba(0,0,0,.42), transparent 58%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-block: 120px;
  color: #fff;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 18px 8px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
}
.hero-badge svg { width: 16px; height: 16px; color: var(--accent-400); }
.hero-content h1 { color: #fff; margin-bottom: 20px; }
.hero-content h1 em { font-style: normal; color: var(--brand-300); }
.hero-content p {
  font-size: clamp(1rem, .95rem + .3vw, 1.16rem);
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Prev / next arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  color: #fff;
  transition: all .25s var(--ease);
}
.hero-arrow:hover {
  background: var(--accent-500);
  border-color: var(--accent-500);
  transform: translateY(-50%) scale(1.08);
}
.hero-arrow svg { width: 24px; height: 24px; }
.hero-arrow.prev { left: 26px; }
.hero-arrow.next { right: 26px; }

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 34px; height: 4px;
  border-radius: 100px;
  background: rgba(255,255,255,.35);
  transition: all .3s var(--ease);
}
.hero-dots button.active { background: var(--accent-500); width: 52px; }

/* Trust strip below hero */
.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -58px;
}
.trust-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 30px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.trust-item { text-align: center; padding-inline: 12px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.2rem);
  font-weight: 700;
  color: var(--brand-700);
  line-height: 1.1;
}
.trust-item span { font-size: .85rem; color: var(--muted); }

/* Page banner (inner pages) */
.page-banner {
  position: relative;
  padding-block: clamp(70px, 9vw, 130px);
  background: var(--brand-900);
  color: #fff;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  opacity: .32;
}
.page-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(var(--dark-rgb),.95), rgba(var(--dark-rgb),.55));
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; margin-bottom: 12px; }
.page-banner p { color: rgba(255,255,255,.8); max-width: 620px; }
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-top: 16px;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--accent-400); }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }

/* ---------------------------------------------------------------------
   08. Cards
   ------------------------------------------------------------------ */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--brand-100); }

/* Package card */
.package-card { display: flex; flex-direction: column; height: 100%; }
.package-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-soft); }
.package-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.package-card:hover .package-media img { transform: scale(1.07); }
.package-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(var(--dark-rgb),.55), transparent 45%);
}
.package-tags {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: flex; gap: 7px; flex-wrap: wrap;
}
.package-price-tag {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--brand-700);
  box-shadow: var(--shadow-sm);
}
.package-price-tag small { display: block; font-size: .62rem; font-weight: 500; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; line-height: 1; }
.package-price-tag del { font-size: .78rem; font-weight: 500; color: var(--muted); margin-left: 5px; }

.package-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.package-meta {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 12px;
  font-size: .84rem;
  color: var(--muted);
}
.package-meta span { display: inline-flex; align-items: center; gap: 6px; }
.package-meta svg { width: 15px; height: 15px; color: var(--brand-400); }
.package-body h3 { font-size: 1.18rem; margin-bottom: 9px; }
.package-body h3 a { color: inherit; }
.package-body h3 a:hover { color: var(--brand-600); }
.package-body > p { font-size: .92rem; margin-bottom: 18px; }
.package-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--line-2);
}

/* Service card */
.service-card {
  position: relative;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .32s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute; inset: auto auto 0 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--accent-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  margin-bottom: 20px;
  border-radius: 17px;
  background: var(--brand-50);
  color: var(--brand-600);
  transition: all .32s var(--ease);
}
.service-icon svg { width: 27px; height: 27px; }
.service-card:hover .service-icon { background: var(--brand-600); color: #fff; transform: rotate(-6deg); }
.service-card h3 { font-size: 1.12rem; margin-bottom: 9px; }
.service-card p { font-size: .92rem; margin-bottom: 16px; }

/* Feature (why choose) card */
.feature-card {
  display: flex;
  gap: 18px;
  padding: 26px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .3s var(--ease);
}
.feature-card:hover { border-color: var(--brand-200); box-shadow: var(--shadow-sm); background: var(--brand-50); }
.feature-icon {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--accent-50);
  color: var(--accent-600);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h4 { font-size: 1.02rem; margin-bottom: 5px; }
.feature-card p { font-size: .9rem; margin: 0; }

/* Testimonial */
.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all .3s var(--ease);
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testimonial-quote {
  position: absolute; top: 24px; right: 26px;
  color: var(--brand-100);
}
.testimonial-quote svg { width: 38px; height: 38px; }
.testimonial-card p {
  position: relative;
  font-size: .95rem;
  color: var(--body);
  margin: 16px 0 22px;
}
.testimonial-user { display: flex; align-items: center; gap: 13px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line-2); }
.testimonial-user img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-user strong { display: block; font-family: var(--font-head); color: var(--ink); font-size: .97rem; }
.testimonial-user span { font-size: .83rem; color: var(--muted); }

/* Blog card */
.blog-card { display: flex; flex-direction: column; height: 100%; }
.blog-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-soft); }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.blog-card:hover .blog-media img { transform: scale(1.06); }
.blog-date {
  position: absolute; top: 14px; left: 14px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  text-align: center;
  line-height: 1.1;
  box-shadow: var(--shadow-sm);
}
.blog-date strong { display: block; font-family: var(--font-head); font-size: 1.1rem; color: var(--brand-700); }
.blog-date span { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.blog-body { padding: 24px 22px; display: flex; flex-direction: column; flex: 1; }
.blog-body h3 { font-size: 1.12rem; line-height: 1.35; margin-bottom: 10px; }
.blog-body h3 a { color: inherit; }
.blog-body h3 a:hover { color: var(--brand-600); }
.blog-body p { font-size: .92rem; margin-bottom: 18px; }
.blog-meta { display: flex; gap: 16px; margin-bottom: 12px; font-size: .82rem; color: var(--muted); }
.blog-meta span { display: inline-flex; align-items: center; gap: 6px; }
.blog-meta svg { width: 14px; height: 14px; color: var(--brand-400); }
.blog-body .link-arrow { margin-top: auto; }

/* Team card */
.team-card { text-align: center; }
.team-media {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--surface-soft);
}
.team-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.team-card:hover .team-media img { transform: scale(1.06); }
.team-card h4 { margin-bottom: 2px; }
.team-card span { font-size: .87rem; color: var(--brand-600); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface-soft);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(var(--dark-rgb),.7), transparent 55%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item figcaption {
  position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2;
  color: #fff;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: all .35s var(--ease);
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ---------------------------------------------------------------------
   09. Sections
   ------------------------------------------------------------------ */
/* About split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split-media .img-2 {
  position: absolute;
  right: -28px; bottom: -34px;
  width: 46%;
  border: 7px solid #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.experience-badge {
  position: absolute;
  left: -22px; bottom: 34px;
  padding: 20px 24px;
  border-radius: var(--radius);
  background: var(--accent-500);
  color: #fff;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.experience-badge strong { display: block; font-family: var(--font-head); font-size: 2rem; line-height: 1; }
.experience-badge span { font-size: .8rem; opacity: .95; }

/* Founder / owner block */
.founder { display: grid; grid-template-columns: 400px 1fr; gap: 54px; align-items: center; }
.founder-photo { position: relative; }
.founder-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.founder-photo::after {
  content: '';
  position: absolute;
  inset: auto -14px -14px auto;
  width: 62%;
  height: 62%;
  z-index: -1;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, var(--brand-200), var(--accent-100));
}
.founder-name {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.founder-name strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.08rem;
  color: var(--ink);
  line-height: 1.25;
}
.founder-name span { font-size: .86rem; color: var(--brand-600); font-weight: 500; }

.founder-quote { position: relative; }
.founder-quote > svg {
  width: 46px;
  height: 46px;
  color: var(--brand-200);
  margin-bottom: 14px;
}
.founder-quote .rich-text p {
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--ink-2);
}
.founder-sign {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.check-list { display: grid; gap: 12px; margin: 24px 0 30px; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; font-size: .95rem; color: var(--body); }
.check-list svg { width: 20px; height: 20px; color: var(--brand-500); flex: none; margin-top: 3px; }

/* Tabs */
.tabs {
  display: inline-flex;
  gap: 5px;
  padding: 5px;
  border-radius: 100px;
  background: var(--brand-50);
  margin-bottom: 40px;
}
.tabs button {
  padding: 10px 24px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 600;
  color: var(--brand-700);
  transition: all .25s var(--ease);
}
.tabs button.active { background: #fff; color: var(--brand-800); box-shadow: var(--shadow-sm); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp .45s var(--ease); }

/* CTA */
.cta {
  position: relative;
  padding-block: 90px;
  background: var(--brand-800);
  color: rgba(255,255,255,.8);
  overflow: hidden;
  text-align: center;
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  opacity: .18;
}
.cta::after {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  right: -140px; top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb),.28), transparent 65%);
}
.cta .container { position: relative; z-index: 2; }
.cta h2 { color: #fff; max-width: 720px; margin-inline: auto; }
.cta p { max-width: 560px; margin: 0 auto 32px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Contact info tiles */
.contact-tile {
  display: flex;
  gap: 18px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all .3s var(--ease);
}
.contact-tile:hover { box-shadow: var(--shadow); border-color: var(--brand-100); }
.contact-tile .feature-icon { background: var(--brand-50); color: var(--brand-600); }
.contact-tile h4 { margin-bottom: 6px; font-size: 1.02rem; }
.contact-tile p, .contact-tile a { font-size: .93rem; color: var(--body); margin: 0; }
.contact-tile a:hover { color: var(--brand-600); }

/* Phone number cards */
.number-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.number-card {
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all .3s var(--ease);
}
.number-card:hover { border-color: var(--brand-200); box-shadow: var(--shadow); transform: translateY(-4px); }
.number-card.primary { border-color: var(--brand-300); background: var(--brand-50); }

.number-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.number-head .feature-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--brand-50); color: var(--brand-600); }
.number-card.primary .number-head .feature-icon { background: #fff; }
.number-head .feature-icon svg { width: 19px; height: 19px; }
.number-head span {
  font-family: var(--font-head);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.number-card a.number {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-head);
  font-size: 1.42rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
}
.number-card a.number:hover { color: var(--brand-600); }

.number-actions { display: flex; gap: 8px; margin-top: auto; flex-wrap: wrap; }
.number-actions .btn { flex: 1; padding: 10px 14px; font-size: .85rem; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1da851; color: #fff; }

@media (max-width: 1100px) { .number-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .number-grid { grid-template-columns: 1fr; } }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  line-height: 0;
}
.map-frame iframe { width: 100%; height: 420px; border: 0; }

/* Package detail */
.detail-layout { display: grid; grid-template-columns: 1fr 370px; gap: 42px; align-items: start; }
.detail-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 36px; }
.detail-gallery .main {
  grid-column: span 4;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
.detail-gallery .thumb { aspect-ratio: 4 / 3; border-radius: var(--radius-sm); overflow: hidden; }

.detail-block { margin-bottom: 42px; }
.detail-block > h3 {
  display: flex; align-items: center; gap: 11px;
  padding-bottom: 14px; margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.detail-block > h3 svg { width: 22px; height: 22px; color: var(--brand-500); }

.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 36px; }
.fact {
  padding: 20px 18px;
  border-radius: var(--radius);
  background: var(--surface-soft);
  border: 1px solid var(--line);
}
.fact svg { width: 20px; height: 20px; color: var(--brand-500); margin-bottom: 8px; }
.fact span { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.fact strong { font-family: var(--font-head); color: var(--ink); font-size: 1.02rem; }

.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.incl-list li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 11px; font-size: .93rem; }
.incl-list svg { width: 19px; height: 19px; flex: none; margin-top: 3px; }
.incl-yes svg { color: var(--brand-500); }
.incl-no svg  { color: #e57373; }

/* Itinerary timeline */
.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: '';
  position: absolute; left: 11px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--brand-200), var(--line));
}
.timeline-item { position: relative; padding-bottom: 28px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute; left: -29px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand-500);
}
.timeline-day {
  display: inline-block;
  margin-bottom: 6px;
  padding: 3px 12px;
  border-radius: 100px;
  background: var(--brand-50);
  color: var(--brand-700);
  font-family: var(--font-head);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.timeline-item h4 { margin-bottom: 6px; }
.timeline-item p { font-size: .93rem; margin: 0; }

/* Sticky sidebar */
.sidebar { position: sticky; top: 100px; display: grid; gap: 22px; }
.sidebar-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.sidebar-price { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.sidebar-price span { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.sidebar-price strong { display: block; font-family: var(--font-head); font-size: 2.1rem; color: var(--brand-700); line-height: 1.15; }
.sidebar-price del { color: var(--muted); font-size: 1rem; margin-left: 8px; }
.sidebar-price small { color: var(--muted); }

.help-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--brand-700), var(--brand-900));
  color: rgba(255,255,255,.82);
}
.help-card h4 { color: #fff; }
.help-card a { color: #fff; display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: .93rem; }
.help-card a:hover { color: var(--accent-400); }
.help-card svg { width: 18px; height: 18px; color: var(--brand-300); }

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  margin-bottom: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
}
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--line);
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 500;
  color: var(--body);
  background: #fff;
  transition: all .22s var(--ease);
}
.chip:hover { border-color: var(--brand-300); color: var(--brand-700); }
.chip.active { background: var(--brand-600); border-color: var(--brand-600); color: #fff; }

/* ---------------------------------------------------------------------
   10. Forms
   ------------------------------------------------------------------ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--font-head);
  font-size: .87rem;
  font-weight: 600;
  color: var(--ink-2);
}
.form-group label .req { color: var(--accent-500); }

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-control::placeholder { color: #a9bab6; }
.form-control:focus {
  outline: none;
  border-color: var(--brand-400);
  box-shadow: var(--ring);
}
textarea.form-control { min-height: 130px; resize: vertical; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237f948f' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 40px;
}

.form-card {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* Alerts */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 18px;
  border-radius: 12px;
  margin-bottom: 22px;
  font-size: .93rem;
}
.alert svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.alert-success { background: var(--brand-50); color: var(--brand-800); border: 1px solid var(--brand-200); }
.alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info    { background: var(--accent-50); color: var(--accent-700); border: 1px solid var(--accent-100); }

/* ---------------------------------------------------------------------
   11. Footer
   ------------------------------------------------------------------ */
.site-footer {
  background: var(--brand-900);
  color: rgba(255,255,255,.66);
  font-size: .93rem;
}
.footer-top { padding-block: 72px 52px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 44px;
}
.site-footer h5 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.02rem;
  letter-spacing: -.01em;
}
.footer-brand .logo-text strong { color: #fff; }
.footer-brand .logo-text span { color: rgba(255,255,255,.5); }
.footer-brand p { margin: 20px 0; line-height: 1.75; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.66);
}
.footer-links a::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand-400);
  transition: all .22s var(--ease);
}
.footer-links a:hover { color: #fff; }
.footer-links a:hover::before { background: var(--accent-500); width: 12px; border-radius: 4px; }

.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--brand-300); flex: none; margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,.66); }
.footer-contact a:hover { color: #fff; }

.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.8);
  transition: all .25s var(--ease);
}
.social-row a:hover { background: var(--accent-500); color: #fff; transform: translateY(-3px); }
.social-row svg { width: 18px; height: 18px; }

.footer-bottom {
  padding-block: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .87rem;
}
.footer-bottom .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
}
.footer-bottom a { color: rgba(255,255,255,.66); }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 22px; }

/* Floating action buttons */
.floating-actions {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 800;
  display: grid;
  gap: 10px;
}
.fab {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform .25s var(--ease);
}
.fab:hover { transform: translateY(-3px) scale(1.05); color: #fff; }
.fab svg { width: 23px; height: 23px; }
.fab-whatsapp { background: #25d366; }
.fab-call { background: var(--brand-600); }
.fab-top { background: var(--ink); opacity: 0; visibility: hidden; }
.fab-top.show { opacity: 1; visibility: visible; }

/* ---------------------------------------------------------------------
   12. Components
   ------------------------------------------------------------------ */
.accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .3s var(--ease);
}
.accordion-item.open { box-shadow: var(--shadow-sm); border-color: var(--brand-200); }
.accordion-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.accordion-head svg { width: 20px; height: 20px; color: var(--brand-500); transition: transform .3s var(--ease); }
.accordion-item.open .accordion-head { color: var(--brand-700); }
.accordion-item.open .accordion-head svg { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.accordion-body-inner { padding: 0 22px 20px; font-size: .94rem; }

/* Pagination */
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 50px; }
.pagination a, .pagination span {
  min-width: 42px; height: 42px;
  display: grid; place-items: center;
  padding-inline: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 600;
  color: var(--body);
  background: #fff;
}
.pagination a:hover { border-color: var(--brand-400); color: var(--brand-700); background: var(--brand-50); }
.pagination .current { background: var(--brand-600); border-color: var(--brand-600); color: #fff; }
.pagination .disabled { opacity: .45; pointer-events: none; }

/* Empty state */
.empty-state {
  padding: 70px 24px;
  text-align: center;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
}
.empty-state svg { width: 46px; height: 46px; color: var(--brand-300); margin: 0 auto 16px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  place-items: center;
  padding: 30px;
  background: rgba(var(--dark-rgb), .93);
  backdrop-filter: blur(6px);
}
.lightbox.open { display: grid; }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 22px; right: 22px;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #fff;
}
.lightbox-close:hover { background: var(--accent-500); }

/* Blog sidebar widgets */
.widget {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}
.widget h4 { padding-bottom: 14px; margin-bottom: 16px; border-bottom: 1px solid var(--line); }
.widget-post { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line-2); }
.widget-post:last-child { border-bottom: 0; padding-bottom: 0; }
.widget-post img { width: 68px; height: 62px; border-radius: 10px; object-fit: cover; flex: none; }
.widget-post h5 { font-size: .92rem; line-height: 1.4; margin-bottom: 4px; }
.widget-post h5 a { color: var(--ink); }
.widget-post h5 a:hover { color: var(--brand-600); }
.widget-post span { font-size: .8rem; color: var(--muted); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a {
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  font-size: .84rem;
  color: var(--body);
}
.tag-cloud a:hover { background: var(--brand-600); border-color: var(--brand-600); color: #fff; }

/* ---------------------------------------------------------------------
   13. Animations
   ------------------------------------------------------------------ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------------
   14. Responsive
   ------------------------------------------------------------------ */
@media (max-width: 1100px) {
  :root { --section-y: 80px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .detail-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .split { gap: 40px; }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
  .main-nav, .header-actions .btn { display: none; }
  .nav-toggle { display: grid; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; max-width: 620px; }
  .founder { grid-template-columns: 1fr; gap: 34px; }
  .founder-photo { max-width: 380px; margin-inline: auto; }
  .split-media .img-2 { display: none; }
  .experience-badge { left: 16px; }
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-card { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .trust-item:nth-child(3) { border-left: 0; }
  .topbar-info .hide-md { display: none; }
}

@media (max-width: 767px) {
  :root { --section-y: 62px; --gutter: 18px; }
  body { font-size: 15.5px; }

  .topbar { display: none; }
  .header-inner { min-height: 66px; }
  .logo-mark { width: 40px; height: 40px; border-radius: 11px; }
  .logo-text strong { font-size: 1rem; }
  .logo-text span { font-size: .64rem; letter-spacing: .13em; }

  .hero { min-height: 76vh; }
  .hero-arrow { width: 40px; height: 40px; }
  .hero-arrow svg { width: 19px; height: 19px; }
  .hero-arrow.prev { left: 10px; }
  .hero-arrow.next { right: 10px; }
  .hero-content { padding-block: 90px 110px; text-align: center; }
  .hero-content p { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-slide::after {
    background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.75));
  }

  .trust-strip { margin-top: -40px; }
  .trust-card { padding: 24px 14px; }

  .grid, .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; gap: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .incl-grid { grid-template-columns: 1fr; gap: 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .sidebar { grid-template-columns: 1fr; }
  .detail-gallery { grid-template-columns: repeat(3, 1fr); }
  .detail-gallery .main { grid-column: span 3; }

  .section-head { margin-bottom: 34px; text-align: center; }
  .section-head .eyebrow { margin-inline: auto; }

  .tabs { display: flex; width: 100%; }
  .tabs button { flex: 1; padding: 10px 12px; font-size: .88rem; }

  .filter-bar { flex-direction: column; align-items: stretch; }
  .filter-chips { overflow-x: auto; padding-bottom: 4px; flex-wrap: nowrap; }
  .chip { white-space: nowrap; }

  .form-card { padding: 24px 20px; }
  .service-card, .testimonial-card { padding: 26px 22px; }
  .map-frame iframe { height: 320px; }

  .footer-bottom .container { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; flex-wrap: wrap; }

  .floating-actions { right: 14px; bottom: 14px; }
  .fab { width: 46px; height: 46px; }
}

@media (max-width: 480px) {
  .trust-card { grid-template-columns: 1fr 1fr; }
  .trust-item + .trust-item { border-left: 0; }
  .fact-grid { grid-template-columns: 1fr; }
  .btn { padding: 12px 20px; font-size: .9rem; }
  .hero-actions .btn { width: 100%; }
  .cta-actions .btn { width: 100%; }
}

/* Print */
@media print {
  .site-header, .topbar, .site-footer, .floating-actions, .hero-dots, .btn { display: none !important; }
  body { color: #000; }
}
