/* Google Fonts - Inter & Outfit */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* CSS Tasarım Sistemi (Açık Premium Tema) */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Premium Beyaz ve Turkuaz Palet */
  --bg-deep: #ffffff;            /* Saf Beyaz Ana Arka Plan */
  --bg-card: #f8fafc;            /* Açık Gri-Gümüş Kart Arka Planı */
  --bg-glass: rgba(255, 255, 255, 0.85); /* Yarı saydam beyaz cam efekti */
  
  --color-primary: #00b4d8;      /* Parlak Turkuaz */
  --color-primary-dark: #0077b6; /* Koyu Turkuaz (hover durumları) */
  --color-primary-light: #e0f2fe;/* Yumuşak Turkuaz Zemin Vurgusu */
  --color-primary-rgb: 0, 180, 216;
  
  --color-accent: #0077b6;       /* Derin Mavi-Turkuaz Detaylar */
  --color-success: #10b981;      /* Başarı Yeşili */
  
  --text-dark: #0f172a;          /* Koyu Gri/Siyah Metin */
  --text-muted: #475569;         /* Orta Ton Gri Metin */
  --text-light: #64748b;         /* Açık Gri Metin */
  --text-white: #ffffff;         /* Beyaz Metin (Butonlar ve koyu zeminler için) */
  
  --border-light: rgba(0, 180, 216, 0.18); /* Turkuaz Sınır Çizgisi */
  --border-glass: rgba(255, 255, 255, 0.6);
  --border-muted: #e2e8f0;       /* Standart Gri Kenarlık */
  
  --shadow-premium: 0 10px 30px -10px rgba(0, 180, 216, 0.25);
  --shadow-card: 0 15px 35px -15px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 25px 50px -20px rgba(0, 180, 216, 0.15);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --max-width: 1280px;
}

/* Reset ve Temel Stiller */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

li {
  list-style: none;
}

button, input, textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

/* Scrollbar Tasarımı */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-card);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border: 2px solid var(--bg-card);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Ortak Yapı Sınıfları */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.section-bg-alt {
  background-color: var(--bg-card);
}

.text-gradient {
  background: linear-gradient(135deg, var(--text-dark) 40%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-accent {
  color: var(--color-primary);
}

/* Üst Başlık (Header) Tasarımları */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 5rem auto;
}

.section-header .subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  position: relative;
}

.section-header .subtitle::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  margin: 0.5rem auto 0 auto;
  border-radius: 2px;
}

.section-header h2 {
  font-size: 2.6rem;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.15rem;
}

/* Sabit Üst Başlık Grubu (Header Wrapper) */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

/* Header Üst Mini Bar */
.top-bar {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-muted);
  padding: 0.6rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  transition: var(--transition-smooth);
  margin-top: 0;
  opacity: 1;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-item svg {
  color: var(--color-primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.top-bar-item a:hover {
  color: var(--color-primary-dark);
}

/* Navigasyon Barı (Navbar) */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-muted);
  transition: var(--transition-smooth);
  width: 100%;
}

.header-fixed.scrolled .top-bar {
  margin-top: -38px; /* Top bar yüksekliği kadar yukarı kaydırarak gizleme */
  opacity: 0;
  pointer-events: none;
}

.header-fixed.scrolled .navbar {
  padding: 0.4rem 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px -15px rgba(15, 23, 42, 0.1);
  border-bottom: 1px solid var(--border-light);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: var(--transition-smooth);
}

.header-fixed.scrolled .navbar .container {
  height: 70px;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dark);
}

.logo span {
  color: var(--color-primary);
}

.nav-menu {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-primary);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-primary);
}

.nav-btn {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.nav-btn:hover {
  background: var(--color-primary);
  color: var(--text-white);
  box-shadow: var(--shadow-premium);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  margin: 5px 0;
  transition: var(--transition-smooth);
  border-radius: 2px;
}

/* Giriş Bölümü (Hero Section - ARKA PLAN RESİMLİ) */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 145px;
  position: relative;
  overflow: hidden;
  /* Premium Arka Plan Görseli ve Overlay Maskesi */
  background: linear-gradient(to right, rgba(255, 255, 255, 0.96) 35%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 0.6) 100%), 
              url('assets/images/hero-cabrio.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 5;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 650px;
  font-weight: 450;
}

.hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-light);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.05);
}

.hero-feature-item svg {
  color: var(--color-primary);
  width: 22px;
  height: 22px;
}

.btn-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--text-white);
  box-shadow: var(--shadow-premium);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -5px rgba(0, 180, 216, 0.45);
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--color-primary-dark);
  border: 2px solid var(--color-primary);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: var(--color-primary-light);
  transform: translateY(-3px);
}

