/* Agency home page — Golden Triangle India style */
:root {
  --agency-green: #1f6b45;
  --agency-green-dark: #185a39;
  --agency-orange: #f39223;
  --agency-orange-dark: #de7f12;
  --agency-text: #333;
  --agency-muted: #666;
}

body.page-agency-home .lang-switcher {
  position: relative;
  z-index: 200;
}

body.page-agency-home .lang-switcher__toggle {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  min-width: 72px;
}

body.page-agency-home .lang-switcher__menu {
  top: calc(100% + 8px);
  bottom: auto;
  right: 0;
  left: auto;
  z-index: 10040;
  color: #222;
}

body.page-agency-home .lang-switcher.is-open .lang-switcher__menu {
  display: block;
}

body.page-agency-home {
  background: #fff;
  color: var(--agency-text);
  font-family: Montserrat, sans-serif;
}

/* Top bar */
.agency-topbar {
  position: relative;
  z-index: 120;
  overflow: visible;
  background: linear-gradient(90deg, var(--agency-green) 0%, var(--agency-green-dark) 55%, var(--agency-orange) 55%, var(--agency-orange-dark) 100%);
  color: #fff;
  font-size: 12px;
}

.agency-topbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.agency-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
  flex-wrap: wrap;
  padding: 6px 20px;
}

.agency-topbar__contact {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.agency-topbar__contact a {
  color: #fff;
  text-decoration: none;
}

.agency-topbar__contact i {
  margin-right: 6px;
}

.agency-topbar__callback {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.agency-topbar__social {
  display: flex;
  gap: 10px;
}

.agency-topbar__social a {
  color: #fff;
  font-size: 14px;
}

/* Header */
.agency-header {
  background: #fff;
  border-bottom: 1px solid #ececec;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.agency-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: 78px;
  padding: 10px 20px;
}

.agency-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
  justify-self: start;
}

.agency-logo__video {
  display: block;
  height: 72px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  border-radius: 6px;
  background: transparent;
}

.agency-logo__fallback {
  display: none;
  height: 64px;
  width: auto;
  max-width: 260px;
}

.agency-logo img {
  height: 64px;
  width: auto;
  max-width: 260px;
}

.agency-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-left: 0;
  flex-wrap: wrap;
  justify-self: center;
  grid-column: 2;
}

.agency-nav a {
  color: #222;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.agency-nav__item {
  position: relative;
}

.agency-nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  padding: 0;
  color: #222;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
}

.agency-nav__trigger i {
  font-size: 10px;
  opacity: 0.75;
  transition: transform 0.2s ease;
}

.agency-nav__item.is-open > .agency-nav__trigger i {
  transform: rotate(180deg);
}

.agency-nav__trigger:hover,
.agency-nav__trigger.is-active,
.agency-nav__item.is-open > .agency-nav__trigger,
.agency-nav__item.is-active > .agency-nav__trigger {
  color: var(--agency-orange);
}

.agency-submenu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 50;
}

/* Invisible bridge so mouse can move into menu without closing */
.agency-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.agency-nav__item.is-open > .agency-submenu,
.agency-nav__item:hover > .agency-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.agency-submenu a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: #333;
  white-space: nowrap;
}

.agency-submenu a:hover,
.agency-submenu a.is-active {
  color: var(--agency-orange);
  background: #fff8f2;
}

.agency-nav a:hover,
.agency-nav a.is-active {
  color: var(--agency-green);
}

.agency-nav a.is-active {
  font-weight: 700;
}

.agency-search-btn,
.agency-nav-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #222;
  font-size: 18px;
}

.agency-search-btn {
  justify-self: end;
  grid-column: 3;
}

.agency-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  justify-self: end;
  grid-column: 3;
}

.agency-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #222;
}

/* Contact page (agency format) */
.agency-contact {
  padding: 48px 0;
  background: #fff;
}

.agency-hero + .agency-contact {
  padding-top: clamp(88px, 11vw, 118px);
}

.agency-contact__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
  color: var(--agency-muted);
  line-height: 1.7;
}

.agency-contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.agency-contact__panel {
  border: 1px solid #ececec;
  border-radius: 6px;
  padding: 28px 24px;
  background: #fafafa;
}

.agency-contact__panel h2 {
  margin: 0 0 18px;
  font-size: 18px;
  color: var(--agency-orange);
  font-family: "Playfair Display", serif;
}

.agency-contact__panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.agency-contact__panel li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid #ececec;
}

.agency-contact__panel li:last-child {
  border-bottom: 0;
}

.agency-contact__panel span {
  font-size: 12px;
  color: var(--agency-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.agency-contact__panel strong {
  font-size: 14px;
  color: #222;
}

@media (max-width: 768px) {
  .agency-contact__grid {
    grid-template-columns: 1fr;
  }
}

.agency-hero--contact {
  min-height: 280px;
  padding: 100px 0 70px;
  align-items: center;
}

.agency-hero--contact .agency-hero__overlay {
  background: rgba(0, 0, 0, 0.42);
}

.agency-hero__contact-title {
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  text-align: center;
}

.agency-home--contact .agency-credibility {
  margin-top: 10px;
}

.get-touch {
  padding: 56px 0 20px;
  background: #fff;
}

.get-touch__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.95fr);
  gap: 36px;
  align-items: start;
}

.get-touch__info h2 {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: #1a365d;
}

.get-touch__info h2 .agency-section-head__main {
  color: #1a365d;
}

.get-touch__info h2 .agency-section-head__accent {
  color: var(--agency-orange);
}

.get-touch__intro {
  margin: 0 0 22px;
  color: #666;
  line-height: 1.7;
  font-size: 15px;
  max-width: 520px;
}

.get-touch__cards {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.get-touch__card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 14px 16px;
  background: #fff;
}

