:root {
  --red: #e31e24;
  --red-dark: #b91820;
  --red-soft: #fff0f0;
  --white: #ffffff;
  --black: #1a1a1a;
  --gray-600: #5c5c5c;
  --gray-400: #9a9a9a;
  --gray-200: #e8e8e8;
  --gray-100: #f6f6f8;
  --radius: 12px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --shadow: 0 8px 30px rgba(26, 26, 26, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--red);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1180px, 100% - 40px);
  margin-inline: auto;
}

.anchor {
  scroll-margin-top: 120px;
}

[id] {
  scroll-margin-top: 100px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Top strip */
.top-strip {
  background: var(--red);
  color: var(--white);
  font-size: 0.875rem;
}

.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 40px;
}

.top-strip p {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: inherit;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  text-decoration: none;
}

.btn--sm {
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  border-radius: 999px;
}

.btn--white {
  background: var(--white);
  color: var(--red);
}

.btn--white:hover {
  background: var(--gray-100);
}

.btn--primary {
  background: var(--red);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--red-dark);
}

.btn--pill {
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
}

.btn--dark {
  background: var(--black);
  color: var(--white);
}

.btn--dark:hover {
  background: #333;
}

.btn--outline-dark {
  background: var(--black);
  color: var(--white);
}

.btn--outline-red {
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--red);
}

.btn--outline-red:hover {
  background: var(--red-soft);
}

.btn--ghost-red {
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--red);
}

.btn--ghost-red:hover {
  background: var(--red-soft);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 var(--gray-200);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem 0;
  position: relative;
}

.header .logo-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  max-width: min(340px, 78vw);
  min-width: 0;
}

.logo-brand {
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  text-decoration: none;
}

.logo-brand:hover {
  opacity: 0.92;
  text-decoration: none;
}

.logo-brand__img {
  display: block;
  width: auto;
  height: auto;
  max-height: 72px;
  max-width: min(320px, 78vw);
  min-width: 160px;
  object-fit: contain;
  object-position: left center;
}

/* Footer: no extra box — logo file ka apna background dikhe */
.logo-brand__footer-wrap {
  display: inline-block;
  background: transparent;
  padding: 0;
  border-radius: 0;
  line-height: 0;
}

.logo-brand__img--footer {
  height: auto;
  width: auto;
  max-width: min(300px, 92vw);
  max-height: 130px;
  min-height: 80px;
  object-fit: contain;
  object-position: left center;
}

.logo-brand__mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--red);
  clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
}

.logo-brand__text {
  line-height: 1.2;
}

.logo-brand__text strong {
  color: var(--red);
  font-weight: 800;
}

.logo-brand--footer {
  color: var(--white);
  max-width: none;
}

.logo-brand--footer:hover {
  opacity: 0.95;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  justify-content: center;
  flex: 1;
}

.nav a {
  color: var(--black);
  font-weight: 500;
  font-size: 0.88rem;
  text-decoration: none;
}

.nav a:hover {
  color: var(--red);
}

.nav__book-mobile {
  display: none;
}

.header__cta {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  position: relative;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
}

.nav-toggle::before {
  top: 14px;
  box-shadow: 0 7px 0 var(--black);
}

.nav-toggle::after {
  bottom: 14px;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .header__cta {
    display: none;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow);
    border-radius: 0 0 var(--radius) var(--radius);
    z-index: 99;
  }

  .nav.is-open {
    display: flex;
  }

  .nav__book-mobile {
    display: block;
    font-weight: 700;
    color: var(--red);
    margin-top: 0.25rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-200);
  }
}

