/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1a2547;
  --navy-dark: #0f1830;
  --navy-light: #2a3866;
  --gold: #c9a857;
  --gold-light: #d9bd6f;
  --gold-dark: #a88840;
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #f1f3f7;
  --gray-200: #e4e7ee;
  --gray-300: #cbd1dc;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-sm: 0 2px 8px rgba(26, 37, 71, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 37, 71, 0.1);
  --shadow-lg: 0 20px 50px rgba(26, 37, 71, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--gold); }

/* Ekran okuyucu için görünür, gözle görünmez başlık */
.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;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}
.btn-light:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-block { width: 100%; }

/* === Top Bar === */
.top-bar {
  background: var(--navy-dark);
  color: var(--gray-300);
  font-size: 13.5px;
  padding: 10px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.top-bar-info, .top-bar-contact {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.top-bar i { color: var(--gold); margin-right: 6px; }
.top-bar a:hover { color: var(--gold); }
.wa-link { color: #25d366 !important; font-weight: 600; }

/* === Header === */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img {
  height: 64px;
  width: auto;
}
.nav ul {
  display: flex;
  gap: 36px;
}
.nav a {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  padding: 8px 0;
}
.nav a:hover, .nav a.active { color: var(--gold); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }

.btn-quote { padding: 12px 22px; font-size: 14px; }

.mobile-toggle {
  display: none;
  font-size: 24px;
  color: var(--navy);
}

/* === Hero === */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 168, 87, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(201, 168, 87, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 87, 0.15);
  border: 1px solid rgba(201, 168, 87, 0.4);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-text h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}
.hero-feature i { color: var(--gold); }

/* Quote Form */
.hero-card {
  position: relative;
  z-index: 2;
}
.quote-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.quote-form::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, var(--gold), transparent);
  border-radius: calc(var(--radius-lg) + 3px);
  z-index: -1;
  opacity: 0.5;
}
.quote-form h2 {
  font-size: 24px;
  margin-bottom: 6px;
}
.quote-sub {
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 24px;
}
.form-group {
  position: relative;
  margin-bottom: 14px;
}
.form-group i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 15px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--gray-700);
  background: var(--gray-50);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 168, 87, 0.15);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* === Stats Strip === */
.stats-strip {
  background: var(--navy-dark);
  padding: 40px 0;
  position: relative;
  z-index: 3;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}
.stat-item > i {
  font-size: 38px;
  color: var(--gold);
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: var(--gray-300);
  margin-top: 4px;
}

/* === Section Header === */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-block;
  background: rgba(201, 168, 87, 0.12);
  color: var(--gold-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 17px;
  color: var(--gray-500);
}

/* === Services === */
.services {
  padding: 100px 0;
  background: var(--gray-50);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1.5px solid transparent;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 168, 87, 0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}
.service-card.featured h3,
.service-card.featured .service-icon { color: var(--white); }
.service-card.featured p { color: rgba(255, 255, 255, 0.85); }
.service-card.featured .service-features li { color: rgba(255, 255, 255, 0.9); }
.service-card.featured .service-link { color: var(--gold-light); }
.service-card.featured .service-icon {
  background: rgba(201, 168, 87, 0.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: rgba(201, 168, 87, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 24px;
}
.service-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}
.service-card p {
  font-size: 15px;
  margin-bottom: 20px;
  color: var(--gray-500);
}
.service-features {
  margin-bottom: 24px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--gray-700);
  margin-bottom: 10px;
}
.service-features i {
  color: var(--gold);
  font-size: 12px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 14.5px;
  font-family: 'Montserrat', sans-serif;
}
.service-link:hover { gap: 14px; color: var(--gold); }

/* === Why Us === */
.why-us {
  padding: 100px 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-left .section-tag { margin-bottom: 16px; }
.why-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}
.why-intro {
  font-size: 16.5px;
  color: var(--gray-500);
  margin-bottom: 36px;
  line-height: 1.7;
}
.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.why-point {
  display: flex;
  gap: 16px;
}
.why-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
}
.why-point h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.why-point p {
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.5;
}