.get-touch__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(232, 120, 42, 0.12);
  color: var(--agency-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.get-touch__card strong {
  display: block;
  margin-bottom: 4px;
  color: #222;
  font-size: 14px;
}

.get-touch__card a,
.get-touch__card > div > span {
  color: #1a365d;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.45;
}

.get-touch__card a:hover {
  color: var(--agency-orange);
}

.get-touch__map {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  min-height: 260px;
}

.get-touch__map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.get-touch__form-wrap {
  position: sticky;
  top: 90px;
}

.get-touch__form {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  border: 1px solid #ececec;
}

.get-touch__form-head {
  background: linear-gradient(135deg, #5c3317 0%, #8b4513 55%, #a0522d 100%);
  color: #fff;
  text-align: center;
  padding: 22px 18px 20px;
  position: relative;
}

.get-touch__form-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255, 215, 140, 0.28), transparent 55%);
  pointer-events: none;
}

.get-touch__form-brand {
  position: relative;
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 1.8px;
  opacity: 0.9;
  font-weight: 600;
}

.get-touch__form-head h3 {
  position: relative;
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.35;
}

.get-touch__form-head h3 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: #f0c36a;
  margin: 0 4px;
  font-weight: 600;
}

.get-touch__form > label,
.get-touch__form-row {
  display: block;
  padding: 0 18px;
}

.get-touch__form > label:first-of-type {
  margin-top: 18px;
}

.get-touch__form label span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #444;
}

.get-touch__form input,
.get-touch__form select,
.get-touch__form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 11px 12px;
  font: inherit;
  font-size: 14px;
  margin-bottom: 14px;
  background: #fff;
  color: #222;
}

.get-touch__form input:focus,
.get-touch__form select:focus,
.get-touch__form textarea:focus {
  outline: 2px solid rgba(232, 120, 42, 0.2);
  border-color: var(--agency-orange);
}

.get-touch__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 18px;
}

.get-touch__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: calc(100% - 36px);
  margin: 4px 18px 10px;
  border: 0;
  border-radius: 8px;
  background: var(--agency-orange);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 16px;
  cursor: pointer;
}

.get-touch__whatsapp:hover {
  filter: brightness(0.96);
}

.get-touch__whatsapp i {
  font-size: 18px;
}

.get-touch__privacy {
  margin: 0 18px 18px;
  font-size: 11px;
  color: #888;
  line-height: 1.5;
  text-align: center;
}

.work-with-us {
  padding: 48px 0 20px;
  background: #fff;
}

.work-with-us__head {
  text-align: center;
  margin-bottom: 28px;
}

.work-with-us__head h2 {
  color: #1a365d;
}

.work-with-us__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.work-with-us__item {
  text-align: center;
  padding: 8px 10px;
}

.work-with-us__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.work-with-us__item h3 {
  margin: 0 0 8px;
  color: var(--agency-orange);
  font-size: 14px;
  letter-spacing: 0.6px;
  font-weight: 700;
}

.work-with-us__item p {
  margin: 0;
  color: #666;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .get-touch__layout {
    grid-template-columns: 1fr;
  }

  .get-touch__form-wrap {
    position: static;
  }

  .work-with-us__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .get-touch__form-row {
    grid-template-columns: 1fr;
  }

  .work-with-us__grid {
    grid-template-columns: 1fr;
  }

  .agency-hero--contact {
    min-height: 220px;
    padding: 90px 0 56px;
  }
}

/* Hero */
.agency-hero {
  position: relative;
  min-height: 520px;
  background-size: cover;
  background-position: center 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 110px;
  overflow: visible;
}

.agency-hero--glass {
  min-height: 480px;
  padding-top: 70px;
  padding-bottom: 100px;
}

.agency-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.agency-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  width: 100%;
  max-width: 780px;
}

.agency-hero__glass {
  margin: 0 auto;
  max-width: 580px;
  padding: 22px 28px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.agency-hero__content h1 {
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  line-height: 1.15;
  font-weight: 700;
}

.agency-hero__content h1 .agency-section-head__main {
  color: #fff;
}

.agency-hero__content h1 .agency-section-head__accent {
  color: var(--agency-orange);
}

.agency-hero--glass .agency-hero__content h1 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
}

.agency-hero__tagline {
  margin: 0 0 6px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(0.82rem, 1.6vw, 0.95rem);
  line-height: 1.4;
  opacity: 0.92;
}

.agency-hero__subline {
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 1.45;
  opacity: 0.88;
}

.agency-hero__content > p:not(.agency-hero__tagline):not(.agency-hero__subline) {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.95;
}

.agency-hero__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.agency-btn--glass {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.agency-btn--glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

/* Trust bar */
.agency-trust {
  color: #fff;
}

.agency-trust--hero {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  width: min(1080px, 88%);
  transform: translate(-50%, 50%);
  padding: 0;
}

.agency-trust__panel {
  background: linear-gradient(135deg, var(--agency-green) 0%, #2a8f5c 42%, var(--agency-orange) 100%);
  border-radius: 6px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.agency-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 22px 28px;
}

.agency-trust__grid article {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  text-align: left;
}

.agency-trust__grid i {
  flex-shrink: 0;
  font-size: 28px;
  margin-top: 4px;
  opacity: 0.95;
}

.agency-trust__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.agency-trust__copy strong {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.3;
}

.agency-trust__copy span {
  font-size: 12px;
  line-height: 1.45;
  opacity: 0.92;
}

/* Buttons */
.agency-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  border: 2px solid transparent;
  transition: 0.2s;
}

.agency-btn--green {
  background: var(--agency-green);
  color: #fff;
}

.agency-btn--green:hover {
  background: var(--agency-green-dark);
}

.agency-btn--orange {
  background: var(--agency-orange);
  color: #fff;
}

.agency-btn--orange:hover {
  background: var(--agency-orange-dark);
}

.agency-btn--outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.agency-btn--sm {
  padding: 9px 14px;
  font-size: 11px;
  flex: 1;
}

/* Section heads */
.agency-section-head {
  text-align: center;
  margin-bottom: 28px;
}

.agency-section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--agency-orange);
  font-family: "Playfair Display", serif;
}

