:root {
  --font-main: "Vazirmatn", Tahoma, Arial, sans-serif;
}

@font-face {
  font-family: "Vazirmatn";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/vazirmatn-400.woff2") format("woff2");
}

@font-face {
  font-family: "Vazirmatn";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/vazirmatn-700.woff2") format("woff2");
}

@font-face {
  font-family: "Vazirmatn";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("assets/vazirmatn-900.woff2") format("woff2");
}

:root {
  --navy: #182551;
  --navy-deep: #101a3c;
  --red: #d3131b;
  --red-dark: #b70d15;
  --cream: #f7f5f0;
  --ink: #141a2b;
  --muted: #687084;
  --line: #e4e6eb;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-main);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 32px;
  width: 100%;
  padding: 12px clamp(24px, 5vw, 80px);
  border-bottom: 1px solid rgba(24, 37, 81, 0.09);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  height: 58px;
  align-items: center;
}

.brand img {
  width: 84px;
  height: 58px;
  object-fit: contain;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  color: #3f475b;
  font-size: 14px;
}

.site-header nav a {
  transition: color 180ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--red);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border: 1px solid rgba(24, 37, 81, 0.14);
  border-radius: 14px;
  color: var(--navy);
  font-size: 12px;
}

.header-cta b {
  font-size: 15px;
}

.hero {
  display: grid;
  min-height: 670px;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
  max-width: 1440px;
  margin: 0 auto;
  padding: 70px clamp(24px, 6vw, 96px) 86px;
  overflow: hidden;
}

.hero-copy {
  max-width: 600px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  margin: 24px 0 22px;
  color: var(--navy-deep);
  font-size: clamp(44px, 5.3vw, 78px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.055em;
}

.hero h1 em {
  position: relative;
  color: var(--red);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  width: 100%;
  height: 5px;
  border-radius: 99px;
  background: var(--red);
  content: "";
  transform: scaleX(0.72);
  transform-origin: right;
}

.hero-copy > p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.primary-btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 14px 24px;
  border-radius: 14px;
  background: var(--red);
  box-shadow: 0 16px 32px rgba(211, 19, 27, 0.17);
  color: white;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.primary-btn:hover,
.primary-btn:focus-visible {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.primary-btn span {
  font-size: 21px;
}

.secondary-btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 22px;
  border: 1px solid rgba(24, 37, 81, 0.2);
  border-radius: 14px;
  background: white;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  transition: border 180ms ease, color 180ms ease, transform 180ms ease;
}

.secondary-btn:hover,
.secondary-btn:focus-visible {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.secondary-btn span {
  color: var(--red);
  font-size: 17px;
}

.text-link {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--navy);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 32px;
  color: #626a7c;
  font-size: 12px;
}

.trust-row span::before {
  margin-left: 7px;
  color: var(--red);
  content: "●";
  font-size: 7px;
}

.hero-visual {
  position: relative;
  min-height: 530px;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: 54px -42px -30px 58px;
  border-radius: 32px;
  background: var(--cream);
  content: "";
}

.hero-visual::after {
  position: absolute;
  z-index: -2;
  top: 8px;
  left: -32px;
  width: 104px;
  height: 104px;
  border: 18px solid rgba(211, 19, 27, 0.09);
  border-radius: 50%;
  content: "";
}

.hero-visual > img {
  width: 100%;
  height: 530px;
  border-radius: 28px 28px 120px 28px;
  box-shadow: 0 30px 70px rgba(16, 26, 60, 0.16);
  object-fit: cover;
}

.visual-note {
  position: absolute;
  right: -24px;
  bottom: 36px;
  display: flex;
  min-width: 230px;
  flex-direction: column;
  gap: 7px;
  padding: 18px 22px;
  border-right: 4px solid var(--red);
  border-radius: 12px;
  background: white;
  box-shadow: 0 18px 45px rgba(16, 26, 60, 0.14);
}

.visual-note span {
  color: var(--red);
  font-size: 11px;
}

.visual-note b {
  color: var(--navy);
  font-size: 14px;
}

.logo-strip {
  padding: 21px 24px;
  background: var(--navy);
  color: white;
  text-align: center;
}

.logo-strip p {
  margin: 0;
  font-size: 13px;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 110px 32px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 72px;
  margin-bottom: 46px;
}

.section h2,
.final-cta h2 {
  margin: 14px 0 0;
  color: var(--navy-deep);
  font-size: clamp(30px, 3.2vw, 45px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -0.035em;
}

.section-heading > p,
.editorial-copy > p,
.destination-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  overflow: hidden;
  transition: transform 180ms ease, border 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  border-color: rgba(211, 19, 27, 0.28);
  box-shadow: 0 20px 45px rgba(16, 26, 60, 0.08);
  transform: translateY(-5px);
}

.service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58px;
  height: 5px;
  background: var(--red);
  content: "";
}

.service-number {
  display: block;
  margin-bottom: 28px;
  color: rgba(24, 37, 81, 0.19);
  font-size: 36px;
  font-weight: 900;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 20px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 2;
}

.editorial {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  max-width: none;
  padding-right: max(32px, calc((100vw - 1240px) / 2 + 32px));
  padding-left: 0;
  background: var(--cream);
}

.editorial-image img {
  display: block;
  width: 100%;
  height: 570px;
  border-radius: 32px 0 0 32px;
  object-fit: cover;
}

.editorial-copy {
  max-width: 530px;
}

