/* Font: HTML head icinde yuklenir (Google Fonts @import yavaslatiyordu) */

:root {
  /* Gümüş + Lacivert + altın vurgu */
  --primary: #1e3a5f;
  --primary-light: #2a4d73;
  --primary-dark: #152a45;
  --accent: #3d6fa8;
  --accent-hover: #2f5a8a;
  --gold: #c9a227;
  --gold-light: #dfc06a;
  --gold-dark: #a6851f;
  --silver: #b8c0cc;
  --silver-light: #d4dae2;
  --bg: #eef1f6;
  --surface: #f4f6fa;
  --surface-elevated: #fafbfd;
  --text: #1f2937;
  --text-muted: #5b6472;
  --white: #ffffff;
  --hero-text: #f5f1ea;
  --border: #d5dce6;
  --shadow: 0 4px 24px rgba(21, 42, 69, 0.1);
  --radius: 8px;
  --font: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

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

/* Tıklanabilir öğelerde metin seçimi / yazı imleci engeli */
.btn,
button,
input[type="submit"],
input[type="button"],
.nav-toggle,
.mobile-contact-chip,
.mobile-quick-btn,
.cookie-btn,
.header-action-btn,
.social-btn,
.feature-card,
.project-card,
.scroll-top {
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.btn,
button,
input[type="submit"],
input[type="button"] {
  cursor: pointer;
}

.btn:focus-visible,
button:focus-visible,
.nav-toggle:focus-visible,
.mobile-contact-chip:focus-visible,
.mobile-quick-btn:focus-visible,
.cookie-btn:focus-visible,
.social-btn:focus-visible,
.feature-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header - Sed Global tarzı üst bar + kategori menüsü */
.site-header {
  background: var(--surface-elevated);
  box-shadow: 0 2px 12px rgba(21, 42, 69, 0.07);
  position: sticky;
  top: 0;
  z-index: 200;
  padding-top: env(safe-area-inset-top, 0px);
  contain: layout style;
}

.top-bar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 1.25rem;
  gap: 1rem;
}

.top-bar-badge {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-light);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-left: auto;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-bar-links a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
  white-space: nowrap;
}

.top-bar-links a:hover {
  color: var(--gold-light);
}

.header-social {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition: transform 0.2s, background 0.2s, color 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn svg {
  width: 17px;
  height: 17px;
}

.social-btn:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.social-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}

.social-instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
}

.social-facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-phone:hover,
.social-email:hover {
  background: var(--gold-dark);
  border-color: var(--gold);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header-main {
  border-bottom: 1px solid var(--border);
}

.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  gap: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-action-btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  transition: all 0.2s;
}

.header-action-btn:hover {
  background: rgba(30, 58, 95, 0.06);
}

.header-action-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.header-action-primary:hover {
  background: var(--primary-light);
  color: var(--white);
  box-shadow: inset 0 -2px 0 var(--gold);
}

.category-nav-bar {
  background: var(--primary);
}

.category-menu {
  display: flex;
  list-style: none;
  align-items: stretch;
  flex-wrap: wrap;
}

.category-menu > .nav-item {
  position: relative;
}

.category-menu .nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  border-bottom: 3px solid transparent;
}

.category-menu .nav-link:hover,
.category-menu .nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-bottom-color: var(--gold);
}

.nav-chevron {
  font-size: 0.65rem;
  opacity: 0.8;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-top: 3px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 300;
}

.nav-item.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-inner {
  padding: 1.25rem 1.5rem;
}

