/*
Theme Name: KVR Yatırım
Theme URI: https://kvryatirim.com
Author: KVR Yatırım
Author URI: https://kvryatirim.com
Description: KVR Yatırım için hazırlanmış, one-page kurumsal WordPress teması.
Version: 1.0
Text Domain: kvr-yatirim
*/

/* TEMA STİLLERİ */

:root {
  --bg: #020305;              /* Arka plan – siyaha yakın koyu */
  --bg-alt: #080c12;          /* Bölüm arka planları için koyu ton */
  --card: #10151f;            /* Kart arka planları */
  --accent: #8fd111;          /* Logodaki açık yeşile yakın ana vurgu */
  --accent-soft: rgba(143, 209, 17, 0.12);
  --text: #f5f5f7;            /* Ana metin */
  --muted: #9ba1b0;           /* Açıklama metinleri */
  --border-subtle: rgba(255, 255, 255, 0.05);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --gap: 24px;
  --transition-fast: 0.18s ease-out;
  --max-width: 1120px;
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(143, 209, 17, 0.16), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(63, 119, 46, 0.18), transparent 60%),
    radial-gradient(circle at top, #111827 0, #020305 55%, #000000 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(24px);
  background: linear-gradient(to bottom, rgba(5, 8, 22, 0.94), rgba(5, 8, 22, 0.75), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-symbol {
  width: 32px;
  height: 32px;
  border-radius: 11px;
  background: radial-gradient(circle at 20% 0, #f8e4b3 0, #e0b567 35%, #c7923b 75%, #8f6422 100%);
  box-shadow:
    0 0 16px rgba(224, 181, 103, 0.6),
    0 14px 24px rgba(0, 0, 0, 0.75);
  position: relative;
  overflow: hidden;
}

.logo-symbol::after {
  content: "";
  position: absolute;
  inset: 26% 18%;
  border-radius: 40% 60% 55% 45%;
  border: 2px solid rgba(0, 0, 0, 0.55);
  border-top: none;
  border-left: none;
  backdrop-filter: blur(4px);
  opacity: 0.6;
}

.logo-text-main {
  font-weight: 650;
  letter-spacing: 0.18em;
  font-size: 13px;
  text-transform: uppercase;
}

.logo-text-sub {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  transition: color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}

.nav-links a.is-active {
  color: var(--text);
  background: rgba(224, 181, 103, 0.1);
}

.btn-ghost,
.btn-primary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: transparent;
  color: var(--text);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #f3d598, #e0b567, #c7923b);
  color: #111;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.btn-icon {
  font-size: 14px;
  margin-left: 4px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta span {
  font-size: 11px;
  color: var(--muted);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-cta span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.12);
}
/* HEADER BASE */
.kvr-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.kvr-header.scrolled {
  background: rgba(0, 0, 0, 0.65);
  border-color: rgba(255, 255, 255, 0.08);
}

/* INNER LAYOUT */
.kvr-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.kvr-logo-area {
  display: flex;
  align-items: center;
}
.kvr-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  transition: 0.2s ease;
}

/* NAVIGATION */
.kvr-nav {
  display: flex;
  gap: 32px;
}
.kvr-nav .nav-item {
  color: var(--muted);
  font-size: 15px;
  text-decoration: none;
  transition: 0.25s;
}
.kvr-nav .nav-item:hover,
.kvr-nav .nav-item.is-active {
  color: var(--text);
}

/* CTA */
.kvr-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cta-status-dot {
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}
.cta-status-label {
  font-size: 13px;
  color: var(--muted);
}
.cta-btn {
  background: var(--accent);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  color: #031602;
  font-weight: 600;
  transition: 0.25s;
  text-decoration: none;
}
.cta-btn:hover {
  background: #b8ff48;
}

/* MOBILE */
.kvr-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
}
.kvr-toggle span {
  width: 24px;
  height: 3px;
  background: var(--text);
}