.agency-section-head--packages h2 {
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
}

.agency-section-head__main {
  color: #1a1a1a;
}

.agency-section-head__accent {
  color: var(--agency-orange);
}

.agency-about__text h2 .agency-section-head__main,
.agency-why__head h2 .agency-section-head__main,
.agency-blog .agency-section-head h2 .agency-section-head__main,
.agency-destinations .agency-section-head h2 .agency-section-head__main {
  color: #1a1a1a;
}

.agency-about__text h2 .agency-section-head__accent,
.agency-why__head h2 .agency-section-head__accent,
.agency-blog .agency-section-head h2 .agency-section-head__accent,
.agency-destinations .agency-section-head h2 .agency-section-head__accent {
  color: var(--agency-orange);
}

.agency-section-head p {
  margin: 0;
  color: var(--agency-muted);
  font-size: 14px;
}

.agency-destinations .agency-section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.agency-destinations .agency-section-head h2 {
  width: 100%;
  text-align: center;
  margin: 0 0 10px;
}

.agency-destinations__subtitle {
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0;
  line-height: 1.65;
  text-align: center;
  color: var(--agency-muted);
  font-size: 14px;
}

.agency-section-foot {
  text-align: center;
  margin-top: 28px;
}

.agency-btn--view-all {
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
}

.agency-btn--view-all i {
  font-size: 13px;
}

/* Package sections */
.agency-packages,
.agency-destinations,
.agency-why,
.agency-testimonials,
.agency-blog {
  padding: 48px 0;
}

.agency-packages {
  background: #fff;
}

.agency-packages:nth-of-type(even) {
  background: #fafafa;
}

.agency-hero + .agency-packages {
  padding-top: clamp(88px, 11vw, 118px);
}

.agency-package-slider {
  position: relative;
  padding: 0 28px;
}

.agency-package-slider__viewport {
  overflow: hidden;
  width: 100%;
}

.agency-package-grid:not(.agency-package-slider__track) {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.agency-package-slider__track {
  display: flex;
  gap: 8px;
  will-change: transform;
}

.agency-package-slider__track .agency-package-card {
  flex: 0 0 auto;
  min-width: 0;
}

.agency-package-slider__nav {
  position: absolute;
  top: 36%;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #333;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.agency-package-slider__nav:hover {
  background: #fff;
  color: var(--agency-orange);
}

.agency-package-slider__nav--prev {
  left: 0;
}

.agency-package-slider__nav--next {
  right: 0;
}

.agency-package-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.agency-package-slider__dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #d0d0d0;
  cursor: pointer;
}

.agency-package-slider__dots button.is-active {
  background: #222;
}

.agency-package-card {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 12px;
  overflow: visible;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.agency-package-card__media {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

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

.agency-package-card:hover .agency-package-card__media img {
  transform: scale(1.04);
}

.agency-package-card__body {
  position: relative;
  z-index: 1;
  margin: -20px 4px 0;
  padding: 12px 12px 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 auto;
}

.agency-package-card__body h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  color: #1a1a1a;
  min-height: 0;
  font-family: Montserrat, sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.agency-package-card__location {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 1.5;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.agency-package-card__location i {
  color: var(--agency-green);
  font-size: 12px;
  flex-shrink: 0;
}

.agency-package-card__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 6px;
  margin-top: 1px;
  padding-top: 0;
}

.agency-package-card__actions .agency-btn--sm {
  flex: 1 1 0;
  gap: 5px;
  border-radius: 999px;
  border-width: 0;
  padding: 6px 8px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  min-width: 0;
}

.agency-package-card__actions .agency-btn--sm i {
  font-size: 9px;
}

/* About block */
.agency-about {
  padding: 48px 0;
  background: #fff;
}

.agency-about__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.agency-about__text h2 {
  margin: 0 0 16px;
  color: var(--agency-orange);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.agency-about__text p {
  margin: 0;
  line-height: 1.8;
  color: #444;
  font-size: 14px;
}

.agency-about__media img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

/* Destinations */
.agency-dest-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.agency-dest-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 1;
}

.agency-dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agency-dest-card span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px 8px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
}

/* Why choose */
.agency-why {
  background: #fff;
  padding: 56px 0;
}

.agency-why__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  margin-bottom: 36px;
}

.agency-why__head h2 {
  width: 100%;
  margin: 0 0 18px;
  color: #1a1a1a;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 700;
  text-align: center;
}

.agency-why__intro {
  max-width: 820px;
  margin: 0 auto;
  color: #555;
  font-size: 14px;
  line-height: 1.75;
  text-align: center;
}

.agency-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.agency-why-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 22px 18px 24px;
  text-align: left;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.agency-why-card h3 {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.4;
  color: #1a1a1a;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.agency-why-card__num {
  margin-right: 2px;
}

.agency-why-card p {
  margin: 0;
  font-size: 13px;
  color: #555;
  line-height: 1.65;
}

/* Reviews (Google + TripAdvisor) */
.agency-reviews {
  background: #f6f6f6;
  padding: 48px 0;
}

.agency-reviews__row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 28px;
}

.agency-reviews__row:last-child {
  margin-bottom: 0;
}

.agency-reviews__summary {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ececec;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.agency-reviews__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.agency-reviews__brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853 40%, #fbbc05 70%, #ea4335);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.agency-reviews__brand strong {
  font-size: 14px;
  color: #222;
  line-height: 1.3;
}

.agency-reviews__stars {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #fbbc04;
}

.agency-reviews__stars--sm {
  margin: 2px 0 8px;
  font-size: 12px;
}

.agency-reviews__summary p {
  margin: 0;
  font-size: 13px;
  color: #555;
}

.agency-reviews__write {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 8px 14px;
  border: 1px solid #222;
  border-radius: 6px;
  color: #222;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  background: #fff;
  width: fit-content;
}