.why-right { position: relative; }
.why-image {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  min-height: 460px;
  overflow: hidden;
}
.why-image::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(201, 168, 87, 0.15);
  border-radius: 50%;
}
.why-image::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: rgba(201, 168, 87, 0.08);
  border-radius: 50%;
}
.why-image-card {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.why-image-card i {
  font-size: 80px;
  color: var(--gold);
  margin-bottom: 24px;
}
.why-image-card h3 {
  color: var(--white);
  font-size: 32px;
  font-weight: 800;
}
.why-image-stat {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
}
.stat-circle {
  width: 130px;
  height: 130px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  text-align: center;
  padding: 10px;
  box-shadow: 0 12px 30px rgba(201, 168, 87, 0.4);
}
.stat-circle span {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.stat-circle small {
  font-size: 11px;
  font-weight: 600;
  margin-top: 4px;
  line-height: 1.2;
}
.floating-badge {
  position: absolute;
  background: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  z-index: 3;
}
.floating-badge i { color: var(--gold); font-size: 16px; }
.floating-badge.top {
  top: 30px;
  right: -20px;
  animation: float 4s ease-in-out infinite;
}
.floating-badge.bottom {
  bottom: 40px;
  left: -20px;
  animation: float 4s ease-in-out infinite 2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* === Process === */
.process {
  padding: 100px 0;
  background: var(--gray-50);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.process-step {
  background: var(--white);
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.process-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(201, 168, 87, 0.2);
  line-height: 1;
  margin-bottom: 10px;
}
.process-icon {
  width: 70px;
  height: 70px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}
.process-step h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14.5px;
  color: var(--gray-500);
}

/* === Testimonials === */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--gray-50);
  padding: 32px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.testimonial-card:hover {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 15.5px;
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 24px;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}
.testimonial-author .author-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  font-size: 15.5px;
  margin-bottom: 2px;
}
.testimonial-author small {
  color: var(--gray-500);
  font-size: 13px;
}

/* === CTA Banner === */
.cta-banner {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '\f0d1';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  font-size: 280px;
  color: rgba(201, 168, 87, 0.06);
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 2;
}
.cta-text h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}
.cta-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* === Contact === */
.contact {
  padding: 100px 0;
  background: var(--gray-50);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-card {
  background: var(--white);
  padding: 28px 22px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
}
.contact-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.contact-card p {
  font-size: 14.5px;
  color: var(--gray-500);
}
.contact-card a:hover { color: var(--gold); }
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 400px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* === Footer === */
.footer {
  background: var(--navy-dark);
  color: var(--gray-300);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h2 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.footer-logo {
  height: 70px;
  width: auto;
  background: var(--white);
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 18px;
}
.footer-col > p {
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  font-size: 14.5px;
  color: var(--gray-300);
}
.footer-col ul a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  align-items: flex-start;
}
.footer-contact i {
  color: var(--gold);
  margin-top: 5px;
  flex-shrink: 0;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
}
.social-links a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13.5px;
}
.footer-bottom a { color: var(--gold-light); font-weight: 600; }
.footer-bottom a:hover { color: var(--white); }

