/* ============================================================
   SEFERIHISAR TAKSI DURAGI - Main Stylesheet
   A professional corporate taxi website
   ============================================================ */

/* ------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   ------------------------------------------------------------ */
:root {
  /* Brand Colors - Premium Rich Golden Yellow */
  --color-primary:        #FFB300;
  --color-primary-dark:   #F57C00;
  --color-primary-light:  #FFF8E1;
  --color-primary-rgb:    255, 179, 0;

  /* Neutrals - High Contrast Modern */
  --color-black:          #0A0A0A;
  --color-dark-gray:      #171717;
  --color-gray:           #737373;
  --color-gray-medium:    #A3A3A3;
  --color-light-gray:     #FAFAFA;
  --color-white:          #FFFFFF;

  /* Functional */
  --color-success:        #4CAF50;
  --color-error:          #E53935;
  --color-whatsapp:       #25D366;
  --color-whatsapp-dark:  #1EBE57;

  /* Typography */
  --font-heading:         'Montserrat', sans-serif;
  --font-body:            'Inter', sans-serif;

  /* Font Sizes - Fluid */
  --fs-display:           clamp(2.25rem, 5vw + 1rem, 4rem);
  --fs-h1:                clamp(1.875rem, 4vw + 0.5rem, 3rem);
  --fs-h2:                clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  --fs-h3:                clamp(1.25rem, 2vw + 0.25rem, 1.5rem);
  --fs-h4:                clamp(1.1rem, 1.5vw + 0.25rem, 1.25rem);
  --fs-body:              clamp(0.938rem, 1vw + 0.25rem, 1.063rem);
  --fs-small:             clamp(0.813rem, 0.8vw + 0.25rem, 0.875rem);
  --fs-xs:                0.75rem;

  /* Font Weights */
  --fw-regular:           400;
  --fw-medium:            500;
  --fw-semibold:          600;
  --fw-bold:              700;
  --fw-extrabold:         800;

  /* Spacing */
  --space-xs:             0.25rem;
  --space-sm:             0.5rem;
  --space-md:             1rem;
  --space-lg:             1.5rem;
  --space-xl:             2rem;
  --space-2xl:            3rem;
  --space-3xl:            4rem;
  --space-4xl:            6rem;
  --space-5xl:            8rem;

  /* Layout */
  --container-max:        1200px;
  --container-padding:    1rem;
  --header-height:        64px;
  --header-height-scrolled: 56px;

  /* Borders - Modern Bubbly Radius */
  --radius-sm:            8px;
  --radius-md:            16px;
  --radius-lg:            24px;
  --radius-xl:            32px;
  --radius-full:          9999px;

  /* Shadows - Premium Soft Glassy Shadows */
  --shadow-sm:            0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md:            0 10px 20px -3px rgba(0, 0, 0, 0.08);
  --shadow-lg:            0 20px 30px -5px rgba(0, 0, 0, 0.1);
  --shadow-xl:            0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --shadow-yellow:        0 10px 30px rgba(255, 179, 0, 0.4);
  --shadow-card-hover:    0 20px 40px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast:      150ms ease;
  --transition-base:      300ms ease;
  --transition-slow:      500ms ease;
  --transition-spring:    400ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index Scale */
  --z-dropdown:           100;
  --z-sticky:             200;
  --z-header:             300;
  --z-overlay:            400;
  --z-modal:              500;
  --z-toast:              600;
  --z-max:                999;
}


/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: 1.7;
  color: var(--color-black);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

body.no-scroll {
  overflow: hidden;
}

img,
picture,
video,
canvas,
svg,
iframe,
embed {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: 1.25;
  color: var(--color-black);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p {
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: var(--fw-semibold);
}

::selection {
  background-color: var(--color-primary);
  color: var(--color-black);
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}


/* ------------------------------------------------------------
   3. LAYOUT UTILITIES
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section-padding {
  padding-block: var(--space-3xl);
}

.section-padding--lg {
  padding-block: var(--space-4xl);
}

/* Section header with decorative underline */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header__title {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-md);
  font-weight: var(--fw-extrabold);
}

.section-header__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
}

/* Placeholder image styles */
.placeholder-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--color-dark-surface) 0%, var(--color-black) 100%);
  border: 1px solid rgba(255, 179, 0, 0.15);
  color: var(--color-primary);
  text-align: center;
  transition: all var(--transition-base);
}

.placeholder-img:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(255, 179, 0, 0.1);
}

.placeholder-img i {
  margin-bottom: var(--space-md);
  opacity: 0.8;
}

.placeholder-img span {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header__subtitle {
  color: var(--color-gray);
  font-size: var(--fs-body);
  max-width: 600px;
  margin-inline: auto;
  margin-top: var(--space-lg);
}

/* Grid utilities */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

.flex {
  display: flex;
}

.flex--center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex--between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


/* ------------------------------------------------------------
   4. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-black);
  border-color: var(--color-primary);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: var(--shadow-yellow);
  transform: translateY(-2px);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background-color: var(--color-primary);
  color: var(--color-black);
  transform: translateY(-2px);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--outline-white:hover,
.btn--outline-white:focus-visible {
  background-color: var(--color-white);
  color: var(--color-black);
  transform: translateY(-2px);
}

.btn--dark {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.btn--dark:hover,
.btn--dark:focus-visible {
  background-color: var(--color-dark-gray);
  border-color: var(--color-dark-gray);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  border-color: var(--color-whatsapp);
}

.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  background-color: var(--color-whatsapp-dark);
  border-color: var(--color-whatsapp-dark);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: var(--fs-body);
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--fs-xs);
}

.btn--full {
  width: 100%;
}

.btn i,
.btn svg {
  font-size: 1.1em;
}


/* ------------------------------------------------------------
   5. HEADER & NAVIGATION
   ------------------------------------------------------------ */
/* ---- HEADER ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-black);
  z-index: var(--z-header);
  transition: all var(--transition-base);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header--scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom-color: transparent;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 1rem;
  gap: 0.5rem;
}

.header--scrolled .header__inner {
  height: 56px;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  z-index: calc(var(--z-header) + 1);
}

.header__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  color: var(--color-black);
  border-radius: 10px;
  font-size: 1rem;
}

.header__logo img {
  height: 36px;
  width: auto;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: 0.8rem;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.header__logo-text span {
  color: var(--color-primary);
  font-size: 0.75rem;
}

.header--scrolled .header__logo img {
  height: 32px;
}

/* Desktop nav — hidden on mobile by default */
.header__nav {
  display: none;
}

/* Desktop nav list */
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.header__nav-list li > a {
  position: relative;
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 0.5rem 0.65rem;
  transition: color var(--transition-base);
  white-space: nowrap;
}

.header__nav-list li > a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.65rem;
  right: 0.65rem;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.header__nav-list li > a:hover,
.header__nav-list li > a.active {
  color: var(--color-white);
}

.header__nav-list li > a:hover::after,
.header__nav-list li > a.active::after {
  transform: scaleX(1);
}

/* Dropdown (unused now but kept for compatibility) */
.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background-color: var(--color-dark-gray);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  list-style: none;
  padding: var(--space-sm) 0;
  z-index: var(--z-dropdown);
}

