/* ==============================================================================
   Vedat Baltaoğlu Hazır Beton & İnşaat (vbi.com.tr) - Resmi Web Sitesi Stilleri
   Tasarım Dili: Güçlü Endüstriyel Dayanıklılık, Modern Beton & Çelik Geometrisi,
                 Yüksek Kontrastlı Güvenlik Amberi & Antrasit Slate
   ============================================================================== */

:root {
  /* Renk Paleti */
  --bg-dark: #0B111E;
  --bg-dark-secondary: #131D2F;
  --bg-card: rgba(19, 29, 47, 0.82);
  --bg-card-hover: rgba(28, 42, 68, 0.95);
  --bg-card-solid: #152033;
  
  /* Endüstriyel Beton Grisi & Slate */
  --concrete-light: #E2E8F0;
  --concrete-slate: #64748B;
  --concrete-dark: #334155;
  --concrete-deep: #1E293B;

  /* Vurgu & Emniyet Turuncusu / İnşaat Amberi (VBI Identity) */
  --primary-orange: #FF6B00;
  --primary-orange-light: #FF882E;
  --primary-orange-dark: #D94E00;
  --accent-amber: #FFA800;
  --accent-amber-glow: rgba(255, 107, 0, 0.35);
  --accent-blue: #0284C7;
  --accent-green: #10B981;

  /* Tipografi Renkleri */
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --text-inverse: #0B111E;

  /* Kenarlıklar */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.12);
  --border-orange: rgba(255, 107, 0, 0.45);
  --border-active: #FF6B00;

  /* Gölgeler */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.65);
  --shadow-orange: 0 8px 28px rgba(255, 107, 0, 0.35);

  /* Tipografi Ailesi */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Geçişler */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-dark);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(255, 107, 0, 0.08) 0%, transparent 60%),
    url('../img/concrete-pattern.svg');
  background-repeat: repeat;
  min-height: 100vh;
}

/* Tipografi */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
  font-size: 1.025rem;
  line-height: 1.7;
}

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

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

svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
}

/* Konteyner & Izgara */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

/* Bölüm Başlığı */
.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-amber);
  background: rgba(255, 168, 0, 0.1);
  border: 1px solid rgba(255, 168, 0, 0.25);
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-tag svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-title .text-gradient {
  background: linear-gradient(135deg, #FFF 20%, var(--primary-orange-light) 70%, var(--accent-amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* ==============================================================================
   Üst Bilgi Çubuğu (Top Bar)
   ============================================================================== */
.top-bar {
  background: #070B14;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.55rem 0;
}

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

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

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

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

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

.badge-247 {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.15rem 0.6rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.75rem;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
  animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

@media (max-width: 900px) {
  .top-bar-left .hide-mobile {
    display: none;
  }
}

/* ==============================================================================
   Ana Gezinme Çubuğu (Navbar)
   ============================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 17, 30, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
  padding: 0.85rem 0;
}

.navbar.scrolled {
  padding: 0.6rem 0;
  background: rgba(9, 14, 25, 0.98);
  border-bottom-color: rgba(255, 107, 0, 0.25);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  padding: 0.15rem 0;
  transition: transform var(--transition-fast);
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.brand-emblem-img {
  height: 42px;
  width: auto;
  max-width: 76px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-emblem-img {
  transform: scale(1.04);
}

.brand-title {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 1.30rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
  line-height: 1;
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  transition: all var(--transition-fast);
}

.brand-logo:hover .brand-title {
  color: #FFFFFF;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.4);
}

.brand-name,
.brand-beton {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
  text-shadow: inherit;
}

@media (max-width: 991px) {
  .brand-emblem-img {
    height: 38px;
  }
  .brand-title {
    font-size: 1.12rem;
  }
}

@media (max-width: 480px) {
  .brand-emblem-img {
    height: 34px;
  }
  .brand-title {
    font-size: 0.92rem;
  }
}

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

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: color var(--transition-fast);
}

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Düğmeler */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 107, 0, 0.5);
  background: linear-gradient(135deg, var(--primary-orange-light) 0%, var(--primary-orange) 100%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border-color: var(--border-card);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 6px;
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}

/* Mobil Hamburger Menü */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 1080px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: #0F172A;
    border-bottom: 2px solid var(--primary-orange);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-normal);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
  }

  .nav-menu.mobile-active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-actions .btn-header-cta {
    display: none;
  }
}