.agency-reviews__write:hover {
  background: #222;
  color: #fff;
}

.agency-reviews__excellent {
  font-size: 22px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #111;
  font-family: "Playfair Display", serif;
}

.agency-reviews__bubbles {
  display: flex;
  align-items: center;
  gap: 4px;
}

.agency-reviews__bubbles span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #00aa6c;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.agency-reviews__bubbles--sm {
  margin: 2px 0 8px;
}

.agency-reviews__bubbles--sm span {
  width: 12px;
  height: 12px;
}

.agency-reviews__ta-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #00aa6c;
  font-weight: 700;
  font-size: 14px;
  margin-top: 4px;
}

.agency-reviews__ta-logo i {
  font-size: 22px;
}

.agency-reviews__carousel {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.agency-reviews__viewport {
  overflow: hidden;
  width: 100%;
}

.agency-reviews__track {
  display: flex;
  gap: 14px;
  will-change: transform;
}

.agency-reviews__nav {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #e9e9e9;
  color: #666;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.agency-reviews__nav:hover {
  background: #ddd;
  color: #222;
}

.agency-review-card {
  flex: 0 0 auto;
  width: 280px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 16px;
  min-height: 190px;
}

.agency-review-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.agency-review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.agency-review-card__meta {
  min-width: 0;
  flex: 1;
}

.agency-review-card__meta strong {
  display: block;
  font-size: 13px;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.agency-review-card__meta span {
  font-size: 11px;
  color: #888;
}

.agency-review-card__platform {
  flex-shrink: 0;
  font-weight: 700;
}

.agency-review-card__platform--google {
  color: #4285f4;
  font-family: Arial, sans-serif;
}

.agency-review-card__platform--ta {
  color: #00aa6c;
  font-size: 18px;
}

.agency-review-card__verified {
  color: #1a73e8;
  margin-left: 6px;
  font-size: 12px;
}

.agency-review-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: #444;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.agency-review-card p a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 900px) {
  .agency-reviews__row {
    grid-template-columns: 1fr;
  }

  .agency-reviews__summary {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .agency-review-card {
    width: 240px;
  }
}

/* Legacy testimonials kept for safety */
.agency-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.agency-testimonial-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 6px;
  padding: 18px;
}

.agency-testimonial-card__stars {
  color: #f5a623;
  font-size: 12px;
  margin-bottom: 10px;
}

.agency-testimonial-card p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.6;
  color: #444;
}

.agency-testimonial-card strong {
  display: block;
  font-size: 13px;
}

.agency-testimonial-card span {
  font-size: 11px;
  color: var(--agency-muted);
}

/* Blog */
.agency-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.agency-blog-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 6px;
  overflow: hidden;
}

.agency-blog-card__media {
  display: block;
  position: relative;
  aspect-ratio: 16/10;
}

.agency-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agency-blog-card__date {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: var(--agency-orange);
  color: #fff;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 3px;
}

.agency-blog-card__body {
  padding: 16px;
}

.agency-blog-card__body h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.agency-blog-card__body h3 a {
  color: #222;
  text-decoration: none;
}

.agency-blog-card__body p {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--agency-muted);
  line-height: 1.6;
}

.agency-blog-card__link {
  color: var(--agency-green);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}

/* Credibility */
.agency-credibility {
  background: #fff;
  padding: 64px 0 56px;
}

.agency-credibility__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.agency-credibility__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #c4a35a;
  font-weight: 600;
}

.agency-credibility__title {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  color: #333;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.agency-credibility__title .agency-section-head__main {
  color: #333;
}

.agency-credibility__title em.agency-section-head__accent {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
  color: var(--agency-orange);
  margin-left: 8px;
}

.agency-credibility__subtitle {
  margin: 0 auto;
  max-width: 560px;
  color: #777;
  font-size: 14px;
  line-height: 1.7;
}

.agency-credibility__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  text-align: center;
  margin-bottom: 40px;
}

.agency-credibility__grid strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #333;
  margin-bottom: 8px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
}

.agency-credibility__grid span {
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #888;
  font-weight: 600;
}

.agency-credibility__platforms-wrap {
  text-align: center;
}

.agency-credibility__listed {
  margin: 0 0 16px;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #c4a35a;
  font-weight: 600;
}

.agency-credibility__platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.agency-credibility__platform {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 999px;
  padding: 10px 18px 10px 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  text-align: left;
  min-width: 190px;
}

.agency-credibility__platform-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.agency-credibility__platform strong {
  display: block;
  font-size: 13px;
  color: #222;
  line-height: 1.2;
}

.agency-credibility__platform span {
  display: block;
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}

/* Footer */
.agency-footer {
  background: #f7f7f7;
  color: #333;
  border-top: 1px solid #ececec;
}

.agency-footer__top {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 48px 20px 28px;
}

.agency-footer__logo-link {
  display: inline-flex;
  margin-bottom: 18px;
  line-height: 0;
}

.agency-footer__logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  border-radius: 8px;
  background: transparent;
}

.agency-footer__col h4 {
  margin: 0 0 16px;
  color: #111;
  font-size: 16px;
  font-weight: 700;
}

.agency-footer__contact,
.agency-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.agency-footer__contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: #444;
}

.agency-footer__contact i {
  color: var(--agency-orange);
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}

.agency-footer__contact a {
  color: #444;
  text-decoration: none;
}

.agency-footer__contact a:hover {
  color: var(--agency-orange);
}

.agency-footer__links li {
  margin-bottom: 9px;
  font-size: 13px;
}

.agency-footer__links a {
  color: #444;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.agency-footer__links a::before {
  content: "»";
  color: var(--agency-orange);
  font-weight: 700;
}

.agency-footer__links a:hover {
  color: var(--agency-orange);
}

.agency-footer__mid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  padding: 8px 20px 28px;
  border-top: 1px solid #ececec;
}