.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown li a {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.dropdown li a:hover {
  color: var(--color-primary);
  background-color: rgba(255, 179, 0, 0.08);
}

/* Header right area */
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: calc(var(--z-header) + 1);
  flex-shrink: 0;
}

.header__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.header__search-btn:hover {
  color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.05);
}

/* TAKSİ ÇAĞIR button */
.header__cta-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background-color: var(--color-primary);
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: var(--fw-extrabold);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  animation: pulse 2.5s infinite;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* Mobile: icon only */
@media (max-width: 1023px) {
  .header__cta-btn span {
    display: none;
  }
  .header__cta-btn {
    padding: 0.55rem;
    border-radius: 50%;
    font-size: 0.9rem;
  }
}

.header__cta-btn:hover {
  background-color: var(--color-primary-dark);
  box-shadow: var(--shadow-yellow);
  transform: translateY(-1px);
}

/* Phone button */
.header__phone-btn {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.2);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.header__phone-btn:hover {
  background-color: rgba(255,255,255,0.08);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.header__phone-btn i {
  font-size: 0.8rem;
  color: var(--color-primary);
}

/* Hamburger */
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  z-index: calc(var(--z-header) + 2);
}

.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-white);
  transition: all var(--transition-base);
  transform-origin: center;
  border-radius: 2px;
}

.header__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- MOBILE NAV OVERLAY ---- */
.header__nav.active {
  display: flex !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(160deg, #0A0A0A 0%, #1a1a1a 100%);
  z-index: var(--z-header);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.25s ease forwards;
}

.header__nav.active .header__nav-list {
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
  padding: 0 2rem;
}

.header__nav.active .header__nav-list li {
  width: 100%;
}

.header__nav.active .header__nav-list li > a {
  font-size: 1.1rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.8);
  padding: 0.85rem 1rem;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.header__nav.active .header__nav-list li > a::after {
  display: none;
}

.header__nav.active .header__nav-list li > a:hover,
.header__nav.active .header__nav-list li > a.active {
  color: var(--color-primary);
  background: rgba(255,179,0,0.08);
}

.header__nav.active .dropdown {
  position: static;
  background: transparent;
  box-shadow: none;
  padding: var(--space-sm) 0 0;
  display: block;
  text-align: center;
}

.header__nav.active .dropdown li a {
  color: rgba(255,255,255,0.5);
  padding: var(--space-xs) 0;
}

/* ---- DESKTOP HEADER (1024px+) ---- */
@media (min-width: 1024px) {
  .header__inner {
    height: 60px;
    gap: 1rem;
  }

  .header--scrolled .header__inner {
    height: 52px;
  }

  .header__nav {
    display: flex !important;
    position: static;
    height: auto;
    background: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex: 1;
    animation: none;
  }

  .header__nav-list {
    justify-content: center;
  }

  .header__hamburger {
    display: none;
  }

  .header__phone-btn {
    display: flex !important;
  }
}

/* Large desktop: slightly more breathing room */
@media (min-width: 1280px) {
  .header__nav-list li > a {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
  }

  .header__cta-btn {
    font-size: 0.8rem;
    padding: 0.55rem 1.1rem;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* ------------------------------------------------------------
   6. HERO SECTIONS
   ------------------------------------------------------------ */

/* Homepage hero - full viewport */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

/* Arka plan fotoğrafı */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Koyu overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(10, 10, 10, 0.75) 50%,
    rgba(10, 10, 10, 0.60) 100%
  );
}

/* Container düzeni */
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  padding-block: var(--space-3xl);
  width: 100%;
}

/* Sol içerik */
.hero__content {
  max-width: 620px;
  flex: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.4rem 1.1rem;
  background-color: rgba(255, 179, 0, 0.15);
  border: 1px solid rgba(255, 179, 0, 0.4);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw + 1rem, 5rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -1px;
  font-family: var(--font-heading);
}

.hero__title span {
  color: var(--color-primary);
  display: block;
  text-shadow: 0 0 40px rgba(255, 179, 0, 0.35);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

/* Küçük güven rozetleri */
.hero__trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.65);
}

.hero__trust-item i {
  color: var(--color-primary);
  font-size: 0.875rem;
}

/* Sağ: istatistik kartları */
.hero__stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex-shrink: 0;
}

.hero__stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 179, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  text-align: center;
  min-width: 150px;
  transition: all var(--transition-base);
}

.hero__stat-card:hover {
  background: rgba(255, 179, 0, 0.12);
  border-color: rgba(255, 179, 0, 0.4);
  transform: translateY(-4px);
}

.hero__stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: var(--space-xs);
}

.hero__stat-label {
  display: block;
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.5px;
}



/* Responsive */
@media (max-width: 991px) {
  .hero__inner {
    flex-direction: column;
    text-align: center;
    padding-block: calc(var(--space-md) + var(--header-height)) var(--space-md);
    gap: var(--space-sm);
  }

  .hero__content {
    max-width: 100%;
    margin-top: 0;
  }

  .hero__buttons,
  .hero__trust-badges {
    justify-content: center;
  }

  .hero__stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
  }

  .hero__stat-card {
    min-width: 120px;
    padding: var(--space-md) var(--space-lg);
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hero__stat-card {
    min-width: 100px;
    padding: var(--space-sm) var(--space-md);
  }
}

/* Inner page hero */
.hero--inner {
  min-height: 40vh;
  padding-top: calc(var(--header-height) + var(--space-2xl));
  padding-bottom: var(--space-2xl);
}

.hero--inner::before {
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.9) 0%,
    rgba(26, 26, 26, 0.8) 100%
  );
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-block: 0;
  }
  
  .hero__inner {
    flex-direction: column;
    text-align: center;
    padding-block: calc(var(--space-lg) + var(--header-height)) var(--space-xl);
    gap: var(--space-lg);
  }

  .hero__title {
    font-size: clamp(2rem, 9vw, 2.5rem);
    margin-bottom: var(--space-sm);
  }
  
  .hero__subtitle {
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
    line-height: 1.5;
  }

  .hero__badge {
    margin-bottom: var(--space-md);
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }

  .hero__buttons {
    flex-direction: column; /* DİKEY STACK */
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }

  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
    padding-block: 1rem;
    font-size: 1rem;
  }

  .hero__trust-badges {
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    font-size: 0.875rem;
    justify-content: center;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
    width: 100%;
  }

  /* 7/24 Kesintisiz Hizmet kartını alta ortala */
  .hero__stats > :nth-child(3) {
    grid-column: span 2;
    justify-self: center;
    width: calc(50% + var(--space-xl));
  }

  .hero__stat-card {
    min-width: unset;
    padding: var(--space-md) var(--space-sm);
  }

  .hero__stat-number {
    font-size: 1.5rem;
  }

  .hero__stat-label {
    font-size: 0.8125rem;
  }
}

.hero--inner .hero__title {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-md);
}


/* ------------------------------------------------------------
   7. BREADCRUMB
   ------------------------------------------------------------ */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: var(--fs-small);
  color: var(--color-gray-medium);
}

.hero .breadcrumb {
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-lg);
}

.breadcrumb__link {
  transition: color var(--transition-base);
}