/* ==============================================================================
   Hero Bölümü (Giriş)
   ============================================================================== */
.hero-section {
  position: relative;
  padding: 6rem 0 5rem 0;
  overflow: hidden;
  background: 
    radial-gradient(ellipse at 85% 20%, rgba(255, 107, 0, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse at 15% 70%, rgba(2, 132, 199, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, rgba(11, 17, 30, 0.4) 0%, var(--bg-dark) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.35);
  color: var(--primary-orange-light);
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-title .highlight {
  color: var(--primary-orange);
  text-shadow: 0 0 35px rgba(255, 107, 0, 0.4);
}

.hero-desc {
  font-size: 1.2rem;
  color: #CBD5E1;
  margin-bottom: 2.2rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Canlı Tesis İstatistik Çubuğu */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: rgba(19, 29, 47, 0.7);
  border: 1px solid var(--border-card);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

@media (max-width: 640px) {
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

.stat-item {
  text-align: left;
  border-right: 1px solid var(--border-subtle);
  padding-right: 1rem;
}

.stat-item:last-child {
  border-right: none;
}

.stat-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-orange);
  font-family: var(--font-mono);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Hero Sağ Taraf (Görsel Kart & Canlı Santral Durumu) */
.hero-visual-card {
  position: relative;
  background: linear-gradient(145deg, #162238 0%, #0E1624 100%);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255,107,0,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.card-top-tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.card-top-tag span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #10B981;
  background: rgba(16, 185, 129, 0.15);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.hero-illustration {
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==============================================================================
   Hızlı Araçlar Şeridi (Quick Tools Strip - Metraj, Beton, Laboratuvar)
   ============================================================================== */
.quick-tools-strip {
  padding: 1.5rem 0;
  background: linear-gradient(180deg, rgba(11, 15, 25, 0.95) 0%, rgba(17, 24, 39, 0.95) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 107, 0, 0.15);
  position: relative;
  z-index: 10;
}

.quick-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 991px) {
  .quick-tools-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.quick-tool-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: all var(--transition-normal);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.quick-tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-orange);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.quick-tool-card:hover {
  border-color: rgba(255, 107, 0, 0.5);
  background: rgba(30, 41, 59, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.quick-tool-card:hover::before {
  opacity: 1;
}

.quick-tool-icon {
  width: 52px;
  min-width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  flex-shrink: 0;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.quick-tool-card:hover .quick-tool-icon {
  background: var(--primary-orange);
  color: #FFFFFF;
}

.quick-tool-icon svg {
  width: 26px !important;
  height: 26px !important;
  max-width: 26px !important;
  max-height: 26px !important;
  flex-shrink: 0;
}

.quick-tool-info {
  flex: 1;
  min-width: 0;
}

.quick-tool-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-amber);
  margin-bottom: 0.25rem;
}

.quick-tool-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.3rem;
  transition: color var(--transition-fast);
}

.quick-tool-card:hover .quick-tool-info h4 {
  color: var(--primary-orange);
}

.quick-tool-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.quick-tool-arrow {
  width: 24px;
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all var(--transition-fast);
  flex-shrink: 0;
  overflow: hidden;
}

.quick-tool-arrow svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  flex-shrink: 0;
}

.quick-tool-card:hover .quick-tool-arrow {
  color: var(--primary-orange);
  transform: translateX(4px);
}

/* Ara Serpiştirilen Köprü Kartı (Section Bridge Card) */
.section-bridge-card {
  margin-top: 3rem;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(22, 34, 56, 0.6) 100%);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: 14px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

@media (max-width: 900px) {
  .section-bridge-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.25rem;
  }
}

.bridge-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-orange);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.bridge-content h3 {
  font-size: 1.3rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.bridge-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  max-width: 650px;
}

.hero-photo-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin: 1.25rem 0;
  border: 1px solid var(--border-card);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  background: #000;
}

.hero-real-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.hero-photo-wrap:hover .hero-real-img {
  transform: scale(1.05);
}

.photo-caption-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(11, 17, 30, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 107, 0, 0.4);
  color: #FFFFFF;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.fleet-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-card);
  height: 210px;
  background: #0D1626;
}

.fleet-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.fleet-card:hover .fleet-real-img,
.group-card:hover .fleet-real-img {
  transform: scale(1.06);
}

.fleet-caption-tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(11, 17, 30, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.plant-spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.spec-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  display: flex;
  flex-direction: column;
}

.spec-pill-title {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.spec-pill-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 0.15rem;
}

/* ==============================================================================
   İnteraktif Beton Metraj ve Mikser Hesaplayıcı
   ============================================================================== */
.calculator-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 50%, var(--bg-dark) 100%);
  position: relative;
}

