:root {
  --bg-main: #050608;
  --bg-elevated: #0c0e12;
  --bg-alt: #10131a;
  --gold: #c9a227;
  --gold-soft: rgba(201, 162, 39, 0.24);
  --gold-strong: #d6b545;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.18);
  --accent: #38bdf8;
  --danger: #fb7185;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.5);
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.38);

  --header-height: 96px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  /* Scroll animasyonunu JavaScript ile yönettiğimiz için
     tarayıcının yerleşik smooth davranışını kapalı tutuyoruz. */
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(201, 162, 39, 0.12), transparent 55%),
    radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.5), #020617),
    #020617;
  -webkit-font-smoothing: antialiased;
}

/* Custom scrollbar - modern, ince ve altın vurgu */

/* WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: radial-gradient(circle at top left, rgba(201, 162, 39, 0.08), transparent 60%),
    #020617;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #4b5563, #111827);
  border-radius: 999px;
  border: 2px solid #020617;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #c9a227, #1f2937);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #4b5563 #020617;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  position: relative;
  padding: calc(4.5rem + var(--header-height)) 0 4.5rem;
  z-index: 0;
  /* Sabit header için offset – scrollIntoView ile başlıkların kesilmesini engeller */
  scroll-margin-top: calc(var(--header-height) + 16px);
}

/* Bölümler arası yumuşak geçiş için üst kısımda hafif degrade */
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(3, 7, 18, 0.95), transparent);
  opacity: 0.9;
}

.hero.section::before {
  /* Hero bölümünün üstüne fazladan gölge uygulama */
  display: none;
}

.section-alt {
  background:
    radial-gradient(circle at top left, rgba(201, 162, 39, 0.07), transparent 55%),
    radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.85), #020617);
}

.section-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-strong);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.section-header .section-title {
  font-weight: 700;
  text-align: center;
}

/* İletişim başlığını çok hafif sola kaydır */
#contact .section-header .section-title {
  transform: translateX(-2%);
}

/* İletişim bölümündeki "İLETİŞİM" kicker metnini de aynı hizaya çek */
#contact .section-header .section-kicker {
  transform: translateX(-2%);
}

.section-lead {
  max-width: 38rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #111827;
  box-shadow: 0 16px 40px rgba(201, 162, 39, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 55px rgba(201, 162, 39, 0.55);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.6);
  color: var(--text-main);
  border-color: rgba(148, 163, 184, 0.45);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-2px);
  border-color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.split-col-text p + p {
  margin-top: 0.8rem;
}

.split-col-text p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.split-col-media {
  display: flex;
  justify-content: flex-end;
}

.about-card {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.7rem;
  background: radial-gradient(circle at top left, rgba(201, 162, 39, 0.12), transparent 55%),
    linear-gradient(145deg, #020617, #020617, #020617);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
}

.about-card-header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.about-pill {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold-strong);
}

.about-pill-outline {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.55);
  color: var(--text-muted);
}

.about-card-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.about-list li::before {
  content: "•";
  color: var(--gold);
  margin-right: 0.45rem;
}

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(3, 7, 18, 0.95),
    rgba(3, 7, 18, 0.92),
    rgba(3, 7, 18, 0.86),
    transparent
  );
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  box-shadow:
    0 0 0 3px rgba(201, 162, 39, 0.5),
    0 12px 32px rgba(201, 162, 39, 0.55);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.site-nav {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  position: relative;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-block: 0.2rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-strong));
  transition: width 0.22s ease-out;
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.85);
  color: var(--text-main);
  cursor: pointer;
  padding: 0;
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-line:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  padding-top: calc(5.5rem + var(--header-height));
  padding-bottom: 5.5rem;
  overflow: hidden;
}



.hero-background {
  position: absolute;
  inset: -20%;
  background-image: url("images/neighborhood.jpg");
  background-size: 120%;
  background-position: center 30%;
  filter: grayscale(0.0) contrast(1.1) brightness(0.65);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(201, 162, 39, 0.16), transparent 60%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(3, 7, 18, 0.97));
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
}

.hero-content {
  max-width: 700px;
}



.hero-title {
  font-size: clamp(2.25rem, 4vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-meta-separator {
  width: 26px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-side {
  display: flex;
  justify-content: flex-end;
}

.hero-stats-card {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  background: radial-gradient(circle at top left, rgba(201, 162, 39, 0.12), transparent 65%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--shadow-subtle);
}

.hero-stats-title {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-strong);
  margin-bottom: 0.45rem;
}

.hero-stats-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.3rem;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.hero-stat {
  padding: 0.75rem 0.8rem;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at top left, rgba(201, 162, 39, 0.16), transparent 70%),
    rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.hero-stat-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
}

.hero-stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.service-card {
  position: relative;
  padding: 1.6rem 1.5rem 1.7rem;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at top left, rgba(201, 162, 39, 0.1), transparent 60%),
    linear-gradient(155deg, #020617, #020617, #020617);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
  border-color: rgba(201, 162, 39, 0.7);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: radial-gradient(circle at 30% 20%, #facc15, var(--gold));
  color: #111827;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.85),
    0 10px 25px rgba(201, 162, 39, 0.55);
}

.service-title {
  font-size: 1.02rem;
  margin-bottom: 0.6rem;
}

.service-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.why-card {
  padding: 1.5rem 1.4rem;
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.85);
  border-color: rgba(201, 162, 39, 0.7);
}

.why-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  background: rgba(201, 162, 39, 0.08);
  color: var(--gold-strong);
  font-size: 1rem;
}

