:root {
  --primary-dark: #0a1f44;
  --primary: #1e3a8a;
  --primary-light: #3b82f6;
  --accent: #06b6d4;
  --bg-light: #f0f6ff;
  --text-dark: #0a1f44;
  --text-muted: #5a6b8c;
  --white: #ffffff;
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===== Navbar ===== */
.navbar {
  transition: all 0.4s ease;
  padding: 1.2rem 0;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 31, 68, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.7rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white) !important;
  letter-spacing: 1px;
}

.navbar-brand span {
  color: var(--accent);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  margin: 0 0.6rem;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.navbar-nav .nav-link:hover {
  color: var(--accent) !important;
}

.navbar-toggler {
  border: none;
  color: var(--white);
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* ===== Hero / Banner ===== */
.hero {
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(
      135deg,
      rgba(10, 31, 68, 0.92) 0%,
      rgba(30, 58, 138, 0.85) 100%
    ),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.15) 0%,
    transparent 60%
  );
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.4);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--accent), #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

.btn-primary-custom {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--primary-light) 100%
  );
  color: var(--white);
  border: none;
  padding: 0.9rem 2.2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--accent) 100%
  );
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-primary-custom:hover::before {
  left: 0;
}

.btn-primary-custom:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.5);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 0.85rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s ease;
  margin-left: 0.8rem;
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
  transform: translateY(-3px);
}

.hero-image {
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* ===== Section Common ===== */
section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title .subtitle {
  display: inline-block;
  color: var(--primary-light);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.section-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-title .divider {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  margin: 0 auto;
  border-radius: 2px;
}

.section-title .section-desc {
  max-width: 680px;
  margin: 1.4rem auto 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.contact .section-title .section-desc {
  color: rgba(255, 255, 255, 0.75);
}

/* ===== About ===== */
.about {
  background: var(--bg-light);
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-image-wrapper img {
  width: 100%;
  border-radius: 20px;
  transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

.about-image-wrapper::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent);
  border-radius: 20px;
  z-index: -1;
}

.about-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

.about-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.about-features li {
  padding: 0.6rem 0;
  color: var(--text-dark);
  font-weight: 500;
  display: flex;
  align-items: center;
}

.about-features li i {
  color: var(--accent);
  font-size: 1.3rem;
  margin-right: 0.8rem;
}

.stats-row {
  margin-top: 2.5rem;
}

.stat-box {
  text-align: center;
  padding: 1rem;
}

.stat-box h4 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.stat-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== Services ===== */
.services {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.services-slider-wrapper {
  position: relative;
  padding: 0 10px;
}

.services-swiper {
  padding: 20px 5px 60px !important;
  overflow: hidden;
}

.services-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid #e6ecf7;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(30, 58, 138, 0.15);
  border-color: transparent;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.25);
}

.service-card:hover .service-icon {
  transform: rotateY(360deg);
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--primary-light) 100%
  );
}

.service-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  color: var(--text-dark);
  line-height: 1.35;
  min-height: 3.2rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0;
}

.service-link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.service-link-arrow i {
  transition: transform 0.3s ease;
}

.service-card:hover .service-link-arrow {
  color: var(--accent);
}

.service-card:hover .service-link-arrow i {
  transform: translateX(5px);
}

/* ===== Contact ===== */
.contact {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.contact .section-title h2,
.contact .section-title .subtitle {
  color: var(--white);
}

.contact .section-title .subtitle {
  color: var(--accent);
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.contact-info-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.contact-info-card .icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-right: 1.2rem;
}

.contact-info-card h5 {
  margin: 0 0 0.3rem 0;
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-info-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.contact-form .form-label {
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.contact-form .form-control {
  border: 1px solid #dde4f0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.contact-form .form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.contact-form .btn-primary-custom {
  width: 100%;
  margin-top: 0.5rem;
}

/* ===== SweetAlert2 — Marka Teması ===== */
.akt-swal-popup {
  border-radius: 18px !important;
  padding: 2rem 1.5rem !important;
  box-shadow: 0 25px 60px rgba(10, 31, 68, 0.25) !important;
  font-family: "Poppins", sans-serif !important;
}
.akt-swal-title {
  color: var(--primary-dark) !important;
  font-weight: 700 !important;
  font-size: 1.4rem !important;
}
.akt-swal-text {
  color: var(--text-muted) !important;
  font-size: 1rem !important;
  line-height: 1.55 !important;
}
.akt-swal-popup .swal2-confirm.btn {
  margin-top: 0.5rem;
  padding: 0.6rem 2rem !important;
  font-size: 0.95rem !important;
}
.akt-swal-popup .swal2-icon {
  margin-top: 0.5rem !important;
}
.akt-swal-popup .swal2-icon.swal2-success [class^="swal2-success-line"] {
  background: var(--accent) !important;
}
.akt-swal-popup .swal2-icon.swal2-success .swal2-success-ring {
  border-color: rgba(6, 182, 212, 0.35) !important;
}
.akt-swal-popup .swal2-timer-progress-bar {
  background: var(--primary-light) !important;
}

/* ===== Footer ===== */
.footer {
  background: #06122a;
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
}

.footer h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.footer .brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer .brand span {
  color: var(--accent);
}

.footer p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 0.7rem;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.4);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  color: var(--white);
}

/* ===== Process / Çalışma Sürecimiz ===== */
.process {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.process-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.2rem 1.8rem 2rem;
  text-align: center;
  position: relative;
  height: 100%;
  border: 1px solid #e6ecf7;
  transition: all 0.4s ease;
  overflow: hidden;
}

.process-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.process-card > * {
  position: relative;
  z-index: 1;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(30, 58, 138, 0.25);
  border-color: transparent;
}

.process-card:hover::after {
  opacity: 1;
}

.process-card:hover h5,
.process-card:hover p {
  color: var(--white);
}

.process-card:hover .process-number {
  color: rgba(255, 255, 255, 0.18);
}

.process-card:hover .process-icon {
  background: var(--white);
  color: var(--primary);
}

.process-number {
  position: absolute;
  top: 8px;
  right: 18px;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(30, 58, 138, 0.08);
  line-height: 1;
  transition: color 0.4s ease;
  z-index: 0;
}

.process-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.2rem;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.25);
  transition: all 0.4s ease;
}