.calc-wrapper {
  background: rgba(19, 29, 47, 0.95);
  border: 1px solid var(--border-orange);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 107, 0, 0.15);
  padding: 2.5rem;
  backdrop-filter: blur(12px);
}

@media (max-width: 768px) {
  .calc-wrapper {
    padding: 1.5rem;
  }
}

.calc-type-selector {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.2rem;
}

@media (max-width: 1024px) {
  .calc-type-selector {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .calc-type-selector {
    grid-template-columns: repeat(2, 1fr);
  }
}

.calc-type-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  padding: 0.85rem 0.5rem;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
  text-align: center;
}

.calc-type-btn svg {
  width: 24px;
  height: 24px;
  color: var(--concrete-slate);
  transition: color var(--transition-fast);
}

.calc-type-btn span {
  font-size: 0.85rem;
  font-weight: 700;
}

.calc-type-btn:hover {
  background: rgba(255, 107, 0, 0.1);
  border-color: rgba(255, 107, 0, 0.4);
  color: var(--text-main);
}

.calc-type-btn.active {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.25) 0%, rgba(255, 107, 0, 0.1) 100%);
  border-color: var(--primary-orange);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.3);
}

.calc-type-btn.active svg {
  color: var(--primary-orange);
}

.calc-body-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .calc-body-grid {
    grid-template-columns: 1fr;
  }
}

.calc-inputs-pane {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.input-group-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-label .unit-badge {
  color: var(--accent-amber);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.calc-input {
  background: #0B111E;
  border: 1px solid var(--border-card);
  color: #FFFFFF;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.calc-input:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.25);
}

.select-input {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

/* Hesap Sonuç Paneli */
.calc-results-pane {
  background: #0A101C;
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
}

.res-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.res-header h4 {
  font-size: 1.15rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.res-header h4 svg {
  color: var(--primary-orange);
  width: 20px;
  height: 20px;
}

.main-volume-box {
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.35);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.volume-val {
  font-size: 3.2rem;
  font-weight: 900;
  font-family: var(--font-mono);
  color: var(--primary-orange);
  line-height: 1;
}

.volume-val span {
  font-size: 1.6rem;
  color: var(--accent-amber);
  margin-left: 0.35rem;
}

.volume-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.breakdown-row .label {
  color: var(--text-muted);
}

.breakdown-row .val {
  font-weight: 700;
  color: #FFFFFF;
}

.breakdown-row .val.highlight {
  color: var(--accent-amber);
}

.calc-action-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ==============================================================================
   Beton Sınıfları ve Teknik Portföy
   ============================================================================== */
.classes-section {
  background-color: var(--bg-dark);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
}

.filter-btn.active {
  background: var(--primary-orange);
  color: #FFFFFF;
  border-color: var(--primary-orange);
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.35);
}

.concrete-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.75rem;
}

@media (max-width: 420px) {
  .concrete-cards-grid {
    grid-template-columns: 1fr;
  }
}

.concrete-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 1.8rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.concrete-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-orange), var(--accent-amber));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.concrete-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-orange);
  box-shadow: var(--shadow-md);
  background: var(--bg-card-hover);
}

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

.card-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.concrete-badge {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
}

.concrete-category-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-amber);
}

.concrete-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.specs-mini-table {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 0.85rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.spec-mini-item {
  display: flex;
  flex-direction: column;
}

.spec-mini-label {
  font-size: 0.725rem;
  color: var(--text-dim);
  text-transform: uppercase;
}

.spec-mini-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
}

.card-actions-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

/* ==============================================================================
   Tesis, Pompa & Transmikser Filosu (Fleet & Plant)
   ============================================================================== */
.fleet-section {
  background: var(--bg-dark-secondary);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 960px) {
  .fleet-grid {
    grid-template-columns: 1fr;
  }
}

.fleet-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.fleet-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-orange);
  box-shadow: var(--shadow-md);
}

.fleet-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.fleet-icon-wrap img, .fleet-icon-wrap svg {
  width: 44px;
  height: 44px;
}

.fleet-card-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.fleet-stat-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.fleet-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.fleet-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.925rem;
  color: var(--text-muted);
}