.why-title {
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
}

.why-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-panel {
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  background: linear-gradient(150deg, #020617, #020617, #020617);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
}

.contact-panel-info {
  background: radial-gradient(circle at top left, rgba(201, 162, 39, 0.14), transparent 60%),
    linear-gradient(150deg, #020617, #020617, #020617);
}

.contact-subtitle {
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-strong);
  margin-bottom: 0.6rem;
}

.contact-details {
  margin: 1.2rem 0 1.6rem;
  display: grid;
  gap: 0.7rem;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.contact-value {
  font-size: 0.95rem;
  color: var(--text-main);
}

.contact-value:hover {
  color: var(--gold-strong);
}

.contact-panel p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-panel-form {
  background: linear-gradient(
      145deg,
      rgba(201, 162, 39, 0.08),
      transparent 40%,
      rgba(15, 23, 42, 0.96)
    ),
    #020617;
}

form {
  margin-top: 0.9rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.form-row-inline {
  align-items: flex-start;
}

label {
  font-size: 0.85rem;
  color: var(--text-main);
}

input,
textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background-color: rgba(15, 23, 42, 0.9);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.5);
  background-color: rgba(15, 23, 42, 0.98);
}

.checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
}

.checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 0.1rem;
  border-radius: 4px;
  cursor: pointer;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.form-error {
  min-height: 0.9rem;
  font-size: 0.75rem;
  color: var(--danger);
}

.form-status {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-status--success {
  color: #4ade80;
}

.form-status--error {
  color: var(--danger);
}

.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  background:
    radial-gradient(circle at top left, rgba(201, 162, 39, 0.09), transparent 55%),
    radial-gradient(circle at bottom, rgba(0, 0, 0, 0.85), #020617);
  padding: 1.5rem 0 1.8rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-brand {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-link {
  color: var(--text-muted);
}

.footer-link:hover {
  color: var(--gold-strong);
}

/* ─── SKYSCRAPER SECTION ──────────────────────────────────────────────────── */
.skysc-section {
  background:
    radial-gradient(circle at bottom right, rgba(201, 162, 39, 0.07), transparent 55%),
    radial-gradient(circle at top left, rgba(15, 23, 42, 0.7), #020617);
}

.skysc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.skysc-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.skysc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.skysc-img-main {
  border-radius: var(--radius-lg);
  min-height: 420px;
  max-height: 540px;
  object-position: center;
  transition: transform 0.6s ease;
}

.skysc-main:hover .skysc-img-main {
  transform: scale(1.03);
}

.skysc-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.skysc-side-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  flex: 1;
}

.skysc-img-side {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 280px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}

.skysc-side-img-wrap:hover .skysc-img-side {
  transform: scale(1.04);
}

.skysc-side-text {
  background: radial-gradient(circle at top left, rgba(201, 162, 39, 0.1), transparent 60%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.skysc-side-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.skysc-side-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
/* ─────────────────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .split-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.5rem;
  }

  .skysc-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 1.7rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .section {
    padding: calc(3rem + var(--header-height)) 0 3rem;
  }

  .header-inner {
    height: var(--header-height);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    inset-inline: 0.75rem;
    top: calc(var(--header-height) + 0.6rem);
    background: rgba(3, 7, 18, 0.98);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    padding: 0.4rem 0.75rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-8px);
    transition:
      max-height 0.24s ease,
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .site-nav.is-open {
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.3rem 0.15rem;
    gap: 0.3rem;
  }

  .nav-link {
    padding-block: 0.35rem;
  }

  .hero {
    padding-top: calc(3.8rem + var(--header-height));
    padding-bottom: 3.2rem;
  }

  .hero-inner {
    gap: 0;
  }

  /* Sadece mobilde: şehir görselini biraz daha belirgin yap */
  .hero-background {
    filter: grayscale(0.03) contrast(1.05) brightness(0.98);
  }

  .hero-overlay {
    background:
      radial-gradient(circle at top left, rgba(201, 162, 39, 0.14), transparent 60%),
      linear-gradient(135deg, rgba(15, 23, 42, 0.82), rgba(3, 7, 18, 0.92));
  }

  .skysc-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .skysc-img-main {
    min-height: 280px;
    max-height: 380px;
  }

  .skysc-img-side {
    max-height: 220px;
  }

  .split-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.2rem;
  }

  .split-col-media {
    order: -1;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.4rem;
  }

  .why-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.4rem;
  }

  .service-card,
  .why-card,
  .contact-panel {
    padding: 1.3rem 1.2rem 1.4rem;
  }

  .section-header {
    margin-bottom: 2.1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle,
  .section-lead {
    font-size: 0.95rem;
  }

  /* Dar ekranlarda iletişim başlığındaki hafif sola kaymayı kaldır */
  #contact .section-header .section-title,
  #contact .section-header .section-kicker {
    transform: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 1.1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-panel {
    padding-inline: 1.2rem;
  }

   .hero-title {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .btn {
    font-size: 0.85rem;
    padding-block: 0.7rem;
  }
}