.agency-footer__mid-col h4 {
  margin: 18px 0 14px;
  color: #111;
  font-size: 15px;
  font-weight: 700;
}

.agency-footer__payments {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  overflow-x: auto;
  padding-bottom: 2px;
}

.agency-footer__pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 4px 8px;
  min-height: 28px;
  min-width: 0;
  flex: 0 0 auto;
}

.agency-footer__pay img {
  display: block;
  height: 14px;
  width: auto;
  max-width: 52px;
  object-fit: contain;
}

.agency-footer__badges {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  overflow-x: auto;
  padding-bottom: 2px;
}

.agency-footer__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 4px 8px;
  min-height: 28px;
  flex: 0 0 auto;
}

.agency-footer__badge img {
  display: block;
  height: 22px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
}

.agency-footer__badge--rajasthan {
  background: #111;
  border-color: #111;
  padding: 2px 4px;
}

.agency-footer__badge--rajasthan img {
  height: 32px;
  max-width: 56px;
}

.agency-footer__badge--ta img {
  height: 16px;
  max-width: 120px;
}

.agency-footer__bottom {
  background: #fff;
  border-top: 1px solid #ececec;
}

.agency-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 20px;
  font-size: 12px;
  color: #555;
}

.agency-footer__bottom-inner p {
  margin: 0;
}

.agency-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.agency-footer__social a {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
}

.agency-footer__social a.is-ta { background: #00aa6c; }
.agency-footer__social a.is-fb { background: #1877f2; }
.agency-footer__social a.is-x { background: #111; }
.agency-footer__social a.is-yt { background: #ff0000; }
.agency-footer__social a.is-ig { background: #3f3f3f; }
.agency-footer__social a.is-tb { background: #34526f; }
.agency-footer__social a.is-pin { background: #bd081c; }

.agency-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.agency-footer__legal a {
  color: #555;
  text-decoration: none;
}

.agency-footer__legal a:hover {
  color: var(--agency-orange);
}

/* WhatsApp float */
.agency-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 200;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .agency-package-grid:not(.agency-package-slider__track),
  .agency-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agency-package-slider {
    padding: 0 28px;
  }

  .agency-dest-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .agency-why-grid,
  .agency-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agency-footer__top,
  .agency-footer__mid {
    grid-template-columns: 1fr 1fr;
  }

  .agency-credibility__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 24px;
  }

  .agency-credibility__platform {
    min-width: 170px;
  }
}

@media (max-width: 768px) {
  .agency-nav-toggle {
    display: flex;
  }

  .agency-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
    border-bottom: 1px solid #ececec;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  .agency-nav.is-open {
    display: flex;
  }

  .agency-nav__item {
    width: 100%;
  }

  .agency-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 4px 0 4px 12px;
    min-width: 0;
    transition: none;
  }

  .agency-submenu::before {
    display: none;
  }

  .agency-nav__item.is-open > .agency-submenu {
    display: block;
  }

  .agency-nav__item:hover > .agency-submenu {
    display: none;
  }

  .agency-nav__item.is-open:hover > .agency-submenu {
    display: block;
  }

  .agency-header {
    position: relative;
  }

  .agency-header__inner {
    display: flex;
    flex-wrap: wrap;
  }

  .agency-nav {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }

  .agency-search-btn {
    display: none;
  }

  .agency-nav-toggle {
    margin-left: auto;
  }

  .agency-trust--hero {
    width: min(960px, 94%);
  }

  .agency-trust__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 20px;
  }

  .agency-trust__grid article {
    justify-content: flex-start;
  }

  .agency-hero {
    min-height: 480px;
    padding-bottom: 100px;
  }

  .agency-hero--glass {
    min-height: 440px;
  }

  .agency-hero__glass {
    padding: 18px 16px 16px;
    max-width: 100%;
  }

  .agency-hero + .agency-packages,
  .agency-hero + .agency-contact {
    padding-top: clamp(100px, 20vw, 130px);
  }

  .agency-about__grid {
    grid-template-columns: 1fr;
  }

  .agency-package-grid:not(.agency-package-slider__track),
  .agency-blog-grid,
  .agency-why-grid,
  .agency-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .agency-package-slider {
    padding: 0 34px;
  }

  .agency-package-slider__nav {
    display: inline-flex;
    width: 34px;
    height: 34px;
  }

  .agency-package-card__body {
    margin: -18px 4px 0;
    padding: 8px 8px;
  }

  .agency-package-card__body h3 {
    font-size: 16px;
    line-height: 1.45;
  }

  .agency-package-card__actions {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .agency-dest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agency-footer__top,
  .agency-footer__mid {
    grid-template-columns: 1fr;
  }

  .agency-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .agency-footer__legal {
    justify-content: center;
  }

  .agency-credibility__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agency-credibility__platforms {
    flex-direction: column;
    align-items: center;
  }

  .agency-credibility__platform {
    width: min(280px, 100%);
  }

  .agency-logo__video {
    height: 56px;
    max-width: 200px;
  }

  .agency-footer__logo {
    height: 68px;
    max-width: 260px;
  }

  .agency-topbar__inner {
    justify-content: center;
  }
}

/* ——— Tour detail page ——— */
.tour-detail {
  background: #fff;
  padding-top: 24px;
}

.tour-detail__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: #5b7ea6;
  margin-bottom: 16px;
}

.tour-detail__breadcrumb a {
  color: #5b7ea6;
  text-decoration: none;
}

.tour-detail__breadcrumb a:hover {
  color: var(--agency-orange);
}

.tour-detail__title {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #1a365d;
  text-transform: uppercase;
  line-height: 1.25;
}

.tour-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 22px;
  color: #555;
  font-size: 14px;
}

.tour-detail__meta i {
  color: var(--agency-orange);
  margin-right: 6px;
}

.tour-detail__gallery {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}

.tour-detail__gallery-main img,
.tour-detail__gallery-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.tour-detail__gallery-main {
  min-height: 360px;
}

.tour-detail__gallery-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 360px;
}