.fleet-feature-item svg {
  width: 18px;
  height: 18px;
  color: #10B981;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==============================================================================
   Kalite Kontrol ve Laboratuvar Test Süreci (Workflow)
   ============================================================================== */
.quality-section {
  background-color: var(--bg-dark);
}

.cert-banner {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(255, 107, 0, 0.15) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.cert-content {
  max-width: 680px;
}

.cert-content h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.cert-badge-img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

@media (max-width: 1024px) {
  .workflow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .workflow-steps {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 1.8rem;
  position: relative;
  transition: all var(--transition-normal);
}

.step-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
}

.step-number {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255, 107, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary-orange);
}

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

.step-title {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

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

/* ==============================================================================
   Hizmet Bölgeleri (Sakarya & Marmara)
   ============================================================================== */
.locations-section {
  background: var(--bg-dark-secondary);
}

.districts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .districts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .districts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.district-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition-fast);
}

.district-pill:hover {
  border-color: var(--primary-orange);
  background: rgba(255, 107, 0, 0.1);
  transform: translateX(4px);
}

.district-pill svg {
  width: 18px;
  height: 18px;
  color: var(--primary-orange);
  flex-shrink: 0;
}

.district-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.district-sub {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ==============================================================================
   Grup Şirketleri & Referanslar (History & Projects)
   ============================================================================== */
.group-section {
  background: var(--bg-dark);
}

.group-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 960px) {
  .group-cards-grid {
    grid-template-columns: 1fr;
  }
}

.group-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 2rem;
}

.group-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-amber);
  background: rgba(255, 168, 0, 0.12);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.group-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.project-ref-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.project-ref-item {
  border-left: 2px solid var(--primary-orange);
  padding-left: 0.75rem;
}

.project-ref-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
}

.project-ref-client {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==============================================================================
   Online Teklif & Sipariş Formu
   ============================================================================== */
.quote-section {
  background: linear-gradient(180deg, var(--bg-dark-secondary) 0%, var(--bg-dark) 100%);
}

.quote-box {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 3rem;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .quote-box {
    padding: 1.75rem;
  }
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

.full-width {
  grid-column: 1 / -1;
}

.quote-textarea {
  min-height: 110px;
  resize: vertical;
}

.radio-group {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding-top: 0.5rem;
}

.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-main);
  cursor: pointer;
}

.radio-label input[type="radio"] {
  accent-color: var(--primary-orange);
  width: 18px;
  height: 18px;
}

/* ==============================================================================
   Sıkça Sorulan Sorular (SSS - Accordion)
   ============================================================================== */
.faq-section {
  background-color: var(--bg-dark);
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary-orange);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.35rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-main);
  font-size: 1.05rem;
  font-weight: 700;
  gap: 1rem;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--primary-orange);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
}

/* ==============================================================================
   İletişim & Lokasyon & Google Maps
   ============================================================================== */
.contact-section {
  background: var(--bg-dark-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3rem;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

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

.contact-card-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 1.35rem;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

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

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

.map-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) contrast(90%);
}

/* ==============================================================================
   Alt Bilgi (Footer)
   ============================================================================== */
.site-footer {
  background: #060A12;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem 0;
}

/* Footer Üstü 3'lü Hızlı Araç Şeridi (Metraj, Beton, Laboratuvar) */
.footer-feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .footer-feature-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.footer-feature-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer-feature-item:hover {
  background: rgba(255, 107, 0, 0.1);
  border-color: var(--primary-orange);
  transform: translateY(-2px);
}

.footer-feature-item svg {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  color: var(--primary-orange);
  flex-shrink: 0;
}

.footer-feature-item div strong {
  display: block;
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.footer-feature-item div span {
  font-size: 0.825rem;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col h4 {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: #FFFFFF;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--primary-orange);
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.925rem;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ==============================================================================
   Yüzen Butonlar (Floating Actions: WhatsApp & Call)
   ============================================================================== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  color: #FFFFFF;
}

.float-btn:hover {
  transform: scale(1.08);
}

.float-whatsapp {
  background: #25D366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.float-call {
  background: var(--primary-orange);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.45);
}

.float-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Toast Bildirim */
.toast-notice {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1E293B;
  border: 1px solid var(--primary-orange);
  color: #FFFFFF;
  padding: 1rem 1.75rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 2000;
  opacity: 0;
  transition: all var(--transition-normal);
  pointer-events: none;
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
