/* ============================================================
   ANTALYA KİRALIK ASANSÖR - ANA STİL DOSYASI
   ============================================================ */

:root {
  --primary: #0d3b6e;
  --primary-dark: #082a52;
  --primary-light: #1a5299;
  --accent: #f4830a;
  --accent-dark: #d4700a;
  --accent-light: #ff9a2e;
  --text: #1a1a2e;
  --text-light: #555577;
  --text-muted: #8888aa;
  --bg: #f8f9ff;
  --bg-card: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(13,59,110,.08);
  --shadow-md: 0 4px 20px rgba(13,59,110,.12);
  --shadow-lg: 0 8px 40px rgba(13,59,110,.18);
  --shadow-xl: 0 20px 60px rgba(13,59,110,.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

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

.section-padding { padding: 80px 0; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--primary-dark);
  color: #c8d8ef;
  font-size: .83rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar a, .topbar span {
  color: #c8d8ef;
  font-size: .83rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar a:hover { color: var(--accent-light); }
.topbar i { font-size: .8rem; }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(13,59,110,.2);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(13,59,110,.3);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--primary); }
.logo-sub { font-size: .75rem; color: var(--accent); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--primary);
  background: rgba(13,59,110,.07);
}
.nav-menu > li > a .fa-chevron-down { font-size: .7rem; transition: var(--transition); }
.nav-menu > li:hover > a .fa-chevron-down { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: .88rem;
  border-radius: 8px;
  color: var(--text-light);
}
.dropdown li a:hover { background: var(--bg); color: var(--primary); }
.dropdown li a .fa-angle-right { font-size: .75rem; color: var(--accent); }

/* CTA Button */
.nav-cta a {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  gap: 7px;
  box-shadow: 0 4px 14px rgba(244,131,10,.35);
}
.nav-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,131,10,.45);
  background: linear-gradient(135deg, var(--accent-light), var(--accent)) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 620px;
}
.slides-wrapper { display: flex; height: 100%; transition: transform .7s cubic-bezier(.77,0,.175,1); }
.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .35;
  transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1.05); }

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px;
  max-width: 750px;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,131,10,.2);
  color: var(--accent-light);
  border: 1px solid rgba(244,131,10,.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: fit-content;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease .2s, transform .6s ease .2s;
}
.slide.active .slide-badge { opacity: 1; transform: translateY(0); }

.slide-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease .35s, transform .6s ease .35s;
}
.slide.active .slide-title { opacity: 1; transform: translateY(0); }

.slide-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease .45s, transform .6s ease .45s;
}
.slide.active .slide-subtitle { opacity: 1; transform: translateY(0); }

.slide-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  max-width: 560px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease .55s, transform .6s ease .55s;
}
.slide.active .slide-desc { opacity: 1; transform: translateY(0); }

.slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease .65s, transform .6s ease .65s;
}
.slide.active .slide-actions { opacity: 1; transform: translateY(0); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 28px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease .6s, transform .6s ease .6s;
}

.slide.active .hero-trust {
  opacity: 1;
  transform: translateY(0);
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  font-size: .86rem;
  font-weight: 650;
}