.tour-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
  gap: 36px;
  align-items: start;
  padding-bottom: 48px;
}

.tour-detail__main h2 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  color: #1a1a1a;
}

.tour-detail__itinerary-heading {
  margin-top: 32px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-detail__overview {
  color: #555;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 8px;
}

.tour-detail__overview p {
  margin: 0 0 14px;
}

.tour-detail__accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.tour-detail__day {
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
}

.tour-detail__day-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 0;
  background: #f7f7f7;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #222;
  text-align: left;
  cursor: pointer;
  text-transform: uppercase;
}

.tour-detail__day.is-open .tour-detail__day-toggle {
  background: #f0f0f0;
}

.tour-detail__day-toggle i {
  color: var(--agency-orange);
}

.tour-detail__day-body {
  display: none;
  padding: 14px 16px 18px;
  color: #555;
  font-size: 14px;
  line-height: 1.7;
  border-top: 1px solid #ececec;
}

.tour-detail__day.is-open .tour-detail__day-body {
  display: block;
}

.tour-detail__includes {
  margin: 0 0 16px;
  padding-left: 18px;
  color: #444;
  line-height: 1.8;
  font-size: 14px;
}

.tour-detail__note {
  font-size: 13px;
  color: #666;
  font-style: italic;
  margin: 0;
}

.tour-detail__faqs {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.tour-detail__faq {
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding: 12px 14px;
  background: #fafafa;
}

.tour-detail__faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
  list-style: none;
}

.tour-detail__faq summary::-webkit-details-marker {
  display: none;
}

.tour-detail__faq p {
  margin: 10px 0 0;
  color: #555;
  font-size: 13px;
  line-height: 1.65;
  font-style: normal;
}

.tour-detail__sidebar {
  position: sticky;
  top: 96px;
}

.tour-detail__form {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 22px 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.tour-detail__form h3 {
  margin: 0 0 18px;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: #1a1a1a;
}

.tour-detail__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tour-detail__form label {
  display: block;
  margin-bottom: 12px;
}

.tour-detail__form label span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: #555;
  font-weight: 600;
}

.tour-detail__form input,
.tour-detail__form textarea {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  color: #222;
  background: #fff;
}

.tour-detail__form input:focus,
.tour-detail__form textarea:focus {
  outline: 2px solid rgba(232, 120, 42, 0.25);
  border-color: var(--agency-orange);
}

.tour-detail__terms {
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
  margin-top: 4px;
}

.tour-detail__terms input {
  width: auto;
  margin-top: 3px;
}

.tour-detail__terms span {
  margin: 0 !important;
  font-weight: 500 !important;
  line-height: 1.4;
}

.tour-detail__form-error {
  color: #c0392b;
  font-size: 13px;
  margin: 0 0 10px;
}

.tour-detail__submit {
  width: 100%;
  border: 0;
  border-radius: 4px;
  background: var(--agency-orange);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 14px 16px;
  cursor: pointer;
  margin-top: 6px;
}

.tour-detail__submit:hover {
  filter: brightness(0.95);
}

.tour-detail__expert {
  background: #f3f3f3;
  padding: 28px 0;
  margin-top: 10px;
}

.tour-detail__expert-inner {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.tour-detail__expert-photo img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.tour-detail__expert-copy h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: #1a1a1a;
}

.tour-detail__expert-copy p {
  margin: 0 0 8px;
  color: #555;
  line-height: 1.65;
  font-size: 14px;
}

.tour-detail__expert-copy > a {
  color: var(--agency-orange);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.tour-detail__expert-cta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
}

.tour-detail__expert-cta strong {
  font-size: 12px;
  letter-spacing: 1px;
  color: #333;
}

.tour-detail__expert-cta a {
  color: var(--agency-orange);
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
}

.tour-detail .agency-reviews {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .tour-detail__gallery {
    grid-template-columns: 1fr;
  }

  .tour-detail__gallery-main,
  .tour-detail__gallery-side {
    min-height: 0;
  }

  .tour-detail__gallery-main img {
    min-height: 240px;
  }

  .tour-detail__gallery-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .tour-detail__gallery-side img {
    min-height: 160px;
  }

  .tour-detail__layout {
    grid-template-columns: 1fr;
  }

  .tour-detail__sidebar {
    position: static;
  }

  .tour-detail__expert-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .tour-detail__expert-cta {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .tour-detail__form-row {
    grid-template-columns: 1fr;
  }

  .tour-detail__gallery-side {
    grid-template-columns: 1fr;
  }
}

/* Simple info pages + discover themes */
.agency-simple__hero-sub {
  margin: 10px auto 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
}

.agency-simple {
  padding: 56px 0 24px;
  background: #fff;
}

.agency-simple__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 36px;
  align-items: center;
}

.agency-simple__content h2 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: #1a365d;
}

.agency-simple__text {
  color: #555;
  line-height: 1.75;
  font-size: 15px;
  margin-bottom: 18px;
}

.agency-simple__points {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.agency-simple__points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  color: #333;
  font-size: 14px;
}

.agency-simple__points i {
  color: var(--agency-orange);
  margin-top: 3px;
}

.agency-simple__media img {
  width: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  min-height: 320px;
}

.agency-simple-steps {
  padding: 20px 0 40px;
  background: #fff;
}

.agency-simple-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.agency-simple-steps__grid article {
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 18px 16px;
  background: #fafafa;
}

.agency-simple-steps__grid span {
  display: block;
  color: var(--agency-orange);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
}

.agency-simple-steps__grid h3 {
  margin: 0 0 8px;
  font-size: 15px;
  color: #1a1a1a;
}

.agency-simple-steps__grid p {
  margin: 0;
  color: #666;
  font-size: 13px;
  line-height: 1.6;
}

