/* ==========================================================================
   SİVAS VİNÇ KİRALAMA (sivasvinç.net) - CSS DESIGN SYSTEM
   Theme: Heavy Navy & Slate Balanced Vibe with Subtle Red Accents
   ========================================================================== */

:root {
  --color-primary: #832b37;         /* Elegant Burgundy Crimson (#832b37) */
  --color-primary-hover: #6b222c;
  --color-primary-light: #f9ecee;
  --color-secondary: #0F172A;       /* Heavy Navy Dark Slate */
  --color-navy-light: #1E293B;
  --color-text-main: #1E293B;       /* High-contrast crisp body text */
  --color-text-muted: #64748B;
  --color-bg-light: #F8FAFC;
  --color-bg-white: #FFFFFF;
  --color-border: #E2E8F0;
  --color-border-dark: #CBD5E1;
  
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* KESKİN HATLI TEMALAR DÜZENLEMESİ (Sharp Industrial Corners) */
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-full: 0px;
  
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 6px 16px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 24px rgba(15, 23, 42, 0.12);
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: clip !important;
  width: 100% !important;
  max-width: 100vw !important;
  position: relative;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-bg-light);
  font-size: 16px;
  line-height: 1.7;
}

body {
  font-size: 16px;
  color: var(--color-text-main);
}

p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-main);
}

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

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

ul {
  list-style: none;
}

/* Buttons (Keskin Hatlı) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 0px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
}
.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-call-now {
  background: var(--color-secondary);
  color: #FFFFFF;
  border-radius: 0px;
  border: 1px solid var(--color-secondary);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}
.btn-call-now i {
  color: #FFFFFF;
}
.btn-call-now:hover {
  background: var(--color-navy-light);
  border-color: var(--color-navy-light);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn-hero-primary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 0px;
}
.btn-hero-primary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 16px 30px;
  font-size: 16px;
  border-radius: 0px;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  background: transparent;
  border-radius: 0px;
}
.btn-outline:hover {
  background: var(--color-secondary);
  color: #fff;
}

/* TOP BAR */
.top-bar {
  background: var(--color-secondary);
  color: #CBD5E1;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.badge-724 {
  background: rgba(255, 255, 255, 0.08);
  color: #E2E8F0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 3px 10px;
  border-radius: 0px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.badge-724 i {
  color: var(--color-primary);
}

.top-contact {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-phone {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.top-phone:hover {
  color: #94A3B8;
}

.top-wp {
  color: #4ADE80;
  font-weight: 700;
  font-size: 15px;
}
.top-wp:hover {
  color: #86EFAC;
}

/* MAIN HEADER */
.main-header {
  background: var(--color-bg-white);
  position: relative;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  border-bottom: 2px solid var(--color-border);
  transition: box-shadow 0.3s ease;
}

.main-header.is-sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 10000 !important;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.14) !important;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo-img {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  height: 55px;
}

.logo-icon-bg {
  width: 48px;
  height: 48px;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-bottom: 3px solid var(--color-primary);
}

.brand-names {
  display: flex;
  flex-direction: column;
}

.brand-main {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--color-secondary);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.brand-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  gap: 6px;
}

.nav-item {
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-secondary);
  border-radius: 0px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 3px solid transparent;
}

.nav-item:hover, .nav-item.active {
  color: var(--color-secondary);
  background: var(--color-bg-light);
  border-bottom-color: var(--color-secondary);
}

/* PAGE VIEWS MANAGEMENT */
.page-view {
  display: none;
  animation: fadeIn 0.3s ease forwards;
}

.page-view.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* HERO SECTION (Sade & Dengeli Renk Paleti) */
.hero-box {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.94) 0%, rgba(30, 41, 59, 0.92) 100%), url('images/vinc-kiralama-04.jpg') center/cover no-repeat;
  color: #fff;
  padding: 100px 0 110px;
  overflow: hidden;
  border-bottom: 4px solid var(--color-secondary);
}

