:root {
  --ink: #07324a;
  --ink-soft: #46697b;
  --white: #ffffff;
  --aqua: #6fe9ea;
  --aqua-strong: #36ced4;
  --ocean: #087fa4;
  --deep-ocean: #06354d;
  --page: #f4fbfc;
  --line: rgba(255, 255, 255, 0.56);
  --glass: rgba(10, 113, 143, 0.13);
  --glass-strong: rgba(7, 105, 137, 0.25);
  --shadow: 0 24px 70px rgba(0, 54, 79, 0.18);
  --container: 1320px;
  --radius: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--page);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: max(28px, env(safe-area-inset-top));
  color: var(--white);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  text-decoration: none;
}

.brand__mark {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
}

.brand__name {
  font-size: clamp(18px, 1.45vw, 25px);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.social-nav {
  display: flex;
  align-items: center;
  gap: 13px;
}

.social-link {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.7;
}

.social-link svg rect,
.social-link svg circle:not(.fill) {
  fill: none;
}

.social-link svg .fill {
  stroke: none;
}

.social-nav__divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.32);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: max(100svh, 930px);
  overflow: hidden;
  color: var(--white);
  background: #1787b6;
}

.hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  content: "";
  background-image: image-set(
    url("../img/maldivler-hero.webp") type("image/webp"),
    url("../img/maldivler-hero.jpg") type("image/jpeg")
  );
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 91, 143, 0.2) 0%, rgba(21, 139, 183, 0.04) 36%, rgba(7, 113, 139, 0.17) 100%),
    radial-gradient(circle at 50% 28%, rgba(128, 222, 245, 0.18), transparent 44%),
    linear-gradient(90deg, rgba(0, 80, 122, 0.08), transparent 22%, transparent 76%, rgba(0, 61, 83, 0.12));
}

.hero__overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 64, 108, 0.04) 0%, transparent 42%, rgba(0, 89, 111, 0.08) 100%);
}

.hero__inner {
  display: flex;
  min-height: max(100svh, 930px);
  flex-direction: column;
  align-items: center;
  padding-top: clamp(160px, 18vh, 205px);
  padding-bottom: 36px;
  text-align: center;
}

.hero__copy {
  width: 100%;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 12px;
  color: var(--aqua);
  font-size: clamp(15px, 1.2vw, 20px);
  font-weight: 500;
  letter-spacing: 0.54em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::after {
  display: block;
  width: 40px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translateX(-0.2em);
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(68px, 8.15vw, 128px);
  font-weight: 400;
  letter-spacing: 0.11em;
  line-height: 0.98;
  text-indent: 0.11em;
  text-shadow: 0 8px 35px rgba(0, 61, 91, 0.11);
  text-transform: uppercase;
}

.hero__lead {
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.55;
  text-shadow: 0 2px 14px rgba(0, 65, 92, 0.18);
}

.countdown {
  display: grid;
  width: min(100%, 650px);
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 29px;
}

.countdown__item {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.065), rgba(7, 108, 142, 0.07));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 16px 36px rgba(0, 84, 114, 0.06);
  backdrop-filter: blur(3px);
}

.countdown__item strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 3.25vw, 54px);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown__item span {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 57px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 25px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 16px 35px rgba(0, 86, 111, 0.09);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 79, 106, 0.16);
}

.button--primary {
  min-width: 267px;
  border-color: rgba(168, 255, 255, 0.7);
  background: linear-gradient(115deg, rgba(38, 191, 198, 0.73), rgba(22, 165, 187, 0.56));
  backdrop-filter: blur(8px);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: linear-gradient(115deg, rgba(43, 205, 210, 0.88), rgba(23, 172, 193, 0.74));
}

.button--ghost {
  min-width: 216px;
  background: rgba(8, 112, 145, 0.09);
  backdrop-filter: blur(5px);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button svg .fill {
  fill: currentColor;
  stroke: none;
}

.button__arrow {
  margin-left: 4px;
}

.feature-grid {
  display: grid;
  width: min(100%, 1010px);
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 25px;
}

.feature-card {
  min-height: 160px;
  padding: 22px 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(13, 120, 150, 0.11), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 22px 45px rgba(0, 83, 106, 0.07);
  backdrop-filter: blur(5px);
}

.feature-card__icon {
  display: grid;
  width: 58px;
  height: 50px;
  margin: 0 auto 5px;
  place-items: center;
  color: #c6ffff;
}

.feature-card__icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.feature-card h2 {
  margin: 3px 0 2px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.25;
}

.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.6;
}

.hero__copyright {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: auto 0 0;
  padding-top: 26px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.hero__copyright::before,
.hero__copyright::after {
  width: 96px;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.22);
}

