/* Karakoç İnşaat — modern tasarım */
:root {
  --gold: #d4af37;
  --gold-hover: #e8c555;
  --gold-soft: rgba(212, 175, 55, 0.15);
  --gold-muted: rgba(212, 175, 55, 0.32);
  --bg: #080808;
  --bg-elevated: #0f0f0f;
  --surface: rgba(18, 18, 18, 0.85);
  --surface-solid: #141414;
  --surface-2: #1a1a1a;
  --white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.68);
  --text-dim: rgba(255, 255, 255, 0.45);
  --font: "Montserrat", system-ui, sans-serif;
  --header-h: 84px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.12);
  --glass: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body:not(.home-page) {
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(212, 175, 55, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(212, 175, 55, 0.05), transparent 45%),
    var(--bg);
}

body.home-page {
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
}

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

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

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  transition: background var(--ease), box-shadow var(--ease), backdrop-filter var(--ease);
}

body:not(.home-page) .header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, transparent 100%);
}

.header.scrolled {
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(212, 175, 55, 0.15), 0 4px 24px rgba(0, 0, 0, 0.35);
}

.logo {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: opacity var(--ease);
}

.logo:hover {
  opacity: 0.92;
}

.logo-emblem {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
}

.logo:hover .logo-emblem {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.logo-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  object-fit: contain;
  filter: none;
  transition: transform var(--ease);
}

.logo:hover .logo-icon {
  transform: scale(1.04);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1;
}

.logo-text .brand {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.logo-text .tagline {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 2.25rem);
}

.nav a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.35rem 0;
  position: relative;
  transition: color var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width var(--ease), left var(--ease);
}

.nav a:hover,
.nav a.active {
  color: var(--white);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
  left: 0;
}

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

.btn-teklif {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.5rem;
  background: linear-gradient(145deg, #f0d063 0%, #d4af37 48%, #b8942a 100%);
  color: #121212;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 6px 22px rgba(212, 175, 55, 0.28);
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    background var(--ease),
    border-color var(--ease);
}

.btn-teklif:hover {
  background: linear-gradient(145deg, #f5da78 0%, #e8c555 45%, #d4af37 100%);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 12px 32px rgba(212, 175, 55, 0.38);
}

.btn-teklif:active {
  transform: translateY(0);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 4px 16px rgba(212, 175, 55, 0.22);
}

.btn-teklif svg {
  width: 14px;
  height: 14px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  justify-self: end;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}

/* ===== Buttons ===== */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #b8942a 100%);
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(212, 175, 55, 0.28);
}

.btn-outline {
  background: var(--glass);
  color: var(--white);
  border: 1px solid var(--gold-muted);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline .arrow {
  transition: transform var(--ease);
}

.btn-outline:hover .arrow {
  transform: translateX(4px);
}

.section-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ===== Hero (anasayfa) ===== */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg picture,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  max-width: none;
  filter: none;
  transform: translateZ(0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.48) 30%, rgba(0, 0, 0, 0.1) 52%, transparent 68%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 20%, transparent 62%, rgba(0, 0, 0, 0.42) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--header-h) + 2rem) clamp(1.25rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1520px;
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding: 0.45rem 1rem;
  background: var(--gold-soft);
  border: 1px solid var(--gold-muted);
  border-radius: 999px;
  width: fit-content;
}

.hero-title {
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-content-panel {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.38) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hero-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  align-self: center;
  margin-top: 0.5rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--ease), transform var(--ease);
}

.hero-scroll svg {
  width: 18px;
  height: 18px;
  animation: hero-scroll-bounce 2s ease-in-out infinite;
}

.hero-scroll:hover {
  color: var(--gold);
  transform: translateY(2px);
}

@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.65rem, 1.5vw, 1rem);
  width: 100%;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.stat-item:hover {
  transform: translateY(-3px);
  border-color: var(--gold-muted);
  box-shadow: var(--shadow-gold);
}

.stat-icon {
  width: 38px;
  height: 38px;
  color: var(--gold);
  flex-shrink: 0;
}

.stat-number {
  font-size: clamp(1.15rem, 1.9vw, 1.85rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.2rem;
  white-space: nowrap;
}

.stat-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== Anasayfa bölümleri ===== */
.home-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.home-intro-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 1rem 0 1.5rem;
  max-width: 34rem;
}