/* Float bar */
.float-bar {
  position: fixed;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-bar__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.float-bar__btn:hover {
  text-decoration: none;
  filter: brightness(1.08);
}

.float-bar__btn--video {
  background: #2563eb;
}

.float-bar__btn--phone {
  background: var(--black);
}

.float-bar__btn--wa {
  background: #25d366;
}

@media (max-width: 600px) {
  .float-bar {
    right: 8px;
  }

  .float-bar__btn {
    width: 42px;
    height: 42px;
  }
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(180deg, #fafafa 0%, var(--white) 100%);
  overflow: hidden;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: radial-gradient(circle at 20% 30%, var(--gray-200) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-swiper {
  padding-bottom: 3rem;
}

.hero-swiper .swiper-slide {
  height: auto;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 2rem;
  min-height: min(520px, 70vh);
}

.hero__grid--alt {
  align-items: center;
}

.hero__copy h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  font-weight: 800;
}

.hero__copy h1 em {
  font-style: normal;
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.hero__copy p {
  margin: 0 0 1rem;
  color: var(--gray-600);
  max-width: 36ch;
}

.hero__link-line a {
  font-weight: 600;
  color: var(--black);
}

.hero__link-line em {
  font-style: normal;
  color: var(--red);
  text-decoration: underline;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__visual--slide2 {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  padding: 12px;
  background: var(--gray-100);
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__photo {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(520px, 62vh);
  border-radius: 16px;
  object-fit: contain;
  object-position: center;
  display: block;
  vertical-align: top;
}

/* Flower collage */
.flower-collage {
  position: relative;
  width: min(420px, 90vw);
  aspect-ratio: 1;
  margin: auto;
}

.flower-collage__petal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38%;
  height: 52%;
  margin: -26% -19%;
  transform: rotate(calc(var(--i) * 51deg - 90deg)) translateY(-42%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(227, 30, 36, 0.2);
  border: 3px solid var(--white);
}

.flower-collage__petal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--gray-100);
}

.hero-swiper__pagination {
  bottom: 12px !important;
}

.hero-swiper__pagination .swiper-pagination-bullet {
  background: var(--gray-400);
  opacity: 1;
}

.hero-swiper__pagination .swiper-pagination-bullet-active {
  background: var(--red);
  width: 22px;
  border-radius: 6px;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: unset;
  }

  .hero__copy p {
    max-width: none;
  }

  .hero__cta {
    justify-content: center;
  }

  .flower-collage {
    width: min(320px, 85vw);
  }
}

/* Stats */
.stats {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.stats__item strong {
  display: block;
  color: var(--red);
  font-size: 1.25rem;
  font-weight: 800;
}

.stats__icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.stats--inline {
  margin-top: 2.5rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--gray-200);
  background: transparent;
  border-bottom: none;
}

@media (max-width: 520px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section--muted {
  background: var(--gray-100);
}

.section__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--gray-600);
}

.section__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.section__eyebrow--on-dark::before {
  background: var(--white);
}

.section__eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.9);
}

.section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 2rem;
  font-weight: 800;
  max-width: 28ch;
}

.section__eyebrow--spaced {
  margin-top: 3rem;
}

/* Cards & Swiper */
.card-swiper {
  position: relative;
  padding-bottom: 2.5rem;
}

.card-swiper .swiper-slide {
  height: auto;
}

.info-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  background: var(--white);
  height: 100%;
  border-top: 3px solid var(--red);
}

.info-card--shadow {
  box-shadow: var(--shadow);
  border-top-color: var(--red);
}

.info-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  filter: grayscale(0.2);
}

.info-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.info-card p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.info-card a {
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.swiper-nav-wrap {
  position: absolute;
  top: 42%;
  left: 0;
  right: 0;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  z-index: 5;
  padding: 0 0.25rem;
}

.swiper-btn {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.swiper-btn:hover {
  color: var(--red);
  border-color: var(--red);
}

.swiper-dots,
.consultants-pagination,
.journey-pagination,
.visa-pagination,
.feature-pagination,
.logo-pagination,
.country-pagination,
.disc-pagination,
.story-pagination,
.quote-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}

.swiper-pagination-bullet {
  background: var(--gray-200);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--red);
}

.visa-swiper__footer {
  text-align: right;
  margin-top: 1rem;
}

/* Enquire strip */
.section--enquire {
  background: var(--red);
  color: var(--white);
  padding: 3rem 0;
}

.section--enquire .section__title,
.enquire-split h2 {
  color: var(--white);
  max-width: 20ch;
}

.enquire-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.enquire-form textarea,
.enquire-form select {
  width: 100%;
  font: inherit;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.15);
  color: var(--white);
}

.enquire-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.enquire-form select {
  color: var(--white);
}

.enquire-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .enquire-split {
    grid-template-columns: 1fr;
  }

  .enquire-form__row {
    grid-template-columns: 1fr;
  }
}

/* Feature swiper */
.feature-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 1rem 0;
}

.feature-slide--reverse .feature-slide__media {
  order: -1;
}

.feature-slide__media {
  background: var(--gray-100);
  border-radius: 20px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.feature-slide__media img {
  width: 100%;
  display: block;
  border-radius: 12px;
  aspect-ratio: 5/4;
  object-fit: contain;
  object-position: center;
  background: var(--gray-100);
}

.feature-slide__text h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin: 0.5rem 0 1rem;
}

.feature-slide__text p {
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}

@media (max-width: 800px) {
  .feature-slide,
  .feature-slide--reverse {
    grid-template-columns: 1fr;
  }

  .feature-slide--reverse .feature-slide__media {
    order: 0;
  }
}

/* Logo swiper */
.logo-swiper-wrap {
  position: relative;
  margin-top: 1.5rem;
}

.logo-swiper {
  padding: 0 3rem;
}

.logo-placeholder {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px dashed var(--gray-200);
  border-radius: var(--radius);
  font-weight: 800;
  color: var(--gray-600);
}

.logo-swiper-wrap .swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
}

.logo-prev {
  left: 0;
}