/* Hero Görsel Alanı (Sağ Yan Kart) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-glow-bg {
  position: absolute;
  width: 130%;
  height: 130%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.12) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.visual-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: 28px;
  padding: 1.25rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  position: relative;
  z-index: 3;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: 100%;
}

.visual-card img {
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
  height: 340px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.visual-badge {
  position: absolute;
  bottom: 2.25rem;
  right: 2.25rem;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--color-primary);
  padding: 0.8rem 1.6rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-premium);
}

.visual-badge-text h4 {
  font-size: 1.15rem;
  color: var(--text-dark);
}

.visual-badge-text p {
  font-size: 0.85rem;
  color: var(--color-primary-dark);
  font-weight: 700;
}

/* Hızlı İletişim Şeridi */
.quick-info-bar {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-muted);
  border-bottom: 1px solid var(--border-muted);
  padding: 2.5rem 0;
  position: relative;
  z-index: 10;
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.quick-info-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--color-primary-light);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.quick-info-text h4 {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
  color: var(--text-dark);
}

.quick-info-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.quick-info-text a {
  color: var(--color-primary-dark);
  font-weight: 700;
}

/* Hizmetlerimiz Bölümü (Services Section) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--bg-deep);
  border: 1px solid var(--border-muted);
  border-radius: 28px;
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-light);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: var(--color-primary-light);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--color-primary);
  color: var(--text-white);
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 180, 216, 0.25);
}

.service-card h3 {
  font-size: 1.55rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.service-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 550;
}

.service-list-item svg {
  color: var(--color-primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Hakkımızda Bölümü (About Us Section) */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-container {
  border-radius: 28px;
  border: 1px solid var(--border-muted);
  box-shadow: var(--shadow-card);
  position: relative;
}

.about-img-container img {
  width: 100%;
  height: 490px;
  object-fit: cover;
  border-radius: 27px; /* Görsel köşelerini container ile hizalama */
}

.about-stats {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  background: var(--bg-deep);
  border: 2px solid var(--color-primary);
  border-radius: 22px;
  padding: 2.2rem;
  box-shadow: var(--shadow-premium);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  z-index: 10;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-top: 0.5rem;
}

.about-content h2 {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin-top: 2rem;
}

.about-feat-item {
  display: flex;
  gap: 1rem;
}

.about-feat-icon {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.about-feat-icon svg {
  width: 26px;
  height: 26px;
}

.about-feat-text h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}

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

/* Galeri Bölümü (Gallery Section) */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-muted);
  color: var(--text-muted);
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-primary);
  color: var(--text-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-premium);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.gallery-item {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid var(--border-muted);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 180, 216, 0.95) 0%, rgba(255, 255, 255, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.2rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-size: 0.85rem;
  color: var(--color-primary-light);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.gallery-overlay h4 {
  font-size: 1.35rem;
  color: var(--text-white);
  font-weight: 750;
}

/* İletişim Bölümü (Contact Section) */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--bg-deep);
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid var(--border-muted);
  box-shadow: var(--shadow-card);
}

.contact-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--color-primary-light);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.contact-text p, .contact-text a {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
}

.contact-text a:hover {
  color: var(--color-primary-dark);
}

.map-wrapper {
  margin-top: 1rem;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-muted);
  box-shadow: var(--shadow-card);
  height: 260px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form-wrapper {
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  padding: 4rem 3.5rem;
  border-radius: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.12);
}

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

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: rgba(248, 250, 252, 0.8);
  border: 1px solid var(--border-muted);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
  background: var(--bg-deep);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.contact-form .btn-primary {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
}

/* Yüzen Hızlı WhatsApp Butonu */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  color: white;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* Alt Bilgi (Footer) Tasarımı (Premium Açık-Mavi-Gri Tasarım) */
.footer {
  background-color: #f1f5f9;
  border-top: 1px solid var(--border-muted);
  padding: 6.5rem 0 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 5rem;
  margin-bottom: 4.5rem;
}

.footer-brand h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

.footer-brand h3 span {
  color: var(--color-primary);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.8rem;
  max-width: 340px;
  font-weight: 500;
}

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

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 1px solid var(--border-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-fast);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.social-icon:hover {
  background: var(--color-primary);
  color: var(--text-white);
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-premium);
}

.footer-links h4, .footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  color: var(--text-dark);
}

.footer-links h4::after, .footer-contact h4::after {
  content: '';
  display: block;
  width: 35px;
  height: 3px;
  background: var(--color-primary);
  margin-top: 0.4rem;
  border-radius: 2px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 550;
}