.home-features {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.home-features li {
  position: relative;
  padding: 1rem 1.15rem 1rem 2.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  background: linear-gradient(155deg, rgba(22, 22, 22, 0.92) 0%, rgba(10, 10, 10, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  transition: border-color var(--ease), transform var(--ease);
}

.home-features li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--gold);
  font-weight: 700;
}

.home-features li:hover {
  border-color: rgba(212, 175, 55, 0.25);
  transform: translateX(4px);
}

.home-services .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.home-more-link {
  text-align: center;
  margin-top: 2rem;
}

.home-more-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--ease), opacity var(--ease);
}

.home-more-link a:hover {
  gap: 0.6rem;
  opacity: 0.9;
}

a.service-card-link {
  color: inherit;
}

.service-card-link h3 {
  padding-right: 0;
}

/* ===== Page hero (iç sayfalar) ===== */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 3.5rem) clamp(1.25rem, 4vw, 3.5rem) 4rem;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.12), transparent 40%),
    linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
  z-index: 0;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1520px;
  margin: 0 auto;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.4rem 0.9rem;
  background: var(--gold-soft);
  border: 1px solid var(--gold-muted);
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1rem;
  max-width: 720px;
}

.page-hero h1 span {
  color: var(--gold);
}

.page-hero-lead {
  color: var(--text-muted);
  max-width: 540px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  color: var(--text-muted);
}

/* ===== Sections ===== */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 3.5rem);
  max-width: 1520px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  position: relative;
  padding-bottom: 0;
}

.section-title::after {
  content: "";
  display: block;
  margin-top: 0.85rem;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.section-desc {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 0.95rem;
}

.section-header.center .section-desc {
  margin: 0 auto;
}

.section-alt {
  background: var(--glass);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: none;
}

.section-alt .section-inner {
  max-width: 1520px;
  margin: 0 auto;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.15rem;
  font-size: 0.95rem;
}

.about-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 1.5rem 0 0.85rem;
  letter-spacing: 0.02em;
}

.about-checklist {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0;
}

.about-checklist li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.about-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.about-tagline {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
  line-height: 1.6;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  padding: 1rem 1.25rem;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-muted);
  border-radius: var(--radius-md);
}

.about-image-badge strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.about-image-badge span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.value-card {
  position: relative;
  padding: 1.85rem 1.5rem;
  background: linear-gradient(155deg, rgba(24, 24, 24, 0.92) 0%, rgba(10, 10, 10, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color var(--ease), box-shadow var(--ease);
}

.value-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  bottom: 1.25rem;
  width: 3px;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--ease);
}

.value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.1), transparent 55%);
  opacity: 0;
  transition: opacity var(--ease);
  pointer-events: none;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.value-card:hover::before,
.value-card:hover::after {
  opacity: 1;
}

.value-card svg {
  position: relative;
  z-index: 1;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.55rem;
  color: var(--gold);
  margin-bottom: 1.15rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.04));
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-md);
  box-sizing: content-box;
  transition: transform var(--ease), box-shadow var(--ease);
}

.value-card:hover svg {
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.14);
}

.value-card h3 {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.value-card p {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== Projects ===== */
.projects-section {
  padding-top: 0.5rem;
}

.projects-page .page-hero {
  position: relative;
  overflow: hidden;
}

.projects-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(212, 175, 55, 0.12), transparent 42%),
    linear-gradient(180deg, transparent 60%, rgba(8, 8, 8, 0.85) 100%);
  pointer-events: none;
}

.projects-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 2.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.filter-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.filter-tab {
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--ease), color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.filter-tab:hover {
  color: var(--white);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--gold), #c9a030);
  color: #0a0a0a;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.28);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.projects-empty {
  margin-top: 2rem;
  padding: 2rem;
  text-align: center;
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, rgba(22, 22, 22, 0.95), rgba(12, 12, 12, 0.98));
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease),
    opacity 0.35s ease,
    filter 0.35s ease;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.35), transparent 45%, transparent 70%, rgba(212, 175, 55, 0.12));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--ease);
  pointer-events: none;
  z-index: 2;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.project-card:hover::before {
  opacity: 1;
}

.project-card.is-filtered-out {
  display: none;
}

.project-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-card-media img {
  transform: scale(1.08);
}

.project-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%);
  transition: background var(--ease);
}

.project-card:hover .project-card-media::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--ease);
}

.project-card:hover .project-card-overlay,
.project-card:focus-within .project-card-overlay {
  opacity: 1;
}

.project-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(14px);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}

.project-card-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
  transform: scale(1.04);
}

.project-card-cta-icon {
  transition: transform var(--ease);
}

.project-card-cta:hover .project-card-cta-icon {
  transform: translateX(3px);
}

