:root {
  --primary: #ffc107;
  --primary-hover: #ffb300;
  --secondary: #1a1a1a;
  --light: #f8f9fa;
  --dark: #212529;
  --text: #495057;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

/* =========================================================
   BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--text);
  overflow-x: hidden;
  padding-bottom: 60px; /* mobil sticky bar için boşluk */
}

@media (min-width: 992px) { body { padding-bottom: 0; } }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary);
}

a { text-decoration: none; transition: all 0.3s ease; }

img { max-width: 100%; }

/* =========================================================
   UTILITY OVERRIDES
   ========================================================= */
.text-primary  { color: var(--primary) !important; }
.bg-primary    { background-color: var(--primary) !important; }
.bg-dark       { background-color: var(--secondary) !important; }
.border-primary{ border-color: var(--primary) !important; }

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--secondary);
}

.btn-outline-primary {
  color: var(--secondary);
  border-color: var(--primary);
  border-width: 2px;
}
.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--secondary);
}

/* =========================================================
   TOPBAR
   ========================================================= */
.topbar {
  background: var(--secondary);
  color: #ccc;
  font-size: 0.875rem;
  padding: 6px 0;
}
.topbar a { color: #ccc; }
.topbar a:hover { color: var(--primary); }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  padding: 14px 0;
  transition: all 0.3s ease;
}
.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--secondary);
}
.nav-link {
  font-weight: 600;
  color: var(--secondary);
  margin: 0 4px;
  text-transform: uppercase;
  font-size: 0.85rem;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary);
  bottom: -4px;
  left: 0;
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  position: relative;
  background:
    linear-gradient(rgba(20,20,20,0.82), rgba(20,20,20,0.75)),
    url('../img/hero-bg.jpg') center / cover no-repeat;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: white;
}

.hero-title {
  color: white;
  font-size: clamp(2rem, 5vw, 3.75rem);
  text-transform: uppercase;
  line-height: 1.1;
}
.hero-subtitle { font-size: clamp(1.2rem, 3vw, 1.8rem); }

.hero-btns .btn {
  padding: 14px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================================
   PULSE ANIMATION (CTA Butonlar için)
   ========================================================= */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.6); }
  70%  { box-shadow: 0 0 0 18px rgba(255, 193, 7, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

.pulse-btn {
  animation: pulse-ring 2s infinite;
}
.pulse-btn:hover { animation: none; }

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar { border-top: 3px solid var(--primary); }

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.service-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-bottom-color: var(--primary);
}
.service-icon {
  width: 80px;
  height: 80px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--primary);
  transition: all 0.3s ease;
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--secondary);
}

/* Contact Icon Box — Hizmetler ikonlarıyla aynı stil */
.contact-icon-box {
  width: 70px;
  height: 70px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.contact-icon-box:hover {
  background: var(--primary);
  color: var(--secondary);
}

/* =========================================================
   PAGE HEADER (inner pages hero)
   ========================================================= */
.page-header {
  background:
    linear-gradient(rgba(20,20,20,0.88), rgba(20,20,20,0.8)),
    url('../img/hero-bg.jpg') center / cover no-repeat;
  padding: 100px 0 60px;
  text-align: center;
  color: white;
}
.page-header h1 { color: white; text-transform: uppercase; }

/* =========================================================
   REGION PILLS
   ========================================================= */
.region-pill {
  display: inline-block;
  padding: 10px 22px;
  background: white;
  border: 2px solid #dee2e6;
  border-radius: 50px;
  color: var(--text);
  font-weight: 500;
  transition: all 0.3s ease;
}
.region-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--secondary);
  transform: translateY(-2px);
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: white; font-size: 2.2rem; }

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  background: var(--primary);
  padding: 80px 0;
  color: var(--secondary);
}
.cta-section h2 { color: var(--secondary); }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--secondary);
  color: #ccc;
  padding: 60px 0 20px;
}
footer h3, footer h4 { color: white; margin-bottom: 20px; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #ccc; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }

.footer-contact div { margin-bottom: 12px; }
.footer-contact span { color: #ccc; }
.footer-contact a { color: #ccc; }

.copyright {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  margin-top: 40px;
}

/* =========================================================
   WHATSAPP FLOATING BUTTON — PULSE
   ========================================================= */
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
  position: fixed;
  width: 62px;
  height: 62px;
  bottom: 80px;
  right: 28px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: wa-pulse 2.2s infinite;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  color: white;
  transform: scale(1.12);
  animation: none;
}

@media (max-width: 991px) {
  .whatsapp-float { bottom: 80px; right: 16px; }
}

/* =========================================================
   MOBİL STICKY CALL BAR
   ========================================================= */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  display: flex;
  height: 60px;
  box-shadow: 0 -3px 12px rgba(0,0,0,0.2);
}

.sticky-call-btn,
.sticky-wa-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: filter 0.2s ease;
}
.sticky-call-btn:hover, .sticky-wa-btn:hover { filter: brightness(0.9); }

.sticky-call-btn {
  background: var(--primary);
  color: var(--secondary);
}
.sticky-wa-btn {
  background: #25d366;
  color: white;
}

/* =========================================================
   BREADCRUMB
   ========================================================= */
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active { color: #6c757d; }
.breadcrumb-item + .breadcrumb-item::before { color: #adb5bd; }

/* =========================================================
   ANIMATE ON SCROLL
   ========================================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
  .hero { min-height: 100svh; }
  .hero-title { font-size: 2.2rem; }
  .hero-btns .btn { width: 100%; }
  .trust-bar .col-6 { border-right: none !important; }
  .page-header { padding: 80px 0 40px; }
}