.process-card h5 {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
  transition: color 0.4s ease;
}

.process-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
  transition: color 0.4s ease;
}

/* ===== Swiper Customizations ===== */
.swiper-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--primary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.18);
  transition: all 0.3s ease;
}

.swiper-nav-btn:hover {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--primary-light) 100%
  );
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 12px 35px rgba(6, 182, 212, 0.4);
}

.services-prev {
  left: -22px;
}

.services-next {
  right: -22px;
}

.services-pagination {
  position: absolute;
  bottom: 10px !important;
  left: 0;
  right: 0;
  text-align: center;
}

.services-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #c5d2e8;
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 5px !important;
}

.services-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--primary-light) 100%
  );
  width: 30px;
  border-radius: 5px;
}

/* ===== Footer toggle (Tümünü Gör) ===== */
.footer-services {
  margin-bottom: 0;
}

.footer-services.collapse:not(.show) {
  display: none;
}

.footer-services.collapsing {
  transition: height 0.35s ease;
}

#footerServicesHidden.show {
  margin-top: 0.4rem;
}

.footer-toggle {
  display: inline-flex;
  align-items: center;
  margin-top: 0.9rem;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white) !important;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-toggle:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.footer-toggle i {
  transition: transform 0.3s ease;
  font-size: 0.95rem;
}

.footer-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.footer-toggle .toggle-label-less {
  display: none;
}

.footer-toggle[aria-expanded="true"] .toggle-label-more {
  display: none;
}

.footer-toggle[aria-expanded="true"] .toggle-label-less {
  display: inline;
}

/* =====================================================
 * Hizmet Detay Sayfası (hizmet.html)
 * ===================================================== */

/* Banner */
.service-detail-banner {
  padding: 160px 0 80px;
  color: var(--white);
  background-color: var(--primary-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.service-detail-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(6, 182, 212, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.service-detail-banner .container {
  position: relative;
  z-index: 1;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
}

.breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.breadcrumb-custom a:hover {
  color: var(--accent);
}

.breadcrumb-custom .divider-icon {
  font-size: 0.75rem;
  opacity: 0.5;
}

.service-banner-content {
  max-width: 850px;
}

.service-banner-icon {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 35px rgba(6, 182, 212, 0.35);
}

.service-banner-content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.service-banner-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0;
  max-width: 700px;
}

/* İçerik */
.service-detail-content {
  padding: 90px 0 80px;
  background: var(--white);
}

.service-detail-content .subtitle {
  color: var(--primary-light);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.detail-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin: 0.7rem 0 1rem;
  color: var(--text-dark);
}

.detail-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  border-radius: 2px;
  margin-bottom: 1.8rem;
}

.long-desc p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.02rem;
  margin-bottom: 1.2rem;
}

.features-block {
  margin-top: 2.5rem;
  padding: 1.8rem;
  background: var(--bg-light);
  border-radius: 16px;
  border-left: 4px solid var(--accent);
}

.features-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
}

.features-heading i {
  color: var(--accent);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  padding: 0.55rem 0;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.97rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  color: var(--white);
  font-size: 0.85rem;
  margin-right: 0.8rem;
  margin-top: 2px;
}

/* Yan CTA kart */
.detail-cta-card {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  color: var(--white);
  padding: 2.2rem 1.8rem;
  border-radius: 20px;
  text-align: center;
  position: sticky;
  top: 110px;
  box-shadow: 0 20px 45px rgba(10, 31, 68, 0.2);
  overflow: hidden;
}

.detail-cta-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.25) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.detail-cta-card > * {
  position: relative;
}

.cta-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 18px;
  background: rgba(6, 182, 212, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.6rem;
}