.project-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.22);
  color: var(--gold);
}

.project-tag.ongoing {
  color: #7dd3fc;
  border-color: rgba(125, 211, 252, 0.35);
}

.project-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.4rem 1.5rem;
}

.project-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.project-card-meta span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.project-card-meta span:last-child {
  color: var(--gold);
  border-color: rgba(212, 175, 55, 0.22);
  background: rgba(212, 175, 55, 0.08);
}

.project-card-body h3 {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.35;
  margin-bottom: 0.55rem;
}

.project-card-body p {
  flex: 1;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  margin-top: 1.15rem;
  padding: 0.55rem 0;
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: none;
  border: none;
  border-top: 1px solid var(--border);
  width: 100%;
  padding-top: 1rem;
  cursor: pointer;
  transition: gap var(--ease), color var(--ease);
}

.project-link span {
  transition: transform var(--ease);
}

.project-link:hover {
  color: var(--gold-hover);
}

.project-link:hover span {
  transform: translateX(4px);
}

/* Proje detay modal */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease), visibility var(--ease);
}

.project-modal.open {
  opacity: 1;
  visibility: visible;
}

.project-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
}

.project-modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(90vh, 900px);
  overflow-y: auto;
  background: var(--surface-solid);
  border: 1px solid var(--gold-muted);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.project-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.85);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color var(--ease), color var(--ease);
}

.project-modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.project-modal-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #080808;
}

.project-modal-media.has-gallery {
  aspect-ratio: 16 / 9;
}

.project-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-modal-carousel {
  position: absolute;
  inset: 0;
}

.project-carousel-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.project-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.35s ease;
}

.project-carousel-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.project-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.82);
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}

.project-carousel-btn:hover {
  border-color: var(--gold);
  background: rgba(8, 8, 8, 0.95);
}

.project-carousel-prev {
  left: 0.75rem;
}

.project-carousel-next {
  right: 0.75rem;
}

.project-carousel-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 3rem;
  pointer-events: none;
}

.project-carousel-dots {
  display: flex;
  gap: 0.4rem;
  pointer-events: auto;
}

.project-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}

.project-carousel-dot.active {
  background: var(--gold);
  transform: scale(1.15);
}

.project-carousel-counter {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(8, 8, 8, 0.72);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  pointer-events: none;
}

.project-modal-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.85);
  border: 1px solid var(--border);
  color: var(--gold);
}

.project-modal-tag.ongoing {
  color: #7dd3fc;
  border-color: rgba(125, 211, 252, 0.35);
}

.project-modal-body {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.project-modal-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-right: 2.5rem;
}

.project-modal-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.project-modal-meta div {
  padding: 0.85rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.project-modal-meta span {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}

.project-modal-meta strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
}

.project-modal-summary {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.project-modal-features {
  margin-bottom: 1.75rem;
}

.project-modal-services-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.project-modal-service-group {
  margin-bottom: 1.15rem;
}

.project-modal-service-group:last-child {
  margin-bottom: 0;
}

.project-modal-service-group h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.project-modal-features-list,
.project-modal-service-group ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
}

.project-modal-features-list li,
.project-modal-service-group li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.project-modal-features-list li::before,
.project-modal-service-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.project-modal-videos-wrap {
  margin-bottom: 1.75rem;
}

.project-modal-links-wrap {
  margin-bottom: 1.75rem;
}

.project-modal-links-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.project-modal-links {
  display: grid;
  gap: 0.75rem;
}

.project-modal-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.project-modal-link:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
  color: var(--gold);
}

.project-modal-link-arrow {
  flex-shrink: 0;
  font-size: 1rem;
  opacity: 0.85;
}

.project-modal-videos-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.project-modal-videos {
  display: grid;
  gap: 1rem;
}

.project-modal-video {
  aspect-ratio: 16 / 9;
  background: #080808;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.project-modal-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (min-width: 768px) {
  .project-modal-videos {
    grid-template-columns: repeat(2, 1fr);
  }
}

.project-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .project-modal-meta {
    grid-template-columns: 1fr 1fr;
  }

  .project-modal-actions .btn-primary,
  .project-modal-actions .btn-outline {
    width: 100%;
  }
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.services-grid--quad {
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.85rem 1.65rem 1.75rem;
  padding-top: 1.65rem;
  background: linear-gradient(155deg, rgba(24, 24, 24, 0.92) 0%, rgba(10, 10, 10, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color var(--ease), box-shadow var(--ease);
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35rem;
  bottom: 1.35rem;
  width: 3px;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--ease);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.11), transparent 58%);
  opacity: 0;
  transition: opacity var(--ease);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.service-card:hover::before,