/* === WhatsApp Float === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* === Responsive === */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; gap: 60px; }
  .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-toggle { display: block; }
  .btn-quote { display: none; }
  .hero { padding: 50px 0 70px; }
  .services, .why-us, .process, .testimonials, .contact { padding: 70px 0; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .why-points { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-info { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { gap: 20px; }
  .stat-num { font-size: 26px; }
  .stat-item > i { font-size: 30px; }
  .top-bar-info span:nth-child(2) { display: none; }
  .quote-form { padding: 28px 22px; }
  .floating-badge.top { right: -10px; }
  .floating-badge.bottom { left: -10px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .top-bar-inner { flex-direction: column; gap: 6px; }
  .hero-cta .btn { flex: 1; }
  .contact-info { grid-template-columns: 1fr; }
}

/* ============================================================================
 *  ALTYAPI EKLERİ — form geri bildirimi, blog ve iç sayfalar
 *  (Orijinal tasarım korunmuş; aşağıdaki bileşenler PHP altyapısı için eklendi)
 * ========================================================================== */

/* Honeypot: ekranda görünmez, spam botlarını tuzağa düşürür */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0; overflow: hidden;
}

/* Form başarı/hata kutusu (hızlı teklif formu) */
.form-alert {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; margin-bottom: 16px;
}
.form-alert-success { background: #e8f6ee; color: #16794a; }
.form-alert-error { background: #fdecec; color: #b3261e; }

/* İç sayfa başlığı (blog listesi, 404) */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white); padding: 120px 0 60px; text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(28px, 4vw, 44px); margin: 12px 0; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 640px; margin: 0 auto; }
.page-hero .section-tag { background: rgba(201,168,87,0.18); color: var(--gold-light); }
.error-page { padding: 140px 0 100px; }
.error-page .btn { margin-top: 24px; }

/* Blog ızgara + kartlar */
.blog-preview { padding: 90px 0; background: var(--gray-50); }
.blog-list { padding: 70px 0 90px; }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.blog-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card-img { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--gray-100); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-placeholder {
  display: flex; align-items: center; justify-content: center; height: 100%;
  font-size: 48px; background: var(--navy); color: var(--gold);
}
.blog-card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card-date { font-size: 13px; color: var(--gray-500); font-weight: 600; }
.blog-card-body h3 { font-size: 19px; line-height: 1.35; }
.blog-card-body h3 a:hover { color: var(--gold-dark); }
.blog-card-body p { font-size: 14.5px; color: var(--gray-500); flex: 1; }
.blog-preview-cta { text-align: center; margin-top: 44px; }

/* Tek yazı */
.post { padding: 110px 0 80px; }
.post-narrow { max-width: 800px; }
.breadcrumb { font-size: 13px; color: var(--gray-500); margin-bottom: 18px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--gold-dark); }
.breadcrumb i { font-size: 10px; color: var(--gray-300); }
.post-title { font-size: clamp(26px, 4vw, 40px); line-height: 1.2; }
.post-meta { color: var(--gray-500); font-weight: 600; margin: 12px 0 24px; }
.post-cover { width: 100%; border-radius: var(--radius-lg); margin-bottom: 28px; box-shadow: var(--shadow-md); }
.post-body { font-size: 17px; line-height: 1.8; color: var(--gray-700); }
.post-body h2 { font-size: 26px; margin: 32px 0 12px; }
.post-body h3 { font-size: 21px; margin: 26px 0 10px; }
.post-body p { margin-bottom: 18px; }
.post-body ul, .post-body ol { margin: 0 0 18px 22px; }
.post-body li { margin-bottom: 8px; }
.post-body img { border-radius: var(--radius); margin: 18px 0; }
.post-body a { color: var(--gold-dark); text-decoration: underline; }
.post-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--gray-200); }

/* Tek yazı: içerik + sağ kenar çubuğu */
.post-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 56px; align-items: start; }
.post-main { min-width: 0; max-width: 820px; }

/* Sağ kenar çubuğu — sticky kutular */
.post-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.sidebar-title { font-size: 18px; margin-bottom: 16px; position: relative; padding-bottom: 12px; }
.sidebar-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--gold); border-radius: 2px; }

/* Teklif kutusu (koyu, vurgulu) */
.sidebar-card-cta {
  background: linear-gradient(150deg, var(--navy), var(--navy-light));
  border: none; color: var(--white); text-align: center;
}
.sidebar-card-icon { font-size: 34px; color: var(--gold); margin-bottom: 14px; }
.sidebar-card-cta h3 { color: var(--white); font-size: 20px; margin-bottom: 10px; line-height: 1.3; }
.sidebar-card-cta p { color: rgba(255,255,255,0.82); font-size: 14.5px; margin-bottom: 20px; }
.sidebar-card-cta .btn { margin-bottom: 12px; }
.sidebar-phone {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: var(--gold-light); font-weight: 700; font-family: 'Montserrat', sans-serif;
  font-size: 17px; margin-bottom: 14px;
}
.sidebar-phone:hover { color: var(--white); }

/* Hizmet linkleri */
.sidebar-links { display: flex; flex-direction: column; gap: 4px; }
.sidebar-links a {
  display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 10px;
  color: var(--navy); font-weight: 600; font-size: 14.5px; transition: var(--transition);
}
.sidebar-links a i { color: var(--gold); width: 20px; text-align: center; }
.sidebar-links a:hover { background: var(--gray-50); color: var(--gold-dark); transform: translateX(4px); }