.breadcrumb__link:hover {
  color: var(--color-primary);
}

.hero .breadcrumb__link:hover {
  color: var(--color-primary);
}

.breadcrumb__separator {
  font-size: var(--fs-xs);
  opacity: 0.6;
}

.breadcrumb__current {
  color: var(--color-primary);
  font-weight: var(--fw-medium);
}


/* ------------------------------------------------------------
   8. TRUST INDICATORS BAR
   ------------------------------------------------------------ */
.trust-bar {
  background-color: var(--color-black) !important;
  border-bottom: 1px solid rgba(255, 179, 0, 0.15);
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm);
}

.trust-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 179, 0, 0.15);
  color: var(--color-primary);
  font-size: 1.25rem;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.trust-bar__number {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
  line-height: 1.2;
}

.trust-bar__label {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
}


/* ------------------------------------------------------------
   9. SERVICE CARDS
   ------------------------------------------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.service-card {
  position: relative;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border-top: 4px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

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

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
}

.service-card:hover .service-card__icon {
  background-color: var(--color-primary);
  color: var(--color-black);
}

.service-card__title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
}

.service-card__text {
  color: var(--color-gray);
  font-size: var(--fs-small);
  margin-bottom: var(--space-lg);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--color-primary-dark);
  transition: gap var(--transition-base);
}

.service-card__link:hover {
  gap: var(--space-md);
}


/* ------------------------------------------------------------
   10. WHY US SECTION
   ------------------------------------------------------------ */
.why-us {
  background-color: var(--color-light-gray);
}

.why-us__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.why-us__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.why-us__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.3), transparent);
}

.why-us__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-us__label {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--color-primary-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.why-us__title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-extrabold);
  margin-bottom: var(--space-md);
}

.why-us__text {
  color: var(--color-gray);
  margin-bottom: var(--space-xl);
}

.why-us__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.why-us__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.why-us__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background-color: var(--color-primary);
  color: var(--color-black);
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  margin-top: 2px;
}

.why-us__item-text {
  font-weight: var(--fw-medium);
  line-height: 1.5;
}

.why-us__item-text span {
  display: block;
  font-weight: var(--fw-regular);
  font-size: var(--fs-small);
  color: var(--color-gray);
  margin-top: 2px;
}


/* ------------------------------------------------------------
   11. MAP SECTION
   ------------------------------------------------------------ */
.map-section {
  background-color: var(--color-black);
  color: var(--color-white);
}

.map-section__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.map-section__info {
  padding: var(--space-xl);
}

.map-section__label {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.map-section__title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.map-section__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.map-section__detail i {
  color: var(--color-primary);
  font-size: 1.125rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.map-section__detail p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-small);
}

.map-section__detail strong {
  display: block;
  color: var(--color-white);
  font-weight: var(--fw-semibold);
  margin-bottom: 2px;
}

.map-section__map {
  width: 100%;
  min-height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

/* Leaflet map overrides */
.map-section__map .leaflet-container {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: var(--radius-lg);
}

#map {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  z-index: 1;
}


/* ------------------------------------------------------------
   12. CTA BANNER
   ------------------------------------------------------------ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, #FF8F00 100%);
  padding-block: var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
}

.cta-banner__content h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-black);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.cta-banner__sub {
  color: rgba(10, 10, 10, 0.7);
  font-size: var(--fs-body);
  margin-bottom: var(--space-2xl);
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-black);
  border: 2px solid rgba(10,10,10,0.4);
}

.btn--outline-dark:hover {
  background: rgba(10,10,10,0.1);
  border-color: var(--color-black);
}


/* ------------------------------------------------------------
   13. ABOUT PAGE
   ------------------------------------------------------------ */

/* Mission / Vision */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.mission-vision__card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.mission-vision__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--color-primary);
}

.mission-vision__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.mission-vision__title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-md);
}

.mission-vision__text {
  color: var(--color-gray);
  line-height: 1.8;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.value-card {
  text-align: center;
  padding: var(--space-xl);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: var(--color-primary);
  color: var(--color-black);
  font-size: 1.5rem;
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-lg);
}

.value-card__title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
}

.value-card__text {
  font-size: var(--fs-small);
  color: var(--color-gray);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: var(--space-2xl);
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10px;
  width: 2px;
  height: 100%;
  background-color: var(--color-primary);
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-2xl);
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: calc(-1 * var(--space-2xl) + 2px);
  top: 4px;
  width: 18px;
  height: 18px;
  background-color: var(--color-primary);
  border: 3px solid var(--color-white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.timeline__year {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-xs);
}

.timeline__title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
}

.timeline__text {
  font-size: var(--fs-small);
  color: var(--color-gray);
}


/* ------------------------------------------------------------
   14. SERVICES PAGE
   ------------------------------------------------------------ */
.service-detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  padding-block: var(--space-2xl);
}

.service-detail:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-detail__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail__label {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--color-primary-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.service-detail__title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-md);
}

.service-detail__text {
  color: var(--color-gray);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.service-detail__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.service-detail__feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
}

.service-detail__feature i {
  color: var(--color-primary);
  font-size: 0.875rem;
}

/* Pricing card */
.pricing-card {
  background-color: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.pricing-card__header {
  text-align: center;
  padding-bottom: var(--space-lg);
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-card__title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary-dark);
}

.pricing-card__price span {
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  color: var(--color-gray);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-small);
}

.pricing-card__feature i {
  color: var(--color-primary);
}

.pricing-card__note {
  font-size: var(--fs-xs);
  color: var(--color-gray);
  text-align: center;
  margin-top: var(--space-md);
}


/* ------------------------------------------------------------
   15. SERVICE AREAS (HIZMET BOLGELERI) PAGE
   ------------------------------------------------------------ */
.regions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.region-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.region-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.region-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.region-card:hover::after {
  transform: scaleX(1);
}

.region-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 1.5rem;
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-lg);
}

.region-card__title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
}

.region-card__text {
  font-size: var(--fs-small);
  color: var(--color-gray);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.region-card__distance {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-lg);
}

.region-card__distance i {
  font-size: 0.875rem;
}

.regions-map {
  margin-top: var(--space-2xl);
}

.regions-map #regions-map {
  width: 100%;
  height: 450px;
  border-radius: var(--radius-lg);
}


/* ------------------------------------------------------------
   16. GALLERY PAGE
   ------------------------------------------------------------ */

/* Filter tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.filter-tab {
  padding: 0.5rem 1.25rem;
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--color-gray);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color var(--transition-base);
}

.filter-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-base);
}

.filter-tab:hover,
.filter-tab--active {
  color: var(--color-black);
}

.filter-tab--active::after {
  width: 80%;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 26, 26, 0.6);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item__overlay i {
  color: var(--color-white);
  font-size: 1.5rem;
  transform: scale(0.8);
  transition: transform var(--transition-spring);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-item__overlay i {
  transform: scale(1);
}

/* Placeholder image (for gallery items without images) */
.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-sm);
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, #f0e6c0 100%);
  color: var(--color-primary-dark);
}

.gallery-placeholder i {
  font-size: 2.5rem;
  opacity: 0.5;
}

.gallery-placeholder span {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  opacity: 0.6;
}