.hero-trust i {
  color: var(--accent-light);
  font-size: .82rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 6px 20px rgba(244,131,10,.4);
  transition: var(--transition);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(244,131,10,.5);
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

/* Slider Controls */
.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-prev:hover, .slider-next:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: var(--transition);
}
.slider-dot.active {
  width: 30px;
  border-radius: 5px;
  background: var(--accent);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 30px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.stat-info { color: #fff; }
.stat-number { font-size: 1.8rem; font-weight: 800; font-family: 'Poppins', sans-serif; line-height: 1; }
.stat-label { font-size: .82rem; color: rgba(255,255,255,.75); margin-top: 2px; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,59,110,.08);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-badge i { color: var(--accent); }
.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-header h2 span { color: var(--accent); }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
}
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(13,59,110,.1), rgba(13,59,110,.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}
.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.service-card p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-meta {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  color: var(--text-muted);
  font-size: .82rem;
  font-weight: 600;
}

.service-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-meta i {
  color: var(--primary-light);
  font-size: .76rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: .88rem;
}
.service-link:hover { gap: 10px; }

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-us-section { background: #fff; }
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-us-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-us-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}
.why-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.why-badge-num { font-size: 2rem; font-weight: 800; line-height: 1; }
.why-badge-text { font-size: .78rem; font-weight: 600; opacity: .9; }

.why-list { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  transition: var(--transition);
}
.why-item:hover { background: rgba(13,59,110,.04); transform: translateX(4px); }
.why-item-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-item h4 { font-weight: 700; color: var(--primary); margin-bottom: 4px; font-size: .95rem; }
.why-item p { font-size: .85rem; color: var(--text-light); }

/* ============================================================
   SERVICE AREAS SECTION
   ============================================================ */
.areas-section { background: var(--bg); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.area-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.area-card:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.area-icon {
  width: 40px;
  height: 40px;
  background: rgba(13,59,110,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.area-card:hover .area-icon { background: rgba(255,255,255,.2); color: var(--accent-light); }
.area-card span { font-weight: 600; font-size: .9rem; }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); }
.process-section .section-header h2 { color: #fff; }
.process-section .section-badge { background: rgba(255,255,255,.15); color: #fff; }
.process-section .section-header p { color: rgba(255,255,255,.8); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: rgba(255,255,255,.2);
}
.process-step {
  text-align: center;
  color: #fff;
  position: relative;
}
.process-num {
  width: 88px;
  height: 88px;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.process-step:hover .process-num {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1);
}
.process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: .85rem; color: rgba(255,255,255,.75); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: #fff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 4rem;
  color: var(--accent);
  opacity: .3;
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { color: #fbbf24; font-size: .9rem; margin-bottom: 14px; }
.testimonial-text { font-size: .92rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}
.author-info h5 { font-weight: 700; font-size: .9rem; color: var(--text); }
.author-info span { font-size: .8rem; color: var(--text-muted); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-light) 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.cta-section p { color: rgba(255,255,255,.9); font-size: 1.1rem; margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--accent-dark);
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
  transition: var(--transition);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid rgba(255,255,255,.7);
  transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; transform: translateY(-2px); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.breadcrumb-section::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -80px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.breadcrumb-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb-nav a, .breadcrumb-nav span {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
}
.breadcrumb-nav a:hover { color: var(--accent-light); }
.breadcrumb-nav .sep { color: rgba(255,255,255,.4); font-size: .75rem; }
.breadcrumb-nav .current { color: var(--accent-light); font-weight: 600; }

/* ============================================================
   INNER PAGE CONTENT
   ============================================================ */
.page-content { padding: 70px 0; }
.content-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.content-card h2 { font-family: 'Poppins', sans-serif; font-size: 1.7rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.content-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin: 24px 0 10px; }
.content-card p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.content-card ul { margin: 0 0 16px 20px; }
.content-card ul li { color: var(--text-light); line-height: 1.8; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: #fff;
}
.contact-info-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h5 { font-size: .82rem; opacity: .75; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-weight: 600; font-size: .95rem; color: #fff; }

.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; color: var(--text); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(13,59,110,.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(13,59,110,.3);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(13,59,110,.4); }

.alert {
  padding: 14px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,.8); }
.footer-top { padding: 70px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-about .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-about .logo-main { color: #fff; }
.footer-about .logo-sub { color: var(--accent-light); }
.footer-about p { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }

.footer-col h4 {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,.1);
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--accent-light); gap: 10px; }
.footer-col ul li a i { font-size: .7rem; color: var(--accent); }

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact ul li i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: .9rem;
}
.footer-contact ul li span,
.footer-contact ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
}
.footer-contact ul li a:hover { color: var(--accent-light); }

.footer-bottom {
  background: rgba(0,0,0,.25);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .84rem; color: rgba(255,255,255,.5); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: .82rem; color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-legal a:hover { color: var(--accent-light); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.whatsapp-float, .phone-float {
  position: fixed;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
  transition: var(--transition);
}
.whatsapp-float {
  bottom: 100px;
  right: 24px;
  background: #25d366;
  color: #fff;
  animation: pulse-green 2s infinite;
}
.phone-float {
  bottom: 30px;
  right: 24px;
  background: var(--primary);
  color: #fff;
  animation: pulse-blue 2.5s infinite;
}
.whatsapp-float:hover, .phone-float:hover {
  transform: scale(1.15);
  animation: none;
}
.whatsapp-tooltip, .phone-tooltip {
  position: absolute;
  right: 68px;
  background: #1a1a2e;
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip,
.phone-float:hover .phone-tooltip { opacity: 1; }

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.15); }
}
@keyframes pulse-blue {
  0%, 100% { box-shadow: 0 6px 20px rgba(13,59,110,.4); }
  50% { box-shadow: 0 6px 30px rgba(13,59,110,.7), 0 0 0 8px rgba(13,59,110,.15); }
}

.scroll-top {
  position: fixed;
  bottom: 174px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--accent-dark); transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 900px) {
  .hero-slider { height: 500px; }
  .slide-title { font-size: 2rem; }
  .slide-subtitle { font-size: 1.2rem; }
  .why-us-inner { grid-template-columns: 1fr; }
  .why-us-image-wrap { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar-left, .topbar-right { gap: 12px; }
  .topbar a span { display: none; }

  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 80px 20px 30px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    z-index: 999;
    overflow-y: auto;
    gap: 4px;
  }
  .nav-menu.open { right: 0; }
  .nav-menu > li > a { padding: 12px 16px; border-radius: 8px; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 4px 16px;
    background: transparent;
  }
  .nav-cta { margin-top: 8px; }
  .nav-cta a { justify-content: center !important; }

  .hero-slider { height: 420px; }
  .slide-content { padding: 0 24px; }
  .slide-title { font-size: 1.7rem; }
  .slide-subtitle { font-size: 1rem; }
  .btn-primary, .btn-outline { padding: 12px 24px; font-size: .88rem; }

  .section-padding { padding: 55px 0; }
  .section-header h2 { font-size: 1.7rem; }

  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-section h2 { font-size: 1.6rem; }
  .content-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero-slider { height: 360px; }
  .slide-title { font-size: 1.4rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .stat-item:last-child { border-bottom: none; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   PAGE OVERLAY (mobile menu)
   ============================================================ */
.page-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(3px);
}
.page-overlay.active { opacity: 1; visibility: visible; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.animate-on-scroll.in-view { opacity: 1; transform: translateY(0); }

/* Stagger delay for children */
.stagger > *:nth-child(1) { transition-delay: .1s; }
.stagger > *:nth-child(2) { transition-delay: .2s; }
.stagger > *:nth-child(3) { transition-delay: .3s; }
.stagger > *:nth-child(4) { transition-delay: .4s; }
.stagger > *:nth-child(5) { transition-delay: .5s; }
.stagger > *:nth-child(6) { transition-delay: .6s; }

/* ============================================================
   MODERN RESPONSIVE REFRESH
   ============================================================ */
:root {
  --primary: #0b3f4a;
  --primary-dark: #072f38;
  --primary-light: #116978;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --accent-light: #fbbf24;
  --text: #111827;
  --text-light: #4b5563;
  --text-muted: #6b7280;
  --bg: #f5f7fa;
  --bg-card: #ffffff;
  --border: #dbe3ea;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, .08);
  --shadow-lg: 0 18px 45px rgba(15, 23, 42, .12);
  --shadow-xl: 0 28px 70px rgba(15, 23, 42, .16);
  --radius: 8px;
  --radius-lg: 8px;
  --transition: all .22s ease;
}

html { text-size-adjust: 100%; }

body {
  background:
    linear-gradient(180deg, #ffffff 0, var(--bg) 520px);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(100% - 40px, 1200px);
  padding: 0;
}

.section-padding { padding: 88px 0; }

.topbar {
  background: #071f26;
  color: rgba(255,255,255,.78);
  padding: 9px 0;
}

.topbar a,
.topbar span { color: rgba(255,255,255,.78); }

.site-header {
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(219,227,234,.85);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.site-header.scrolled { box-shadow: 0 10px 30px rgba(15,23,42,.08); }

.navbar { padding: 13px 0; }

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--primary);
  box-shadow: none;
}

.logo-main {
  color: var(--text);
  font-size: 1.08rem;
}

.logo-sub {
  color: var(--primary-light);
  letter-spacing: 0;
  text-transform: none;
}

.nav-menu > li > a {
  border-radius: 8px;
  color: #243241;
  font-weight: 650;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  background: #eef7f8;
  color: var(--primary);
}

.dropdown {
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.nav-cta a,
.btn-primary,
.btn-secondary,
.btn-white,
.btn-outline,
.btn-outline-white {
  border-radius: 8px !important;
}

.nav-cta a {
  background: var(--accent) !important;
  box-shadow: 0 10px 22px rgba(245,158,11,.24);
}

.nav-cta a:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
}

.hero-slider {
  min-height: 640px;
  height: min(72vh, 720px);
  background: #071f26;
}

.slide {
  background:
    radial-gradient(circle at 88% 22%, rgba(245,158,11,.22), transparent 30%),
    linear-gradient(135deg, #071f26 0%, #0b3f4a 52%, #12313b 100%);
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,31,38,.94) 0%, rgba(7,31,38,.78) 48%, rgba(7,31,38,.18) 100%),
    linear-gradient(180deg, rgba(7,31,38,.08), rgba(7,31,38,.58));
  z-index: 1;
}

.slide-bg {
  opacity: .6;
  filter: saturate(1.05) contrast(1.08);
}

.slide-content {
  max-width: 680px;
  padding: 0;
}

.slide-badge,
.section-badge {
  border-radius: 999px;
  letter-spacing: 0;
  text-transform: none;
}

.slide-badge {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}

.slide-title {
  font-size: clamp(2.25rem, 5vw, 4.75rem);
  line-height: 1.04;
  letter-spacing: 0;
  max-width: 780px;
}

.slide-subtitle {
  color: var(--accent-light);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

.slide-desc {
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
  max-width: 620px;
}

.btn-primary,
.btn-secondary,
.btn-submit {
  background: var(--primary);
  box-shadow: 0 14px 28px rgba(11,63,74,.2);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-submit:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.34);
}

.slider-prev,
.slider-next {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.stats-bar {
  background: #ffffff;
  padding: 0;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  transform: translateY(-34px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.stat-item {
  border-right: 1px solid var(--border);
  padding: 24px;
}

.stat-icon {
  background: #eef7f8;
  color: var(--primary);
  border-radius: 8px;
}

.stat-info { color: var(--text); }
.stat-label { color: var(--text-muted); }

.section-header {
  max-width: 760px;
  margin: 0 auto 44px;
}

.section-header h2 {
  color: var(--text);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  letter-spacing: 0;
}

.section-header h2 span { color: var(--primary-light); }

.section-divider { display: none; }

.services-section,
.areas-section { background: var(--bg); }

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.testimonial-card,
.content-card,
.contact-form-card,
.contact-info-card,
.area-card {
  border-radius: 8px;
}

.service-card {
  padding: 26px;
  box-shadow: none;
  border: 1px solid var(--border);
}

.service-card::before { display: none; }

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17,105,120,.35);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: #eef7f8;
  color: var(--primary);
}

.service-card:hover .service-icon {
  background: var(--primary);
  transform: none;
}

.why-us-section,
.testimonials-section { background: #fff; }

.why-us-inner {
  gap: 42px;
  align-items: stretch;
}

.why-us-image-wrap,
.why-us-image-wrap img {
  border-radius: 8px;
}

.why-badge {
  border-radius: 8px;
  background: #fff;
  color: var(--primary);
}

.why-item {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
}

.why-item-icon {
  background: var(--accent);
  border-radius: 8px;
}

.areas-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.area-card {
  box-shadow: none;
}

.area-card:hover {
  background: #fff;
  color: var(--text);
  border-color: rgba(17,105,120,.35);
  box-shadow: var(--shadow-md);
}

.area-card:hover .area-icon {
  background: #eef7f8;
  color: var(--primary);
}

.process-section {
  background: #071f26;
}

.process-num {
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}

.cta-section {
  background: linear-gradient(135deg, #0b3f4a 0%, #116978 100%);
}

.breadcrumb-section {
  background: linear-gradient(135deg, #071f26 0%, #0b3f4a 100%);
  padding: 64px 0;
}

.breadcrumb-section::after { display: none; }

.content-card {
  box-shadow: none;
  border: 1px solid var(--border);
}

.contact-info-card {
  background: #071f26;
}

.form-group input,
.form-group select,
.form-group textarea {
  border-width: 1px;
  border-radius: 8px;
  background: #fff;
}

.footer-top { padding: 64px 0 38px; }
.site-footer { background: #071f26; }

.whatsapp-float,
.phone-float,
.scroll-top {
  border-radius: 8px;
}

.whatsapp-float,
.phone-float {
  width: 54px;
  height: 54px;
}

@media (max-width: 1100px) {
  .container { width: min(100% - 32px, 1200px); }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .areas-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .section-padding { padding: 68px 0; }
  .hero-slider {
    min-height: 560px;
    height: auto;
  }
  .slide-content {
    min-height: 560px;
    justify-content: center;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    transform: none;
    margin-top: -28px;
  }
  .why-us-content h2[style] {
    font-size: 1.85rem !important;
  }
}

@media (max-width: 768px) {
  .container { width: min(100% - 28px, 1200px); }
  .topbar { display: none; }
  .navbar { padding: 10px 0; }
  .nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: #eef7f8;
  }
  .nav-menu {
    width: min(88vw, 360px);
    padding: 78px 18px 28px;
    border-left: 1px solid var(--border);
  }
  .nav-menu > li > a {
    min-height: 46px;
    font-size: .95rem;
  }
  .hero-slider {
    min-height: 600px;
  }
  .slide::after {
    background: linear-gradient(180deg, rgba(7,31,38,.9) 0%, rgba(7,31,38,.86) 100%);
  }
  .slide-content {
    min-height: 600px;
    padding: 48px 0 78px;
  }
  .slide-title { font-size: clamp(2rem, 12vw, 3.05rem); }
  .slide-desc { font-size: 1rem; }
  .slide-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 360px;
  }
  .slide-actions a {
    justify-content: center;
  }
  .slider-prev,
  .slider-next { display: none; }
  .slider-dots { bottom: 28px; }
  .services-grid,
  .testimonials-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .areas-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-item {
    padding: 18px;
    border-right: 0;
  }
  .section-header { text-align: left; }
  .section-header p { margin: 0; }
  .section-badge { margin-bottom: 12px; }
  .content-card,
  .contact-form-card,
  .contact-info-card {
    padding: 24px;
  }
  .breadcrumb-section { padding: 42px 0; }
  .breadcrumb-content h1 { font-size: 1.85rem; }
  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-legal {
    flex-wrap: wrap;
    gap: 10px 16px;
  }
  .whatsapp-float,
  .phone-float {
    bottom: 14px;
    width: calc(50% - 22px);
    height: 52px;
    border-radius: 8px;
    animation: none;
    font-size: 1.2rem;
  }
  .whatsapp-float {
    left: 14px;
    right: auto;
  }
  .phone-float {
    right: 14px;
  }
  .whatsapp-tooltip,
  .phone-tooltip {
    position: static;
    opacity: 1;
    background: transparent;
    padding: 0;
    margin-left: 8px;
    font-size: .86rem;
  }
  .scroll-top {
    right: 14px;
    bottom: 78px;
  }
  .site-footer {
    padding-bottom: 64px;
  }
  [style*="grid-template-columns:2fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 520px) {
  .container { width: min(100% - 24px, 1200px); }
  .section-padding { padding: 54px 0; }
  .hero-slider,
  .slide-content {
    min-height: 560px;
  }
  .slide-badge {
    font-size: .76rem;
    padding: 6px 12px;
  }
  .btn-primary,
  .btn-outline,
  .btn-secondary,
  .btn-white,
  .btn-outline-white {
    width: 100%;
    justify-content: center;
    padding-left: 18px;
    padding-right: 18px;
  }
  .stats-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-bottom: 1px solid var(--border);
  }
  .stat-item:last-child { border-bottom: 0; }
  .service-card { padding: 22px; }
  .form-row { gap: 0; }
  .cta-section h2 { font-size: 1.75rem; }
  .cta-buttons { gap: 10px; }
}

/* ============================================================
   PAGE HERO (SSS, KVKK vb. iç sayfa başlığı)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 60px 0 48px;
  color: #fff;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 12px 0 8px;
}
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin: 0; }
.breadcrumb ol {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
}
.breadcrumb ol li + li::before { content: '/'; margin-right: 8px; }
.breadcrumb a { color: rgba(255,255,255,.8); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section { background: var(--bg-light); }
.faq-wrapper { max-width: 860px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.faq-item:hover, .faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(13,59,110,.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
  transition: background .2s;
}
.faq-question:hover { background: rgba(13,59,110,.03); }
.faq-question i {
  flex-shrink: 0;
  font-size: .85rem;
  color: var(--accent);
  transition: transform .3s ease;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  line-height: 1.7;
  font-size: .95rem;
  border-top: 1px solid var(--border);
}

/* FAQ CTA kutusu */
.faq-cta {
  margin-top: 40px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #fff;
  flex-wrap: wrap;
}
.faq-cta > i { font-size: 2.5rem; opacity: .8; flex-shrink: 0; }
.faq-cta > div { flex: 1; min-width: 200px; }
.faq-cta h3 { margin: 0 0 4px; font-size: 1.1rem; }
.faq-cta p  { margin: 0; opacity: .85; font-size: .9rem; }
.faq-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.faq-cta-btns .btn-primary  { background: #fff; color: var(--primary); }
.faq-cta-btns .btn-secondary { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.3); }
.faq-cta-btns .btn-secondary:hover { background: rgba(255,255,255,.25); }

@media (max-width: 600px) {
  .faq-cta { flex-direction: column; text-align: center; }
  .faq-cta > i { display: none; }
  .faq-cta-btns { justify-content: center; }
  .page-hero h1 { font-size: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* ══════════════════════════════════════════════════════════
   GALERİ
══════════════════════════════════════════════════════════ */
.gallery-section {
  background: #0d3b6e;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.gallery-header {
  text-align: center;
  margin-bottom: 28px;
  padding: 0 20px;
}
.gallery-header h2 { color: #fff; font-size: 1.8rem; margin: 8px 0 0; }
.gallery-header h2 span { color: var(--accent); }
.gallery-header .section-badge { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.25); }

.gallery-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 20px 12px;
  /* Masaüstü: sürekli kayar — snap yok */
}
.gallery-track::-webkit-scrollbar { display: none; }

.gallery-item {
  flex: 0 0 auto;
  width: 280px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

/* Mobil: tek resim tam genişlik, snap ile */
@media (max-width: 768px) {
  .gallery-track {
    scroll-snap-type: x mandatory;
    padding: 0 0 12px;
    gap: 0;
  }
  .gallery-item {
    width: 100vw;
    height: 240px;
    border-radius: 0;
    scroll-snap-align: center;
    box-shadow: none;
  }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: #fff;
  padding: 20px 12px 10px;
  font-size: .82rem;
  font-weight: 500;
}

.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.gallery-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.gallery-btn:hover { background: rgba(255,255,255,.3); }

/* ══════════════════════════════════════════════════════════
   BLOG
══════════════════════════════════════════════════════════ */
.blog-home-section { background: #f5f7fa; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(15,23,42,.06);
  transition: transform .22s, box-shadow .22s;
  border: 1px solid #e8edf4;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15,23,42,.13);
}
.blog-card-img {
  position: relative;
  height: 180px;
  background: #dbe3ea;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card-img img {
  width: 100%;
  height: 180px;
  max-height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #94a3b8;
  background: linear-gradient(135deg, #e8edf4, #dbe3ea);
}
.blog-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.blog-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-excerpt {
  font-size: .87rem;
  color: var(--text-light);
  line-height: 1.55;
  flex: 1;
  margin: 0;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid #f0f4f8;
}
.blog-card-date {
  font-size: .8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-read-more {
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Blog Kategori Filtresi */
.blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-cat-btn {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-light);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .18s;
}
.blog-cat-btn:hover, .blog-cat-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.blog-cat-badge {
  display: inline-block;
  padding: 3px 12px;
  background: var(--primary);
  color: #fff;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Blog Detay */
.blog-detail-wrap { max-width: 860px; margin: 0 auto; }
.blog-article { padding: 0; overflow: hidden; }
.blog-article-body { padding: 32px; }
.blog-article h1 { font-size: 1.8rem; line-height: 1.35; margin: 8px 0 12px; }
.blog-meta {
  display: flex;
  gap: 20px;
  color: var(--text-muted);
  font-size: .85rem;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f4f8;
}
.blog-meta span { display: flex; align-items: center; gap: 6px; }
.blog-content { line-height: 1.8; color: var(--text); }
.blog-content h2, .blog-content h3 { margin-top: 28px; margin-bottom: 12px; color: var(--primary); }
.blog-content p { margin-bottom: 16px; }
.blog-content ul, .blog-content ol { padding-left: 24px; margin-bottom: 16px; }
.blog-content img { max-width: 100%; border-radius: 8px; margin: 12px 0; }

/* İlgili Yazılar */
.blog-related { margin-top: 40px; }
.blog-related-title { font-size: 1.2rem; margin-bottom: 20px; color: var(--primary); }
.blog-grid-3 { grid-template-columns: repeat(3,1fr); gap: 16px; }
.blog-card-sm .blog-card-img { height: 140px; }
.blog-card-sm .blog-card-body h4 { font-size: .9rem; margin: 0 0 4px; }

/* Sayfalama */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.blog-page-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  transition: all .18s;
}
.blog-page-btn:hover, .blog-page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Blog responsive */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid-3 { grid-template-columns: 1fr; }
  .blog-article-body { padding: 20px 16px; }
  .blog-article h1 { font-size: 1.4rem; }
}

/* ══════════════════════════════════════════════════════════
   MOBİL STICKY ARA ÇUBUĞU
══════════════════════════════════════════════════════════ */
.mobile-call-bar { display: none; }

@media (max-width: 768px) {
  /* Eski float butonları gizle */
  .whatsapp-float,
  .phone-float { display: none !important; }

  /* Sticky bar */
  .mobile-call-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: 58px;
    box-shadow: 0 -3px 16px rgba(0,0,0,.18);
  }
  .mobile-call-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: .3px;
  }
  .mcb-call {
    background: #0d3b6e;
    color: #fff;
  }
  .mcb-whatsapp {
    background: #25d366;
    color: #fff;
  }
  /* Footer için alt boşluk bırak */
  .site-footer { padding-bottom: 70px !important; }
  .scroll-top { bottom: 72px; }
}
