/* =========================================================
   FİNANSAL RAPORLAMA DANIŞMANLIĞI — style.css
   Kurumsal · Minimal · Premium · Mobile First
   ========================================================= */

/* ---------- CSS Değişkenleri ---------- */
:root {
  --primary: #243B7A;
  --secondary: #3559B7;
  --bg: #F8F9FC;
  --dark: #1E293B;
  --accent: #4F7DF3;
  --white: #FFFFFF;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --shadow-sm: 0 4px 16px rgba(36, 59, 122, 0.06);
  --shadow-md: 0 12px 40px rgba(36, 59, 122, 0.10);
  --shadow-lg: 0 24px 60px rgba(36, 59, 122, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 84px;
  --font: "Poppins", system-ui, sans-serif;
  --gradient-primary: linear-gradient(135deg, #243B7A 0%, #3559B7 55%, #4F7DF3 100%);
  --gradient-soft: linear-gradient(160deg, #F8F9FC 0%, #EEF2FF 100%);
}

/* ---------- Reset & Temel ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--dark);
  background-color: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ---------- Tipografi yardımcıları ---------- */
.section {
  padding: 80px 0;
}

@media (min-width: 992px) {
  .section {
    padding: 110px 0;
  }
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(79, 125, 243, 0.1);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto 3rem;
}

.section-header {
  margin-bottom: 1rem;
}

/* ---------- Butonlar ---------- */
.btn {
  font-family: var(--font);
  font-weight: 550;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  transition: all var(--transition);
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(36, 59, 122, 0.28);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #1c2f63 0%, #2a4aa0 55%, #3d6ae0 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(36, 59, 122, 0.35);
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-nav-cta {
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  margin-top: 1.5rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  color: var(--white);
  transform: translateY(-2px);
}

/* =========================================================
   LOADING OVERLAY
   ========================================================= */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-ring {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border: 3px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loader-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =========================================================
   SCROLL PROGRESS BAR
   ========================================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 10001;
  background: var(--gradient-primary);
  transition: width 0.1s linear;
  pointer-events: none;
}

/* =========================================================
   NAVBAR — Sticky + küçülen scroll
   ========================================================= */
#mainNavbar {
  height: var(--nav-height);
  padding: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  z-index: 1030;
}

#mainNavbar .container {
  height: 100%;
}

#mainNavbar.scrolled {
  --nav-height: 68px;
  height: 68px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--gray-200);
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  
  transition: width var(--transition), height var(--transition);
}

#mainNavbar.scrolled .brand-logo {
  width: 40px;
  height: 40px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

.brand-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#mainNavbar .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 0.5rem 0.85rem !important;
  position: relative;
  transition: color var(--transition);
}

#mainNavbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active {
  color: var(--primary);
}

#mainNavbar .nav-link.active::after,
#mainNavbar .nav-link:hover::after {
  transform: scaleX(1);
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991.98px) {
  #mainNavbar .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1rem;
    margin-top: 0.75rem;
    box-shadow: var(--shadow-md);
  }

  #mainNavbar .nav-link::after {
    display: none;
  }

  #mainNavbar .btn-nav-cta {
    width: 100%;
    margin-top: 0.5rem;
  }
}

/* =========================================================
   HERO — Tam ekran + fade slider
   ========================================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* Hafif blur — premium kurumsal his */
  filter: blur(2px);
  transform: scale(1.04);
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(30, 41, 59, 0.88) 0%, rgba(36, 59, 122, 0.72) 55%, rgba(30, 41, 59, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-height);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.hero-title {
  font-size: clamp(1.85rem, 5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  max-width: 18ch;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
  margin-bottom: 2rem;
}

.hero-actions .btn-lg {
  padding: 0.85rem 1.75rem;
}

/* Glass istatistik kartları */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.stat-card.glass {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: all var(--transition);
}

.stat-card.glass:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(6px);
}

.stat-card i {
  font-size: 1.25rem;
  color: #7EB3FF;
  flex-shrink: 0;
}

