:root {
  --color-primary: #1a2744;
  --color-primary-light: #243460;
  --color-accent: #c9a84c;
  --color-accent-hover: #fcbb00;
  --color-text: #1a2744;
  --color-text-muted: #64748b;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(26, 39, 68, 0.08);
  --shadow-md: 0 4px 20px rgba(26, 39, 68, 0.1);
  --shadow-lg: 0 10px 40px rgba(26, 39, 68, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  font-variant-numeric: tabular-nums lining-nums;
  -webkit-font-feature-settings: "tnum", "lnum";
  font-feature-settings: "tnum", "lnum";
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 39, 68, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  flex-shrink: 0;
}

.logo-img {
  height: 58px;
  width: auto;
  min-width: 58px;
  object-fit: contain;
  display: block;
}

.footer-logo .logo-img {
  height: 80px;
  min-width: 80px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--color-accent-hover);
}

.nav-cta {
  background: var(--color-accent-hover);
  color: var(--color-primary) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: #e5a800;
  color: var(--color-primary) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero (Tasarım) */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero--wide .hero-content {
  max-width: 960px;
}

.hero--wide h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.hero--wide .hero-desc {
  max-width: 820px;
  font-size: 1.125rem;
}

.hero--wide .hero-stats {
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  color: var(--color-accent-hover);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 span {
  display: block;
}

.hero .highlight {
  color: var(--color-accent-hover);
}

.hero-desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--color-accent-hover);
  color: var(--color-primary);
}

.btn-primary:hover {
  background: #e5a800;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(252, 187, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--color-accent-hover);
  color: var(--color-accent-hover);
}

.btn-full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-accent-hover);
  line-height: 1.2;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums lining-nums;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.hero-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* Sections (Bölümler) */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  color: var(--color-accent);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-tag.light {
  color: var(--color-accent-hover);
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* Services (Hizmetler) */
.services {
  background: var(--color-bg-alt);
}

.services-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--color-accent);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
}

.service-card > p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-size: 0.875rem;
  line-height: 1.65;
}

.service-link {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--color-accent-hover);
}

.services-visual {
  position: sticky;
  top: 100px;
}

.image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--color-accent-hover);
  color: var(--color-primary);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  font-variant-numeric: tabular-nums lining-nums;
  letter-spacing: -0.02em;
}

.badge-text {
  font-size: 0.8125rem;
  font-weight: 600;
}

/* About (Hakkımızda) */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-content > p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-checklist {
  margin: 28px 0 32px;
}

.about-checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
}

.about-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Why (Neden Bizi Seçmelisiniz kısmı) */
.why {
  background: var(--color-bg-alt);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--color-border);
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(26, 39, 68, 0.06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-primary);
}

.why-icon svg {
  width: 28px;
  height: 28px;
}

.why-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Contact (İletişim) */
.contact {
  position: relative;
  background: var(--color-primary);
  color: #fff;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.contact-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 39, 68, 0.95) 0%, rgba(36, 52, 96, 0.9) 100%);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: #fff;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(252, 187, 0, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-hover);
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item strong {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
  font-weight: 500;
}

.contact-item a,
.contact-item span {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

.contact-item a:hover {
  color: var(--color-accent-hover);
}

.contact-form {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--color-text);
}

.contact-form h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-primary);
}

.form-group {
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9375rem;
  transition: var(--transition);
  background: var(--color-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  margin-top: 12px;
  font-size: 0.875rem;
  text-align: center;
  min-height: 20px;
}

.form-note.success {
  color: #059669;
}

.form-note.error {
  color: #dc2626;
}

/* Footer */
.footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.6);
}

.newsletter {
  margin-top: 28px;
}

.newsletter h4 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: inherit;
  font-size: 0.875rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-accent-hover);
}

.newsletter-form button {
  width: 40px;
  height: 40px;
  background: var(--color-accent-hover);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: #e5a800;
}

.newsletter-form button svg {
  width: 18px;
  height: 18px;
}