.preview-section {
  padding: 120px 0 112px;
  background:
    radial-gradient(circle at 88% 10%, rgba(48, 204, 207, 0.12), transparent 25%),
    linear-gradient(180deg, #f7fcfd 0%, #eef9fa 100%);
}

.preview-section__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(520px, 1.4fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: start;
}

.section-heading__eyebrow {
  margin: 0 0 14px;
  color: #148aa8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.85;
}

.content-cards {
  display: grid;
  gap: 18px;
}

.content-cards article {
  position: relative;
  padding: 28px 32px 28px 86px;
  border: 1px solid rgba(9, 111, 142, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 60px rgba(10, 93, 119, 0.075);
}

.content-cards article > span {
  position: absolute;
  top: 30px;
  left: 30px;
  color: #24aeb7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.content-cards h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 19px;
}

.content-cards p {
  margin: 0;
  color: var(--ink-soft);
}

.faq-section {
  padding: 108px 0 126px;
  background: #fff;
}

.faq-section__inner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(55px, 9vw, 140px);
}

.section-heading--compact h2 {
  font-size: clamp(34px, 3.2vw, 50px);
}

.faq-list {
  border-top: 1px solid rgba(7, 74, 101, 0.14);
}

.faq-list details {
  border-bottom: 1px solid rgba(7, 74, 101, 0.14);
}

.faq-list summary {
  position: relative;
  padding: 25px 54px 25px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 17px;
  height: 1.5px;
  content: "";
  background: #199db0;
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 760px;
  margin: -5px 0 0;
  padding: 0 54px 26px 0;
  color: var(--ink-soft);
}

.site-footer {
  padding: 54px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #06384f;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand--footer .brand__mark {
  width: 48px;
  height: 48px;
}

.brand--footer .brand__name {
  font-size: 18px;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

.site-footer p:nth-child(2) {
  text-align: center;
}

.site-footer p:last-child {
  text-align: right;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: max(24px, env(safe-area-inset-bottom));
  max-width: min(390px, calc(100% - 48px));
  padding: 15px 19px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  color: #fff;
  background: rgba(4, 51, 72, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  animation: toast-in 220ms ease both;
}

.toast[hidden] {
  display: none;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

:focus-visible {
  outline: 3px solid #b8ffff;
  outline-offset: 4px;
}

@media (max-width: 1050px) {
  .container {
    width: min(calc(100% - 44px), var(--container));
  }

  .hero {
    min-height: 960px;
  }

  .hero__inner {
    min-height: 960px;
    padding-top: 155px;
  }

  .feature-grid {
    gap: 18px;
  }

  .preview-section__inner,
  .faq-section__inner {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .content-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .content-cards article {
    padding: 68px 24px 27px;
  }

  .content-cards article > span {
    top: 23px;
    left: 24px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer p:nth-child(2),
  .site-footer p:last-child {
    text-align: center;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .site-header {
    padding-top: max(20px, env(safe-area-inset-top));
  }

  .brand {
    gap: 10px;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
  }

  .brand__name {
    font-size: 17px;
  }

  .social-nav {
    gap: 2px;
  }

  .social-link {
    width: 34px;
    height: 34px;
  }

  .social-nav__divider {
    display: none;
  }

  .social-link:nth-of-type(2),
  .social-link:nth-of-type(3) {
    display: none;
  }

  .hero {
    min-height: 1180px;
  }

  .hero::before {
    background-image: url("../img/maldivler-hero-mobile.webp");
    background-position: center bottom;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(18, 129, 180, 0.32) 0%, rgba(21, 142, 183, 0.14) 42%, rgba(2, 96, 119, 0.3) 100%),
      radial-gradient(circle at 50% 22%, rgba(140, 234, 249, 0.18), transparent 40%);
  }

  .hero__inner {
    min-height: 1180px;
    padding-top: 135px;
    padding-bottom: 28px;
  }

  .eyebrow {
    gap: 13px;
    font-size: 13px;
    letter-spacing: 0.45em;
  }

  .eyebrow::after {
    width: 28px;
  }

  .hero h1 {
    font-size: clamp(50px, 15.5vw, 73px);
    letter-spacing: 0.07em;
    text-indent: 0.07em;
  }

  .hero__lead {
    max-width: 530px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.65;
  }

  .desktop-break {
    display: none;
  }

  .countdown {
    width: min(100%, 540px);
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 25px;
  }

  .countdown__item {
    min-height: 94px;
    border-radius: 13px;
  }

  .countdown__item strong {
    font-size: 38px;
  }

  .countdown__item span {
    margin-top: 7px;
    font-size: 12px;
  }

  .hero__actions {
    width: min(100%, 540px);
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
  }

  .button,
  .button--primary,
  .button--ghost {
    width: 100%;
    min-width: 0;
  }

  .feature-grid {
    width: min(100%, 540px);
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }

  .feature-card {
    display: grid;
    min-height: 0;
    grid-template-columns: 58px 1fr;
    grid-template-rows: auto auto;
    column-gap: 13px;
    padding: 17px 18px;
    text-align: left;
  }

  .feature-card__icon {
    grid-row: 1 / 3;
    margin: 0;
  }

  .feature-card h2 {
    align-self: end;
    margin: 0;
    font-size: 17px;
  }

  .feature-card p {
    align-self: start;
    font-size: 12.5px;
  }

  .hero__copyright {
    gap: 10px;
    padding-top: 22px;
    font-size: 12px;
  }

  .hero__copyright::before,
  .hero__copyright::after {
    width: 38px;
  }

  .preview-section,
  .faq-section {
    padding: 82px 0;
  }

  .section-heading h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .section-heading > p:last-child {
    font-size: 16px;
  }

  .content-cards {
    grid-template-columns: 1fr;
  }

  .content-cards article {
    padding: 27px 24px 25px 76px;
  }

  .content-cards article > span {
    top: 28px;
    left: 24px;
  }

  .faq-list summary {
    padding-right: 42px;
    font-size: 17px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .site-footer {
    padding: 46px 0;
  }
}

@media (max-width: 390px) {
  .brand__name {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero__inner {
    padding-top: 125px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