.kvr-mobile-menu {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.kvr-mobile-menu a {
  color: var(--text);
  text-decoration: none;
}
.cta-btn-mobile {
  margin-top: 12px;
  background: var(--accent);
  color: black;
  padding: 12px;
  border-radius: var(--radius-pill);
}

/* RESPONSIVE */
@media (max-width: 1020px) {
  .kvr-nav,
  .kvr-cta {
    display: none;
  }
  .kvr-toggle {
    display: flex;
  }
}

/* MOBILE NAV */

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 12, 28, 0.9);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  position: relative;
  transition: transform 0.2s ease-out, background 0.2s ease-out;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out, top 0.2s ease-out, bottom 0.2s ease-out;
}

.nav-toggle-bar::before {
  top: -5px;
}

.nav-toggle-bar::after {
  bottom: -5px;
}

.nav-toggle.is-open .nav-toggle-bar {
  transform: rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar::before {
  transform: rotate(-90deg);
  top: 0;
}

.nav-toggle.is-open .nav-toggle-bar::after {
  opacity: 0;
  bottom: 0;
}

.nav-main-mobile {
  display: none;
  padding-bottom: 10px;
}

.nav-main-mobile .nav-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: 8px;
}

.nav-main-mobile .header-cta {
  margin-top: 10px;
  justify-content: flex-start;
}

/* LAYOUT & SECTIONS */

.main {
  flex: 1;
}

section {
  padding: 60px 0;
}

.section-header {
  margin-bottom: 28px;
}

.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 8px;
}

.section-title {
  font-size: 26px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 520px;
  margin-top: 6px;
}

/* HERO */

