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

:root {
  --ink: #17202a;
  --muted: #5c6975;
  --paper: #fbf8f2;
  --panel: #ffffff;
  --line: #e5d8c5;
  --red: #c3343a;
  --turquoise: #118c86;
  --navy: #123f48;
  --gold: #d6a247;
  --sky: #dbeef0;
  --cream: #fff5e3;
  --shadow: 0 22px 60px rgba(23, 32, 42, 0.14);
  --soft-shadow: 0 14px 34px rgba(23, 32, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Vazirmatn", "Segoe UI", Tahoma, Arial, sans-serif;
  background:
    linear-gradient(135deg, rgba(219, 238, 240, 0.65), rgba(255, 245, 227, 0.7)),
    var(--paper);
  color: var(--ink);
  line-height: 1.85;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(251, 248, 242, 0.86);
  border-bottom: 1px solid rgba(229, 216, 197, 0.74);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.contact-actions,
.trust-strip {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red), var(--turquoise));
  color: #fff;
  box-shadow: 0 10px 24px rgba(17, 140, 134, 0.24);
  font-family: Georgia, serif;
  font-size: 23px;
}

.nav {
  gap: clamp(12px, 2vw, 30px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  padding: 8px 0;
}

.nav a:hover {
  color: var(--red);
}

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 11px 20px;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.header-action,
.primary-button {
  background: linear-gradient(135deg, var(--red), #df6950);
  color: #fff;
  box-shadow: 0 14px 30px rgba(195, 52, 58, 0.22);
}

.header-action:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.secondary-button {
  border: 1px solid rgba(18, 63, 72, 0.18);
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
}

.secondary-button.dark {
  border-color: rgba(18, 63, 72, 0.2);
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 70px);
  padding: clamp(54px, 8vw, 98px) clamp(18px, 5vw, 72px) 44px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(0deg, rgba(17, 140, 134, 0.16), transparent);
  pointer-events: none;
}

.hero-copy-area,
.hero-art {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(52px, 9vw, 118px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: #465563;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 650;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}

.trust-strip {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  border: 1px solid rgba(18, 63, 72, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  padding: 8px 12px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.hero-art {
  min-height: 560px;
}

.hero-art img {
  width: 100%;
  height: min(68vh, 650px);
  min-height: 520px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 24px;
  box-shadow: var(--shadow);
  animation: imageFloat 7s ease-in-out infinite;
}

.floating-note {
  position: absolute;
  display: grid;
  min-width: 150px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  padding: 14px 16px;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
  animation: cardFloat 5s ease-in-out infinite;
}

.floating-note strong {
  color: var(--navy);
  font-size: 28px;
  line-height: 1.1;
}

.floating-note span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.note-one {
  top: 40px;
  right: -12px;
}

.note-two {
  bottom: 72px;
  left: -18px;
  animation-delay: 0.7s;
}

.section,
.split-section,
.contact-section {
  padding: clamp(68px, 8vw, 116px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.28;
  letter-spacing: 0;
}

h3 {
  margin: 12px 0 8px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.45;
}

p {
  color: var(--muted);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 216, 197, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  background: var(--cream);
}

.service-card div {
  padding: 24px;
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(17, 140, 134, 0.1);
  color: var(--turquoise);
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  background: linear-gradient(135deg, #e7f2f3, #fff4df);
}

.split-image img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.split-content {
  max-width: 720px;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 28px;
  border: 1px solid rgba(18, 63, 72, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--soft-shadow);
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(18, 63, 72, 0.1);
  text-align: right;
  vertical-align: top;
}

th {
  background: rgba(18, 63, 72, 0.08);
  color: var(--navy);
  font-weight: 900;
}

tr:last-child td {
  border-bottom: 0;
}

.muted {
  background: #f4efe6;
}

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

.timeline div,
.stats-band div {
  border: 1px solid rgba(229, 216, 197, 0.95);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.timeline div {
  min-height: 220px;
  padding: 25px;
}

.timeline span {
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 72px);
  background: #123f48;
}

.stats-band div {
  display: grid;
  gap: 6px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.stats-band strong {
  color: #f4c66f;
  font-size: 42px;
  line-height: 1;
}

.stats-band span {
  color: #fff;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(18, 63, 72, 0.95), rgba(17, 140, 134, 0.86)),
    url("/assets/istanbul-hero.jpg") center/cover;
}

.contact-copy h2,
.contact-copy p {
  color: #fff;
}

.contact-copy .eyebrow {
  color: #f2c56d;
}

.contact-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(18, 63, 72, 0.15);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--turquoise);
  outline: 4px solid rgba(17, 140, 134, 0.13);
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-status {
  min-height: 28px;
  margin: 0;
  color: var(--turquoise);
  font-weight: 900;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: #111b20;
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  animation: revealUp 0.75s ease both;
}

.delay-1 {
  animation-delay: 0.12s;
}

.delay-2 {
  animation-delay: 0.24s;
}

.delay-3 {
  animation-delay: 0.36s;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.01);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1080px) {
  .hero,
  .service-grid,
  .timeline,
  .split-section,
  .stats-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: auto;
  }

  .hero-art img {
    height: auto;
    min-height: 0;
  }

  .timeline {
    max-width: 820px;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .nav,
  .header-action {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(44px, 17vw, 72px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .floating-note {
    position: static;
    margin-top: 12px;
  }

  .hero-art {
    display: grid;
  }

  .split-image img {
    min-height: 300px;
  }

  .lead-form {
    padding: 20px;
  }

  .table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  tbody {
    display: grid;
    gap: 12px;
  }

  tr {
    border: 1px solid rgba(18, 63, 72, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--soft-shadow);
    overflow: hidden;
  }

  td {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(18, 63, 72, 0.08);
    overflow-wrap: anywhere;
  }

  td::before {
    content: attr(data-label);
    color: var(--navy);
    font-weight: 900;
  }

  tr:last-child td {
    border-bottom: 1px solid rgba(18, 63, 72, 0.08);
  }

  tr td:last-child {
    border-bottom: 0;
  }

  .footer {
    flex-direction: column;
  }
}