.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  position: relative;
  z-index: 1;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.6rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.04));
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-md);
  box-sizing: content-box;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.service-card:hover .service-icon {
  transform: scale(1.06);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.26), rgba(212, 175, 55, 0.08));
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.16);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  color: var(--white);
}

.service-card p {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex-grow: 1;
}

.services-subheader {
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

.services-intro {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.services-intro .section-title::after {
  width: 64px;
  margin-left: auto;
  margin-right: auto;
}

.services-lead-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 1.75rem);
  max-width: 52rem;
  margin: clamp(1.25rem, 3vw, 1.75rem) auto 0;
  padding: 0 clamp(0.5rem, 2vw, 1rem);
}

.services-lead-line {
  flex: 1;
  max-width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.45));
}

.services-lead-line:last-child {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.45), transparent);
}

.services-lead {
  position: relative;
  max-width: 34rem;
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.78);
}

.services-lead::before {
  content: "“";
  position: absolute;
  top: -0.55em;
  left: -0.15em;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(212, 175, 55, 0.22);
  font-family: Georgia, "Times New Roman", serif;
  pointer-events: none;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.contact-info-lead {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 26rem;
  margin-top: 0.75rem;
}

.contact-cards {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(155deg, rgba(22, 22, 22, 0.92) 0%, rgba(10, 10, 10, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  color: inherit;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease), background var(--ease);
}

a.contact-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(212, 175, 55, 0.06);
  background: linear-gradient(155deg, rgba(26, 26, 26, 0.95) 0%, rgba(12, 12, 12, 0.99) 100%);
}

.contact-card--static {
  cursor: default;
}

.contact-card-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.04));
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-md);
  color: var(--gold);
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
}

.contact-card h4 {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-card p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.contact-form,
.form-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(18, 18, 18, 0.96) 0%, rgba(6, 6, 6, 0.99) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-xl);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-form-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(212, 175, 55, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(212, 175, 55, 0.08), transparent 50%);
}

.contact-form-inner {
  position: relative;
  z-index: 1;
  padding: clamp(1.85rem, 3vw, 2.35rem);
}

.form-panel-head {
  margin-bottom: 1.5rem;
}

.form-panel-badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.38rem 0.8rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
}

.form-panel-title {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: var(--white);
}

.form-panel-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.92rem 1.05rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.form-group select {
  appearance: none;
  background-color: rgba(0, 0, 0, 0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.form-group input:focus,
.form-group textarea:focus {
  background: rgba(0, 0, 0, 0.5);
}

.form-group select:focus {
  background-color: rgba(0, 0, 0, 0.5);
}

.service-select option {
  background: #141414;
  color: var(--white);
  padding: 0.5rem;
}

.service-select option:checked {
  background: #2a2418;
  color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 128px;
}

.btn-block {
  width: 100%;
  margin-top: 0.35rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.22);
}

.btn-block:hover {
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.32);
}

.form-success {
  display: none;
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: var(--gold);
  font-size: 0.86rem;
  line-height: 1.55;
}

.form-success.show {
  display: block;
}

.form-error {
  display: none;
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(220, 80, 80, 0.1);
  border: 1px solid rgba(220, 80, 80, 0.35);
  color: #f5a8a8;
  font-size: 0.86rem;
  line-height: 1.55;
}

.form-error.show {
  display: block;
}

.section-contact-secondary .form-panel .contact-form-inner {
  padding-top: clamp(1.75rem, 3vw, 2.1rem);
}

/* ===== CTA Banner ===== */
.section-cta {
  padding-top: 0;
}

.section .cta-banner {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.cta-banner {
  position: relative;
  isolation: isolate;
  padding: clamp(2.75rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(18, 18, 18, 0.96) 0%, rgba(6, 6, 6, 0.99) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  text-align: center;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.cta-banner:hover {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(212, 175, 55, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 90% at 0% 0%, rgba(212, 175, 55, 0.16), transparent 58%),
    radial-gradient(ellipse 50% 80% at 100% 100%, rgba(212, 175, 55, 0.12), transparent 52%);
}

.cta-banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.018) 0,
    rgba(255, 255, 255, 0.018) 1px,
    transparent 1px,
    transparent 52px
  );
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, transparent 92%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, transparent 92%);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  margin: 0 auto;
}

