:root {
  --primary: #113a60;
  --primary-dark: #071e35;
  --secondary: #1d5d8f;
  --accent: #eb5a4a;
  --accent-hover: #d94a39;
  --success: #1fb978;
  --text: #1c2430;
  --muted: #53657a;
  --surface: #f7f9fc;
  --card: #ffffff;
  --border: rgba(13, 31, 52, 0.08);
  --shadow: 0 18px 38px rgba(7, 28, 46, 0.14);
}

* {
  box-sizing: border-box;
}

.avantajlar-section {
  padding: 48px 0 20px;
  background: #fff;
}

.avantajlar-section .section-header {
  text-align: center;
  margin-bottom: 28px;
}

.avantajlar-section .section-title {
  font-size: clamp(1.65rem, 2.2vw, 2.15rem);
  font-weight: 800;
  color: #1f2d3d;
  margin: 0 0 10px;
  line-height: 1.2;
}

.avantajlar-section .section-subtitle {
  margin: 0 auto;
  max-width: 760px;
  color: #66758a;
  font-size: 1rem;
}

.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.static-why-layout { display: none; }

/* Dinamik dört kart tek bir ızgarada yerleşir; böylece satırlar eşit yüksek kalır. */
.dynamic-why-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
}

.dynamic-why-layout .why-column {
  display: contents;
}

.dynamic-why-layout .why-card-h {
  height: 100%;
}