.hero-bg-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-text-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  border: 1px solid var(--color-primary-hover);
  color: #fff;
  padding: 6px 16px;
  border-radius: 0px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.hero-badge i {
  color: #fff;
}

.hero-text-content h1 {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-text-content h1 span {
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-color: var(--color-primary);
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}

.hero-text-content p {
  font-size: 18px;
  color: #E2E8F0;
  margin-bottom: 35px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* SECTIONS GLOBAL */
.section-block {
  padding: 75px 0;
}

.bg-white { background-color: #FFFFFF; }
.bg-light { background-color: #F8FAFC; }

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 45px;
}

.section-subtitle {
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 16px;
}

/* HOME ABOUT SUMMARY CARD */
.home-about-card {
  max-width: 920px;
  margin: 0 auto;
}

.h-about-info h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-secondary);
  margin-bottom: 18px;
  font-weight: 800;
}

.h-about-info p {
  margin-bottom: 18px;
  color: var(--color-text-main);
  font-size: 16px;
}

.about-quick-links {
  margin-top: 25px;
}

/* 7 SERVICES GRID & CARDS (Keskin Hatlı) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

/* HİZMET KUTULARI DÜZENİ (6 Hizmet: 3'e 3 Mükemmel Dengeli Grid) */
@media (min-width: 993px) {
  #home-services-container,
  #services-page-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  #home-services-container .service-card,
  #services-page-container .service-card {
    width: 100%;
    max-width: 100%;
    flex: none;
  }
}

.service-card {
  background: #fff;
  border-radius: 0px;
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-secondary);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--color-primary);
  border-color: var(--color-border-dark);
}

.s-card-img-wrapper {
  width: 100%;
  height: 185px;
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
}

.s-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}

.service-card:hover .s-card-img-wrapper img {
  transform: scale(1.05);
}

.s-card-icon {
  width: 56px;
  height: 56px;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 16px;
  color: var(--color-text-main);
  margin-bottom: 20px;
  flex-grow: 1;
}

.s-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--color-border);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-secondary);
}

.service-card:hover .s-card-footer {
  color: var(--color-primary);
}

/* DISTRICTS GRID & CARDS (Keskin Hatlı) */
.districts-grid-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 25px;
}

.district-card {
  background: #fff;
  border-radius: 0px;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-secondary);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.d-card-img-wrapper {
  width: 100%;
  height: 185px;
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
}

.d-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}

.district-card:hover .d-card-img-wrapper img {
  transform: scale(1.05);
}

.district-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--color-primary);
  border-color: var(--color-border-dark);
}

.d-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.d-header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.d-header h3 i {
  color: var(--color-secondary);
}

.district-card:hover .d-header h3 i {
  color: var(--color-primary);
}

.d-desc {
  font-size: 16px;
  color: var(--color-text-main);
  margin-bottom: 16px;
}

/* REGIONS MAP BACKGROUND SECTION (Sivas Mülki İdare Haritası Arka Planı) */
.regions-map-bg-section {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.88) 100%), url('images/sivas-mulk-idare-il-haritasi-2781-1000-1000.jpg') center/cover no-repeat;
  color: #fff;
  padding: 85px 0;
  border-top: 3px solid var(--color-navy-light);
  border-bottom: 3px solid var(--color-navy-light);
}

.regions-map-bg-section .section-header h2 {
  color: #FFFFFF;
}

.regions-map-bg-section .section-header p {
  color: #CBD5E1;
}

.regions-map-bg-section .section-subtitle {
  color: #94A3B8;
}

/* PAGE HEADER BANNER & BREADCRUMB (UNIFORM HEIGHT ACROSS ALL PAGES) */
.page-header-banner,
.services-header-banner {
  background: var(--color-secondary);
  color: #fff;
  min-height: 220px;
  height: 220px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  border-bottom: 3px solid var(--color-navy-light);
}

.page-header-banner .container,
.services-header-banner .container {
  width: 100%;
}