/* ------------------------------------------------------------
   17. BLOG PAGE
   ------------------------------------------------------------ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.blog-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card__image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.03);
}

.blog-card__category {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: 0.25rem 0.75rem;
  background-color: var(--color-primary);
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card__body {
  padding: var(--space-lg);
}

.blog-card__date {
  font-size: var(--fs-xs);
  color: var(--color-gray-medium);
  margin-bottom: var(--space-sm);
}

.blog-card__title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__title a {
  transition: color var(--transition-base);
}

.blog-card__title a:hover {
  color: var(--color-primary-dark);
}

.blog-card__excerpt {
  font-size: var(--fs-small);
  color: var(--color-gray);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--color-primary-dark);
  transition: gap var(--transition-base);
}

.blog-card__read-more:hover {
  gap: var(--space-md);
}


/* ------------------------------------------------------------
   18. BLOG POST (SINGLE ARTICLE)
   ------------------------------------------------------------ */
.article {
  max-width: 800px;
  margin-inline: auto;
  padding-block: var(--space-3xl);
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.article__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.article__author-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.article__author-name {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-small);
}

.article__date {
  font-size: var(--fs-small);
  color: var(--color-gray-medium);
}

.article__category-badge {
  padding: 0.2rem 0.6rem;
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
}

/* Article content typography */
.article__content {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.85;
  color: var(--color-dark-gray);
}

.article__content h2 {
  font-size: var(--fs-h3);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.article__content h3 {
  font-size: var(--fs-h4);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.article__content p {
  margin-bottom: var(--space-lg);
}

.article__content img {
  border-radius: var(--radius-lg);
  margin-block: var(--space-xl);
}

.article__content ul,
.article__content ol {
  margin-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.article__content li {
  margin-bottom: var(--space-sm);
  list-style: disc;
}

.article__content ol li {
  list-style: decimal;
}

.article__content blockquote {
  border-left: 4px solid var(--color-primary);
  background-color: var(--color-primary-light);
  padding: var(--space-lg) var(--space-xl);
  margin-block: var(--space-xl);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--color-dark-gray);
}

.article__content a {
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.article__content a:hover {
  color: var(--color-primary);
}

/* Related posts */
.related-posts {
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.related-posts__title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-xl);
}

.related-posts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}


/* ------------------------------------------------------------
   19. CONTACT PAGE
   ------------------------------------------------------------ */

/* Contact info cards */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  background-color: var(--color-primary);
  color: var(--color-black);
  font-size: 1.25rem;
  border-radius: var(--radius-md);
}

.contact-card__title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-xs);
}

.contact-card__text {
  font-size: var(--fs-small);
  color: var(--color-gray);
  line-height: 1.7;
}

.contact-card__text a {
  color: var(--color-primary-dark);
  font-weight: var(--fw-medium);
  transition: color var(--transition-fast);
}

.contact-card__text a:hover {
  color: var(--color-primary);
}

/* Contact form */
.contact-form {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
}

.contact-form__title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
  position: relative;
}

.form-group__label {
  display: block;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--color-dark-gray);
  margin-bottom: var(--space-sm);
}

.form-group__input,
.form-group__textarea,
.form-group__select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: var(--fs-body);
  color: var(--color-black);
  background-color: var(--color-light-gray);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  appearance: none;
}

.form-group__input:focus,
.form-group__textarea:focus,
.form-group__select:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.15);
}

.form-group__input::placeholder,
.form-group__textarea::placeholder {
  color: var(--color-gray-medium);
}

.form-group__textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6B6B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Form validation states */
.form-group--error .form-group__input,
.form-group--error .form-group__textarea,
.form-group--error .form-group__select {
  border-color: var(--color-error);
}

.form-group--error .form-group__input:focus,
.form-group--error .form-group__textarea:focus {
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.15);
}

.form-group__error {
  display: none;
  font-size: var(--fs-xs);
  color: var(--color-error);
  margin-top: var(--space-xs);
}

.form-group--error .form-group__error {
  display: block;
}

.form-group--success .form-group__input,
.form-group--success .form-group__textarea {
  border-color: var(--color-success);
}

/* Form row (two columns) */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* Form success message */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl);
}

.form-success--visible {
  display: block;
  animation: fadeIn 0.4s ease;
}

.form-success__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: var(--color-success);
  color: var(--color-white);
  font-size: 1.5rem;
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-lg);
}

.form-success__title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
}

.form-success__text {
  font-size: var(--fs-small);
  color: var(--color-gray);
}

/* WhatsApp contact button */
.whatsapp-section {
  text-align: center;
  margin-top: var(--space-2xl);
}

.whatsapp-section__text {
  color: var(--color-gray);
  margin-bottom: var(--space-md);
}


/* ------------------------------------------------------------
   20. FOOTER
   ------------------------------------------------------------ */
.footer {
  background-color: var(--color-black);
  color: rgba(255, 255, 255, 0.7);
  padding-top: var(--space-3xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

/* Footer brand */
.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.footer__logo img {
  height: 36px;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  font-size: var(--fs-body);
}

.footer__logo-text span {
  color: var(--color-primary);
}

.footer__about {
  font-size: var(--fs-small);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

/* Footer social */
.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  background-color: var(--color-primary);
  color: var(--color-black);
  transform: translateY(-2px);
}

/* Footer links */
.footer__heading {
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-primary);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__link::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background-color: var(--color-primary);
  transition: width var(--transition-base);
}

.footer__link:hover {
  color: var(--color-primary);
  padding-left: var(--space-sm);
}

.footer__link:hover::before {
  width: 12px;
}

/* Footer contact info */
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: var(--fs-small);
}

.footer__contact-item i {
  color: var(--color-primary);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer__contact-item a {
  transition: color var(--transition-base);
}

.footer__contact-item a:hover {
  color: var(--color-primary);
}

/* Footer bottom */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}

.footer__copyright {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer__copyright a {
  color: var(--color-primary);
  transition: opacity var(--transition-fast);
}

.footer__copyright a:hover {
  opacity: 0.8;
}


/* ------------------------------------------------------------
   21. FLOATING CTA & BACK-TO-TOP
   ------------------------------------------------------------ */

/* Floating phone button */
.floating-cta {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: var(--z-sticky);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-md);
}

.floating-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--color-primary);
  color: var(--color-black);
  font-size: 1.5rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-yellow);
  transition: all var(--transition-base);
  animation: pulse 2s infinite;
}

.floating-phone:hover {
  background-color: var(--color-primary-dark);
  transform: scale(1.1);
  animation: none;
}

.floating-whatsapp {
  position: fixed;
  bottom: calc(var(--space-xl) + 70px);
  right: var(--space-xl);
  z-index: var(--z-sticky);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  font-size: 1.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-base);
  opacity: 1;
  visibility: visible;
}

.floating-whatsapp:hover {
  background-color: var(--color-whatsapp-dark);
  transform: scale(1.1);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: var(--space-xl);
  left: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--color-primary);
  color: var(--color-black);
  font-size: 1.125rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  z-index: var(--z-sticky);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-3px);
}

/* Mobile sticky bar */
.mobile-cta-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-primary);
  padding: var(--space-sm) var(--container-padding);
  z-index: var(--z-sticky);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