.editorial-copy ol {
  display: grid;
  gap: 24px;
  margin: 38px 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.editorial-copy li {
  position: relative;
  display: grid;
  gap: 5px;
  padding-right: 58px;
  counter-increment: process;
}

.editorial-copy li::before {
  position: absolute;
  right: 0;
  top: 0;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: white;
  color: var(--red);
  content: counter(process, decimal-leading-zero);
  font-size: 12px;
  font-weight: 900;
}

.editorial-copy li b {
  color: var(--navy);
  font-size: 15px;
}

.editorial-copy li span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.destination {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: stretch;
  gap: 0;
}

.destination-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  margin-left: -52px;
  padding: 55px;
  border-radius: 28px;
  background: white;
  box-shadow: 0 25px 65px rgba(16, 26, 60, 0.14);
}

.destination-copy ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.destination-copy li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4f586d;
  font-size: 13px;
}

.destination-copy li span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: rgba(211, 19, 27, 0.09);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.destination-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--red);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.destination-link span {
  color: var(--red);
  font-size: 18px;
}

.destination-image {
  width: 100%;
  min-height: 520px;
  border-radius: 32px;
  object-fit: cover;
}

.faq {
  padding-top: 70px;
}

.faq .section-heading {
  grid-template-columns: 1fr;
  margin-bottom: 28px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 4px;
  color: var(--navy);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
}

.faq summary::after {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--red);
  content: "+";
  font-size: 20px;
  transition: transform 180ms ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 850px;
  margin: -4px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 1180px;
  margin: 20px auto 90px;
  padding: 46px 54px;
  border-radius: 30px;
  background: var(--navy);
  box-shadow: 0 24px 65px rgba(16, 26, 60, 0.22);
  color: white;
}

.kicker.light {
  color: #f4a3a7;
}

.final-cta h2 {
  max-width: 690px;
  margin-top: 10px;
  color: white;
  font-size: clamp(26px, 3vw, 39px);
}

.final-cta > a {
  display: flex;
  min-width: 205px;
  flex-direction: column;
  gap: 5px;
  padding: 16px 22px;
  border-radius: 16px;
  background: white;
  color: var(--navy);
  text-align: center;
}

.final-cta small {
  color: var(--red);
  font-size: 11px;
}

.final-cta b {
  font-size: 22px;
}

footer {
  display: grid;
  grid-template-columns: 80px 210px minmax(320px, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 35px clamp(24px, 6vw, 90px);
  border-top: 1px solid var(--line);
  background: #fafafa;
}

footer img {
  width: 70px;
  height: 64px;
  object-fit: contain;
}

footer div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

footer div b {
  color: var(--navy);
  font-size: 15px;
}

footer div span,
footer p {
  color: #767d8c;
  font-size: 10px;
  line-height: 1.9;
}

footer p {
  max-width: 580px;
  margin: 0;
}

footer > a {
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.mobile-call {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 100px 1fr;
  }

  .site-header nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-visual > img {
    height: 480px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .service-card {
    min-height: auto;
  }

  .editorial {
    grid-template-columns: 1fr;
    padding: 80px 0 0;
  }

  .editorial-copy {
    max-width: none;
    padding: 0 32px;
  }

  .editorial-image {
    order: 2;
  }

  .editorial-image img {
    height: 480px;
    border-radius: 0;
  }

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

  .destination-copy {
    margin: 0 20px -60px;
    padding: 38px;
  }

  .destination-image {
    min-height: 480px;
  }

  .final-cta {
    margin-right: 24px;
    margin-left: 24px;
  }

  footer {
    grid-template-columns: 70px 1fr;
  }

  footer p,
  footer > a {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 74px;
  }

  .site-header {
    padding: 9px 18px;
  }

  .brand,
  .brand img {
    height: 50px;
  }

  .brand img {
    width: 68px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    gap: 42px;
    padding: 42px 20px 64px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero h1 {
    margin-top: 19px;
    font-size: 40px;
  }

  .hero-copy > p {
    font-size: 14px;
    line-height: 2;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .primary-btn {
    width: 100%;
  }

  .secondary-btn {
    width: 100%;
  }

  .text-link {
    align-self: center;
  }

  .trust-row {
    display: grid;
    gap: 9px;
  }

  .hero-visual,
  .hero-visual > img {
    min-height: 340px;
    height: 340px;
  }

  .hero-visual > img {
    border-radius: 20px 20px 72px 20px;
  }

  .hero-visual::before {
    inset: 28px -18px -20px 34px;
  }

  .visual-note {
    right: 14px;
    bottom: -28px;
    min-width: 210px;
  }

  .logo-strip {
    padding: 20px;
  }

  .section {
    padding: 76px 20px;
  }

  .section h2 {
    font-size: 30px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .service-card {
    padding: 25px;
  }

  .editorial {
    padding-right: 0;
    padding-left: 0;
  }

  .editorial-copy {
    padding: 0 20px;
  }

  .editorial-image img {
    height: 340px;
  }

  .destination {
    padding-top: 76px;
  }

  .destination-copy {
    margin: 0 0 -42px;
    padding: 28px 22px;
  }

  .destination-image {
    min-height: 360px;
    border-radius: 0;
  }

  .faq summary {
    gap: 16px;
    font-size: 14px;
    line-height: 1.8;
  }

  .final-cta {
    align-items: stretch;
    flex-direction: column;
    margin: 10px 20px 70px;
    padding: 32px 24px;
  }

  .final-cta > a {
    width: 100%;
  }

  footer {
    grid-template-columns: 60px 1fr;
    padding: 28px 20px;
  }

  .mobile-call {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: var(--red);
    box-shadow: 0 -12px 30px rgba(16, 26, 60, 0.16);
    color: white;
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-call b {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