.logo-next {
  right: 0;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--gray-200);
}

.tabs__btn {
  background: none;
  border: none;
  font: inherit;
  font-weight: 600;
  padding: 0.5rem 0;
  margin-bottom: -2px;
  color: var(--gray-600);
  cursor: pointer;
  border-bottom: 3px solid transparent;
}

.tabs__btn.is-active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.tab-panel[hidden] {
  display: none !important;
}

/* Country cards */
.country-card__img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow);
  background: var(--gray-100);
}

.country-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.country-card .flag {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--red);
  border: 2px solid var(--red);
}

.country-card h3 {
  margin: 0.75rem 0 0;
  font-size: 1rem;
}

.country-swiper {
  position: relative;
  padding-bottom: 2rem;
}

.country-swiper .swiper-nav-wrap {
  top: 38%;
}

/* Story cards */
@media (max-width: 600px) {
  .header .logo-brand__img {
    max-height: 58px;
    min-width: 140px;
    max-width: min(280px, 72vw);
  }

  .logo-brand__img--footer {
    max-height: 100px;
    max-width: min(260px, 88vw);
  }
}

.story-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.story-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
}

.story-swiper .swiper-slide .story-card {
  flex: 1 1 auto;
  min-height: 0;
}

/* Same tile size for every slide: fixed 16:10 image area — full image visible (no crop) */
.story-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
  background: var(--gray-100);
  overflow: hidden;
}

.story-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Logo tile: same outer size as photo tiles; image contained on dark band */
.story-card__media--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
}

.story-card__media--logo img {
  position: relative;
  inset: auto;
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  object-position: center;
}

.story-card__cap {
  flex: 0 0 auto;
  box-sizing: border-box;
  height: 5.75rem;
  min-height: 5.75rem;
  max-height: 5.75rem;
  padding: 0.75rem 0.9rem;
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.45;
  border-top: 1px solid var(--gray-200);
  color: var(--black);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  text-overflow: ellipsis;
}

.story-swiper {
  position: relative;
  padding-bottom: 2rem;
}

.story-swiper.swiper {
  width: 100%;
}

.story-swiper .swiper-wrapper {
  align-items: stretch;
}

@media (max-width: 639px) {
  .story-card__cap {
    height: 5.25rem;
    min-height: 5.25rem;
    max-height: 5.25rem;
    font-size: 0.82rem;
    -webkit-line-clamp: 3;
  }
}

/* Quotes */
.testimonials-wrap {
  background: var(--gray-100);
}

.quote-swiper {
  position: relative;
  padding-bottom: 2rem;
}

.quote-card {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  height: 100%;
  border: 1px solid var(--gray-200);
}

.quote-card__mark {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--red);
  font-family: Georgia, serif;
}

.quote-card p {
  margin: 0 0 1rem;
  color: var(--gray-600);
  font-size: 0.95rem;
  max-height: 140px;
  overflow-y: auto;
}

.quote-card footer {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.quote-card footer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-card footer strong {
  display: block;
  font-size: 0.95rem;
}

.quote-card footer span {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* Events */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.event-card {
  position: relative;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem 1.25rem 1.25rem;
  background: var(--white);
}

.event-card__date {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red-soft);
  color: var(--red);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
}

.event-card__logo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.event-card p {
  margin: 0;
  font-weight: 600;
}

@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}

/* Full form */
.section--form-full {
  background: var(--white);
}

.enquire-form--full {
  max-width: 720px;
}

.enquire-form--full select,
.enquire-form--full input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  font: inherit;
  background: var(--white);
}

.enquire-form--full select:focus,
.enquire-form--full input:focus,
.enquire-form--full textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 0;
  border-color: var(--red);
}

.field-icon {
  display: block;
  position: relative;
  margin-bottom: 0.75rem;
}

.field-icon input {
  padding-right: 2.75rem;
}

.field-icon::after {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.45;
  font-size: 1rem;
  pointer-events: none;
}

.field-icon--user::after {
  content: "👤";
}

.field-icon--mail::after {
  content: "✉";
}

.field-icon--phone::after {
  content: "📱";
}

.checkbox-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 1rem 0;
}

.checkbox-row input {
  margin-top: 0.25rem;
  accent-color: var(--red);
}

