/* 
 * Bişkin Forklift & Liman Hizmetleri
 * Modern & Premium Industrial Design System Stylesheet
 */

/* Import Google Fonts - Plus Jakarta Sans & Outfit */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* Base Styles */
html, body {
  background: #f8f9fa; /* Sleek bright bone gray */
  color: #090707;      /* Ink color */
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.font-display {
  font-family: 'Outfit', system-ui, sans-serif;
  letter-spacing: -0.015em;
}

/* Subtle hatch pattern for industrial sections */
.hatch {
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 9px);
}
.hatch-dark {
  background-image: repeating-linear-gradient(135deg, rgba(0,0,0,0.03) 0 1px, transparent 1px 9px);
}

/* Premium Gradient Layout Divider */
.stripe-y {
  background: linear-gradient(90deg, #11527e 0%, #1b7ec7 50%, #0a3654 100%);
  position: relative;
  overflow: hidden;
}
.stripe-y::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: stripe-shine 8s infinite linear;
}
@keyframes stripe-shine {
  0% { left: -100%; }
  30%, 100% { left: 150%; }
}

/* Eyebrow - Modern Pill / Badge styling */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #11527e;
  background: rgba(17,82,126,0.06);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(17,82,126,0.12);
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #11527e;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}

.eyebrow-light {
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}
.eyebrow-light::before {
  background: #1b7ec7;
}

/* Sleek Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.6rem;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: 8px; /* Rounded corners */
  transition: all .25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1.5px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #11527e 0%, #0a3654 100%);
  color: #fff;
  border: 1px solid rgba(17,82,126,0.2);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #1b7ec7 0%, #11527e 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(17,82,126,0.35);
}

.btn-ghost {
  background: rgba(255,255,255,0.03);
  color: #fff;
  border-color: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: #1b7ec7;
  color: #fff;
  background: rgba(27,126,199,0.15);
  transform: translateY(-2px);
}

.btn-dark {
  background: linear-gradient(135deg, #1a1616 0%, #090707 100%);
  color: #fff;
  border: 1px solid rgba(0,0,0,0.2);
}
.btn-dark:hover {
  background: linear-gradient(135deg, #2b2525 0%, #1a1616 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(9,7,7,0.25);
}

/* Translucent Glassmorphic Header Nav */
header {
  backdrop-filter: blur(16px) !important;
  background-color: rgba(9,7,7,0.88) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

header nav a {
  position: relative;
  transition: color 0.25s ease;
}
header nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: #1b7ec7;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
header nav a:hover::after,
header nav a.text-accent::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Section number badge */
.secnum {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .18em;
  color: #1b7ec7;
}

/* Modern Card Overhauls */
.svc-card {
  border-radius: 16px !important;
  background: #ffffff;
  border: 1px solid rgba(9,7,7,0.05) !important;
  border-left: 4px solid transparent !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.015);
  position: relative;
  overflow: hidden;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17,82,126,0.18) !important;
  border-left-color: #11527e !important;
  box-shadow: 0 20px 40px -15px rgba(17,82,126,0.12);
}

.svc-card .svc-arrow {
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-card:hover .svc-arrow {
  background: #11527e;
  color: #fff;
  transform: translateX(4px) scale(1.05);
}
.svc-card:hover i {
  animation: icon-wiggle 0.5s ease-in-out;
}

/* Specific Article Card Styling in Hizmetler.html */
article.border-ink\/10 {
  border-radius: 16px !important;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.015);
}
article.border-ink\/10:hover {
  transform: translateY(-6px);
  border-color: rgba(17,82,126,0.25) !important;
  box-shadow: 0 20px 40px -15px rgba(17,82,126,0.12);
}
article.border-ink\/10 .btn {
  border-radius: 8px !important;
}

/* Checklist icon styling */
.fa-check {
  color: #1b7ec7 !important;
}

/* Input & Form Styling Overrides */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  border-radius: 8px !important;
  border: 1px solid rgba(9,7,7,0.1) !important;
  background-color: rgba(255,255,255,0.02) !important;
  transition: all 0.3s ease !important;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-color: #1b7ec7 !important;
  box-shadow: 0 0 0 4px rgba(27,126,199,0.15) !important;
  background-color: #fff !important;
  outline: none !important;
}

/* Wiggle animation for inner card icons */
@keyframes icon-wiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-12deg); }
  75% { transform: rotate(12deg); }
}

/* Image zoom container styles */
.img-zoom-container {
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}
.img-zoom-container img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-zoom-container:hover img {
  transform: scale(1.05);
}

/* Marquee for trust bar */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track {
  animation: marquee 38s linear infinite;
}

/* Custom scrollbar inside sidepanels */
.sidepanel::-webkit-scrollbar {
  width: 8px;
}
.sidepanel::-webkit-scrollbar-thumb {
  background: #090707;
}

/* WhatsApp Floating Widget (Rounded premium styling) */
.whatsapp-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #25d366;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px !important; /* Rounded premium shape */
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3) !important;
  color: #fff;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  animation: pulse-green 2s infinite;
}

.whatsapp-floating:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45) !important;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