.stat-card span {
  font-size: 0.95rem;
  font-weight: 500;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =========================================================
   HİZMETLER
   ========================================================= */
.services-section {
  background: var(--white);
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 125, 243, 0.15);
  background: var(--white);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 28px rgba(36, 59, 122, 0.25);
  transition: transform var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-4deg);
}

.service-title {
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--primary);
  margin-bottom: 0.85rem;
  line-height: 1.4;
}

.service-text {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #25D366;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-link:hover {
  color: #1ebe57;
}

.service-link i {
  transition: transform var(--transition);
}

.service-link:hover i {
  transform: translateX(4px);
}

/* =========================================================
   NEDEN BİZ?
   ========================================================= */
.why-section {
  background: var(--gradient-soft);
}

.why-image-wrap {
  position: relative;
}

.why-image {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}

.why-image-accent {
  position: absolute;
  inset: auto -16px -16px auto;
  width: 45%;
  height: 45%;
  border-radius: var(--radius-lg);
  background: var(--gradient-primary);
  opacity: 0.15;
  z-index: -1;
}

.why-list {
  display: grid;
  gap: 0.75rem;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  padding: 0.85rem 1.1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.why-list li:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.why-list i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(79, 125, 243, 0.12);
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

/* =========================================================
   HAKKIMIZDA + SAYAÇLAR
   ========================================================= */
.about-section {
  background: var(--white);
}

.about-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-wrap:hover .about-image {
  transform: scale(1.04);
}

.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1rem;
}

.about-text {
  color: var(--gray-500);
  margin-bottom: 0;
}

.counters-row {
  margin-top: 3rem !important;
}

.counter-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.counter-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.counter-number {
  display: block;
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 750;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.counter-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-500);
}

/* =========================================================
   GALERİ + LIGHTBOX
   ========================================================= */
.gallery-section {
  background: var(--bg);
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: none;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: linear-gradient(180deg, rgba(36, 59, 122, 0.15) 0%, rgba(30, 41, 59, 0.78) 100%);
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 1.5rem;
}

.gallery-overlay span {
  font-size: 0.85rem;
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(15, 23, 42, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-img {
  max-width: min(920px, 92vw);
  max-height: 78vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1rem;
  font-weight: 500;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.lightbox-close:hover {
  opacity: 1;
}

/* =========================================================
   İLETİŞİM
   ========================================================= */
.contact-section {
  background: var(--white);
}

.contact-info-card {
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  height: 100%;
  box-shadow: var(--shadow-lg);
}

.contact-info-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-info-text {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.contact-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.contact-list strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-list a,
.contact-list span {
  color: var(--white);
  font-size: 0.95rem;
}

.contact-list a:hover {
  opacity: 0.85;
  color: var(--white);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
}

.contact-form {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  height: 100%;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 550;
  color: var(--dark);
}

.required {
  color: #EF4444;
}

.form-control {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(79, 125, 243, 0.15);
}

.form-control.is-invalid {
  border-color: #EF4444;
}

.form-success {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(37, 211, 102, 0.12);
  color: #15803d;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.form-success[hidden] {
  display: none !important;
}

/* =========================================================
   HARİTA
   ========================================================= */
.map-section {
  background: var(--bg);
  padding-bottom: 60px;
}

.map-embed {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  filter: grayscale(0.15) contrast(1.05);
}

.map-cta {
  margin-top: 1.75rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
}

.footer-brand {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25;
}

.footer-brand small {
  font-weight: 400;
  font-size: 0.75rem;
  opacity: 0.7;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-brand:hover {
  color: var(--white);
}

.footer-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 0.15rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* =========================================================
   YUKARI ÇIK BUTONU
   ========================================================= */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1040;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 14px;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* =========================================================
   FADE-UP SCROLL ANİMASYONU
   ========================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   ERİŞİLEBİLİRLİK & PERFORMANS
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }
}

/* Focus görünürlüğü */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Mobil ince ayarlar */
@media (max-width: 575.98px) {
  .hero-title {
    max-width: none;
  }

  .contact-form,
  .contact-info-card {
    padding: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }
}