.discover-themes {
  padding: 20px 0 40px;
  background: #fff;
}

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

.discover-themes__card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 16px;
  border: 1px solid #ececec;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.discover-themes__card img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  display: block;
}

.discover-themes__card > div {
  padding: 16px 16px 16px 0;
}

.discover-themes__card h3 {
  margin: 0 0 8px;
  color: #1a365d;
  font-size: 16px;
}

.discover-themes__card p {
  margin: 0 0 12px;
  color: #666;
  font-size: 13px;
  line-height: 1.55;
}

.discover-themes__card a {
  color: var(--agency-orange);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}

@media (max-width: 980px) {
  .agency-simple__grid,
  .agency-simple-steps__grid,
  .discover-themes__grid {
    grid-template-columns: 1fr;
  }

  .discover-themes__card {
    grid-template-columns: 1fr;
  }

  .discover-themes__card > div {
    padding: 0 16px 16px;
  }
}

/* Discover India explorer (nested category tabs) */
.discover-hero .how-work__breadcrumb,
.discover-hero__crumb {
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
}

.discover-hero__crumb a {
  color: #fff;
}

.discover-explore {
  padding: 36px 0 48px;
  background: #fff;
}

.discover-explore__primary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.discover-explore__tab,
.discover-explore__sub {
  appearance: none;
  background: #fff;
  color: #111;
  border: 1px solid #111;
  border-radius: 0;
  padding: 11px 16px;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.discover-explore__tab:hover,
.discover-explore__sub:hover {
  border-color: var(--agency-orange);
  color: var(--agency-orange);
}

.discover-explore__tab.is-active,
.discover-explore__sub.is-active {
  background: var(--agency-orange);
  border-color: var(--agency-orange);
  color: #fff;
}

.discover-explore__panel {
  display: none;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  min-height: 320px;
}

.discover-explore__panel.is-active {
  display: grid;
}

.discover-explore__sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.discover-explore__sub {
  width: 100%;
  text-align: left;
}

.discover-explore__content {
  min-height: 280px;
}

.discover-explore__results {
  display: none;
}

.discover-explore__results.is-active {
  display: block;
}

.discover-explore__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.discover-explore__card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
}

.discover-explore__card-media {
  overflow: hidden;
  background: #eee;
  aspect-ratio: 16 / 10;
  margin-bottom: 12px;
}

.discover-explore__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.discover-explore__card:hover .discover-explore__card-media img {
  transform: scale(1.04);
}

.discover-explore__card h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: #222;
}

.discover-explore__card:hover h3 {
  color: var(--agency-orange);
}

.discover-explore__card-summary {
  margin: 8px 0 0;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--agency-muted);
}

.discover-explore__empty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  min-height: 260px;
  padding: 28px 24px;
  border: 1px dashed #d7d7d7;
  background: #fafafa;
}

.discover-explore__empty p {
  margin: 0;
  max-width: 420px;
  color: var(--agency-muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .discover-explore__panel.is-active {
    grid-template-columns: 1fr;
  }

  .discover-explore__sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .discover-explore__sub {
    width: auto;
  }

  .discover-explore__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .discover-explore {
    padding: 24px 0 36px;
  }

  .discover-explore__tab,
  .discover-explore__sub {
    padding: 9px 12px;
    font-size: 12px;
  }

  .discover-explore__grid {
    grid-template-columns: 1fr;
  }
}

/* ——— About Us page ——— */
.about-intro {
  padding: 56px 0 24px;
  background: #fff;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 36px;
  align-items: start;
}

.about-intro__copy h2 {
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: #1a1a1a;
}

.about-intro__copy p {
  margin: 0 0 16px;
  color: #5b7ea6;
  font-size: 15px;
  line-height: 1.8;
}

.about-intro__media img {
  width: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  min-height: 360px;
}

.about-stats {
  padding: 28px 0 40px;
  background: #fff;
}

.about-stats__title {
  margin: 0 auto 28px;
  max-width: 780px;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  color: #333;
  line-height: 1.35;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-stats__grid article {
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 12px;
  padding: 28px 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(91, 126, 166, 0.08);
}

.about-stats__grid strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #1a1a1a;
  margin-bottom: 6px;
}

.about-stats__grid span {
  color: #666;
  font-size: 14px;
}

.about-founder {
  padding: 20px 0 40px;
  background: #fff;
}

.about-founder__card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 24px;
  background: #f3ebe0;
  border-radius: 16px;
  padding: 28px;
  align-items: start;
}

.about-founder__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.about-founder__body h2 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: #1a1a1a;
}

.about-founder__body > p {
  margin: 0 0 16px;
  color: #555;
  line-height: 1.7;
  font-size: 14px;
}

.about-founder__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.about-founder__stats span {
  background: #ebe0d2;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #333;
}

.about-founder__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-founder__social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
}