.detail-cta-card h4 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.detail-cta-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  padding: 0.7rem 1.4rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

/* İlgili hizmetler */
.related-services-section {
  padding: 90px 0;
  background: var(--bg-light);
}

.related-service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 2rem 1.7rem;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e6ecf7;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.related-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--primary-light));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.related-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(30, 58, 138, 0.15);
  border-color: transparent;
}

.related-service-card:hover::before {
  transform: scaleY(1);
}

.related-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  transition: all 0.4s ease;
}

.related-service-card:hover .related-icon {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--primary-light) 100%
  );
  transform: scale(1.05);
}

.related-service-card h5 {
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.related-service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.related-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary-light);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.3s ease;
}

.related-arrow i {
  transition: transform 0.3s ease;
}

.related-service-card:hover .related-arrow {
  color: var(--accent);
}

.related-service-card:hover .related-arrow i {
  transform: translateX(5px);
}

/* Bulunamadı */
.not-found-section {
  padding: 180px 0 120px;
  background: var(--bg-light);
  min-height: 60vh;
}

.not-found-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.not-found-section h2 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

/* Responsive */
@media (max-width: 1199px) {
  .services-prev {
    left: -10px;
  }
  .services-next {
    right: -10px;
  }
}

@media (max-width: 991px) {
  .navbar.scrolled,
  .navbar-collapse {
    background: rgba(10, 31, 68, 0.97);
  }
  .navbar-collapse {
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
  }
  .hero {
    text-align: center;
    padding: 120px 0 60px;
    min-height: auto;
  }
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-image {
    margin-top: 3rem;
  }
  .btn-outline-custom {
    margin-left: 0;
    margin-top: 0.8rem;
  }
  .about-image-wrapper {
    margin-bottom: 3rem;
  }
  .contact-form {
    margin-top: 2.5rem;
  }
  section {
    padding: 70px 0;
  }
  .section-title {
    margin-bottom: 3rem;
  }

  /* Swiper nav under slider on tablets */
  .swiper-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  .services-prev {
    left: -5px;
  }
  .services-next {
    right: -5px;
  }
}

@media (max-width: 767px) {
  section {
    padding: 60px 0;
  }
  .navbar-brand {
    font-size: 1.35rem;
  }
  .hero {
    padding: 110px 0 50px;
  }
  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-badge {
    font-size: 0.72rem;
    padding: 0.4rem 1rem;
    letter-spacing: 0.5px;
  }
  .btn-primary-custom,
  .btn-outline-custom {
    padding: 0.75rem 1.6rem;
    font-size: 0.95rem;
    width: 100%;
    margin-left: 0;
  }
  .btn-outline-custom {
    margin-top: 0.7rem;
  }
  .section-title {
    margin-bottom: 2.5rem;
  }
  .section-title .subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }
  .section-title .section-desc {
    font-size: 0.95rem;
  }
  .about-content h3 {
    font-size: 1.55rem;
  }
  .stat-box h4 {
    font-size: 1.8rem;
  }
  .stat-box p {
    font-size: 0.8rem;
  }
  .service-card {
    padding: 2rem 1.5rem;
  }
  .service-card h4 {
    min-height: auto;
    font-size: 1.1rem;
  }
  .process-card {
    padding: 1.8rem 1.4rem;
  }
  .process-number {
    font-size: 3.2rem;
  }
  .contact-form {
    padding: 1.6rem;
  }
  .contact-info-card {
    padding: 1.2rem;
  }
  .contact-info-card .icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 1.2rem;
    margin-right: 0.9rem;
  }
  .contact-info-card h5 {
    font-size: 0.95rem;
  }
  .contact-info-card p {
    font-size: 0.88rem;
  }
  .footer {
    padding: 50px 0 0;
    text-align: center;
  }
  .footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer .social-links {
    justify-content: center;
  }
  .footer-toggle {
    margin-left: auto;
    margin-right: auto;
  }

  /* Hide arrows on smallest screens, rely on swipe + pagination */
  .swiper-nav-btn {
    display: none;
  }
  .services-swiper {
    padding: 15px 0 50px !important;
  }

  .scroll-top {
    width: 42px;
    height: 42px;
    bottom: 20px;
    right: 20px;
  }

  /* Hizmet detay sayfası mobil */
  .service-detail-banner {
    padding: 130px 0 60px;
  }
  .service-banner-icon {
    width: 64px;
    height: 64px;
    font-size: 1.7rem;
    border-radius: 16px;
  }
  .service-banner-content p {
    font-size: 0.95rem;
  }
  .breadcrumb-custom {
    font-size: 0.8rem;
    margin-bottom: 1.4rem;
  }
  .service-detail-content {
    padding: 60px 0 50px;
  }
  .features-block {
    padding: 1.4rem;
  }
  .detail-cta-card {
    position: static;
    margin-top: 2rem;
  }
  .related-services-section {
    padding: 60px 0;
  }
  .not-found-section {
    padding: 140px 0 80px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }
  .contact-form {
    padding: 1.3rem;
  }
}