.nav-dropdown-title {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.nav-dropdown-list {
  list-style: none;
}

.nav-dropdown-list li {
  margin-bottom: 0.15rem;
}

.nav-dropdown-list a {
  display: block;
  padding: 0.5rem 0.25rem;
  color: var(--text);
  font-size: 0.9rem;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}

.nav-dropdown-list a:hover {
  color: var(--primary);
  background: rgba(30, 58, 95, 0.06);
  padding-left: 0.5rem;
}

.nav-dropdown-all {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.nav-dropdown-all:hover {
  color: var(--accent-hover);
}

.mobile-nav-panel,
.mobile-nav-overlay {
  display: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: none;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.12);
}

.logo {
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 0;
}

.logo-picture,
.mobile-nav-logo-img-picture {
  display: block;
  line-height: 0;
}

.logo-img {
  display: block;
  height: 88px;
  width: auto;
  max-width: min(280px, 56vw);
  object-fit: contain;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(145deg, var(--primary-light), var(--primary-dark));
  border: 2px solid var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(30, 58, 95, 0.25);
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-text span {
  color: var(--primary);
  font-weight: 800;
}

@media (min-width: 993px) {
  .site-header {
    transition: box-shadow 0.25s ease;
  }

  .site-header.is-scrolled {
    box-shadow: 0 4px 18px rgba(21, 42, 69, 0.12);
  }

  .header-main-inner {
    min-height: 120px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-sizing: border-box;
  }

  .logo-picture {
    display: flex;
    align-items: center;
    min-height: 88px;
  }
}

/* Mobil: logo altı hızlı iletişim — sticky değil, sayfayla birlikte kayar */
.mobile-contact-strip {
  display: none;
}

/* Eski header sınıfları (geriye uyumluluk) */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

/* main-nav eski yapı - artık kullanılmıyor */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.main-nav a {
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}

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

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero.hero-has-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image:
    linear-gradient(135deg, rgba(21, 42, 69, 0.82) 0%, rgba(30, 58, 95, 0.68) 100%),
    url("/public/uploads/proje-p2.webp");
}

.hero.hero-has-image::after {
  opacity: 0.35;
}

.hero-has-image .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 42, 69, 0.45) 0%, rgba(21, 42, 69, 0.65) 100%),
    linear-gradient(135deg, rgba(30, 58, 95, 0.35) 0%, rgba(21, 42, 69, 0.25) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-has-image .hero-content {
  position: relative;
  z-index: 2;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 50%;
  height: 140%;
  background: rgba(201, 162, 39, 0.12);
  transform: rotate(-12deg);
  border-radius: 2rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  animation: heroFadeUp 0.75s cubic-bezier(0.4, 0, 0.2, 1) both;
  caret-color: transparent;
  user-select: none;
}

.hero h1::after,
.hero [data-hero-title]::after,
.hero .typing-cursor,
.hero .hero-cursor {
  content: none !important;
  display: none !important;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  animation: heroFadeUp 0.75s cubic-bezier(0.4, 0, 0.2, 1) 0.12s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-actions .btn {
  animation: heroFadeUp 0.75s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-actions .btn:nth-child(1) {
  animation-delay: 0.22s;
}

.hero-actions .btn:nth-child(2) {
  animation-delay: 0.3s;
}

.section-alt {
  background: var(--surface);
}

/* İstatistik şeridi */
.stats-strip {
  background: var(--primary-dark);
  color: var(--white);
  padding: 2.5rem 0;
  position: relative;
}

.stats-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.08), transparent 50%, rgba(201, 162, 39, 0.08));
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 0.5rem;
}

.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
  margin-bottom: 0.35rem;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  font-size: 0.88rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: var(--text-muted);
}

.breadcrumb-item:not(:last-child)::after {
  content: "›";
  margin-left: 0.35rem;
  color: var(--border);
  font-weight: 600;
}

.breadcrumb-item a {
  color: var(--primary);
  font-weight: 600;
}

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

.breadcrumb-current {
  color: var(--text);
  font-weight: 600;
}

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

.content-stack .content-block {
  scroll-margin-top: 140px;
}

.project-group {
  margin-bottom: 3rem;
}

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

.project-group-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.55rem;
}

.footer-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-note:empty {
  display: none;
}

.contact-heading {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.contact-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-note:empty {
  display: none;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s, color 0.2s;
}

.btn:active {
  transform: scale(0.97);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-light);
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.35), 0 0 0 1px rgba(201, 162, 39, 0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-light);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.55rem;
}

.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* Page header */
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 3rem 0;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 700;
}

.page-header p {
  opacity: 0.85;
  margin-top: 0.5rem;
}

/* Category tabs */
.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-bottom: 2px solid var(--border);
}

.category-nav button,
.category-nav a {
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--border);
  background: var(--white);
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text);
  font-size: 0.9rem;
}

.category-nav button:hover,
.category-nav button.active,
.category-nav a:hover,
.category-nav a.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

/* Content blocks */
.content-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.content-block h2 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.content-block p {
  color: var(--text-muted);
  white-space: pre-line;
}

/* Project cards */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.project-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  cursor: default;
}