.cta-banner-eyebrow {
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: 0.42rem 0.9rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.cta-banner h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0.85rem;
  color: var(--white);
}

.cta-banner p {
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 auto 1.85rem;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.75;
}

.cta-banner .hero-buttons {
  justify-content: center;
  gap: 0.85rem;
}

.cta-banner .btn-primary {
  padding: 0.95rem 1.85rem;
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.25);
}

.cta-banner .btn-primary:hover {
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.35);
}

.cta-banner .btn-outline {
  border-color: rgba(212, 175, 55, 0.45);
  backdrop-filter: blur(8px);
}

.cta-banner .btn-outline:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

/* ===== Footer ===== */
.footer {
  position: relative;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: 0 clamp(1.25rem, 4vw, 3.5rem) calc(1.5rem + env(safe-area-inset-bottom, 0));
  overflow: hidden;
}

.footer-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(920px, 90%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.85;
}

.footer-accent::after {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 240px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  max-width: 1520px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.5rem, 3vw, 2.5rem) 0;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.95) 0%, #050505 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.85fr 1.15fr;
  gap: clamp(1.75rem, 3vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
}

.footer-brand .logo-emblem {
  width: 48px;
  height: 48px;
  border-radius: 15px;
}

.footer-brand .logo-icon {
  width: 36px;
  height: 36px;
}

.footer-tagline {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1.25rem;
  line-height: 1.5;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 0.65rem;
  max-width: 320px;
  line-height: 1.7;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 1.35rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #080808;
  background: linear-gradient(135deg, var(--gold), var(--gold-hover));
  border-radius: var(--radius-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.footer h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.35rem;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.84rem;
  padding: 0.35rem 0;
  transition: color var(--ease), transform var(--ease);
}

.footer-nav a::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--gold);
  margin-right: 0;
  transition: width var(--ease), margin var(--ease);
}

.footer-nav a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-nav a:hover::before {
  width: 12px;
  margin-right: 0.5rem;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
}

.footer-contact-item:hover {
  border-color: var(--gold-muted);
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.footer-contact-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
}

.footer-contact-item span:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.84rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.35;
}

.footer-contact-item small {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.35rem 0;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.9rem;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}

.page-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.footer-top-btn:hover {
  color: var(--gold);
  border-color: var(--gold-muted);
  background: var(--gold-soft);
}

/* ===== Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PWA / Mobile nav ===== */
body {
  padding-bottom: env(safe-area-inset-bottom, 0);
}

body.has-mobile-nav {
  padding-bottom: calc(72px + env(safe-area-inset-bottom, 0));
}

.install-banner {
  display: none;
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: calc(5.5rem + env(safe-area-inset-bottom, 0));
  z-index: 1100;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid var(--gold-muted);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

.install-banner.show {
  display: flex;
}

.install-banner p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.install-banner strong {
  display: block;
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 0.1rem;
}

.install-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.install-actions button {
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  border: none;
}

#installBtn {
  background: var(--gold);
  color: var(--white);
}

#installClose {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.mobile-bottom-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  background: rgba(8, 8, 8, 0.92);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(20px);
  padding: 0.35rem 0.25rem calc(0.35rem + env(safe-area-inset-bottom, 0));
}

.mobile-bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: 54px;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--ease);
}

.mobile-bottom-nav a svg {
  width: 21px;
  height: 21px;
}

.mobile-bottom-nav a.active {
  color: var(--gold);
}