.hero {
  padding-top: 28px;
  padding-bottom: 68px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: radial-gradient(circle at 0 0, rgba(224, 181, 103, 0.16), rgba(8, 11, 30, 0.96));
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.hero-title {
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.hero-title span {
  background: linear-gradient(130deg, #f3d598, #ffd28a, #f4e9cf);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 14px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 20px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-tag {
  font-size: 11px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(8, 13, 40, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-note {
  font-size: 11px;
  color: var(--muted);
  max-width: 360px;
}

.hero-note strong {
  color: var(--text);
  font-weight: 500;
}

.hero-panel {
  border-radius: 26px;
  background: radial-gradient(circle at 20% 0, rgba(243, 213, 152, 0.12), transparent 55%), linear-gradient(145deg, #050816, #050816, #10152c);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 20px;
  position: relative;
  overflow: hidden;
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  gap: 12px;
}

.hero-pill {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.hero-meta-tag {
  font-size: 11px;
  color: var(--muted);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.metric-card {
  border-radius: 16px;
  padding: 10px 10px 9px;
  background: rgba(3, 6, 26, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.metric-label {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 3px;
}

.metric-value {
  font-size: 15px;
  font-weight: 600;
}

.metric-foot {
  font-size: 10px;
  color: rgba(160, 164, 184, 0.9);
}

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

.hero-sector-card {
  border-radius: 16px;
  padding: 9px 10px 10px;
  background: rgba(6, 11, 35, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 11px;
}

.hero-sector-title {
  font-weight: 500;
  margin-bottom: 4px;
}

.hero-sector-note {
  color: var(--muted);
  font-size: 10px;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% -10%, rgba(243, 213, 152, 0.35), transparent 55%),
    radial-gradient(circle at 110% 40%, rgba(82, 186, 255, 0.24), transparent 55%);
  mix-blend-mode: soft-light;
  pointer-events: none;
  opacity: 0.65;
}

.hero-panel-inner {
  position: relative;
  z-index: 1;
}

/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: flex-start;
}

.about-text {
  font-size: 14px;
  color: var(--muted);
}

.about-text p + p {
  margin-top: 10px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.about-card {
  border-radius: var(--radius-lg);
  padding: 10px 11px;
  background: rgba(7, 10, 30, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
}

.about-card-title {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 2px;
}

.about-card-body {
  color: var(--muted);
  font-size: 11px;
}

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

.about-stat {
  border-radius: var(--radius-lg);
  padding: 10px 11px;
  background: rgba(3, 6, 24, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.about-stat-value {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.about-stat-label {
  font-size: 11px;
  color: var(--muted);
}

/* SECTORS */

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

.sector-card {
  border-radius: var(--radius-xl);
  padding: 14px 14px 16px;
  background: radial-gradient(circle at 0 0, rgba(243, 213, 152, 0.09), transparent 60%), rgba(8, 12, 33, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
}

.sector-chip {
  font-size: 10px;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.sector-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.sector-title {
  font-size: 16px;
  margin-bottom: 6px;
}

.sector-text {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.sector-list {
  list-style: none;
  font-size: 11px;
  color: var(--muted);
}

.sector-list li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 4px;
}

.sector-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

.sector-footer {
  margin-top: 8px;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.sector-footer span {
  opacity: 0.9;
}

.sector-footer a {
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* PROJECTS */

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

.project-card {
  border-radius: var(--radius-xl);
  padding: 14px 14px 15px;
  background: rgba(6, 11, 35, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.project-badge-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}

.project-badge {
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.project-status {
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  background: rgba(34, 197, 94, 0.16);
  color: #bbf7d0;
  border: 1px solid rgba(34, 197, 94, 0.4);
  font-size: 10px;
}

.project-title {
  font-size: 16px;
  font-weight: 500;
}

.project-location {
  font-size: 11px;
  color: var(--muted);
}

.project-text {
  font-size: 12px;
  color: var(--muted);
}

.project-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.project-pill {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.project-footer-link {
  margin-top: 6px;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* NEWS */

.news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  font-size: 12px;
}

.news-card {
  border-radius: var(--radius-lg);
  padding: 12px 13px;
  background: rgba(6, 10, 29, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.news-meta {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
}

.news-title {
  font-size: 13px;
  margin-bottom: 4px;
}

.news-link {
  margin-top: 4px;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--muted);
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 28px;
  align-items: flex-start;
}

.contact-card {
  border-radius: var(--radius-xl);
  padding: 18px 16px;
  background: rgba(6, 11, 35, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

.contact-form {
  display: grid;
  gap: 10px;
  font-size: 13px;
}

.field {
  display: grid;
  gap: 4px;
}

.field label {
  font-size: 12px;
  color: var(--muted);
}

.field input,
.field textarea {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 8, 25, 0.9);
  padding: 9px 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  outline: none;
  resize: vertical;
  min-height: 40px;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(224, 181, 103, 0.35);
}

.form-footnote {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.contact-info {
  border-radius: var(--radius-xl);
  padding: 18px 16px;
  background: rgba(3, 6, 24, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  display: grid;
  gap: 10px;
}

.contact-info strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.contact-info a {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--muted);
}

.contact-info small {
  font-size: 11px;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0 22px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    margin-top: 8px;
  }

  .projects-grid,
  .sectors-grid,
  .news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-main {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

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

  .hero {
    padding-top: 14px;
    padding-bottom: 50px;
  }

  section {
    padding: 44px 0;
  }

  .section-title {
    font-size: 22px;
  }

  .projects-grid,
  .sectors-grid,
  .news-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: 26px;
  }

  .about-stats {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* KVR – lacivert kutuları yeşil-siyah tema ile uyumlu hale getir */
.hero-panel,
.metric-card,
.hero-sector-card,
.about-stat,
.sector-card,
.project-card,
.news-card,
.contact-card,
.contact-info {
  background:
    radial-gradient(circle at 0 0, rgba(143, 209, 17, 0.12), transparent 55%),
    rgba(5, 15, 8, 0.92) !important;   /* koyu yeşil-siyah */
  border-color: rgba(143, 209, 17, 0.14) !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55) !important;
}
/* KVR – Portföy Kutularını Yeşil-Siyah Temaya Çek */
.wp-block-group,
.wp-block-column,
.wp-block-group.has-background {
  background:
    linear-gradient(180deg, rgba(10, 20, 10, 0.92), rgba(5, 10, 5, 0.88)) !important;
  border: 1px solid rgba(143, 209, 17, 0.14) !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(12px) !important;
}

/* İç metin renklerini lacivertten kurtarma */
.wp-block-group p,
.wp-block-group strong,
.wp-block-group span {
  color: #e5e8e0 !important;
}

/* Kutular arası boşluk düzeni */
.wp-block-column {
  margin-bottom: 22px !important;
}