.project-card * {
  user-select: none;
  -webkit-user-select: none;
}

.project-card.is-visible:hover,
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(30, 58, 95, 0.16);
}

.project-card-image {
  height: 200px;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.project-card-placeholder {
  width: 4rem;
  height: 4rem;
  opacity: 0.45;
  pointer-events: none;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  opacity: 1;
}

.project-card-image img.is-loaded {
  opacity: 1;
}

.project-card.is-visible:hover .project-card-image img,
.project-card:hover .project-card-image img {
  transform: scale(1.06);
}

.project-card-body {
  padding: 1.25rem;
}

.project-card-body h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.project-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.project-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.project-meta-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.75;
  pointer-events: none;
}

.project-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.project-badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  background: rgba(30, 58, 95, 0.1);
  color: var(--primary);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Features grid (home) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.feature-card.is-visible:hover,
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(30, 58, 95, 0.14);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(30, 58, 95, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-map {
  margin-top: 2.5rem;
}

.map-embed-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: #e8edf2;
  aspect-ratio: 16 / 7;
  min-height: 280px;
}

.map-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

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

/* Footer */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links h4 {
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.social-links a:hover {
  background: var(--accent);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
}

/* Sabit WhatsApp butonu */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 500;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: waPulse 3.6s ease-out infinite;
  contain: layout style paint;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}

.whatsapp-float:hover {
  animation: none;
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  color: #fff;
}

/* Yukarı çık butonu */
.scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  z-index: 499;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.2s;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-light);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
}

/* KVKK / Çerez bildirimi */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 600;
  background: var(--white);
  border-top: 3px solid var(--primary);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
  padding: 1rem 1.25rem;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 240px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.6rem 1.25rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
  min-height: 44px;
}

.cookie-btn-accept {
  background: var(--primary);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background: var(--primary-light);
}

.cookie-btn-decline {
  background: var(--bg);
  color: var(--text);
  border: 2px solid var(--border);
}