.footer-links a:hover {
  color: var(--color-primary-dark);
  padding-left: 6px;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-contact li {
  display: flex;
  gap: 0.85rem;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
}

.footer-contact li svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 20px;
  height: 20px;
}

.footer-contact li a {
  font-weight: 600;
  color: var(--text-dark);
}

.footer-contact li a:hover {
  color: var(--color-primary-dark);
}

.footer-bottom {
  border-top: 1px solid var(--border-muted);
  padding-top: 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 550;
}

.footer-bottom-links a:hover {
  color: var(--color-primary-dark);
}

/* Mobil Uyumlu Ekran Tasarımları (Responsive CSS) */
@media (max-width: 1024px) {
  /* Tablet ve mobilde ekran alanını korumak için üst mini barı gizliyoruz */
  .top-bar {
    display: none !important;
  }

  .header-fixed.scrolled .top-bar {
    margin-top: 0 !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }

  .hero {
    background-position: center;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                url('assets/images/hero-cabrio.jpg');
    background-size: cover;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features {
    justify-content: center;
  }

  .btn-group {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }

  .about-stats {
    right: 50%;
    transform: translateX(50%);
    bottom: -3.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .section {
    padding: 5.5rem 0;
  }

  .navbar .container {
    height: 70px; /* Mobilde daha kibar ve premium bir header yüksekliği */
  }

  .header-fixed.scrolled .navbar .container {
    height: 70px;
  }

  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px; /* Navbar yüksekliği ile hizalı */
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-deep);
    flex-direction: column;
    padding: 3.5rem 2rem;
    gap: 2.2rem;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-muted);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    overflow-y: auto;
  }

  .header-fixed.scrolled .nav-menu {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .contact-form-wrapper {
    padding: 2.5rem 2rem;
  }
}

/* ==========================================================================
   BLOG / MARKA TAMİR SAYFALARI TASARIMLARI
   ========================================================================== */
.blog-hero {
  padding: 13.5rem 0 6rem 0;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--bg-card) 100%);
  border-bottom: 1px solid var(--border-muted);
  position: relative;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-meta svg {
  color: var(--color-primary);
}

.blog-hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.blog-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.blog-content {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.85;
}

.blog-content p {
  margin-bottom: 2rem;
}

.blog-content h2 {
  font-size: 1.9rem;
  margin: 4rem 0 1.5rem 0;
  color: var(--text-dark);
  border-left: 5px solid var(--color-primary);
  padding-left: 1.2rem;
  font-family: var(--font-heading);
}

.blog-content h3 {
  font-size: 1.45rem;
  margin: 3rem 0 1.2rem 0;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

.blog-content ul {
  margin-bottom: 2rem;
  padding-left: 1.8rem;
}

.blog-content li {
  list-style: square;
  margin-bottom: 0.8rem;
}

.blog-content blockquote {
  background-color: var(--bg-card);
  border-left: 4px solid var(--color-primary);
  padding: 2rem;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin: 3rem 0;
  border-radius: 0 20px 20px 0;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.01);
}

.blog-cta-box {
  background: var(--color-primary-light);
  border: 1px solid var(--border-light);
  padding: 3.5rem;
  border-radius: 28px;
  margin: 4.5rem 0;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.blog-cta-box h3 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.blog-cta-box p {
  color: var(--text-muted);
  margin-bottom: 2.2rem;
}

.blog-back-btn {
  display: inline-flex;
  aria-label: "Ana Sayfaya Dön";
  align-items: center;
  gap: 0.6rem;
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  transition: var(--transition-fast);
}

.blog-back-btn:hover {
  color: var(--color-primary);
  transform: translateX(-5px);
}

/* ==========================================================================
   VİDEO GALERİSİ / CAROUSEL TASARIMI
   ========================================================================== */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
}

.video-row {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1.5rem 0.5rem;
  width: 100%;
  scrollbar-width: none; /* Firefox için barı gizle */
}

.video-row::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Edge için barı gizle */
}

.video-card {
  flex: 0 0 320px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-muted);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--color-primary);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 En-Boy Oranı */
  background-color: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--text-white);
  border: 1px solid var(--border-muted);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--color-primary);
  color: var(--text-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-premium);
}

.carousel-btn.prev {
  left: -25px;
}

.carousel-btn.next {
  right: -25px;
}

@media (max-width: 768px) {
  .carousel-wrapper {
    margin-bottom: 2.5rem;
  }
  .carousel-btn {
    display: none; /* Mobilde butonları gizle, kaydırarak geçişi destekle */
  }
  .video-card {
    flex: 0 0 280px;
  }
  .video-row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .blog-hero {
    padding: 8.5rem 0 4rem 0; /* Mobilde daha dengeli üst boşluk */
  }
}