#page-regions .page-header-banner {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.88) 100%), url('images/sivas-mulk-idare-il-haritasi-2781-1000-1000.jpg') center/cover no-repeat;
}

#page-about .page-header-banner {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.88) 100%), url('images/kayseri-sahin-vinc-09-1.jpg') center/cover no-repeat;
}

#page-contact .page-header-banner {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.90) 0%, rgba(30, 41, 59, 0.85) 100%), url('images/vinc-kiralama-04.jpg') center/cover no-repeat;
}

.banner-services-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0.45;
  filter: contrast(1.1);
  pointer-events: none;
}

.banner-services-strip img {
  flex: 1;
  width: 16.666%;
  height: 100%;
  object-fit: cover;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.banner-dark-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.90) 0%, rgba(15, 23, 42, 0.82) 100%);
  pointer-events: none;
}

.banner-content-relative {
  position: relative;
  z-index: 3;
}

.breadcrumb {
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #E2E8F0;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.2);
}

.breadcrumb a:hover {
  color: #fff;
  background: rgba(255,255,255,0.2);
  border-color: #fff;
}

.page-header-banner h1 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-header-banner p {
  color: #CBD5E1;
  font-size: 16px;
}

/* DETAIL PAGES WRAPPER & SIDEBAR */
.detail-page-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}

.detail-main-content {
  background: #fff;
}

.detail-icon-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--color-border);
}

.d-big-icon {
  width: 68px;
  height: 68px;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.detail-icon-header h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-secondary);
  font-weight: 800;
}

.detail-text-body p {
  font-size: 16px;
  color: var(--color-text-main);
  line-height: 1.75;
  margin-bottom: 20px;
}

.detail-text-body h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-secondary);
  margin: 30px 0 15px;
}

.detail-text-body ul {
  margin-bottom: 25px;
}

.detail-text-body ul li {
  font-size: 16px;
  color: var(--color-text-main);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-text-body ul li i {
  color: var(--color-secondary);
}

/* SIDEBAR (Keskin Hatlı) */
.sidebar-box {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 0px;
  padding: 25px;
}

.sidebar-box h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-secondary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--color-secondary);
}

.sidebar-services-links li {
  margin-bottom: 8px;
}

.sidebar-services-links li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fff;
  border-radius: 0px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-secondary);
  border: 1px solid var(--color-border);
}

.sidebar-services-links li a:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  background: var(--color-bg-light);
}

/* DISTRICT INNER PAGE & CLICKABLE NEIGHBORHOOD CARDS */
.detail-header-card {
  margin-bottom: 30px;
  padding: 25px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-secondary);
}

.detail-header-card h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--color-secondary);
  margin-bottom: 12px;
  font-weight: 800;
}

.neighborhoods-section h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.n-info-text {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.neighborhoods-clickable-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 15px;
}

.other-districts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.n-card {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 16px 20px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
}

.n-card:hover {
  background: var(--color-bg-light);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.n-card strong {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--color-secondary);
}

.n-card i {
  color: var(--color-secondary);
}

/* NEIGHBORHOOD DETAIL CARD */
.neighborhood-detail-card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-secondary);
  border-radius: 0px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.nd-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-secondary);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 0px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.neighborhood-detail-card h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-secondary);
  font-weight: 800;
  margin-bottom: 20px;
}

.nd-content-body p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* HAKKIMIZDA PAGE DETAIL (Sığdırılmış & Dengeli Kart Düzeni) */
.about-container-card {
  max-width: 950px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-secondary);
  padding: 45px 50px;
  box-shadow: var(--shadow-sm);
}

.about-container-card h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-secondary);
  font-weight: 800;
  margin-bottom: 20px;
}

.about-container-card p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-main);
  margin-bottom: 20px;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 35px;
}

.mv-card {
  background: var(--color-bg-light);
  padding: 30px;
  border-radius: 0px;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-secondary);
  height: 100%;
}