.about-founder__social a.is-fb { background: #1877f2; }
.about-founder__social a.is-x { background: #111; }
.about-founder__social a.is-ig { background: #e1306c; }
.about-founder__social a.is-yt { background: #ff0000; }
.about-founder__social a.is-in { background: #0a66c2; }
.about-founder__social a.is-wa { background: #25d366; }
.about-founder__social a.is-ph { background: #2e7d32; }
.about-founder__social a.is-em { background: #546e7a; }

.about-team {
  padding: 20px 0 40px;
  background: #fff;
}

.about-team__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

.about-team__head h2 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #1a1a1a;
}

.about-team__head p {
  margin: 0;
  color: #666;
  line-height: 1.7;
  font-size: 14px;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-team__card {
  border: 1px solid #ececec;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  padding-bottom: 16px;
}

.about-team__photo {
  height: 180px;
  overflow: hidden;
  background: #f3f3f3;
}

.about-team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-team__card h3 {
  margin: 14px 14px 4px;
  font-size: 16px;
  color: #1a1a1a;
}

.about-team__role {
  display: block;
  margin: 0 14px 8px;
  color: var(--agency-orange);
  font-size: 13px;
  font-weight: 600;
}

.about-team__card > p {
  margin: 0 14px 12px;
  color: #666;
  font-size: 13px;
  line-height: 1.55;
  min-height: 60px;
}

.about-team__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 14px;
}

.about-team__tags span {
  background: #f3ebe0;
  color: #6b4f2e;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
}

.about-cred {
  padding: 36px 0 48px;
  background: #faf7f2;
}

.about-cred__title {
  margin: 0 0 24px;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #1a365d;
  font-weight: 600;
}

.about-cred__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: #c4a35a;
  margin-left: 6px;
}

.about-cred__stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.about-cred__stats article {
  background: #f3ebe0;
  border-radius: 10px;
  padding: 18px 12px;
  text-align: center;
}

.about-cred__stats strong {
  display: block;
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.about-cred__stats span {
  font-size: 12px;
  color: #666;
}

.about-cred__platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.about-cred__platforms article {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 180px;
}

.about-cred__platforms span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.about-cred__platforms strong {
  display: block;
  font-size: 14px;
  color: #222;
}

.about-cred__platforms small {
  color: #777;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .about-team__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-cred__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .about-intro__grid,
  .about-stats__grid,
  .about-founder__card {
    grid-template-columns: 1fr;
  }

  .about-founder__photo {
    margin: 0 auto;
  }

  .about-founder__body {
    text-align: center;
  }

  .about-founder__stats,
  .about-founder__social {
    justify-content: center;
  }

  .about-team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-team__grid,
  .about-stats__grid,
  .about-cred__stats {
    grid-template-columns: 1fr;
  }
}

/* ——— How We Work page ——— */
.how-work__breadcrumb {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.how-work__breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.how-work__breadcrumb a:hover {
  color: var(--agency-orange);
}

.how-work-steps {
  padding: 56px 0 36px;
  background: #fff;
}

.how-work-steps__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
}

.how-work-steps__head h2 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: #1a1a1a;
}

.how-work-steps__head p {
  margin: 0;
  color: #666;
  line-height: 1.75;
  font-size: 15px;
}

.how-work-steps__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.how-work-steps__grid article {
  text-align: center;
  padding: 8px 6px;
}

.how-work-steps__num {
  display: block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #2f6fed;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

.how-work-steps__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #eaf1ff;
  color: #2f6fed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.how-work-steps__grid h3 {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 0.4px;
  color: #1a1a1a;
  font-weight: 700;
}

.how-work-steps__grid p {
  margin: 0;
  color: #666;
  font-size: 13px;
  line-height: 1.55;
}

.how-work-philosophy {
  padding: 28px 0 40px;
  background: #fff;
}

.how-work-philosophy__title {
  margin: 0 0 28px;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: #1a1a1a;
}

.how-work-philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.how-work-philosophy__card {
  border: 1px solid #ececec;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.how-work-philosophy__media {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #f3f3f3;
}

.how-work-philosophy__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.how-work-philosophy__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--agency-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.how-work-philosophy__body {
  padding: 16px 18px 20px;
}

.how-work-philosophy__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff4ec;
  color: var(--agency-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 10px;
}

.how-work-philosophy__card h3 {
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: #1a1a1a;
  font-weight: 700;
}

.how-work-philosophy__card p {
  margin: 0;
  color: #666;
  font-size: 13px;
  line-height: 1.6;
}

.how-work-page .agency-credibility {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .how-work-steps__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .how-work-steps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-work-philosophy__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .how-work-steps__grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Activities page ——— */
.activities-intro {
  padding: 52px 0 12px;
  background: #fff;
  text-align: center;
}

.activities-intro .agency-section-head,
.activities-intro h2 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.activities-intro__text {
  margin: 0 auto;
  max-width: 780px;
  color: #666;
  line-height: 1.75;
  font-size: 15px;
}

.activities-list {
  padding: 28px 0 48px;
  background: #fff;
}

.activities-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.activities-filters__btn {
  border: 1px solid #e2e2e2;
  background: #fff;
  color: #444;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.activities-filters__btn:hover {
  border-color: var(--agency-orange);
  color: var(--agency-orange);
}

.activities-filters__btn.is-active {
  background: var(--agency-orange);
  border-color: var(--agency-orange);
  color: #fff;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 20px;
}

.activities-card {
  display: flex;
  flex-direction: column;
}

.activities-card.is-hidden {
  display: none;
}

.activities-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: #f3f3f3;
}

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

.activities-card:hover .activities-card__media img {
  transform: scale(1.04);
}

.activities-card__cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

.activities-card__body {
  position: relative;
  z-index: 1;
  margin: -20px 4px 0;
  padding: 14px 14px 16px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.activities-card__body h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
  font-family: Montserrat, sans-serif;
}

.activities-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 12px;
  color: #555;
}

.activities-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.activities-card__meta i {
  color: var(--agency-green);
  font-size: 12px;
}

.activities-card__body p {
  margin: 0;
  color: #666;
  font-size: 13px;
  line-height: 1.6;
  flex: 1;
}

.activities-card__actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.activities-card__actions .agency-btn--sm {
  flex: 1 1 0;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.activities-page .agency-credibility {
  margin-top: 0;
}

@media (max-width: 980px) {
  .activities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .activities-grid {
    grid-template-columns: 1fr;
  }

  .activities-intro {
    padding-top: 36px;
  }
}

/* ——— Contact FAQs ——— */
.agency-faqs {
  padding: 40px 0 20px;
  background: #fff;
}

.agency-faqs__list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.agency-faqs__item {
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 14px 18px;
  background: #fafafa;
}

.agency-faqs__item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
  list-style: none;
}

.agency-faqs__item summary::-webkit-details-marker {
  display: none;
}

.agency-faqs__item p {
  margin: 10px 0 0;
  color: #666;
  font-size: 13px;
  line-height: 1.65;
}