.why-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-card-h {
  background: #fff;
  border: 1px solid rgba(17, 58, 96, 0.08);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 8px 22px rgba(10, 28, 46, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.dynamic-why-layout .why-icon-h {
  background: linear-gradient(135deg, #17a2b8, #138496);
}

.dynamic-why-layout .why-column:nth-child(2) .why-card-h:nth-child(1) .why-icon-h {
  background: linear-gradient(135deg, #f7b500, #e0a800);
}

.dynamic-why-layout .why-column:nth-child(2) .why-card-h:nth-child(2) .why-icon-h {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.why-icon-h {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
}

.why-content-h h3 {
  margin: 0 0 8px;
  color: #182639;
  font-size: 1.08rem;
  font-weight: 800;
}

.why-content-h p {
  margin: 0;
  color: #5e6c7d;
  font-size: 0.96rem;
  line-height: 1.6;
}

.quick-call-button {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1300;
  display: none;
  pointer-events: auto;
  width: auto;
  height: auto;
}

@media (max-width: 768px) {
  .quick-call-button {
    display: block;
    right: 0;
    left: auto;
    transform: none;
  }

  .call-now-button {
    border-radius: 999px 0 0 999px !important;
    border-right: 0 !important;
    padding-right: 16px;
  }

  .quick-call-button-left {
    left: 0;
    right: auto;
  }

  .quick-call-button-left .call-now-button {
    border-radius: 0 999px 999px 0 !important;
    border-left: 0 !important;
    border-top: 2px solid #25D366 !important;
    border-right: 2px solid #25D366 !important;
    border-bottom: 2px solid #25D366 !important;
    padding-right: 3px;
    padding-left: 10px;
  }

  .quick-call-button-left .phone-circle {
    background: #25D366;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.35);
  }
}

.quick-call-button a {
  text-decoration: none;
}

.call-now-button {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #031021 0%, #2C5282 100%);
  color: #fff !important;
  text-decoration: none !important;
  padding: 3px 3px;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(44, 82, 130, 0.4);
  transition: all 0.3s ease;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--accent);
  cursor: pointer;
  white-space: nowrap;
}

.call-now-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(44, 82, 130, 0.6);
  border-color: var(--accent-hover);
  color: #fff !important;
}

.call-now-button.clicked {
  transform: scale(0.95);
}

.phone-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(231, 76, 60, 0.3);
  flex-shrink: 0;
}

.phone-icon {
  font-size: 18px;
  color: #fff;
  animation: phone-ring 2s ease-in-out infinite;
}

@keyframes phone-ring {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-18deg); }
  20% { transform: rotate(14deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(6deg); }
  50% { transform: rotate(0deg); }
}

.call-text {
  margin: 0;
  color: #fff !important;
  font-weight: 700;
  white-space: nowrap;
}

.floating-call {
  display: none !important;
}

.main-footer {
  background: linear-gradient(180deg, #0c223d 0%, #071e35 100%);
  color: #eaf1f8;
  padding: 60px 0 20px;
  margin-top: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1.2fr;
  gap: 32px;
}

.footer-column h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}

.footer-column p,
.footer-column li,
.footer-column a {
  color: rgba(234,241,248,0.82);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-column a {
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 28px;
  padding-top: 18px;
  text-align: center;
  color: rgba(234,241,248,0.7);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .why-us-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
}

@media (max-width: 640px) {
  .why-card-h {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .why-icon-h {
    margin-bottom: 2px;
  }

  .call-now-button {
    padding-right: 10px;
  }
}

* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Nunito', 'Segoe UI', Arial, sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  margin-top: var(--header-h, 165px) !important;
}

.top-info-bar {
  background: white;
  color: #1B365D;
  padding: 5px 0;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 2px solid #f0f0f0;
}

.top-info-container {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-logo {
  display: flex;
  align-items: center;
}

.top-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.top-logo a:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.top-logo img {
  height: 55px;
  width: auto;
  transition: all 0.3s ease;
}

.info-items {
  display: flex;
  gap: 40px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-item i {
  font-size: 18px;
  color: #1B365D;
}

.info-content {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.info-label {
  font-size: 12px;
  opacity: 0.8;
  font-weight: 500;
}

.info-value {
  font-size: 14px;
  font-weight: 700;
}

.phone-link {
  color: inherit !important;
  text-decoration: none;
}

.mobile-social-icons {
  display: none;
  gap: 3px;
  align-items: center;
}

.mobile-header-phone {
  display: none;
}

.mobile-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(27, 54, 93, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(27, 54, 93, 0.2);
  text-decoration: none;
}

.mobile-social-icons a:hover {
  background: rgba(27, 54, 93, 0.2);
  transform: translateY(-2px) scale(1.1);
}

.mobile-social-icons img {
  width: 18px;
  height: 18px;
}

.main-nav-bar {
  background: linear-gradient(135deg, #1d252e 0%, #3D4B56 100%);
  color: white;
  padding: 1px 0;
}

.nav-container {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.desktop-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-menu li {
  position: relative;
}

.desktop-menu .menu-button {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 20px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.desktop-menu .menu-button:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.desktop-menu .menu-button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.desktop-menu .menu-button:hover::after {
  width: 80%;
}

.desktop-menu .menu-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icons {
  display: flex;
  gap: 5px;
  align-items: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.social-icons a:hover {
  background: rgba(255, 193, 7, 0.2);
  border-color: #FFC107;
  transform: translateY(-2px) scale(1.1);
}

.social-icons img {
  width: 20px;
  height: 20px;
}

.desktop-menu .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  max-height: 60vh;
  overflow-y: auto;
  padding: 10px 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.desktop-menu .dropdown-menu.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.desktop-menu .dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  background: none;
  border-radius: 0;
}

.desktop-menu .dropdown-menu a:hover {
  background: #f8f9fa;
  border-left-color: #091a30;
  color: #091a30;
  transform: translateX(5px);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 10px 18px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: white;
  color: #1B365D;
}

.mobile-phone-info {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: var(--header-h, 140px);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-h, 140px));
  background: linear-gradient(135deg, #031021 0%, #2C5282 100%);
  border-top: 2px solid #E74C3C;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease;
}

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

.mobile-menu-list {
  list-style: none;
  padding: 20px;
  margin: 0;
  min-height: 100%;
  padding-bottom: 40px;
}

.mobile-menu-list li {
  margin-bottom: 15px;
}

.mobile-menu-list a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 15px;
  display: block;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-menu-list a:hover {
  background: rgba(255, 193, 7, 0.2);
  border-left-color: #FFC107;
  transform: translateX(10px);
}

.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  margin-top: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-submenu.active {
  max-height: 400px;
  padding: 8px 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.mobile-submenu li {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-submenu li:last-child {
  border-bottom: none;
}

.mobile-submenu a {
  padding: 14px 25px;
  font-size: 14px;
  font-weight: 500;
  background: none;
  display: block;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.9);
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}

.mobile-submenu a:hover,
.mobile-submenu a:active {
  background: rgba(255, 193, 7, 0.15);
  border-left-color: #FFC107;
  color: white;
  transform: translateX(5px);
}

.mobile-menu-list > li > a i {
  float: right;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  body { margin-top: var(--header-h, 140px) !important; }

  .main-nav-bar {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 4;
    height: 0;
    padding: 0;
    background: transparent;
  }

  .top-info-bar { padding: 5px 0; }

  .top-info-container {
    width: calc(100% - 20px);
    flex-direction: row;
    gap: 5px;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }

  .top-logo { flex: 0 0 auto; }
  .top-logo img { height: 47px; }

  .info-items { display: none; }

  .mobile-social-icons {
    display: none !important;
  }

  .mobile-header-phone {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #12335d;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.05;
    text-decoration: none;
    white-space: nowrap;
  }

  .mobile-header-phone i {
    display: none;
  }

  .mobile-header-phone span {
    display: grid;
    gap: 2px;
    margin-left: 0;
    padding: 0 0 3px;
    border-bottom: 2px solid #F05345;
  }
  .mobile-header-phone span::before {
    content: 'BİZİ ARAYIN';
    color: #F05345;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
  }

  .mobile-social-icons a { width: 30px; height: 30px; }
  .mobile-social-icons img { width: 16px; height: 16px; }

  .nav-container {
    width: calc(100% - 20px);
    justify-content: space-between;
    align-items: center;
    height: 0;
    padding: 0;
    position: relative;
  }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    position: absolute;
    left: 0;
    top: 12px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
    background: rgba(3, 20, 39, 0.72);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(6px);
    font-size: 0;
  }

  .mobile-menu-btn i { margin: 0; font-size: 18px; }

  .mobile-menu-btn.is-scrolled-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-14px);
  }

  .mobile-phone-info {
    display: none;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    flex: 0 0 auto;
    position: absolute;
    right: 0;
    top: 13px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(3, 20, 39, 0.62);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(6px);
    text-decoration: none;
    white-space: nowrap;
  }

  .mobile-phone-info i { color: #E74C3C; font-size: 16px; }

  .mobile-menu {
    top: calc(var(--header-h, 140px) + 66px);
    height: calc(100vh - var(--header-h, 140px) - 66px);
  }

  .social-icons { display: none; }
  .nav-logo { position: static; }
  .desktop-menu { display: none; }
}

@media (max-width: 480px) {
  .top-info-container { padding: 0; }
  .top-logo img { height: 45px; }

  .nav-container { height: 0; padding: 0; min-height: 0; }
  .mobile-menu-btn { left: 0; top: 10px; width: 42px; height: 42px; }
  .mobile-phone-info { font-size: 15px; right: 0; top: 10px; padding: 8px 11px; }
  .mobile-header-phone { font-size: 20px; }
  .mobile-header-phone span { margin-left: 0; padding-bottom: 2px; }

}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.breadcrumb-bar {
  background: #f6f9fc;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.breadcrumb-bar:has(.breadcrumb-list:empty) {
  display: none;
}

.breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--muted);
}

.breadcrumb-list a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

.breadcrumb-list li[aria-current="page"] {
  color: var(--muted);
  font-weight: 600;
}

.breadcrumb-sep {
  color: var(--border);
}

.hero-content-block {
  /* Hero görsel kadrajı: masaüstünde buradaki iki değeri değiştirerek konumu ayarlayabilirsin.
     Örnekler: 62% top, 62% center, 70% 15%, 50% 30% */
  --hero-image-x: 62%;
  --hero-image-y: top;
  --hero-image-top-space: 30px;
  position: relative;
  background: #07111e;
  color: white;
  text-align: center;
  padding: 0;
  margin: 0;
  margin-top: calc(-1 * var(--header-h, 165px));
  padding-top: var(--header-h, 165px);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}

.hero-background-image {
  position: absolute;
  top: var(--hero-image-top-space);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-image-x) var(--hero-image-y);
}

.hero-content-block::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(1, 14, 28, 0.22) 0%, rgba(1, 14, 28, 0.10) 48%, rgba(1, 14, 28, 0.03) 100%);
  pointer-events: none;
}

.hero-content-block .content-wrapper {
  position: relative;
  z-index: 2;
  width: min(1080px, calc(100% - 32px));
  max-width: none;
  margin: 0 auto;
  padding: 0;
  text-align: left;
}

.hero-dynamic-title {
  font-size: 50px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
  text-align: left;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 10px;
}

.hero-title-line {
  display: block;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-location-line {
  display: block;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-content-block p {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0;
  max-width: 600px;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-description {
  margin-bottom: 16px !important;
}

.hero-season-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 19px;
  width: fit-content;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.35rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-season-icons i { transition: transform 0.2s ease, opacity 0.2s ease; }
.hero-season-icons i:hover { transform: translateY(-2px); opacity: 0.82; }

.hero-season-icons-desktop {
  position: absolute;
  z-index: 2;
  top: calc(var(--header-h, 165px) + 75px);
  left: max(20px, calc((100vw - 1080px) / 2));
  gap: 35px;
  margin: 0;
  font-size: 2.1rem;
}

.hero-season-icons-mobile { display: none; }

.hero-features-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(680px, 100%);
  margin-top: 30px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: rgba(3, 20, 39, 0.76);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-width: 0;
  padding: 10px 14px;
  border-radius: 14px;
  color: #fff;
  transition: background 0.2s ease;
}

.hero-feature-item + .hero-feature-item {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-feature-icon {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.hero-feature-icon i { font-size: 0.95rem; }
.hero-feature-item:nth-child(1) i { color: #21db91; }
.hero-feature-item:nth-child(2) i { color: #ff9b70; }
.hero-feature-item:nth-child(3) i { color: #7d92ff; }
.hero-feature-item:nth-child(1) .hero-feature-icon { background: rgba(33, 219, 145, 0.14); border-color: rgba(33, 219, 145, 0.28); }
.hero-feature-item:nth-child(2) .hero-feature-icon { background: rgba(255, 155, 112, 0.14); border-color: rgba(255, 155, 112, 0.28); }
.hero-feature-item:nth-child(3) .hero-feature-icon { background: rgba(125, 146, 255, 0.14); border-color: rgba(125, 146, 255, 0.28); }

.hero-feature-copy { display: grid; gap: 1px; min-width: 0; }
.hero-feature-copy strong { font-size: 0.92rem; line-height: 1.15; }
.hero-feature-copy small { color: rgba(255, 255, 255, 0.7); font-size: 0.7rem; line-height: 1.2; }

/* Hero alanı mobil geçişleri - eski tasarımla birebir (responsive.css'ten).
   Bu blok, yukarıdaki masaüstü .hero-content-block kuralından SONRA geliyor,
   böylece CSS öncelik sırasında (eşit özgüllükte sonraki kural kazanır) doğru çalışır. */
@media (max-width: 768px) {
  .hero-season-icons-desktop { display: none; }
  .hero-season-icons-mobile { display: flex; }

  .hero-content-block {
    /* Mobil/tablet hero kadrajı */
    --hero-image-x: 82%;
    --hero-image-y: center;
    --hero-image-top-space: 15px;
    height: 100vh;
    padding: 0;
    margin: 0;
    margin-top: calc(-1 * var(--header-h, 140px));
    padding-top: var(--header-h, 140px);
    justify-content: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    background: #07111e;
  }

  .hero-content-block .content-wrapper {
    margin-top: 0;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    text-align: center;
  }

  .hero-dynamic-title {
    font-size: 36px;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
  }

  .hero-content-block p {
    font-size: 25px !important;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: center !important;
  }

  .hero-season-icons {
    gap: 17px;
    margin-bottom: 17px;
    font-size: 1.2rem;
  }

  .hero-features-list {
    width: 100%;
    margin-top: 10px;
  }

  .hero-feature-item {
    padding: 10px 11px;
  }

  .hero-feature-copy strong { font-size: 0.84rem; }
  .hero-feature-copy small { font-size: 0.64rem; }
}

@media (max-width: 480px) {
  .hero-season-icons {
    gap: 20px;
    margin-bottom: 10px;
    font-size: 20px;
  }

  .hero-features-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 4px;
  }

  .hero-feature-item {
    gap: 6px;
    padding: 8px 6px;
  }

  .hero-feature-item + .hero-feature-item { border-left: 1px solid rgba(255, 255, 255, 0.18); }
  .hero-feature-icon { flex-basis: 26px; width: 26px; height: 26px; border-radius: 8px; }
  .hero-feature-icon i { font-size: 0.8rem; }
  .hero-feature-copy strong { font-size: 0.72rem; }
  .hero-feature-copy small { font-size: 0.56rem; }

  .hero-content-block {
    /* Küçük mobil hero kadrajı */
    --hero-image-x: 74%;
    --hero-image-y: center;
    --hero-image-top-space: 0px;
    height: 100vh;
    padding: 0;
    margin: 0;
    margin-top: calc(-1 * var(--header-h, 140px));
    padding-top: var(--header-h, 140px);
    justify-content: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    background: #07111e;
  }

  .hero-content-block .content-wrapper {
    margin-top: 5px;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
  }

  .hero-dynamic-title {
    font-size: 28px;
  }

  .hero-content-block p {
    font-size: 17px !important;
    line-height: 1.4;
    margin-bottom: 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease;
  padding: 14px 24px;
}

.btn-primary {
  background: linear-gradient(135deg, #eb5a4a 0%, #d94a39 100%);
  color: white;
  box-shadow: 0 15px 30px rgba(235, 90, 74, 0.25);
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: white;
}

.hero-section,
.hero-wrap,
.hero-text,
.badge {
  display: none;
}

.services-section,
.advantages-section,
.content-section,
.faq-section {
  padding: 20px 0;
}

/* Ana bölümler arasında tutarlı dikey ritim. */
main > section {
  margin-bottom: 30px;
}

main > section:last-of-type {
  margin-bottom: 0;
}

.guide-banner-section .container {
  position: relative;
  overflow: hidden;
  border: 1px solid #e5ebf1;
  border-radius: 18px;
  background: #eef2f4;
  box-shadow: 0 12px 28px rgba(16, 52, 94, 0.08);
}

.guide-banner-section img {
  display: block;
  width: 100%;
  min-height: 180px;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
}

.guide-banner-copy {
  position: absolute;
  z-index: 1;
  top: 14px;
  right: 14px;
  left: auto;
  width: auto;
  max-width: calc(100% - 28px);
  transform: none;
  box-sizing: border-box;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(12, 39, 73, 0.12);
  color: #082d58;
  backdrop-filter: blur(4px);
}

.guide-banner-copy span,
.guide-banner-copy strong {
  display: block;
}

.guide-banner-copy span {
  margin-bottom: 3px;
  color: #e44f42;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-banner-copy strong {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.16;
}

@media (max-width: 600px) {
  .guide-banner-section .container {
    border-radius: 14px;
  }

  .guide-banner-section img {
    min-height: 130px;
    max-height: 160px;
  }

  .guide-banner-copy {
    top: 10px;
    right: 10px;
    left: auto;
    width: auto;
    max-width: calc(100% - 20px);
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.9);
  }

  .guide-banner-copy span {
    font-size: 0.68rem;
  }

  .guide-banner-copy strong {
    font-size: 1.15rem;
  }
}

.services-section {
  background: #fff;
}

.section-header {
  margin-bottom: 32px;
}

.section-header.center {
  text-align: center;
}

.section-badge {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: #ebf4ff;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-header h2 {
  margin: 14px 0 10px;
  color: var(--primary-dark);
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  font-weight: 800;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

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

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 10px 10px;
  box-shadow: 0 12px 26px rgba(10, 25, 45, 0.04);
}

.service-card.featured {
  border-color: rgba(26,56,88,0.18);
  box-shadow: 0 18px 36px rgba(26,56,88,0.08);
}

.service-card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
  display: block;
}

.last-updated {
  margin: 18px 0 0;
  color: #5d6b78;
  font-size: 0.875rem;
}

.article-related-links {
  margin: 22px 0 0;
  font-weight: 700;
}

.article-related-links a {
  color: var(--primary);
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #ebf4ff;
  font-size: 1.4rem;
  margin-bottom: 0;
  flex-shrink: 0;
}

.service-card h3 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 1.25rem;
}

.service-card-subtitle {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.service-card p,
.article-box p,
.faq-item span,
.footer-column p {
  color: var(--muted);
}

.service-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text);
}

.service-card li {
  margin: 8px 0;
}

.brands-section {
  background: #f7faff;
  padding: 80px 0 20px;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.brand-strip span,
.brand-strip a {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: white;
  color: var(--primary-dark);
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(10,25,45,0.03);
  text-align: center;
  padding: 8px;
  transition: all 0.2s ease;
}

.brand-strip a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(17, 41, 77, 0.04);
}

.kicker {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #edf6ff;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.info-card h3 {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-size: 1.12rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.article-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px 30px;
  box-shadow: 0 12px 24px rgba(10, 25, 45, 0.04);
}

.article-box h2 {
  margin-top: 0;
  color: var(--primary-dark);
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
}

.zones-section {
  padding: 20px 0 0;
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.zones-grid span,
.zones-grid a {
  display: grid;
  place-items: center;
  min-height: 55px;
  background: #f6fafd;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--primary-dark);
  font-weight: 700;
  text-align: center;
  padding: 8px;
  transition: all 0.2s ease;
}

.zones-grid a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.cta-section {
  padding: 18px 0 42px;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  background: linear-gradient(120deg, #1e262f 0%, #3b4954 100%);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 26px 30px;
  box-shadow: 0 16px 34px rgba(15, 62, 114, 0.16);
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: -120px;
  top: -145px;
  background: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.cta-content,
.cta-call-button {
  position: relative;
  z-index: 1;
}

.cta-box .section-badge {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  padding: 6px 11px;
}

.cta-box h2 {
  margin: 11px 0 6px;
  color: white;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.2;
}

.cta-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.cta-call-button.btn-primary {
  min-width: 220px;
  padding: 13px 18px;
  gap: 11px;
  border-radius: 16px;
  background: #fff;
  color: #0b315c;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  text-align: left;
}

.cta-call-button i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f5f1;
  color: #0a8069;
  font-size: 0.95rem;
}

.cta-call-button span {
  display: grid;
  gap: 2px;
  font-size: 1.08rem;
  line-height: 1.1;
}

.cta-call-button small {
  color: #52708d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.cta-call-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.ai-article-section {
  padding: 18px 0 64px;
}

.ai-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.ai-article-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(10, 25, 45, 0.06);
  border-top: 4px solid #1683c5;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}

.ai-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(10, 25, 45, 0.11);
}

.guide-ariza { border-top-color: #e85d4a; }
.guide-montaj { border-top-color: #0a9676; }

.guide-card-top {
  display: flex;
  align-items: center;
  gap: 11px;
}

.guide-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #1478b7;
  background: #e9f5fc;
}

.guide-ariza .guide-icon { color: #d8503d; background: #fff0ed; }
.guide-montaj .guide-icon { color: #087b61; background: #e9f8f3; }

.guide-meta {
  display: block;
  margin-top: 3px;
  color: #718096;
  font-size: .76rem;
}

.article-kicker {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eefaf6;
  color: #0b7f68;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.ai-article-card h3 {
  margin: 18px 0 10px;
  color: var(--primary-dark);
  font-size: 1.12rem;
  line-height: 1.35;
}

.ai-article-card .guide-intro {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
}

.guide-steps {
  list-style: none;
  counter-reset: guide-step;
  margin: 0;
  padding: 0;
}

.guide-steps li {
  counter-increment: guide-step;
  position: relative;
  padding: 0 0 12px 31px;
  color: var(--text);
  line-height: 1.55;
  font-size: .92rem;
}

.guide-steps li::before {
  content: counter(guide-step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e9f5fc;
  color: #1478b7;
  font-size: .72rem;
  font-weight: 800;
}

.guide-ariza .guide-steps li::before { background: #fff0ed; color: #d8503d; }
.guide-montaj .guide-steps li::before { background: #e9f8f3; color: #087b61; }

.guide-card-footer {
  border-top: 1px solid #e8eef4;
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  color: #718096;
  font-size: .75rem;
}

.guide-card-footer a {
  color: #1478b7;
  font-weight: 800;
  text-decoration: none;
}

.guide-card-footer i { margin-left: 4px; }

.guide-section-intro {
  max-width: 680px;
  margin: 10px auto 0 !important;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.map-section {
  padding: 20px 0;
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 12px 26px rgba(10, 25, 45, 0.06);
  background: #fff;
}

.map-frame iframe {
  display: block;
  border: 0;
  width: 100%;
  height: 360px;
}

@media (max-width: 760px) {
  .map-frame iframe { height: 300px; }
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 22px;
}

.faq-item strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.site-footer {
  background: #1e262f;
  color: rgba(255,255,255,0.85);
  padding-top: 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding-bottom: 28px;
}

.footer-column h4 {
  margin: 0 0 14px;
  color: white;
  font-size: 1.18rem;
}

.site-footer .footer-column h3 i {
  margin-right: 7px;
  color: var(--accent);
}

.site-footer .footer-column p,
.site-footer .footer-column li,
.site-footer .footer-column a {
  color: rgba(255,255,255,0.82);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-column a {
  color: rgba(255,255,255,0.8);
}

.footer-phone {
  display: inline-block;
  margin-top: 12px;
  color: #fff !important;
  font-weight: 700;
}

.footer-phone i,
.footer-detail i {
  margin-right: 7px;
  color: var(--accent);
}

.footer-detail {
  margin: 9px 0 0;
  font-size: 0.92rem;
}

.footer-address {
  margin-top: 12px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  font-weight: 700;
}

.social-links a:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}

.social-links img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.footer-disclaimer {
  margin: 16px 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.62) !important;
}

.floating-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #0f766e);
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  box-shadow: 0 18px 38px rgba(14,165,233,0.35);
  z-index: 200;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0 30px;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 980px) {
  .hero-wrap,
  .services-grid,
  .advantages-grid,
  .footer-grid,
  .brand-strip,
  .zones-grid,
  .ai-article-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .dynamic-why-layout {
    grid-template-columns: 1fr;
  }

  .cta-box {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 23px 22px;
  }

  .cta-call-button.btn-primary {
    width: 100%;
  }

  .services-grid,
  .advantages-grid,
  .footer-grid,
  .brand-strip {
    grid-template-columns: 1fr;
    display: grid;
  }

  .zones-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
  }

  .ai-article-grid {
    grid-template-columns: 1fr;
  }
}