.newsletter-note {
  margin-top: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links h4 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-links span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent-hover);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom p {
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-wrap img {
    height: 360px;
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-visual {
    position: static;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 968px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--color-primary);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .live-chat-btn span {
    display: none;
  }
}

/* Language Switcher */
.lang-switcher .nav-dropdown-toggle {
  gap: 2px;
}
.lang-menu {
  min-width: auto !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  padding: 6px !important;
  background: #1a1a2e !important;
}
.lang-menu li .lang-btn {
  color: rgba(255, 255, 255, 0.85) !important;
}
.lang-menu li .lang-btn {
  gap: 8px !important;
  font-size: 0.9375rem !important;
  color: rgba(255, 255, 255, 0.85);
  transition: background var(--transition);
}
.lang-menu li .lang-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

/* Nav dropdown (navigasyon aşağı açılması) */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.nav-dropdown-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-toggle:hover,
.nav-dropdown.active .nav-dropdown-toggle {
  color: var(--color-accent-hover);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: var(--color-text) !important;
  border-radius: 8px;
  font-size: 0.875rem;
  border: none !important;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(201, 168, 76, 0.12);
  color: var(--color-primary) !important;
}

.nav-links a.active:not(.nav-cta) {
  color: var(--color-accent-hover);
}

/* Page hero */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
}

.page-hero.compact {
  padding: 120px 0 60px;
  text-align: center;
}

.page-hero .container {
  max-width: 800px;
}

.page-hero-badge {
  display: inline-block;
  background: rgba(252, 187, 0, 0.15);
  color: var(--color-accent-hover);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(252, 187, 0, 0.25);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 32px;
}

.page-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-hero:not(.compact) .page-hero-actions {
  justify-content: flex-start;
}

/* Arkaplan görüntüsüyle beraber hero */
.page-hero-bg {
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.page-hero-bg .container {
  position: relative;
  z-index: 2;
}

/* Özellik ızgarası ("Hizmetler" sayfaları) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.feature-card-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.feature-duration {
  display: inline-block;
  margin-top: 12px;
  background: rgba(201, 168, 76, 0.12);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Split section */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 0.9375rem;
  font-weight: 500;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* CTA band */
.cta-band {
  background: var(--color-primary);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.cta-band h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  text-align: center;
  padding: 24px 16px;
}

.process-number {
  width: 48px;
  height: 48px;
  background: var(--color-accent-hover);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 16px;
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stats-row .stat-card {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-row .stat-card .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent-hover);
  display: block;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums lining-nums;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.stats-row .stat-card .stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

/* About page */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
}

.mv-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.mv-card h2 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.mv-card p {
  color: var(--color-text-muted);
  line-height: 1.8;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  padding-left: 56px;
  padding-bottom: 36px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 6px;
  width: 18px;
  height: 18px;
  background: var(--color-accent-hover);
  border-radius: 50%;
  border: 3px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-accent-hover);
}

.timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.15);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums lining-nums;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.timeline-item h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cert-item {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

/* Contact page */
.contact-page-hero {
  padding: 120px 0 48px;
  background: var(--color-bg-alt);
  text-align: center;
}

.contact-page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.contact-page-hero p {
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: -40px auto 60px;
  position: relative;
  z-index: 2;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-accent);
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.contact-card a,
.contact-card button {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.contact-card a:hover,
.contact-card button:hover {
  color: var(--color-accent-hover);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-page-info h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-page-info > p {
  color: var(--color-text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.contact-page-info .contact-item strong {
  color: var(--color-text-muted);
}

.contact-page-info .contact-item a,
.contact-page-info .contact-item span {
  color: var(--color-text);
}

.map-placeholder {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-top: 28px;
}

/* Branch pages */
.branch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.branch-info-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.branch-info-card h2 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--color-primary);
}

.branch-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.branch-details li strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.branch-details li span,
.branch-details li a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.6;
}

.branch-details li a:hover {
  color: var(--color-accent);
}

.branch-map-inner {
  margin-top: 0;
  height: 280px;
  font-size: 1rem;
}

.branch-note {
  margin-top: 16px;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .logo-img {
    height: 50px;
    min-width: 50px;
  }

  .footer-logo .logo-img {
    height: 68px;
    min-width: 68px;
  }

  .branch-grid {
    grid-template-columns: 1fr;
  }
}

/* Live chat */
.live-chat-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-accent-hover);
  color: var(--color-primary);
  border: none;
  border-radius: 50px;
  padding: 14px 22px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(252, 187, 0, 0.4);
  transition: var(--transition);
}