.mobile-cta-bar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  padding: var(--space-sm);
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: var(--color-black);
}

.mobile-cta-bar__link i {
  font-size: 1.125rem;
}


/* ------------------------------------------------------------
   22. SEARCH OVERLAY
   ------------------------------------------------------------ */
.search-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: var(--z-modal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: calc(var(--header-height) + var(--space-3xl)) var(--container-padding) var(--space-2xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.search-overlay--open {
  opacity: 1;
  visibility: visible;
}

.search-overlay__close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  transition: color var(--transition-base);
}

.search-overlay__close:hover {
  color: var(--color-white);
}

.search-overlay__form {
  width: 100%;
  max-width: 700px;
  transform: translateY(30px);
  transition: transform var(--transition-slow);
}

.search-overlay--open .search-overlay__form {
  transform: translateY(0);
}

.search-overlay__input {
  width: 100%;
  padding: var(--space-lg) 0;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--color-primary);
  outline: none;
  caret-color: var(--color-primary);
}

.search-overlay__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.search-overlay__hint {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.3);
  margin-top: var(--space-md);
}

.search-overlay__results {
  width: 100%;
  max-width: 700px;
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.search-result {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.search-result:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-primary);
}

.search-result i {
  font-size: 0.875rem;
  opacity: 0.5;
}

.search-result__title {
  font-weight: var(--fw-medium);
}

.search-result__page {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.4);
  margin-left: auto;
}


/* ------------------------------------------------------------
   23. ANIMATIONS & KEYFRAMES
   ------------------------------------------------------------ */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--color-primary-rgb), 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(var(--color-primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--color-primary-rgb), 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Animation utility classes */
.animate-fadeIn { animation: fadeIn 0.6s ease forwards; }
.animate-fadeInUp { animation: fadeInUp 0.6s ease forwards; }
.animate-fadeInDown { animation: fadeInDown 0.6s ease forwards; }
.animate-slideInRight { animation: slideInRight 0.6s ease forwards; }
.animate-slideInLeft { animation: slideInLeft 0.6s ease forwards; }
.animate-scaleIn { animation: scaleIn 0.4s ease forwards; }

/* Staggered animation delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Elements that will be animated on scroll (initially hidden) */
[data-animate] {
  opacity: 0;
}

[data-animate].is-visible {
  animation-fill-mode: forwards;
}


/* ------------------------------------------------------------
   24. RESPONSIVE - TABLET (min-width: 768px)
   ------------------------------------------------------------ */
@media (min-width: 768px) {

  :root {
    --container-padding: 1.5rem;
  }

  .section-padding {
    padding-block: var(--space-4xl);
  }

  /* Grid utilities */
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }

  /* Trust bar */
  .trust-bar__inner {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Service cards 2x2 */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Why us - side by side */
  .why-us__inner {
    flex-direction: row;
    align-items: stretch;
  }

  .why-us__image {
    flex: 1;
    min-width: 0;
    aspect-ratio: auto;
  }

  .why-us__content {
    flex: 1;
    min-width: 0;
    padding-left: var(--space-2xl);
  }

  /* Map section side by side */
  .map-section__inner {
    flex-direction: row;
    align-items: stretch;
  }

  .map-section__info {
    flex: 0 0 40%;
    padding: var(--space-2xl);
  }

  .map-section__map {
    flex: 1;
    min-height: 400px;
  }

  /* About - Mission/Vision */
  .mission-vision {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Values grid */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Service detail alternating */
  .service-detail {
    flex-direction: row;
    align-items: center;
  }

  .service-detail__image {
    flex: 0 0 45%;
  }

  .service-detail__content {
    flex: 1;
    padding-left: var(--space-2xl);
  }

  .service-detail:nth-child(even) {
    flex-direction: row-reverse;
  }

  .service-detail:nth-child(even) .service-detail__content {
    padding-left: 0;
    padding-right: var(--space-2xl);
  }

  .service-detail__features {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Regions grid */
  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Gallery grid */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Blog grid */
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Related posts */
  .related-posts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact cards */
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Form row */
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  /* Hide mobile CTA bar */
  .mobile-cta-bar {
    display: none;
  }
}


/* ------------------------------------------------------------
   25. RESPONSIVE - DESKTOP (min-width: 1024px)
   ------------------------------------------------------------ */
@media (min-width: 1024px) {

  :root {
    --container-padding: 2rem;
  }

  /* Grid utilities */
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }

  /* Show desktop nav, hide hamburger */
  .nav {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  /* Values grid 3 columns */
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Regions 3 columns */
  .regions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Gallery 3 columns */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Related posts 3 columns */
  .related-posts__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Contact cards 3 columns */
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer 3 columns + brand */
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  /* CTA banner horizontal */
  .cta-banner__content {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-xl);
  }
}


/* ------------------------------------------------------------
   26. RESPONSIVE - LARGE (min-width: 1280px)
   ------------------------------------------------------------ */
@media (min-width: 1280px) {

  .container {
    max-width: var(--container-max);
  }

  /* Slightly larger gaps */
  .services-grid {
    gap: var(--space-xl);
  }

  .regions-grid {
    gap: var(--space-xl);
  }

  .gallery-grid {
    gap: var(--space-lg);
  }

  /* Map section */
  .map-section__map {
    min-height: 450px;
  }
}


/* ------------------------------------------------------------
   27. PRINT STYLES
   ------------------------------------------------------------ */
@media print {
  .header,
  .footer,
  .floating-cta,
  .back-to-top,
  .mobile-cta-bar,
  .search-overlay {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero::before {
    display: none;
  }

  .hero__title,
  .hero__subtitle {
    color: #000;
  }

  a {
    text-decoration: underline;
  }
}


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

  .floating-phone {
    animation: none;
  }

  .hero__badge {
    animation: none;
  }
}


/* ------------------------------------------------------------
   29. LOADING & MISC
   ------------------------------------------------------------ */

/* Page loader (optional) */
.page-loader {
  position: fixed;
  inset: 0;
  background-color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-max);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader--hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader__spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 193, 7, 0.2);
  border-top-color: var(--color-primary);
  border-radius: var(--radius-full);
  animation: spin 0.8s linear infinite;
}

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.08);
  margin-block: var(--space-2xl);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge--primary {
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.badge--dark {
  background-color: var(--color-dark-gray);
  color: var(--color-white);
}

/* Tooltip */
[data-tooltip] {
  position: relative;
}

[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 0.4rem 0.8rem;
  background-color: var(--color-dark-gray);
  color: var(--color-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  white-space: nowrap;
  border-radius: var(--radius-sm);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  pointer-events: none;
  z-index: var(--z-tooltip, 50);
}

[data-tooltip]:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Image with aspect ratio container */
.img-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-container--16-9 { aspect-ratio: 16 / 9; }
.img-container--4-3  { aspect-ratio: 4 / 3; }
.img-container--1-1  { aspect-ratio: 1 / 1; }

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, var(--color-light-gray) 25%, #e8e8e8 50%, var(--color-light-gray) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Spacer utility for mobile bottom CTA bar */
.spacer-mobile-bar {
  height: 56px;
}

@media (min-width: 768px) {
  .spacer-mobile-bar {
    display: none;
  }
}


/* ============================================================
   30. PREMIUM ENHANCEMENTS & NEW SECTIONS
   ============================================================ */

:root {
  --color-dark-surface:     #1A1A1A;
  --color-dark-card:        #2D2D2D;
  --color-dark-card-hover:  #363636;
  --color-dark-border:      #3A3A3A;
  --color-text-on-dark:     rgba(255, 255, 255, 0.85);
  --color-text-muted-dark:  rgba(255, 255, 255, 0.55);
  --shadow-yellow-strong:   0 8px 32px rgba(255, 193, 7, 0.35);
  --shadow-dark-card:       0 8px 32px rgba(0, 0, 0, 0.4);
  --gradient-dark:          linear-gradient(180deg, #111111 0%, #1A1A1A 50%, #222222 100%);
  --gradient-dark-subtle:   linear-gradient(180deg, #1A1A1A 0%, #242424 100%);
}

/* --- Hero Premium Upgrade --- */
.hero::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(10, 10, 10, 0.65) 35%,
    rgba(26, 26, 26, 0.55) 60%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* --- Button Premium Hover --- */
.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: var(--shadow-yellow-strong);
  transform: translateY(-3px) scale(1.02);
}

.btn--dark:hover,
.btn--dark:focus-visible {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px) scale(1.02);
}

.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transform: translateY(-3px) scale(1.02);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  box-shadow: var(--shadow-yellow);
  transform: translateY(-3px) scale(1.02);
}

/* --- Service Card Premium Hover --- */
.service-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--shadow-xl);
}

