:root {
  --bg: #f5efe7;
  --bg-soft: #fbf8f4;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: rgba(10, 21, 39, 0.78);
  --text: #10213c;
  --text-soft: #55647d;
  --white: #ffffff;
  --accent: #ff8c32;
  --accent-deep: #d96309;
  --accent-soft: rgba(255, 140, 50, 0.18);
  --navy: #0d1b2a;
  --navy-2: #162b46;
  --line: rgba(16, 33, 60, 0.1);
  --shadow: 0 28px 60px rgba(13, 27, 42, 0.16);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 140, 50, 0.1), transparent 25%),
    radial-gradient(circle at top right, rgba(42, 103, 180, 0.12), transparent 28%),
    linear-gradient(180deg, #f7f3ed 0%, #edf3fa 100%);
  line-height: 1.6;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(245, 239, 231, 0.72);
  border-bottom: 1px solid rgba(16, 33, 60, 0.08);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand__sub {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: color 0.25s ease;
}

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

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 96px;
  background:
    linear-gradient(115deg, rgba(10, 21, 39, 0.82), rgba(10, 21, 39, 0.58)),
    url("images/furkan-cekici-hero.jpg") center center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 140, 50, 0.34), transparent 25%),
    linear-gradient(180deg, rgba(12, 18, 28, 0.05), rgba(12, 18, 28, 0.45));
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 36px;
  align-items: center;
}

.hero__content {
  color: var(--white);
  max-width: 680px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background: rgba(7, 14, 27, 0.36);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.eyebrow--dark {
  color: var(--accent-deep);
}

.hero h1,
.section-heading h2,
.location-copy h2,
.contact-panel h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.15rem);
  max-width: 12ch;
}

.hero__lead {
  margin: 20px 0 0;
  max-width: 56ch;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), #ffa85e);
  box-shadow: 0 18px 30px rgba(255, 140, 50, 0.28);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 24px 34px rgba(255, 140, 50, 0.36);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

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

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero__chips li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.stat-card span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.hero__visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-self: stretch;
}

.showcase-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.showcase-card--large {
  grid-column: span 2;
  min-height: 360px;
}

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

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 15, 29, 0.5) 100%);
}

.showcase-card__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.section {
  padding: 104px 0;
}

.section--light {
  color: var(--text);
}

.section--dark {
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(255, 140, 50, 0.14), transparent 28%),
    linear-gradient(180deg, var(--navy) 0%, #10243e 100%);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 40px;
}

.section-heading--light p {
  color: rgba(255, 255, 255, 0.74);
}

.section-heading h2,
.location-copy h2,
.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading > p:last-child,
.location-copy > p,
.contact-panel > p {
  margin: 16px 0 0;
  color: var(--text-soft);
}

.section-heading--light > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

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

.service-card,
.feature-card,
.location-card,
.map-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 28px;
  background: var(--surface);
  backdrop-filter: blur(12px);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 140, 50, 0.18), rgba(22, 43, 70, 0.12));
}

.service-card__icon svg {
  width: 30px;
  height: 30px;
  fill: var(--accent-deep);
}

.service-card h3,
.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.service-card p,
.feature-card p,
.location-card p {
  margin: 0;
  color: var(--text-soft);
}

.feature-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.08);
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 140, 50, 0.28), rgba(255, 255, 255, 0.08));
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.72);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.location-card,
.map-card {
  overflow: hidden;
  background: var(--surface);
}

.location-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  margin-top: 28px;
}

.location-card strong {
  font-size: 1.05rem;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  filter: grayscale(0.08) saturate(0.9) contrast(1.05);
}

.contact-section {
  padding-top: 0;
}

.contact-panel {
  padding: 42px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 140, 50, 0.28), transparent 28%),
    linear-gradient(135deg, #0f1d30 0%, #152f4f 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.contact-phone {
  display: inline-block;
  margin-top: 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.contact-panel p {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 26px 0 32px;
  color: rgba(255, 255, 255, 0.74);
  background: #09121f;
}

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

.site-footer strong {
  display: block;
  color: var(--white);
}

.site-footer p {
  margin: 4px 0 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px 0 12px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #14b45d, #28d66f);
  box-shadow: 0 22px 40px rgba(20, 180, 93, 0.32);
  font-weight: 800;
}

.floating-whatsapp__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero__grid,
  .location-layout,
  .services-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__grid {
    align-items: start;
  }

  .hero__content,
  .contact-panel {
    padding: 34px;
  }
}

@media (max-width: 860px) {
  .site-header__inner {
    min-height: 78px;
  }

  .js-enabled .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .js-enabled .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(251, 248, 244, 0.95);
    box-shadow: var(--shadow);
  }

  .js-enabled .site-nav.is-open {
    display: flex;
  }

  .hero {
    padding-top: 40px;
  }

  .hero__grid,
  .location-layout,
  .services-grid,
  .feature-grid,
  .hero__stats {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
    grid-template-columns: 1fr 1fr;
  }

  .showcase-card--large {
    min-height: 300px;
  }

  .section,
  .contact-section {
    padding: 84px 0;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .hero__content,
  .contact-panel,
  .location-card,
  .service-card,
  .feature-card {
    padding: 24px;
  }

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

  .showcase-card--large {
    grid-column: auto;
    min-height: 260px;
  }

  .showcase-card {
    min-height: 220px;
  }

  .button,
  .floating-whatsapp {
    width: 100%;
  }

  .hero__actions,
  .contact-actions {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    justify-content: center;
  }

  .contact-phone {
    word-break: break-word;
  }
}

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

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