/* BG Teknik Servis Frontend Aesthetic Design System */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --brand-primary: #16294a;
  --brand-primary-light: #1f3762;
  --brand-accent: #f05c22;
  --brand-accent-hover: #ff7a45;
  --brand-accent-text: #ffffff;
  --brand-heading: #16294a;
  --brand-text: #5b6478;
  --brand-surface: #ffffff;
  --brand-bg-light: #f2f3f9;
  --brand-line: #e5e8f0;
  --brand-dark: #101f3a;
  --brand-radius-card: 16px;
  --brand-radius-btn: 50px;
  --brand-shadow: 0 10px 30px rgba(22, 41, 74, 0.08);
  --brand-shadow-lg: 0 20px 40px rgba(16, 31, 58, 0.15);
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

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

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

/* TOP HEADER BAR (HIGH CONTRAST CRYSTAL CLEAR) */
.top-bar {
  background: #0f172a !important;
  color: #ffffff !important;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-info {
  display: flex;
  gap: 28px;
  align-items: center;
}
.top-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff !important;
  font-weight: 600;
}
.top-info-item i {
  color: var(--brand-accent, #f05c22) !important;
  font-size: 15px;
}
.top-right-group {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.top-social a {
  color: #ffffff !important;
  font-size: 14px;
  opacity: 0.85;
  transition: all 0.2s;
}
.top-social a:hover {
  opacity: 1;
  color: var(--brand-accent, #f05c22) !important;
}

/* MAIN NAVBAR & SAYDAM STICKY MODLARI */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.35s ease;
}

/* 1. STANDART BEYAZ ZEMİN */
.navbar.navbar-light {
  background: #ffffff !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08) !important;
}
.navbar.navbar-light .brand-logo-text { color: #0f172a !important; }
.navbar.navbar-light .brand-logo-sub { color: #475569 !important; }
.navbar.navbar-light .nav-link { color: #0f172a !important; }
.navbar.navbar-light .nav-phone-number { color: #0f172a !important; }

/* 2. KOYU ZEMİN */
.navbar.navbar-dark {
  background: #0f172a !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}
.navbar.navbar-dark .brand-logo-text { color: #ffffff !important; }
.navbar.navbar-dark .brand-logo-sub { color: #cbd5e1 !important; }
.navbar.navbar-dark .nav-link { color: #ffffff !important; }
.navbar.navbar-dark .nav-phone-number { color: #ffffff !important; }

/* 3. SAYDAM ZEMİN (HERO ÜZERİNDE SIFIR BOŞLUKLU BUZLU CAM EFEKTİ) */
.navbar.navbar-transparent {
  position: relative !important;
  top: 0 !important;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.88) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
  z-index: 1000;
}
.navbar.navbar-transparent .brand-logo-text { 
  color: #ffffff !important; 
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important; 
}
.navbar.navbar-transparent .brand-logo-sub { 
  color: #f1f5f9 !important; 
}
.navbar.navbar-transparent .nav-link { 
  color: #ffffff !important; 
  font-weight: 800 !important;
}
.navbar.navbar-transparent .nav-link i { 
  color: var(--brand-accent, #f05c22) !important; 
}
.navbar.navbar-transparent .nav-phone-number { 
  color: #ffffff !important; 
}
.navbar.navbar-transparent .nav-phone-widget div div:first-child { 
  color: #cbd5e1 !important; 
}

/* HERO SLIDER'I SAYDAM NAVBAR'IN ARKASINA ÇEKEREK SIFIR BEYAZ BOŞLUK SAĞLAR */
.navbar-transparent + .hero-slider,
.navbar-transparent ~ .hero-slider,
.navbar-transparent ~ main .hero-slider {
  margin-top: -85px !important;
}

.navbar-transparent + .hero-slider .hero-content-box,
.navbar-transparent ~ .hero-slider .hero-content-box,
.navbar-transparent ~ main .hero-slider .hero-content-box {
  padding-top: 110px !important;
}

/* SAYDAM HEADER SCROLL EDİLDİĞİNDE OTOMATİK SABİTLENEN (STICKY) FROSTED GLASS CAM MODU */
.navbar.navbar-transparent.is-scrolled {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: rgba(15, 23, 42, 0.96) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
  animation: slideDownNav 0.35s ease forwards;
}

@keyframes slideDownNav {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
  gap: clamp(10px, 1.5vw, 24px);
}
.brand-logo-text {
  color: #0f172a !important;
  font-weight: 900 !important;
}
.brand-logo-sub {
  color: #475569 !important;
  font-weight: 800 !important;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(16px, 1.4vw, 26px);
  font-weight: 800;
  color: #0f172a !important;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  white-space: nowrap;
}
.logo img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--brand-accent);
  border-radius: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.logo span {
  color: var(--brand-accent);
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: clamp(6px, 1.1vw, 24px);
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
}
.nav-menu > li {
  flex-shrink: 0;
}
.nav-link {
  font-weight: 800 !important;
  font-size: clamp(12px, 0.9vw, 15px) !important;
  color: #0f172a !important;
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-link:hover, .nav-link.active {
  color: var(--brand-accent, #f05c22) !important;
}

.nav-phone-widget {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-randevu {
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-phone-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(240, 92, 34, 0.1);
  color: var(--brand-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.btn-randevu {
  background: var(--brand-accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(240, 92, 34, 0.3);
}
.btn-randevu:hover {
  background: var(--brand-accent-soft);
  transform: translateY(-2px);
}

/* HERO SLIDER (EXACT DEMO14 MATCH) */
.hero-slider {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  transition: background-image 0.6s ease-in-out;
}
.hero-slider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #101f3a 0%, rgba(16, 31, 58, 0.92) 40%, rgba(16, 31, 58, 0.5) 75%, transparent 100%);
  z-index: 1;
}

.hero-content-box {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 70px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 16.5px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 35px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 45px;
}

.btn-hero-orange {
  background: var(--brand-accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(240, 92, 34, 0.4);
  text-decoration: none;
}
.btn-hero-orange:hover {
  background: var(--brand-accent-soft);
  transform: translateY(-2px);
}

.btn-hero-dark {
  background: #16294a;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-hero-dark:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #16294a;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

/* HERO SLIDER CONTROLS (ARROWS & PROGRESS LINES) */
.hero-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.hero-arrow-btn:hover {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
}

.hero-progress-lines {
  display: flex;
  gap: 8px;
  align-items: center;
}
.progress-line {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}
.progress-line.active {
  background: var(--brand-accent);
  width: 60px;
}

/* BOTTOM CERTIFICATE STRIP (DEMO14 MATCH) */
.cert-strip {
  background: var(--brand-dark);
  color: #cbd5e1;
  padding: 16px 0;
  font-size: 13.5px;
  font-weight: 700;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.cert-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cert-item i {
  color: var(--brand-accent);
  font-size: 16px;
}

/* FORM CONTROLS (ULTRA CLEAN FRONTEND STYLING) */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  width: 100%;
}

.form-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-primary);
  margin: 0;
}

.form-control {
  width: 100%;
  height: 50px;
  padding: 0 18px;
  border: 1.5px solid var(--brand-line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--brand-primary);
  background: #ffffff;
  outline: none;
  transition: all 0.25s ease;
}

.form-control:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 4px rgba(240, 92, 34, 0.12);
}

textarea.form-control {
  height: 110px;
  padding: 14px 18px;
  resize: vertical;
  line-height: 1.6;
}

.btn-primary {
  background: var(--brand-accent);
  color: #ffffff;
  border: none;
  height: 52px;
  padding: 0 28px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(240, 92, 34, 0.3);
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: var(--brand-accent-soft);
  box-shadow: 0 10px 25px rgba(240, 92, 34, 0.4);
  transform: translateY(-2px);
}

/* FAST BOOKING BAR */
.fast-booking-wrapper {
  margin-top: 30px;
  position: relative;
  z-index: 100;
}
.fast-booking-card {
  background: var(--brand-surface);
  border-radius: var(--brand-radius);
  padding: 24px 32px;
  box-shadow: var(--brand-shadow-lg);
  border: 1px solid var(--brand-line);
}
.fast-booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 20px;
  align-items: flex-end;
}

/* SECTION TITLES */
.section-padding {
  padding: 90px 0;
}
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px auto;
}
.section-subtitle {
  color: var(--brand-accent);
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--brand-primary);
  letter-spacing: -0.5px;
  line-height: 1.25;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--brand-surface);
  border-radius: var(--brand-radius);
  border: 1px solid var(--brand-line);
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--brand-shadow-lg);
  border-color: rgba(240, 92, 34, 0.3);
}
.service-icon {
  width: 65px;
  height: 65px;
  border-radius: var(--brand-radius-sm);
  background: rgba(240, 92, 34, 0.1);
  color: var(--brand-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 22px;
}
.service-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 14.5px;
  color: var(--brand-body);
  margin-bottom: 20px;
}
.service-link {
  color: var(--brand-accent);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* COUNTER STATS BAR */
.counter-section {
  background: var(--brand-primary);
  color: #fff;
  padding: 60px 0;
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.counter-item {
  padding: 20px;
}
.counter-val {
  font-size: 42px;
  font-weight: 800;
  color: var(--brand-accent);
  margin-bottom: 6px;
}
.counter-lbl {
  font-size: 15px;
  font-weight: 600;
  color: #cbd5e1;
}

/* STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.step-card {
  background: var(--brand-surface);
  border: 1px solid var(--brand-line);
  padding: 35px 25px;
  border-radius: var(--brand-radius);
  text-align: center;
  position: relative;
}
.step-num {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--brand-accent);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 18px;
}
.step-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 10px;
}

/* TESTIMONIALS & FAQ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: var(--brand-surface);
  border-radius: var(--brand-radius);
  padding: 30px;
  border: 1px solid var(--brand-line);
  box-shadow: var(--brand-shadow);
}
.stars {
  color: #ffb800;
  margin-bottom: 15px;
  font-size: 16px;
}

/* FOOTER AESTHETIC DESIGN */
.footer {
  background: linear-gradient(180deg, var(--brand-dark) 0%, #091222 100%);
  color: #94a3b8;
  padding-top: 80px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.1fr 1.3fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-title {
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
  letter-spacing: -0.2px;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--brand-accent, #f05c22);
  border-radius: 2px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links li {
  list-style: none;
}
.footer-links li a {
  color: #cbd5e1;
  font-size: 14.5px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}
.footer-links li a:hover {
  color: var(--brand-accent, #f05c22);
  transform: translateX(4px);
  padding-left: 0;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-contact-item:hover {
  color: #ffffff;
}
.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(240, 92, 34, 0.12);
  color: var(--brand-accent, #f05c22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.footer-social-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}
.footer-social-btn:hover {
  background: var(--brand-accent, #f05c22);
  border-color: var(--brand-accent, #f05c22);
  color: #ffffff;
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.5px;
  color: #94a3b8;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s ease;
}
.footer-bottom-links a:hover {
  color: var(--brand-accent, #f05c22);
}

@media (max-width: 992px) {
  .counter-grid, .steps-grid, .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .fast-booking-form {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 36px;
  }
}
@media (max-width: 600px) {
  .counter-grid, .steps-grid, .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .top-info {
    display: none;
  }
}

/* DEMO 14 AVANT-GARDE HOMEPAGE MODULES */

/* 1. HAKKIMIZDA 2-COLUMN GRID */
.about-2col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-img-box {
  position: relative;
  border-radius: var(--brand-radius-card);
  overflow: hidden;
  box-shadow: var(--brand-shadow-lg);
}
.about-img-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.about-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--brand-primary);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 14px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-floating-badge .badge-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-accent);
  line-height: 1;
}
.about-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 30px 0;
}
.about-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--brand-heading);
}
.about-check-item i {
  color: var(--brand-accent);
  font-size: 18px;
  flex-shrink: 0;
}

/* 2. DİKEY HİZMET KATEGORİ SEKMELERİ (TABBED SHOWCASE) */
.services-showcase-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  margin-top: 40px;
}
.services-category-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-tab-btn {
  width: 100%;
  text-align: left;
  background: var(--brand-surface);
  border: 1px solid var(--brand-line);
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-heading);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s ease;
}
.service-tab-btn i.tab-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--brand-bg-light);
  color: var(--brand-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.service-tab-btn:hover, .service-tab-btn.active {
  background: var(--brand-primary);
  color: #ffffff;
  border-color: var(--brand-primary);
}
.service-tab-btn:hover i.tab-icon, .service-tab-btn.active i.tab-icon {
  background: var(--brand-accent);
  color: #ffffff;
}

.service-preview-card {
  background: var(--brand-surface);
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius-card);
  padding: 32px;
  box-shadow: var(--brand-shadow);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  align-items: center;
}
.service-preview-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

/* 3. 2 SÜTUNLU SÜREÇ BÖLÜMÜ (2x2 GRID + TEXT) */
.process-2col-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.process-steps-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.process-card-dark {
  background: var(--brand-primary);
  color: #ffffff;
  padding: 28px 24px;
  border-radius: 16px;
  position: relative;
}
.process-card-light {
  background: var(--brand-surface);
  color: var(--brand-heading);
  border: 1px solid var(--brand-line);
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: var(--brand-shadow);
}
.process-card-num {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--brand-accent);
}

/* 4. NEDEN BİZ (VIDEO & FEATURE CARDS) */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.why-us-video-box {
  position: relative;
  border-radius: var(--brand-radius-card);
  overflow: hidden;
  box-shadow: var(--brand-shadow-lg);
}
.why-us-video-box img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.why-us-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  background: var(--brand-accent);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 0 0 12px rgba(240, 92, 34, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.why-us-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.why-us-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.why-us-feature-card {
  background: var(--brand-surface);
  border: 1px solid var(--brand-line);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.25s ease;
}
.why-us-feature-card:hover {
  border-color: var(--brand-accent);
  box-shadow: var(--brand-shadow);
}
.why-us-feature-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-accent);
  background: var(--brand-bg-light);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* 5. GALERİ GRİD */
.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.gallery-grid-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 220px;
  box-shadow: var(--brand-shadow);
}
.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-grid-item:hover img {
  transform: scale(1.08);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 31, 58, 0.85), transparent);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
  transition: opacity 0.3s ease;
}
.gallery-grid-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* 6. SSS AKORDEON (2-COLUMN) */
.faq-2col-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: flex-start;
}
.faq-accordion-item {
  background: var(--brand-surface);
  border: 1px solid var(--brand-line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
}
.faq-accordion-head {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-heading);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-accordion-body {
  padding: 0 24px 20px 24px;
  font-size: 14.5px;
  color: var(--brand-text);
  line-height: 1.6;
  display: none;
}
.faq-accordion-item.active .faq-accordion-body {
  display: block;
}
.faq-accordion-item.active {
  border-color: var(--brand-accent);
  box-shadow: var(--brand-shadow);
}
.faq-accordion-item.active .faq-accordion-head i {
  transform: rotate(45deg);
  color: var(--brand-accent);
}

/* 7. BLOG GRİD */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 32px;
}
.blog-card {
  background: var(--brand-surface);
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius-card);
  overflow: hidden;
  box-shadow: var(--brand-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--brand-shadow-lg);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card-body {
  padding: 24px;
}
.blog-card-meta {
  font-size: 12.5px;
  color: var(--brand-accent);
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-heading);
  margin-bottom: 10px;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .about-2col-grid, .services-showcase-grid, .process-2col-grid, .why-us-grid, .faq-2col-grid, .service-preview-card {
    grid-template-columns: 1fr;
  }
  .gallery-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* DROPDOWN & MEGAMENU STYLES */
.nav-badge { font-size: 10px; font-weight: 800; color: #fff; padding: 2px 7px; border-radius: 10px; margin-left: 4px; line-height: 1; vertical-align: middle; }

/* DROPDOWN SUBMENU */
.nav-item-has-dropdown { position: relative; height: 100%; display: flex; align-items: center; }
.nav-dropdown-menu { 
  position: absolute; 
  top: 100%; 
  left: 0; 
  min-width: 240px; 
  background: #ffffff !important; 
  border-radius: 14px; 
  box-shadow: 0 16px 40px rgba(15,23,42,0.15) !important; 
  border: 1px solid #e2e8f0 !important; 
  padding: 10px 0 !important; 
  opacity: 0; 
  visibility: hidden; 
  transform: translateY(12px); 
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important; 
  z-index: 9999 !important; 
  list-style: none !important; 
  margin: 0 !important;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}
.nav-item-has-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover { 
  opacity: 1 !important; 
  visibility: visible !important; 
  transform: translateY(0) !important; 
}
.nav-dropdown-menu li { margin: 0 !important; padding: 0 !important; list-style: none !important; }
.nav-dropdown-menu li a { 
  display: flex !important; 
  align-items: center !important; 
  padding: 11px 20px !important; 
  font-size: 13.5px !important; 
  font-weight: 700 !important; 
  color: #0f172a !important; 
  text-decoration: none !important; 
  transition: all 0.2s ease !important; 
  background: transparent !important;
  white-space: nowrap !important;
}
.nav-dropdown-menu li a:hover { 
  background: #f8fafc !important; 
  color: var(--brand-accent) !important; 
  padding-left: 24px !important; 
}

/* MEGAMENU DROPDOWN */
.nav-item-has-megamenu { position: static; height: 100%; display: flex; align-items: center; }
.megamenu-dropdown { 
  position: absolute; 
  top: 100%; 
  left: 0; 
  right: 0; 
  width: 100%; 
  background: #ffffff !important; 
  border-bottom: 3px solid var(--brand-accent) !important; 
  box-shadow: 0 25px 50px rgba(15,23,42,0.18) !important; 
  opacity: 0; 
  visibility: hidden; 
  transform: translateY(12px); 
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important; 
  z-index: 9999 !important; 
  padding: 30px 0 !important; 
}
.megamenu-dropdown::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}
.nav-item-has-megamenu:hover .megamenu-dropdown,
.megamenu-dropdown:hover { 
  opacity: 1 !important; 
  visibility: visible !important; 
  transform: translateY(0) !important; 
}
.megamenu-inner { padding: 0 20px; }
.megamenu-header { display: flex; justify-content: space-between; align-items: flex-end; padding-bottom: 16px; margin-bottom: 20px; border-bottom: 1.5px solid var(--brand-line); }
.megamenu-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.megamenu-service-card { display: flex; gap: 12px; align-items: center; padding: 12px; border-radius: 12px; border: 1px solid var(--brand-line); text-decoration: none; transition: all 0.2s ease; background: #fff; }
.megamenu-service-card:hover { border-color: var(--brand-accent); background: var(--brand-bg-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.05); }
.megamenu-card-img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.megamenu-card-title { font-size: 13.5px; font-weight: 800; color: var(--brand-heading); display: flex; align-items: center; gap: 6px; }
.megamenu-card-desc { font-size: 11.5px; color: var(--brand-text); opacity: 0.85; margin-top: 2px; }

/* ==========================================================================
   AVANT-GARDE MOBILE RESPONSIVE SYSTEM (MOBİL ÇAKIŞMA & ÇİFT BUTTON ÇÖZÜMÜ)
   ========================================================================== */

/* 1. TOP BAR ON MOBILE */
@media (max-width: 768px) {
  .top-bar {
    padding: 6px 0;
  }
  .top-bar-inner {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
  .top-info {
    gap: 12px !important;
    font-size: 11.5px !important;
  }
  .top-right-group, .top-social {
    display: none !important;
  }
}

/* 2. MOBILE NAVBAR TOGGLE BUTTON */
.mobile-nav-toggle {
  display: none;
  background: var(--brand-accent, #f05c22);
  color: #ffffff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(240, 92, 34, 0.25);
  transition: all 0.25s ease;
  z-index: 1002;
  flex-shrink: 0;
}
.mobile-nav-toggle:hover {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .navbar-inner {
    height: 70px !important;
    position: relative !important;
    justify-content: space-between !important;
    padding: 0 16px !important;
  }
  
  /* Üst header satırında mobilde çakışan elemanları gizle */
  .nav-phone-widget, 
  .navbar-inner > div > .nav-phone-widget,
  .btn-randevu,
  .navbar-inner .btn-randevu {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: flex !important;
  }

  /* MOBİL SLIDE DOWN SLIDE-OVER MENÜ */
  .nav-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #ffffff !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.18) !important;
    border-top: 3px solid var(--brand-accent, #f05c22) !important;
    flex-direction: column !important;
    padding: 12px 20px !important;
    gap: 0 !important;
    z-index: 99999 !important;
    border-radius: 0 0 16px 16px !important;
  }

  .nav-menu.active {
    display: flex !important;
    animation: mobileMenuSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .nav-menu > li {
    width: 100% !important;
    border-bottom: 1px solid #f1f5f9 !important;
  }
  .nav-menu > li:last-child {
    border-bottom: none !important;
  }

  .nav-link,
  .navbar .nav-link,
  .navbar.navbar-transparent .nav-link,
  .navbar.navbar-dark .nav-link,
  .nav-menu > li > a {
    display: flex !important;
    width: 100% !important;
    padding: 15px 12px !important;
    font-size: 15.5px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
    text-shadow: none !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
  }

  .nav-link:hover,
  .nav-link.active,
  .nav-menu > li.active > a {
    color: var(--brand-accent, #f05c22) !important;
    -webkit-text-fill-color: var(--brand-accent, #f05c22) !important;
  }

  .nav-link i:first-child {
    color: var(--brand-accent, #f05c22) !important;
    font-size: 20px !important;
    flex-shrink: 0 !important;
  }

  .nav-link i.ri-arrow-down-s-line {
    margin-left: auto !important;
    color: var(--brand-accent, #f05c22) !important;
    font-size: 18px !important;
  }

  /* Alt menü ve Megamenü mobil açılır kapanır uyumu */
  .nav-dropdown-menu,
  .megamenu-dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 6px 12px 14px 20px !important;
    background: #f8fafc !important;
    border-radius: 12px !important;
    margin: 4px 0 10px 0 !important;
    display: none !important;
  }

  .nav-dropdown-menu li a {
    color: #334155 !important;
    -webkit-text-fill-color: #334155 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 10px 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-shadow: none !important;
  }

  .nav-item-has-dropdown.active .nav-dropdown-menu,
  .nav-item-has-megamenu.active .megamenu-dropdown {
    display: block !important;
  }

  .megamenu-services-grid {
    grid-template-columns: 1fr !important;
  }
}

@keyframes mobileMenuSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 3. MOBİLDE YÜZEN YUVARLAK WHATSAPP BUTONU VE SABİT ALT BAR ÇAKIŞMA DÜZELTMESİ */
@media (max-width: 768px) {
  /* Mobil ekranda Sticky Bottom Bar aktif olduğundan çakışan yuvarlak sabit WhatsApp butonunu gizle */
  .floating-whatsapp-btn {
    display: none !important;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)) !important;
  }
  
  .footer {
    padding-top: 48px !important;
    padding-bottom: calc(85px + env(safe-area-inset-bottom, 0px)) !important;
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
    margin-bottom: 36px !important;
  }

  .footer-col {
    width: 100%;
  }

  .footer-title {
    font-size: 16px !important;
    margin-bottom: 16px !important;
  }

  .footer-links {
    gap: 10px !important;
  }

  .footer-links li a {
    font-size: 14px !important;
    padding: 4px 0 !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 14px !important;
    padding-top: 22px !important;
  }

  .footer-bottom-links {
    justify-content: center !important;
    gap: 14px !important;
    font-size: 12.5px !important;
  }

  /* STICKY MOBILE ACTION BAR (KOMPLE PROFESYONEL MOBİL BAR) */
  .mobile-sticky-bar {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px)) 14px;
    gap: 10px;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-bar-btn {
    flex: 1;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.15s ease, filter 0.15s ease;
  }

  .mobile-bar-btn:active {
    transform: scale(0.97);
  }

  .mobile-call-btn {
    background: linear-gradient(135deg, #f05c22 0%, #d94810 100%);
    box-shadow: 0 4px 14px rgba(240, 92, 34, 0.35);
  }

  .mobile-wa-btn {
    background: linear-gradient(135deg, #25d366 0%, #1ea952 100%);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  }

  .mobile-track-btn {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex: 0 0 50px;
    height: 48px;
    font-size: 20px;
    color: #ffffff;
  }
}

/* ==========================================================================
   KOMPLE RESPONSIVE MOBIL SISTEM (TÜM MODÜLLER İÇİN %100 UYUM)
   ========================================================================== */

/* TABLET & MOBİL GENEL (max-width: 992px) */
@media (max-width: 992px) {
  .hero-slider {
    min-height: 520px !important;
  }
  .hero-title {
    font-size: 36px !important;
  }
  .hero-template5-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .fast-booking-form {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }
  .about-2col-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .live-tracking-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .services-showcase-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .process-2col-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .why-us-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .cta-2col-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .faq-2col-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
  .gallery-masonry-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}

/* AKILLI TELEFONLAR & MOBİL (max-width: 768px) */
@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0 !important;
  }
  .section-title {
    font-size: 26px !important;
    line-height: 1.3 !important;
  }
  .section-subtitle {
    font-size: 12px !important;
  }

  /* HERO SLIDER MOBİL */
  .hero-slider {
    min-height: 540px !important;
    display: flex !important;
    align-items: flex-end !important;
  }
  .hero-slider::before {
    background: linear-gradient(180deg, rgba(16, 31, 58, 0.25) 0%, rgba(16, 31, 58, 0.65) 45%, rgba(16, 31, 58, 0.92) 100%) !important;
  }
  .hero-slide-item {
    background-position: right top !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    align-items: flex-end !important;
  }
  .hero-content-box {
    padding: 20px 15px 35px 15px !important;
    text-align: center !important;
    max-width: 100% !important;
    margin-top: auto !important;
  }
  .hero-badge {
    margin-bottom: 10px !important;
    font-size: 11px !important;
  }
  .hero-title {
    font-size: 22px !important;
    line-height: 1.25 !important;
    margin-bottom: 10px !important;
  }
  .hero-desc {
    font-size: 13px !important;
    line-height: 1.45 !important;
    margin-bottom: 16px !important;
    opacity: 0.92;
  }
  .hero-actions {
    justify-content: center !important;
    gap: 8px !important;
    flex-direction: column !important;
    margin-bottom: 16px !important;
  }
  .hero-actions a {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 11px 16px !important;
    font-size: 13.5px !important;
  }
  .hero-controls {
    display: none !important;
  }

  /* SERTİFİKA VE BELGE ŞERİDİ */
  .cert-strip {
    padding: 14px 0 !important;
  }
  .cert-strip-inner {
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center !important;
    justify-content: center !important;
  }
  .cert-item {
    font-size: 12.5px !important;
  }

  /* HIZLI REZERVASYON FORMU */
  .fast-booking-wrapper {
    margin-top: 20px !important;
  }
  .fast-booking-card {
    padding: 20px 16px !important;
    border-radius: 16px !important;
  }
  .fast-booking-form {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .fast-booking-form button {
    width: 100% !important;
  }

  /* HAKKIMIZDA MODÜLÜ */
  .about-img-box img,
  .about-2col-grid img {
    height: 280px !important;
    border-radius: 18px !important;
  }
  .about-floating-badge {
    bottom: 12px !important;
    left: 12px !important;
    padding: 10px 16px !important;
    border-radius: 12px !important;
  }
  .about-floating-badge .badge-num {
    font-size: 24px !important;
  }
  .about-checklist-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  /* HİZMETLER MODÜLÜ */
  .service-showcase-card {
    border-radius: 16px !important;
  }
  .service-showcase-card img,
  #servPrevImg {
    height: 200px !important;
  }
  .service-showcase-card > div {
    padding: 20px 16px !important;
  }
  .service-list-item {
    padding: 12px 14px !important;
    font-size: 14px !important;
  }

  /* SÜREÇ 2x2 */
  .process-steps-2x2 {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .process-card-dark, .process-card-light {
    padding: 20px 18px !important;
  }

  /* NEDEN BİZ */
  .why-us-video-box img {
    height: 240px !important;
    border-radius: 18px !important;
  }
  .why-us-feature-card {
    padding: 16px !important;
  }

  /* SSS VE CTA FORMU */
  .faq-accordion-head {
    padding: 16px 18px !important;
    font-size: 14.5px !important;
  }
  .faq-accordion-body {
    padding: 0 18px 16px 18px !important;
    font-size: 13.5px !important;
  }
  .cta-2col-grid > div:last-child {
    padding: 24px 18px !important;
    border-radius: 18px !important;
  }

  /* BLOG VE GALERİ */
  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .gallery-masonry-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .gallery-grid-item {
    height: 150px !important;
  }

  /* CANLI TAKİP BUTONLARI */
  .tracking-btns-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}

/* KÜÇÜK MOBİL EKRANLAR (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 14px !important;
  }
  .btn-hero-orange, .btn-hero-dark, .btn-primary {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .gallery-masonry-grid {
    grid-template-columns: 1fr !important;
  }
  .gallery-grid-item {
    height: 200px !important;
  }
}

/* ==========================================================================
   ALT SAYFALAR İÇİN MOBİL DUYARLI YAPI (HİZMET, İLETİŞİM, DETAY)
   ========================================================================== */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 40px;
  align-items: start;
}
.service-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 35px;
  background: var(--brand-bg-light);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--brand-line);
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}
.page-banner {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #16294a 100%);
  padding: 60px 0;
  color: #ffffff;
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 13.5px;
  color: #94a3b8;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .service-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .contact-page-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
}

@media (max-width: 640px) {
  .service-metrics-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 18px !important;
  }
  .contact-form-row {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .page-banner {
    padding: 40px 0 !important;
  }
  .page-banner h1 {
    font-size: 26px !important;
  }
}