.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(-3deg);
}

/* --- Placeholder Images Premium --- */
.placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 60%, #2D2D2D 100%);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.placeholder-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255, 193, 7, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.placeholder-img i {
  font-size: 3.5rem !important;
  opacity: 0.7;
  filter: drop-shadow(0 4px 12px rgba(255, 193, 7, 0.3));
  position: relative;
  z-index: 1;
}

.placeholder-img span {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted-dark);
  position: relative;
  z-index: 1;
}


/* ============================================================
   31. SECTION DARK VARIANTS
   ============================================================ */
.section-dark {
  background-color: var(--color-dark-surface);
  color: var(--color-text-on-dark);
}

.section-dark .section-header__title {
  color: var(--color-white);
}

.section-dark .section-header__subtitle {
  color: var(--color-text-muted-dark);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-white);
}

.section-dark-gradient {
  background: var(--gradient-dark);
  color: var(--color-text-on-dark);
}

.section-dark-gradient .section-header__title {
  color: var(--color-white);
}

.section-dark-gradient .section-header__subtitle {
  color: var(--color-text-muted-dark);
}

.section-dark-gradient h1,
.section-dark-gradient h2,
.section-dark-gradient h3,
.section-dark-gradient h4 {
  color: var(--color-white);
}


/* ============================================================
   32. PAGES GRID (Sayfalarimiz)
   ============================================================ */
.pages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.pages-grid__card {
  background-color: var(--color-dark-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border-top: 3px solid transparent;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.pages-grid__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.pages-grid__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-yellow);
  background-color: var(--color-dark-card-hover);
}

.pages-grid__card:hover::before {
  transform: scaleX(1);
}

.pages-grid__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: rgba(255, 193, 7, 0.12);
  color: var(--color-primary);
  font-size: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
}

.pages-grid__card:hover .pages-grid__icon {
  background-color: var(--color-primary);
  color: var(--color-black);
  transform: scale(1.08);
}

.pages-grid__title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.pages-grid__text {
  font-size: var(--fs-small);
  color: var(--color-text-muted-dark);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.pages-grid__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  transition: gap var(--transition-base);
}

.pages-grid__link:hover {
  gap: var(--space-md);
}

@media (min-width: 576px) {
  .pages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ============================================================
   33. ROUTES TABLE (Guzergahlar & Fiyatlar)
   ============================================================ */
.routes-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.routes-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-small);
}

.routes-table thead {
  background-color: var(--color-dark-surface);
}

.routes-table thead th {
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-small);
  color: var(--color-white);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border-bottom: 3px solid var(--color-primary);
}

.routes-table tbody tr {
  transition: background-color var(--transition-fast);
}

.routes-table tbody tr:nth-child(even) {
  background-color: var(--color-light-gray);
}

.routes-table tbody tr:hover {
  background-color: var(--color-primary-light);
}

.routes-table tbody td {
  padding: var(--space-md) var(--space-lg);
  color: var(--color-dark-gray);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: middle;
}

.routes-table__route {
  font-weight: var(--fw-semibold);
  color: var(--color-black);
}

.routes-table__distance {
  color: var(--color-gray);
}

.routes-table__price {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  color: var(--color-primary-dark);
}

.routes-table__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.4rem 1rem;
  background-color: var(--color-primary);
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-base);
  text-decoration: none;
}

.routes-table__cta:hover {
  background-color: var(--color-primary-dark);
  box-shadow: var(--shadow-yellow);
  transform: translateY(-1px);
}

/* Routes table - mobile card view */
@media (max-width: 767px) {
  .routes-table-wrapper {
    box-shadow: none;
  }

  .routes-table thead {
    display: none;
  }

  .routes-table tbody {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .routes-table tbody tr {
    display: flex;
    flex-direction: column;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--color-primary);
  }

  .routes-table tbody tr:nth-child(even) {
    background-color: var(--color-white);
  }

  .routes-table tbody td {
    padding: var(--space-xs) 0;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .routes-table tbody td::before {
    content: attr(data-label);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-xs);
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 100px;
  }

  .routes-table__cta {
    width: 100%;
    justify-content: center;
    margin-top: var(--space-sm);
    padding: 0.6rem 1rem;
  }
}


/* ============================================================
   34. TESTIMONIALS (Musteri Yorumlari)
   ============================================================ */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: var(--space-md) var(--space-sm);
}

.testimonials__track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 85%;
  max-width: 420px;
  scroll-snap-align: center;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-card__quote {
  position: absolute;
  top: var(--space-md);
  right: var(--space-lg);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.15;
  pointer-events: none;
  user-select: none;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.testimonial-card__stars i {
  color: var(--color-primary);
  font-size: 0.875rem;
}

.testimonial-card__text {
  font-size: var(--fs-small);
  color: var(--color-gray);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-body);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-small);
  color: var(--color-black);
}

.testimonial-card__role {
  font-size: var(--fs-xs);
  color: var(--color-gray-medium);
}

/* Testimonial dots */
.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: var(--color-gray-medium);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
}

.testimonials__dot--active,
.testimonials__dot:hover {
  background-color: var(--color-primary);
  transform: scale(1.3);
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 45%;
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 33%;
  }
}


/* ============================================================
   35. GALLERY PREVIEW
   ============================================================ */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.gallery-preview__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-preview__item:nth-child(1) {
  aspect-ratio: 1 / 1;
}

.gallery-preview__item:nth-child(2) {
  aspect-ratio: 4 / 3;
}

.gallery-preview__item:nth-child(3) {
  aspect-ratio: 4 / 3;
}

.gallery-preview__item:nth-child(4) {
  aspect-ratio: 1 / 1;
}