.enquire-form__actions {
  display: flex;
  justify-content: flex-end;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.accordion__item {
  border-bottom: 1px solid var(--gray-200);
}

.accordion__head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  background: none;
  border: none;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.accordion__chev {
  transition: transform 0.25s;
  color: var(--red);
}

.accordion__item.is-open .accordion__chev {
  transform: rotate(180deg);
}

.accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.accordion__item.is-open .accordion__body {
  grid-template-rows: 1fr;
}

.accordion__body > * {
  min-height: 0;
  overflow: hidden;
}

.accordion__body p {
  margin: 0 0 1rem;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.faq-cta {
  white-space: nowrap;
  align-self: end;
}

@media (max-width: 768px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-cta {
    justify-self: start;
  }
}

/* Footer */
.footer {
  background: var(--red);
  color: var(--white);
  padding: 3.5rem 0 1.5rem;
}

.footer a {
  color: var(--white);
  opacity: 0.92;
}

.footer a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.footer h3 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.footer__sub {
  margin-top: 1.25rem;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li {
  margin-bottom: 0.4rem;
}

.footer li a {
  font-size: 0.88rem;
}

.footer__brand p {
  font-size: 0.88rem;
  opacity: 0.9;
  max-width: 260px;
}

.logo-main--footer {
  color: var(--white);
}

.logo-main--footer .logo-main__mark {
  background: var(--white);
}

.social-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  text-decoration: none;
}

.social-row a:hover {
  background: rgba(255, 255, 255, 0.15);
  text-decoration: none;
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  opacity: 0.9;
}

.footer__bottom p {
  margin: 0.35rem 0 0;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* —— ATLYS content blocks —— */
.hero__sub {
  margin: 0 0 1rem;
  color: var(--gray-600);
  max-width: 38ch;
  font-size: 1.05rem;
}

.section__lead {
  margin: -1rem 0 1.75rem;
  color: var(--gray-600);
  max-width: 52ch;
}

.section__title--tight {
  max-width: 22ch;
}

.section--lead {
  background: var(--gray-100);
}

.lead-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.lead-card__intro .section__title {
  margin-bottom: 0.5rem;
}

.lead-card__hint {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.lead-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lead-form .form-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
}

.lead-form .form-field--full {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  font: inherit;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
}

.lead-form textarea {
  min-height: 88px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 0;
  border-color: var(--red);
}

.lead-form__submit {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .lead-card {
    grid-template-columns: 1fr;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  border-top: 3px solid var(--red);
  box-shadow: 0 4px 16px rgba(26, 26, 26, 0.04);
}

.why-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.why-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.why-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--gray-600);
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.process-steps li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.process-steps__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.process-steps h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.process-steps p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

.google-reviews {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow);
}

.google-reviews__badge {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(145deg, #4285f4, #34a853);
  color: var(--white);
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.google-reviews__label {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
  font-weight: 600;
}

.google-reviews__stars {
  color: #f4b400;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.google-reviews__text {
  margin: 0 0 1rem;
  color: var(--gray-600);
  font-size: 0.95rem;
  max-width: 48ch;
}

@media (max-width: 600px) {
  .google-reviews {
    flex-direction: column;
    text-align: center;
  }

  .google-reviews__body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  height: 100%;
  border-top: 3px solid var(--red);
}

.blog-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  line-height: 1.35;
}

.blog-card p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.blog-card a {
  font-weight: 600;
  font-size: 0.9rem;
}

.section--cta {
  background: var(--red);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}

.cta-block h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 800;
}

.cta-block p {
  margin: 0 0 1.25rem;
  opacity: 0.95;
  max-width: 40ch;
  margin-inline: auto;
}

.section--contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-card {
  background: var(--gray-100);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
}

.contact-card h3 {
  margin: 1.25rem 0 0.35rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red);
}

.contact-card h3:first-of-type {
  margin-top: 0;
}

.contact-card p {
  margin: 0;
  color: var(--gray-600);
}

.contact-card a {
  font-weight: 600;
}

.contact-card .btn {
  margin-top: 1.25rem;
}

.branch-list {
  margin: 0 0 0.5rem;
  padding-left: 1.25rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.branch-list li {
  margin-bottom: 0.2rem;
}

.branch-list__note {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.45;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
}

.contact-map__note {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--gray-600);
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.faq-cta {
  font: inherit;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal.is-open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.55);
  cursor: pointer;
}

.modal__dialog {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--gray-100);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--black);
}

.modal__close:hover {
  background: var(--gray-200);
}

.modal__title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  padding-right: 2rem;
}

.modal__sub {
  margin: 0 0 1.25rem;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal-form--full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.modal-form--full .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.modal-form--full .form-field label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-600);
}

.modal-form--full .form-field--full {
  grid-column: 1 / -1;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  font: inherit;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.modal-form textarea {
  min-height: 64px;
  resize: vertical;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  outline: 2px solid var(--red);
  border-color: var(--red);
}

.modal-form__btn {
  grid-column: 1 / -1;
  margin-top: 0.35rem;
  width: 100%;
}

@media (max-width: 480px) {
  .modal-form--full {
    grid-template-columns: 1fr;
  }
}

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s;
}

.whatsapp-fab:hover {
  transform: scale(1.06);
  text-decoration: none;
  color: var(--white);
}

@media (max-width: 960px) {
  .whatsapp-fab {
    bottom: 18px;
    right: 14px;
  }
}