.mv-card i {
  font-size: 32px;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.mv-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

.mv-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

.highlight-card {
  padding: 30px;
  border-radius: 0px;
  color: #fff;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.15);
}

.highlight-card i {
  font-size: 36px;
  margin-bottom: 12px;
  color: #FFFFFF !important;
}

.highlight-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 8px;
  color: #FFFFFF !important;
}

.highlight-card p {
  color: #F1F5F9 !important;
  font-size: 16px;
  line-height: 1.7;
}

.bg-navy { background-color: var(--color-secondary); }
.bg-red { background-color: var(--color-navy-light); }

/* İLETİŞİM PAGE (Hizalı & Dengeli Kart Görünümü) */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.contact-box {
  background: #fff;
  border-radius: 0px;
  padding: 35px 30px;
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-secondary);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-box.highlight-phone {
  border-top-color: var(--color-secondary);
  background: #FFFFFF;
}

.contact-box.highlight-wp {
  border-top-color: var(--color-secondary);
  background: #FFFFFF;
}

.contact-box.highlight-address {
  border-top-color: var(--color-secondary);
  background: #FFFFFF;
}

.c-icon {
  width: 58px;
  height: 58px;
  border-radius: 0px;
  background: var(--color-secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  margin-bottom: 15px;
}

.highlight-phone .c-icon {
  background: var(--color-secondary);
  color: #fff;
}

.highlight-wp .c-icon {
  background: var(--color-secondary);
  color: #fff;
}

.c-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.c-tag {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  color: var(--color-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.highlight-phone .c-tag { color: var(--color-secondary); }
.highlight-wp .c-tag { color: var(--color-secondary); }

.c-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-secondary);
  margin-top: 4px;
  margin-bottom: 10px;
  font-weight: 800;
}

.c-content p {
  font-size: 16px;
  color: var(--color-text-main);
  line-height: 1.6;
}

.c-bottom-btn {
  margin-top: auto;
  padding-top: 20px;
}

.contact-big-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-secondary);
  color: #fff;
  padding: 14px 20px;
  border-radius: 0px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  width: 100%;
}
.contact-big-link:hover {
  background: var(--color-navy-light);
}

.contact-big-link.wp-bg {
  background: var(--color-secondary);
}
.contact-big-link.wp-bg:hover {
  background: var(--color-navy-light);
}

.contact-big-link.navy-bg {
  background: var(--color-secondary);
}
.contact-big-link.navy-bg:hover {
  background: var(--color-navy-light);
}

.address-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.address-sub {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ==================== UNIVERSAL BOTTOM CONTACT CTA ==================== */
.bottom-cta-section {
  position: relative;
  background-color: var(--color-secondary);
  background-image: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  padding: 65px 0;
  color: #fff;
  border-top: 3px solid var(--color-navy-light);
  border-bottom: 3px solid var(--color-navy-light);
  overflow: hidden;
}

.bottom-cta-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03) 0,
    rgba(255, 255, 255, 0.03) 12px,
    transparent 12px,
    transparent 24px
  );
  pointer-events: none;
}

.cta-banner-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-info-wrapper {
  flex: 1;
}

.cta-text {
  margin-bottom: 25px;
}

.cta-img-frame {
  width: 350px;
  height: 210px;
  flex-shrink: 0;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  border: 3px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  background: var(--color-navy-light);
  transition: all 0.35s ease;
}