.cookie-btn-decline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Responsive header */
@media (max-width: 992px) {
  .site-header {
    box-shadow: 0 2px 16px rgba(30, 58, 95, 0.08);
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .category-nav-bar {
    display: none;
  }

  .top-bar {
    display: none;
  }

  .header-main {
    border-bottom: none;
    background: var(--white);
  }

  .header-main-inner {
    padding: 0.9rem 1rem;
  }

  .logo-img {
    height: 76px;
    max-width: min(250px, 62vw);
  }

  .mobile-contact-strip {
    display: block;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 0.65rem 1rem 0.75rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 100;
  }

  .mobile-contact-inner {
    display: flex;
    gap: 0.5rem;
    max-width: 1140px;
    margin: 0 auto;
  }

  .content-stack .content-block {
    scroll-margin-top: 72px;
  }

  .mobile-contact-chip {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.55rem 0.35rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    min-height: 58px;
    backdrop-filter: blur(4px);
    transition: background 0.2s ease, transform 0.15s ease;
  }

  .mobile-contact-chip:active {
    transform: scale(0.97);
    background: rgba(255, 255, 255, 0.18);
  }

  .mobile-chip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
  }

  .mobile-chip-icon svg {
    width: 15px;
    height: 15px;
  }

  .mobile-chip-wa .mobile-chip-icon {
    background: rgba(37, 211, 102, 0.35);
  }

  .mobile-chip-phone .mobile-chip-icon {
    background: rgba(201, 162, 39, 0.35);
  }

  .mobile-chip-mail .mobile-chip-icon {
    background: rgba(255, 255, 255, 0.2);
  }

  .mobile-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 400;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
  }

  .mobile-nav-panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100vh;
    background: var(--white);
    z-index: 401;
    transform: translateX(100%);
    transition: transform 0.25s;
    overflow-y: auto;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  }

  body.nav-open .mobile-nav-overlay {
    opacity: 1;
    visibility: visible;
  }

  body.nav-open .mobile-nav-panel {
    transform: translateX(0);
  }

  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.15rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(21, 42, 69, 0.2);
  }

  .mobile-nav-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .pref-btn-mobile {
    min-width: 2.5rem;
    height: 2.25rem;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
  }

  .pref-btn-mobile.lang-toggle-stack .lang-toggle-label {
    opacity: 0.88;
    color: var(--white);
  }

  .pref-btn-mobile.lang-toggle-stack .lang-toggle-code {
    color: var(--white);
  }

  .pref-btn-mobile:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.22);
  }

  .mobile-nav-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
  }

  .mobile-nav-logo-img {
    display: block;
    height: 54px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    padding: 2px 4px;
    flex-shrink: 0;
  }

  .mobile-nav-menu-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.85;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .mobile-nav-brand strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-nav-brand span {
    display: block;
    font-size: 0.72rem;
    opacity: 0.75;
    font-weight: 500;
    margin-top: 0.1rem;
  }

  .mobile-nav-logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    cursor: pointer;
    flex-shrink: 0;
  }

  .mobile-nav-list {
    list-style: none;
    padding: 0.35rem 0;
    flex: 1;
    overflow-y: auto;
  }

  .mobile-nav-list > li > a,
  .mobile-nav-parent {
    display: block;
    padding: 0.9rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: background 0.15s ease, color 0.15s ease;
  }

  .mobile-nav-list > li > a:active,
  .mobile-nav-parent:active {
    background: rgba(30, 58, 95, 0.06);
  }

  .mobile-nav-list a.active {
    color: var(--primary);
    background: rgba(30, 58, 95, 0.06);
    border-left: 3px solid var(--accent);
    padding-left: calc(1.25rem - 3px);
  }

  .mobile-sub {
    list-style: none;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 0.25rem 0;
  }

  .mobile-sub a {
    display: block;
    padding: 0.65rem 1.25rem 0.65rem 2.25rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(221, 227, 234, 0.7);
  }

  .mobile-nav-footer {
    margin-top: auto;
    padding: 1.15rem 1.25rem 1.35rem;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  }

  .mobile-nav-footer-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
    text-align: center;
  }

  .mobile-nav-quick {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
    margin-bottom: 0.9rem;
  }

  .mobile-quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.7rem 0.3rem;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 3px 8px rgba(30, 58, 95, 0.2);
    transition: transform 0.15s ease;
  }

  .mobile-quick-btn:active {
    transform: scale(0.96);
  }

  .mobile-quick-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
  }

  .mobile-quick-icon svg {
    width: 14px;
    height: 14px;
  }

  .mobile-quick-wa {
    background: linear-gradient(145deg, #2dd36f, #1da851);
    box-shadow: 0 3px 8px rgba(37, 211, 102, 0.3);
  }

  .mobile-nav-social {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    flex-wrap: wrap;
  }

  .mobile-nav-social .social-btn {
    width: 42px;
    height: 42px;
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--border);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .mobile-nav-social .social-btn svg {
    width: 18px;
    height: 18px;
  }

  .mobile-nav-social .social-whatsapp:hover {
    background: #25d366;
    color: var(--white);
  }

  .top-bar-links {
    display: none;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 2.5rem 0;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .content-block {
    padding: 1.25rem;
  }

  .content-stack .content-block {
    scroll-margin-top: 72px;
  }

  .page-header {
    padding: 2rem 0;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .btn {
    min-height: 44px;
    padding: 0.85rem 1.25rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 1rem;
  }

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

  .main-nav ul {
    flex-direction: column;
  }

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

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 52px;
    height: 52px;
  }

  body.nav-open .whatsapp-float {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.85);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  body:has(.cookie-banner.visible) .whatsapp-float {
    bottom: 6rem;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .stats-strip {
    padding: 2rem 0;
  }

  .scroll-top {
    right: 1rem;
    bottom: 5.25rem;
    width: 44px;
    height: 44px;
  }

  body:has(.cookie-banner.visible) .scroll-top {
    bottom: 6.5rem;
  }

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

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

  .project-search {
    font-size: 16px;
    max-width: none;
  }

  .filter-chips {
    max-width: none;
  }

  .filter-chip {
    min-height: 44px;
  }

  .content-stack .content-block {
    scroll-margin-top: 96px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 62px;
    max-width: min(210px, 68vw);
  }

  .header-main-inner {
    padding: 0.7rem 0.85rem;
  }

  .mobile-nav-logo-img {
    height: 48px;
    max-width: 130px;
  }

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

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Animasyonlar ── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes waPulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.section-title::after,
.project-group-title::after,
.content-block h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.typing-cursor,
.hero-cursor,
[data-typing-cursor] {
  display: none !important;
}

h1,
h2,
h3,
.section-title,
.content-block h2,
.project-group-title,
[data-hero-title] {
  caret-color: transparent;
}

h1::after,
h2::after,
h3::after,
.section-title::after,
.content-block h2::after,
.project-group-title::after,
[data-hero-title]::after {
  animation: none !important;
}

.reveal {
  opacity: 0;
  transition: opacity 0.32s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
}

.stats-grid .stat-item.reveal {
  transition: opacity 0.28s ease;
}

.reveal.feature-card.is-visible:hover,
.reveal.project-card.is-visible:hover {
  transform: translateY(-5px);
}

.reveal.project-card.is-visible:hover {
  transform: translateY(-6px);
}

/* Hero video */
.hero-has-video {
  background: var(--primary-dark);
  min-height: clamp(420px, 72vh, 720px);
  padding: 5rem 0;
  color: var(--hero-text);
  isolation: isolate;
}

.hero-has-video.hero-video-fallback {
  background:
    linear-gradient(135deg, rgba(21, 42, 69, 0.88) 0%, rgba(30, 58, 95, 0.72) 100%),
    url("/public/uploads/proje-p1.webp") center / cover no-repeat;
}

.hero-has-video.hero-video-fallback .hero-video {
  display: none;
}

.hero-has-video.hero-has-image {
  background-image: none !important;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 42, 69, 0.55) 0%, rgba(21, 42, 69, 0.72) 100%),
    linear-gradient(135deg, rgba(30, 58, 95, 0.45) 0%, rgba(21, 42, 69, 0.35) 100%);
  z-index: 1;
}

.hero-has-video .hero-content {
  z-index: 2;
}

.hero-has-video::after {
  z-index: 1;
  opacity: 0.5;
}

.hero-has-video h1 {
  color: var(--hero-text);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.hero-has-video p {
  color: rgba(245, 241, 234, 0.9);
}

.hero-has-video .btn-outline {
  border-color: rgba(223, 192, 106, 0.8);
  color: var(--hero-text);
}

.hero-has-video .btn-outline:hover {
  background: rgba(201, 162, 39, 0.18);
  border-color: var(--gold-light);
  color: #fff;
}

/* Header preferences */
.header-prefs {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-right: 0.5rem;
}

.pref-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}

.pref-btn:hover {
  border-color: var(--accent);
  color: var(--primary);
}

.pref-btn.lang-toggle-stack {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 3.1rem;
  height: auto;
  min-height: 2.85rem;
  padding: 0.38rem 0.65rem 0.42rem;
  gap: 0.12rem;
  line-height: 1.1;
  border-radius: 12px;
}

.lang-toggle-label {
  font-size: 0.58rem;
  font-weight: 600;
  opacity: 0.72;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lang-toggle-code {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--primary);
}

.pref-btn.lang-toggle-stack:hover .lang-toggle-label {
  color: var(--text-muted);
}

.pref-btn.lang-toggle-stack:hover .lang-toggle-code {
  color: var(--primary);
}

/* Project filters */
.project-filters {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-search {
  width: 100%;
  max-width: 420px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  background: var(--white);
  color: var(--text);
}

.filter-chips {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  max-width: 420px;
}

.filter-chip {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  text-align: left;
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: var(--gold-dark);
  background: var(--primary);
  color: var(--white);
  box-shadow: inset 0 -2px 0 var(--gold);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 820px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-item[open] .faq-question {
  color: var(--primary);
  border-bottom: 1px solid var(--border);
}

.faq-answer {
  padding: 1rem 1.25rem 1.25rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .header-prefs {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: block;
  }

  .hero h1,
  .hero p,
  .hero-actions .btn {
    animation: none !important;
  }

  .whatsapp-float {
    animation: none;
  }

  .project-card-image img {
    opacity: 1;
    transition: none;
  }

  .section-title::after,
  .project-group-title::after,
  .content-block h2::after {
    width: 100%;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.draft-preview-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #c2410c, #ea580c);
  color: #fff;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.draft-preview-banner a {
  color: #fff;
  font-weight: 700;
  margin-left: 0.35rem;
}

body.has-draft-preview .site-header {
  top: 2.5rem;
}

body.has-draft-preview {
  padding-top: 2.5rem;
}

.draft-preview-banner-error {
  background: linear-gradient(90deg, #b91c1c, #dc2626);
}