.mobile-bottom-nav-inner {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== Responsive ===== */
@media (min-width: 1200px) {
  .services-grid--quad {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1100px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid--quad {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-grid,
  .home-intro-grid {
    grid-template-columns: 1fr;
  }

  .hero-scroll {
    display: none;
  }

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

@media (max-width: 768px) {
  body.has-mobile-nav {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0));
  }

  .mobile-bottom-nav {
    display: block;
  }

  .menu-toggle,
  .header .nav {
    display: none !important;
  }

  .header-actions {
    display: flex;
  }

  .btn-teklif {
    padding: 0.6rem 0.85rem;
    font-size: 0.6rem;
  }

  .btn-teklif svg {
    display: none;
  }

  body.home-page {
    height: auto;
    overflow-y: auto;
  }

  .hero {
    min-height: 100dvh;
    height: auto;
  }

  .hero-bg img {
    object-position: center center;
  }

  body.home-page .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 14, 28, 0.88) 0%, rgba(6, 14, 28, 0.55) 42%, rgba(6, 14, 28, 0.75) 100%);
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.65) 100%);
  }

  .header {
    grid-template-columns: 1fr auto;
    height: auto;
    min-height: 68px;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .hero-inner {
    min-height: 100dvh;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
  }

  .stats-bar,
  .values-grid,
  .projects-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .projects-toolbar {
    justify-content: flex-start;
  }

  .filter-tabs {
    width: auto;
    max-width: 100%;
    justify-content: flex-start;
  }

  .filter-tab {
    flex: 0 1 auto;
    text-align: center;
    padding-inline: 0.85rem;
  }

  .project-card-media {
    aspect-ratio: 16 / 11;
  }

  .project-card-overlay {
    opacity: 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .services-lead-wrap {
    flex-direction: column;
    gap: 0.85rem;
  }

  .services-lead-line {
    max-width: 48px;
  }

  .services-lead {
    text-align: center;
    padding: 0 0.5rem;
  }

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

  .about-image img {
    height: 280px;
  }
}

@media (min-width: 769px) {
  .header .nav {
    display: flex !important;
  }
}

/* ===== Anasayfa — mockup tasarımı ===== */
body.home-page .header {
  background: linear-gradient(180deg, rgba(6, 14, 28, 0.65) 0%, transparent 100%);
  box-shadow: none;
}

body.home-page .header.scrolled {
  background: linear-gradient(180deg, rgba(6, 14, 28, 0.55) 0%, transparent 100%);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  box-shadow: none;
}

body.home-page .logo-text .brand,
body.home-page .logo-text .tagline {
  text-transform: uppercase;
}

body.home-page .nav a {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.65rem;
}

body.home-page .nav a.active::after,
body.home-page .nav a::after {
  background: var(--gold);
  height: 2px;
}

body.home-page .btn-teklif {
  padding: 0.58rem 1.2rem;
  border-radius: 5px;
  background: rgba(6, 14, 28, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.42);
  color: var(--white);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

body.home-page .btn-teklif:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.65);
  color: var(--gold);
  box-shadow: none;
  transform: translateY(-1px);
}

body.home-page .btn-teklif svg {
  width: 13px;
  height: 13px;
  opacity: 0.9;
  stroke: currentColor;
}

body.home-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 14, 28, 0.9) 0%, rgba(6, 14, 28, 0.75) 26%, rgba(6, 14, 28, 0.4) 46%, rgba(6, 14, 28, 0.1) 62%, transparent 78%),
    linear-gradient(180deg, rgba(6, 14, 28, 0.4) 0%, transparent 28%, transparent 52%, rgba(6, 14, 28, 0.65) 100%);
}

body.home-page .hero-bg img {
  object-position: center center;
}

body.home-page .hero-inner {
  padding-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

body.home-page .hero-content-panel {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.home-page .hero-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.08em;
  color: var(--white);
  background: none;
  -webkit-text-fill-color: unset;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

body.home-page .hero-gear {
  width: 0.72em;
  height: 0.72em;
  color: var(--gold);
  flex-shrink: 0;
  vertical-align: middle;
}

body.home-page .hero-title-rest {
  letter-spacing: 0.06em;
}

body.home-page .hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

body.home-page .hero-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  max-width: 420px;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

body.home-page .hero-buttons .btn-primary,
body.home-page .hero-buttons .btn-outline {
  border-radius: 6px;
  padding: 0.95rem 1.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.home-page .hero-buttons .btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-hover));
  color: #0a0a0a;
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.35);
}

body.home-page .hero-buttons .btn-primary:hover {
  background: var(--gold-hover);
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.45);
}

body.home-page .hero-buttons .btn-outline {
  background: rgba(6, 14, 28, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.home-page .hero-buttons .btn-outline:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold);
}

body.home-page .stats-bar {
  gap: clamp(0.5rem, 1.2vw, 0.85rem);
}

body.home-page .stat-item {
  background: rgba(6, 14, 28, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 10px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: clamp(0.85rem, 1.8vw, 1.15rem) clamp(0.75rem, 1.5vw, 1rem);
}

body.home-page .stat-item:hover {
  background: rgba(6, 14, 28, 0.7);
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

body.home-page .stat-icon {
  width: 2rem;
  height: 2rem;
  padding: 0.4rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 8px;
  box-sizing: content-box;
}

body.home-page .stat-number {
  font-size: clamp(1.1rem, 1.8vw, 1.65rem);
  color: var(--white);
}

body.home-page .stat-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  body.home-page .hero-title {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  body.home-page .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  body.home-page .stats-bar {
    grid-template-columns: 1fr;
  }
}