.cta-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.cta-img-frame:hover {
  border-color: #FFFFFF;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.cta-img-frame:hover img {
  transform: scale(1.08);
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #F8FAFC;
  padding: 4px 14px;
  border-radius: 0px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-badge i {
  color: var(--color-primary);
}

.cta-text h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.cta-text p {
  color: #CBD5E1;
  font-size: 16px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-cta-call {
  background: #FFFFFF;
  color: var(--color-secondary);
  padding: 16px 28px;
  font-size: 16px;
  border-radius: 0px;
  border: 1px solid #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
  font-weight: 800;
}
.btn-cta-call i {
  color: var(--color-secondary);
}
.btn-cta-call:hover {
  background: #F1F5F9;
  color: var(--color-secondary);
  border-color: #F1F5F9;
  transform: translateY(-2px);
}

.btn-cta-wp {
  background: #16A34A;
  color: #fff;
  padding: 16px 26px;
  font-size: 16px;
  border-radius: 0px;
}
.btn-cta-wp:hover {
  background: #15803D;
  transform: translateY(-2px);
}

/* FOOTER */
.site-footer {
  background: var(--color-secondary);
  color: #CBD5E1;
  padding-top: 70px;
  font-size: 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 50px;
}

.footer-col h3 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col p,
.footer-col ul li a {
  color: #CBD5E1;
  font-size: 15px;
  line-height: 1.7;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #FFFFFF;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #CBD5E1;
  line-height: 1.6;
}

.footer-contact-info li i {
  width: 22px;
  min-width: 22px;
  font-size: 16px;
  color: #FFFFFF;
  margin-top: 3px;
  text-align: center;
}

.footer-contact-info li span,
.footer-contact-info li a {
  color: #CBD5E1;
  transition: color 0.2s ease;
}

.footer-contact-info li a:hover {
  color: #FFFFFF;
}

.footer-copyright {
  background: var(--color-secondary);
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 15px;
  color: #FFFFFF;
}

.footer-copyright p {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
}

.footer-copyright strong {
  color: #FFFFFF;
  font-weight: 800;
}

.copyright-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-724 {
  color: #E2E8F0;
  font-weight: 700;
}

/* MOBILE FLOATING BAR (ZERO GAP FLUSH TO SCREEN EDGES) */
.mobile-float-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  gap: 0;
  border: none;
  outline: none;
  z-index: 99999;
  background: transparent;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
}

.float-btn {
  flex: 1;
  margin: 0;
  padding: 16px 10px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 0px;
  border: none;
  outline: none;
}

.float-phone {
  background: var(--color-secondary);
  color: #FFFFFF;
}

.float-whatsapp {
  background: #16A34A;
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-border);
  font-size: 22px;
  color: var(--color-secondary);
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 0px;
}

/* RESPONSIVE & MOBILE OVERFLOW FIXES */
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .header-container {
    justify-content: space-between;
    align-items: center;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 15px 20px;
    border-bottom: 3px solid var(--color-primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu .nav-item {
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-border);
    width: 100%;
  }

  .nav-menu .nav-item:last-child {
    border-bottom: none;
  }

  .hero-text-content h1 { font-size: 32px; }
  .detail-page-wrapper { grid-template-columns: 1fr; }
  .about-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-banner-card { flex-direction: column; text-align: center; }
  .cta-img-frame { width: 100%; max-width: 440px; height: 210px; margin: 20px auto 0; }
  .cta-buttons { justify-content: center; width: 100%; flex-direction: column; }
  .about-container-card { padding: 30px 20px; width: 100%; box-sizing: border-box; }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .page-header-banner,
  .services-header-banner {
    min-height: 190px;
    height: 190px;
  }

  .container {
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .header-container { height: auto; padding: 15px; gap: 15px; }
  .top-bar-content { flex-direction: column; text-align: center; gap: 8px; }
  .mobile-float-bar { display: flex; left: 0; right: 0; bottom: 0; width: 100%; margin: 0; padding: 0; gap: 0; }
  body { padding-bottom: 55px; }
  .header-cta-btn { display: none; }
  
  .hero-box { padding: 50px 0; }
  .hero-actions { flex-direction: column; gap: 12px; width: 100%; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; padding: 14px 20px; font-size: 15px; text-align: center; }
  
  .contact-info-grid,
  .services-grid,
  .districts-grid-preview,
  .other-districts-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    width: 100%;
  }

  .about-container-card {
    padding: 24px 16px;
    width: 100%;
  }
}