/* Güven listesi */
.sidebar-trust { display: flex; flex-direction: column; gap: 12px; }
.sidebar-trust li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--gray-700); font-weight: 500; }
.sidebar-trust li i { color: var(--gold); width: 20px; text-align: center; font-size: 16px; }

.empty-state { text-align: center; color: var(--gray-500); padding: 50px 0; font-size: 16px; }

@media (max-width: 980px) {
  .post-layout { grid-template-columns: 1fr; gap: 40px; }
  .post-main { max-width: none; }
  .post-sidebar { position: static; }
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============================================================================
 *  İÇ SAYFALAR — Kurumsal, Hizmetler, Hizmet Detay, İletişim
 * ========================================================================== */

/* page-hero içindeki breadcrumb (koyu zemin) */
.breadcrumb-light { color: rgba(255,255,255,0.7); justify-content: center; margin-bottom: 16px; }
.breadcrumb-light a { color: rgba(255,255,255,0.85); }
.breadcrumb-light a:hover { color: var(--gold-light); }
.breadcrumb-light i { color: rgba(255,255,255,0.4); }
.page-hero .section-tag i { margin-right: 4px; }

/* --- Kurumsal --- */
.about-intro { padding: 80px 0; }
.about-intro-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.about-text .section-tag {
  display: inline-block; background: rgba(201,168,87,0.12); color: var(--gold-dark);
  padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 700; margin-bottom: 14px;
}
.about-text h2 { font-size: clamp(26px, 3.5vw, 36px); margin-bottom: 18px; }
.about-text p { color: var(--gray-500); margin-bottom: 16px; }
.about-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--gray-300); }
.btn-outline-dark:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.about-stat {
  background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 30px 22px; text-align: center;
}
.about-stat:nth-child(2), .about-stat:nth-child(3) { background: var(--navy-light); }
.about-stat-num { font-family: 'Montserrat', sans-serif; font-size: 34px; font-weight: 800; color: var(--gold); }
.about-stat-label { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 4px; }

/* Değerler ızgarası */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
  background: #fff; border-radius: var(--radius-lg); padding: 30px 24px; box-shadow: var(--shadow-sm);
  transition: var(--transition); text-align: left;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .why-icon {
  width: 56px; height: 56px; border-radius: 14px; background: rgba(201,168,87,0.14); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px;
}
.value-card h3 { margin-bottom: 8px; }
.value-card p { color: var(--gray-500); font-size: 14.5px; }

/* --- Hizmet detay --- */
.service-detail { padding: 70px 0 90px; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.service-detail-body .service-feature-box {
  background: var(--gray-50); border-radius: var(--radius-lg); padding: 26px 28px; margin: 28px 0;
}
.service-detail-body .service-feature-box h3 { margin-bottom: 14px; font-size: 19px; }
.service-detail-body .service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.service-detail-body .service-features li { display: flex; align-items: center; gap: 8px; color: var(--gray-700); }
.service-detail-body .service-features i { color: var(--gold); }

.service-detail-side .side-box {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 22px;
}
.service-detail-side .side-box h3 { font-size: 17px; margin-bottom: 16px; }
.service-list li { margin-bottom: 4px; }
.service-list a {
  display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 10px;
  color: var(--gray-700); font-weight: 600; font-size: 14.5px; transition: var(--transition);
}
.service-list a:hover { background: var(--gray-50); color: var(--gold-dark); }
.service-list i { color: var(--gold); width: 18px; text-align: center; }
.side-box-cta { background: var(--navy) !important; color: #fff; text-align: center; border: none !important; }
.side-box-cta i { font-size: 30px; color: var(--gold); margin-bottom: 10px; }
.side-box-cta h3 { color: #fff; }
.side-box-cta p { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 16px; }

/* --- İletişim sayfası --- */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info-page { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form-col .quote-form { box-shadow: var(--shadow-md); }
.contact-form-col .quote-form::before { display: none; }
.contact-map-full { height: 420px; }
.contact-map-full iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.2); }

@media (max-width: 992px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
  .contact-info-page { grid-template-columns: 1fr; }
  .service-detail-body .service-features { grid-template-columns: 1fr; }
}