.gallery-preview__item img,
.gallery-preview__item .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-preview__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-preview__overlay span {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  transform: translateY(8px);
  transition: transform var(--transition-base);
}

.gallery-preview__item:hover img,
.gallery-preview__item:hover .placeholder-img {
  transform: scale(1.08);
}

.gallery-preview__item:hover .gallery-preview__overlay {
  opacity: 1;
}

.gallery-preview__item:hover .gallery-preview__overlay span {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .gallery-preview {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-preview__item:nth-child(1),
  .gallery-preview__item:nth-child(2),
  .gallery-preview__item:nth-child(3),
  .gallery-preview__item:nth-child(4) {
    aspect-ratio: 1 / 1;
  }

  .gallery-preview__item:nth-child(1) {
    grid-row: span 2;
    aspect-ratio: auto;
  }
}


/* ============================================================
   36. BLOG PREVIEW
   ============================================================ */
.blog-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .blog-preview {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog-preview .blog-card {
  border-bottom: 3px solid transparent;
  transition: all var(--transition-base);
}

.blog-preview .blog-card:hover {
  border-bottom-color: var(--color-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}


/* ============================================================
   37. FLOATING WHATSAPP BUTTON (Premium)
   ============================================================ */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.floating-whatsapp {
  animation: whatsapp-pulse 2.5s infinite;
}

.floating-whatsapp:hover {
  animation: none;
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.floating-whatsapp__tooltip {
  position: absolute;
  right: calc(100% + var(--space-md));
  top: 50%;
  transform: translateY(-50%);
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  white-space: nowrap;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  pointer-events: none;
}

.floating-whatsapp:hover .floating-whatsapp__tooltip {
  opacity: 1;
  visibility: visible;
}


/* ============================================================
   38. DARK SECTION SERVICE CARDS
   ============================================================ */
.section-dark .service-card,
.section-dark-gradient .service-card {
  background-color: var(--color-dark-card);
  box-shadow: var(--shadow-dark-card);
}

.section-dark .service-card__title,
.section-dark-gradient .service-card__title {
  color: var(--color-white);
}

.section-dark .service-card__text,
.section-dark-gradient .service-card__text {
  color: var(--color-text-muted-dark);
}

.section-dark .service-card__icon,
.section-dark-gradient .service-card__icon {
  background-color: rgba(255, 193, 7, 0.12);
  color: var(--color-primary);
}

.section-dark .service-card:hover .service-card__icon,
.section-dark-gradient .service-card:hover .service-card__icon {
  background-color: var(--color-primary);
  color: var(--color-black);
}

.section-dark .service-card:hover,
.section-dark-gradient .service-card:hover {
  box-shadow: var(--shadow-yellow);
}

/* Dark section blog cards */
.section-dark .blog-card,
.section-dark-gradient .blog-card {
  background-color: var(--color-dark-card);
}

.section-dark .blog-card__title,
.section-dark-gradient .blog-card__title {
  color: var(--color-white);
}

.section-dark .blog-card__excerpt,
.section-dark-gradient .blog-card__excerpt {
  color: var(--color-text-muted-dark);
}

.section-dark .blog-card__title a:hover,
.section-dark-gradient .blog-card__title a:hover {
  color: var(--color-primary);
}

/* Dark section testimonials */
.section-dark .testimonial-card {
  background-color: var(--color-dark-card);
}

.section-dark .testimonial-card__text {
  color: var(--color-text-muted-dark);
}

.section-dark .testimonial-card__name {
  color: var(--color-white);
}

.section-dark .testimonial-card__quote {
  opacity: 0.1;
}


/* ============================================================
   39. VALUE-ADD ANIMATIONS
   ============================================================ */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

/* Premium gold separator */
.section-separator {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  border: none;
  opacity: 0.4;
}

/* Stats / numbers counter effect styling */
.stat-number {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
  line-height: 1.1;
}

.stat-label {
  font-size: var(--fs-small);
  color: var(--color-text-muted-dark);
  margin-top: var(--space-xs);
}


/* ============================================================
   40. RESPONSIVE ADDITIONS FOR NEW SECTIONS
   ============================================================ */
@media (min-width: 768px) {
  .pages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-preview {
    grid-template-columns: repeat(4, 1fr);
  }

  .blog-preview {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pages-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .routes-table tbody td {
    padding: var(--space-md) var(--space-xl);
  }

  .routes-table thead th {
    padding: var(--space-md) var(--space-xl);
  }
}

/* Large desktop polish */
@media (min-width: 1280px) {
  .pages-grid {
    gap: var(--space-xl);
  }

  .testimonial-card {
    padding: var(--space-2xl);
  }

  .gallery-preview {
    gap: var(--space-lg);
  }
}

/* ============================================================
   41. OPUS NEW ADDITIONS
   ============================================================ */

/* section-dark */
.section-dark {
  background-color: var(--color-dark-gray);
  color: var(--color-white);
}
.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}
.section-dark .section-header p {
  color: rgba(255,255,255,0.7);
}

/* TESTIMONIALS — Otomatik kayan carousel */
.testimonials-section {
  background-color: var(--color-dark-gray);
  overflow: hidden;
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
  color: var(--color-white);
}

.testimonials-section .section-header p {
  color: rgba(255,255,255,0.6);
}

.testimonials-track-wrapper {
  position: relative;
  overflow: hidden;
  /* fade kenarlar */
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonials__track {
  display: flex;
  gap: var(--space-lg);
  /* Otomatik scroll animasyonu */
  animation: scrollTestimonials 28s linear infinite;
  width: max-content;
}

.testimonials__track:hover {
  animation-play-state: paused;
}

@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card__quote {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  opacity: 0.6;
}

.testimonial-card__stars {
  color: var(--color-primary);
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.testimonial-card__role {
  font-size: var(--fs-xs);
  color: var(--color-primary);
  margin-top: 2px;
}

/* Pages section renk tutarlılığı */
.pages-section.section-dark {
  background-color: var(--color-dark-gray);
}

.pages-grid__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-decoration: none;
}

.pages-grid__card:hover {
  background: rgba(255,179,0,0.08);
  border-color: rgba(255,179,0,0.3);
  transform: translateY(-6px);
}

.pages-grid__icon {
  width: 52px;
  height: 52px;
  background: rgba(255,179,0,0.15);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  transition: all var(--transition-base);
}

.pages-grid__card:hover .pages-grid__icon {
  background: var(--color-primary);
  color: var(--color-black);
}

.pages-grid__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-h4);
  color: var(--color-white);
}

.pages-grid__text {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.6);
  flex: 1;
}

.pages-grid__link {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

/* Section header — dark section'larda beyaz metin */
.section-dark .section-header h2 {
  color: var(--color-white);
}
.section-dark .section-header p {
  color: rgba(255,255,255,0.65);
}

/* Routes table renk tutarlılığı */
.section-dark .routes-table {
  color: var(--color-white);
  background-color: transparent;
}
.section-dark .routes-table-wrapper {
  background-color: var(--color-dark-gray);
  box-shadow: none;
}
.section-dark .routes-table th {
  background-color: rgba(255,179,0,0.15);
  color: var(--color-primary);
  border-bottom-color: rgba(255,179,0,0.3);
}
.section-dark .routes-table td {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.08);
}
.section-dark .routes-table tbody tr {
  background-color: transparent;
}
.section-dark .routes-table tbody tr:nth-child(even) {
  background-color: rgba(255,255,255,0.03);
}
.section-dark .routes-table tbody tr:hover {
  background-color: rgba(255,179,0,0.08);
}
.section-dark .routes-table__route {
  color: var(--color-white);
}

/* Mobile specific fixes for table in dark mode */
@media (max-width: 767px) {
  .section-dark .routes-table tbody tr {
    background-color: var(--color-dark-surface);
    border: 1px solid rgba(255,255,255,0.1);
  }
  .section-dark .routes-table tbody tr:nth-child(even) {
    background-color: var(--color-black);
  }
}

/* Floating WhatsApp — Başlangıçta görünür */
.floating-whatsapp {
  visibility: visible !important;
  opacity: 1 !important;
}

/* Mobile CTA bar — daha belirgin */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-toast);
  padding: 0.75rem var(--container-padding);
  background: linear-gradient(135deg, var(--color-primary) 0%, #FF8F00 100%);
  text-align: center;
}

.mobile-cta a {
  color: var(--color-black);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-body);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  text-decoration: none;
}