.live-chat-btn:hover {
  transform: translateY(-2px);
  background: #e5a800;
}

.live-chat-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.live-chat-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.live-chat-modal.open {
  opacity: 1;
  visibility: visible;
}

.live-chat-panel {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.live-chat-modal.open .live-chat-panel {
  transform: translateY(0);
}

.live-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--color-primary);
  color: #fff;
}

.live-chat-header strong {
  display: block;
  font-size: 0.9375rem;
}

.live-status {
  font-size: 0.75rem;
  color: #4ade80;
  font-weight: 500;
}

.live-chat-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}

.live-chat-messages {
  height: 280px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--color-bg-alt);
}

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.chat-msg.bot {
  background: #fff;
  border: 1px solid var(--color-border);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-msg.user {
  background: var(--color-primary);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.live-chat-input {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--color-border);
}

.live-chat-input input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.875rem;
}

.live-chat-input input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.live-chat-input button {
  width: 40px;
  height: 40px;
  background: var(--color-accent-hover);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.live-chat-input button svg {
  width: 18px;
  height: 18px;
}

/* Chat Topic Suggestions */
.chat-topics {
  padding: 8px 14px 4px;
  text-align: center;
}
.chat-topics-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.chat-topics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.chat-topic-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-family: inherit;
  font-weight: 500;
  background: var(--color-bg-alt);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.chat-topic-btn:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.chat-topic-btn:active {
  transform: scale(0.96);
}

/* Chat Link Button (bot mesaji icinde sayfa linki) */
.chat-link-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-family: inherit;
  font-weight: 600;
  color: #fff;
  background: var(--color-primary);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}
.chat-link-btn:hover {
  background: var(--color-accent-hover);
}

@media (max-width: 1024px) {
  .feature-grid,
  .values-grid,
  .certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid,
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .contact-page-grid,
  .mission-vision {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
    margin-top: 0;
    padding: 0 0 8px 16px;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 10px 0;
    background: none !important;
  }
  .nav-dropdown-menu button.lang-btn {
    justify-content: flex-start !important;
    padding: 8px 10px !important;
    font-size: 0.9375rem !important;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .feature-grid,
  .process-grid,
  .values-grid,
  .certs-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    margin-top: 0;
  }
}

/* Hero Background Logo */
.hero {
  position: relative;
}

.hero-bg-logo {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 40%;
  max-width: 500px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-logo img {
  width: 100%;
  height: auto;
  filter: grayscale(1) brightness(2);
}

.hero-content {
  position: relative;
  z-index: 2;
}


/* Hero Slider Styles */
.hero--slider {
  padding: 0;
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(26, 39, 68, 0.85) 0%, rgba(26, 39, 68, 0.4) 50%, rgba(26, 39, 68, 0.2) 100%);
  z-index: 1;
}

.hero-slide-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-slide .hero-bg-logo {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 40%;
  max-width: 500px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.hero-slide .hero-bg-logo img {
  width: 100%;
  height: auto;
  filter: grayscale(1) brightness(2);
}

.hero-slide .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #fff;
  padding-top: 80px;
}

/* Hero Slider Controls */
.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.hero-slider-btn:hover {
  background: var(--color-accent-hover);
  color: var(--color-primary);
  border-color: var(--color-accent-hover);
  transform: translateY(-50%) scale(1.1);
}

.hero-slider-btn svg {
  width: 30px;
  height: 30px;
}

.hero-slider-prev {
  left: 30px;
}

.hero-slider-next {
  right: 30px;
}

/* Hero Slider Indicators */
.hero-slider-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.hero-indicator {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hero-indicator.active {
  background: var(--color-accent-hover);
  width: 60px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-slider-btn {
    width: 50px;
    height: 50px;
  }
  .hero-slider-prev { left: 15px; }
  .hero-slider-next { right: 15px; }
}

@media (max-width: 768px) {
  .hero-slide-inner {
    text-align: center;
    justify-content: center;
  }
  .hero-slide .hero-content {
    margin: 0 auto;
    padding-top: 60px;
  }
  .hero-slide .hero-bg-logo {
    display: none;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-slider-btn {
    display: none;
  }
  .hero-slide-overlay {
    background: rgba(26, 39, 68, 0.7);
  }
}
