/* ==========================================================
   DEPOLAR.NET - Modern Tasarım Sistemi & Çekirdek CSS
   Renkler: Derin Lacivert (#0A192F, #0F172A) + Turuncu Vurgu (#FF6B00, #F59E0B)
   Tipografi: Inter, system-ui
   ========================================================== */

:root {
  --primary-navy: #0A192F;
  --primary-navy-dark: #050C1A;
  --primary-navy-light: #172A45;
  --accent-orange: #FF6B00;
  --accent-orange-hover: #E05D00;
  --accent-yellow: #F59E0B;
  --accent-blue: #2563EB;
  --accent-green: #10B981;
  --accent-whatsapp: #25D366;
  
  --bg-body: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-subtle: #F1F5F9;
  
  --text-dark: #0F172A;
  --text-medium: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  
  --border-color: #E2E8F0;
  --border-hover: #CBD5E1;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sıfırlama ve Temel */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-medium);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================
   HEADER MİMARİSİ:
   1. Top Bar
   2. Header Middle (Logo, İletişim, Hızlı RFQ)
   3. Logo Altı Yatay Menü (Masaüstü Özel)
   ========================================================== */

/* 1. Top Bar */
.top-bar {
  background-color: var(--primary-navy-dark);
  color: #94A3B8;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.top-bar a {
  color: #E2E8F0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar a:hover {
  color: var(--accent-orange);
}

.top-bar-badge {
  background: rgba(255, 107, 0, 0.15);
  color: var(--accent-orange);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

.phone-link-highlight {
  color: #FFFFFF !important;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.phone-link-highlight i {
  color: var(--accent-orange);
}

.whatsapp-link-highlight {
  color: #25D366 !important;
  font-weight: 600;
}

/* 2. Header Middle (Logo ve Aksiyonlar) */
.header-middle {
  background-color: #FFFFFF;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.header-middle-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(10, 25, 47, 0.2);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--primary-navy);
  line-height: 1.1;
}

.brand-name span {
  color: var(--accent-orange);
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Header Middle Sağ Butonlar */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.call-center-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F8FAFC;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.call-center-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.call-center-info {
  display: flex;
  flex-direction: column;
}

.call-center-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.call-center-num {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.btn-rfq {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #FF8A08 100%);
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

.btn-rfq:hover {
  background: var(--accent-orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.35);
}

/* ==========================================================
   3. LOGO ALTI MENÜ (MASAÜSTÜ İÇİN ÖZEL TASARIM)
   Menü uzun olduğu için logo altına tam genişlikte yerleştirildi
   ========================================================== */
.main-nav-bar {
  background-color: var(--primary-navy);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(10, 25, 47, 0.15);
  position: relative;
  z-index: 100;
}

.main-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  color: #E2E8F0;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.nav-link i {
  font-size: 0.9rem;
  opacity: 0.8;
  color: var(--accent-yellow);
}

.nav-link:hover, .nav-item.active .nav-link {
  color: #FFFFFF;
  background-color: var(--primary-navy-light);
  border-bottom-color: var(--accent-orange);
}

.nav-badge-ai {
  background: linear-gradient(135deg, #FF6B00 0%, #FF007A 100%);
  color: #FFF;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Açılır Menüler (Dropdowns) */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #FFFFFF;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  list-style: none;
  padding: 10px 0;
  border: 1px solid var(--border-color);
  border-top: 2px solid var(--accent-orange);
  z-index: 200;
}

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

.dropdown-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 500;
}

.dropdown-item a:hover {
  background: #F8FAFC;
  color: var(--accent-orange);
  padding-left: 24px;
}

.dropdown-item i {
  color: var(--text-muted);
  width: 18px;
  text-align: center;
}

.dropdown-item a:hover i {
  color: var(--accent-orange);
}

/* Menü Sağ Hızlı Buton */
.nav-right-cta {
  display: flex;
  align-items: center;
}

.btn-owner {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-owner:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #FFF;
}

/* ==========================================================
   4. MOBİL HAMBURGER MENÜ VE OFFCANVAS
   ========================================================== */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--primary-navy);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 6px;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100%;
  background: #FFFFFF;
  z-index: 999;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.active {
  transform: translateX(320px);
}

.drawer-header {
  padding: 18px 20px;
  background: var(--primary-navy);
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #FFFFFF;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.drawer-body {
  padding: 20px;
  flex: 1;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background: #F1F5F9;
  color: var(--accent-orange);
}

.mobile-nav-link i {
  color: var(--accent-orange);
  width: 24px;
}

.mobile-cta-box {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-mobile-call {
  background: var(--primary-navy);
  color: #FFFFFF;
  padding: 12px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-mobile-wa {
  background: var(--accent-whatsapp);
  color: #FFFFFF;
  padding: 12px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ==========================================================
   5. HERO BÖLÜMÜ & AKILLI ARAMA FORMU
   ========================================================== */
.hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #112240 60%, #1E3E62 100%);
  color: #FFFFFF;
  padding: 60px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.15), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--accent-yellow);
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-title span {
  color: var(--accent-orange);
}

.hero-desc {
  font-size: 1.15rem;
  color: #CBD5E1;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Ana Arama Kutusu (Booking / Airbnb Stili) */
.hero-search-container {
  background: #FFFFFF;
  padding: 12px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.search-field {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  padding: 8px 16px;
  background: #F8FAFC;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  text-align: left;
}

.search-field:focus-within {
  border-color: var(--accent-orange);
  background: #FFFFFF;
}

.search-field label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.search-field select, .search-field input {
  border: none;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  outline: none;
  width: 100%;
}

.btn-hero-search {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #FF8A08 100%);
  color: #FFFFFF;
  border: none;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.35);
}

.btn-hero-search:hover {
  background: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.45);
}

/* Hızlı Arama Etiketleri */
.quick-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: #94A3B8;
  flex-wrap: wrap;
}

.quick-tag {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.quick-tag:hover {
  background: var(--accent-orange);
  color: #FFF;
}

/* ==========================================================
   6. DEPOAI BANNER & ALAN HESAPLAMA WIDGET
   ========================================================== */
.ai-advisor-strip {
  background: linear-gradient(90deg, #1E3E62 0%, #0A192F 100%);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  margin: -40px auto 40px auto;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
  flex-wrap: wrap;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-strip-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ai-icon-pulse {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #FF6B00 0%, #FF007A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.ai-strip-text h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.ai-strip-text p {
  font-size: 0.88rem;
  color: #CBD5E1;
}

.btn-ai-calc {
  background: #FFFFFF;
  color: var(--primary-navy);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-ai-calc:hover {
  background: var(--accent-yellow);
  color: var(--primary-navy-dark);
  transform: translateY(-2px);
}

/* ==========================================================
   7. KARTLAR & LİSTELEME
   ========================================================== */
.section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.section-tag {
  color: var(--accent-orange);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-navy);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Depo Grid & Kart */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.facility-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: #CBD5E1;
}

.card-img-wrap {
  position: relative;
  height: 220px;
  background: #E2E8F0;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.facility-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.card-verified-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-verified-badge i {
  color: var(--accent-green);
}

.card-score-badge {
  position: absolute;
  top: 14px;
  right: 14px;
}

.card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.card-location i {
  color: var(--accent-orange);
}

.card-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.feat-tag {
  background: #F1F5F9;
  color: var(--text-medium);
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-price-box {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.price-val {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary-navy);
}

.price-val small {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-card-detail {
  background: var(--primary-navy);
  color: #FFFFFF;
  padding: 9px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
}

.btn-card-detail:hover {
  background: var(--accent-orange);
  color: #FFF;
}

.btn-compare-add {
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  color: var(--text-medium);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-compare-add:hover {
  background: #E2E8F0;
  color: var(--primary-navy);
}

/* ==========================================================
   8. DEPOSCORE ROZETLERİ
   ========================================================== */
.deposcore-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--primary-navy);
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: var(--radius-md);
  border: 2px solid var(--accent-orange);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  min-width: 68px;
  text-align: center;
}

.score-title {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-yellow);
}

.score-val {
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}

.score-label {
  font-size: 0.6rem;
  color: #E2E8F0;
}

/* ==========================================================
   9. FOOTER
   ========================================================== */
.site-footer {
  background-color: var(--primary-navy-dark);
  color: #94A3B8;
  padding: 60px 0 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--accent-orange);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--accent-orange);
  margin-top: 4px;
}

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

/* WhatsApp Floating Butonu */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent-whatsapp);
  color: #FFFFFF;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
  color: #FFF;
}