@media (min-width: 768px) {
  .mobile-cta {
    display: none !important;
  }
}

/* ============================================================
   42. GALLERY & GRID STYLES
   ============================================================ */

/* Gallery Preview (Homepage) */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 992px) {
  .gallery-preview {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-preview__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: var(--color-dark-surface);
}

.gallery-preview__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-preview__item:hover img {
  transform: scale(1.1);
}

.gallery-preview__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-preview__item:hover .gallery-preview__overlay {
  opacity: 1;
}

.gallery-preview__overlay span {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Full Gallery Grid (galeri.html) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-grid__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: var(--color-dark-surface);
}

.gallery-grid__item a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-grid__item:hover img {
  transform: scale(1.08);
}

/* Blog Preview (Homepage) */
.blog-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .blog-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog-placeholder {
  width: 100%;
  height: 100%;
}

.blog-placeholder i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.blog-placeholder span {
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  .blog-card__image {
    aspect-ratio: 21 / 9; /* Daha dar, daha az yer kaplayan görünüm */
  }
  
  .blog-card__content {
    padding: var(--space-md);
  }
  
  .blog-card__title {
    font-size: 1.125rem;
  }
}

/* Blog Card Dark Theme Integration */
.section-dark .blog-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.section-dark .blog-card__title a {
  color: var(--color-white);
}

.section-dark .blog-card__excerpt {
  color: rgba(255, 255, 255, 0.7);
}

.section-dark .blog-card__meta span {
  color: rgba(255, 255, 255, 0.5);
}

.section-dark .blog-card__read-more {
  color: var(--color-primary);
}


/* ============================================================
   MOBILE FIXES — Tasks 2,3,5,6,7,8,9,13
   ============================================================ */

/* --- TASK 2: Footer Compact Mobile --- */
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem 1rem;
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }
  .footer__brand p.footer__desc { display: none; }
  .footer__links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .footer__links ul li {
    flex: 0 0 auto;
  }
  .footer__links ul li a {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
  }
  .footer {
    padding-top: 0;
  }
  .footer__contact ul li {
    font-size: 0.875rem;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem 1rem;
  }
}

@media (min-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
    padding: 3rem 1rem;
  }
}

/* (Hamburger centering is handled in the main header block above) */

/* --- TASK 5: Global Mobile Overflow Fixes --- */
@media (max-width: 768px) {
  input, select, textarea { font-size: 16px !important; }
  .routes-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  section, .container { max-width: 100vw; overflow-x: hidden; }
}

/* --- TASK 6: iletisim.html Contact Page Fixes --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-form-wrap,
.contact-map-wrap {
  min-width: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background-color: #FAFAFA;
  transition: border-color 0.3s ease;
  font-family: var(--font-body);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-white);
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: var(--fw-medium);
  font-size: var(--fs-small);
}

.contact-form .form-group {
  margin-bottom: 1rem;
}

.form-group--error input,
.form-group--error textarea,
.form-group--error select {
  border-color: var(--color-error);
}

.form-error {
  color: var(--color-error);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: block;
}

.form-success {
  background-color: #E8F5E9;
  color: #2E7D32;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  font-weight: var(--fw-medium);
}

.form-success i {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form .form-group { width: 100%; }
  .contact-form input, .contact-form textarea, .contact-form select { width: 100%; font-size: 16px !important; }
  #contactMap, .contact-map { height: 300px !important; overflow: hidden; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-form .btn { width: 100%; }
  .contact-cards {
    grid-template-columns: 1fr !important;
  }
  .contact-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* --- TASK 7: hizmet-bolgeleri.html Mobile Fixes --- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.area-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  text-align: center;
}

.area-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.area-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-black);
  font-size: 1.25rem;
  border-radius: var(--radius-md);
  margin: 0 auto 1rem;
}

.area-card h2 {
  font-size: var(--fs-h4);
  margin-bottom: 0.5rem;
}

.area-card__desc {
  font-size: var(--fs-small);
  color: var(--color-gray);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.area-card__meta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: var(--fs-small);
  color: var(--color-gray);
}

.area-card__meta i {
  color: var(--color-primary);
}

.area-card__link {
  display: inline-block;
  color: var(--color-primary-dark);
  font-weight: var(--fw-medium);
  font-size: var(--fs-small);
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
  #areasMap {
    height: 350px !important;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
  }
  .map-section {
    overflow: hidden;
  }
}

/* --- TASK 8: blog.html Mobile Fixes --- */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.blog-filters__btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-primary);
  background: transparent;
  color: var(--color-black);
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-small);
  cursor: pointer;
  transition: all var(--transition-base);
}

.blog-filters__btn.active,
.blog-filters__btn:hover {
  background-color: var(--color-primary);
  color: var(--color-black);
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr !important;
  }
  .blog-filters {
    flex-wrap: wrap;
    gap: 0.5rem;
    overflow-x: visible;
  }
}

@media (min-width: 769px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* --- TASK 9: galeri.html Mobile Fixes --- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.gallery-filters__btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-primary);
  background: transparent;
  color: var(--color-black);
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-small);
  cursor: pointer;
  transition: all var(--transition-base);
}

.gallery-filters__btn.active,
.gallery-filters__btn:hover {
  background-color: var(--color-primary);
  color: var(--color-black);
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* --- TASK 13: Mobile Touch Target Fix --- */
@media (max-width: 768px) {
  .header__nav-list li > a,
  .btn,
  .footer__links a,
  .footer__links ul li a,
  .footer__contact ul li a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .footer__links ul li a {
    display: inline-flex;
  }
}

/* --- WhatsApp Mobile Position --- */
@media (max-width: 767px) {
  .floating-whatsapp {
    bottom: 80px;
    right: 1rem;
  }
}

/* --- Page Hero Mobile Fix --- */
@media (max-width: 768px) {
  .page-hero {
    padding: 5rem 1rem 2rem;
  }
  .page-hero__content {
    padding: 0;
  }
  .page-hero h1 {
    font-size: 1.75rem;
  }
}
