/* ============================================================
   UNIQ TRADING CORP. — Global Design System
   style.css · Faz 3 · Roboto · Premium Logistics
   ============================================================ */

/* Font moved to header.php <link> for performance */

/* ═══════════════════════════════════════
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ═══════════════════════════════════════ */
:root {
  /* Brand Colors */
  --navy: #0A2540;
  --navy-deep: #071a2e;
  --blue: #0055FF;
  --blue-hover: #0044cc;
  --turquoise: #00D1C1;
  --turquoise-dk: #00afa1;
  --gray-dark: #4F566B;
  --gray-mid: #8898aa;
  --gray-hint: #6b7a8d;
  /* WCAG AA uyumlu form hint rengi (#F6F9FC üzerinde ~4.6:1) */
  --gray-light: #F6F9FC;
  --border-color: #e3e8ef;
  --white: #FFFFFF;
  --text-primary: #1a2332;
  --text-secondary: #4F566B;

  /* Typography */
  --font: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;

  /* Type Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: clamp(1.8rem, 4vw, 2.75rem);
  --text-5xl: clamp(2.2rem, 5vw, 4rem);

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Layout */
  --container: 1200px;
  --container-pad: clamp(1rem, 4vw, 2rem);
  --nav-h: 92px;
  --top-bar-h: 36px;

  /* Effects */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-xs: 0 1px 3px rgba(10, 37, 64, .06);
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, .08);
  --shadow-md: 0 8px 24px rgba(10, 37, 64, .12);
  --shadow-lg: 0 20px 60px rgba(10, 37, 64, .18);
  --transition: 0.25s cubic-bezier(.4, 0, .2, 1);

  /* Hero Overlay */
  --hero-overlay: linear-gradient(135deg, rgba(10, 37, 64, .90) 0%, rgba(0, 85, 255, .30) 100%);
}


/* ═══════════════════════════════════════
   2. RESET & BASE
   ═══════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-weight: var(--fw-light);
  color: var(--text-primary);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}


/* ═══════════════════════════════════════
   3. TYPOGRAPHY
   ═══════════════════════════════════════ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--fw-regular);
  color: var(--navy);
  line-height: 1.25;
}

h1 {
  font-size: var(--text-5xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

h5 {
  font-size: var(--text-lg);
}

h6 {
  font-size: var(--text-base);
}

p {
  font-weight: var(--fw-light);
  line-height: 1.75;
  color: var(--text-secondary);
}

.text-accent {
  font-weight: var(--fw-light);
  font-style: italic;
  color: var(--turquoise);
}

.text-blue {
  color: var(--blue);
}

.text-navy {
  color: var(--navy);
}

.text-white {
  color: var(--white) !important;
}

.text-muted {
  color: var(--gray-mid);
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}


/* ═══════════════════════════════════════
   4. LAYOUT
   ═══════════════════════════════════════ */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--sp-20);
}

.section--sm {
  padding-block: var(--sp-12);
}

.section--lg {
  padding-block: var(--sp-24);
}

.section--dark {
  background-color: var(--navy);
}

.section--gray {
  background-color: var(--gray-light);
}

.section-label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: var(--sp-3);
}

.section-title {
  font-size: var(--text-4xl);
  margin-bottom: var(--sp-4);
}

.section-sub {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 1000px;
  margin-bottom: var(--sp-10);
  margin-inline: auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-8);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--sp-6);
}

.page-wrap {
  padding-top: calc(var(--nav-h) + var(--top-bar-h));
}

.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--turquoise));
  border-radius: 2px;
  margin-bottom: var(--sp-4);
}


/* ═══════════════════════════════════════
   5. BUTTONS
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.78rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: var(--fw-medium);
  font-size: var(--text-base);
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}

.btn-primary {
  background-color: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-primary:hover {
  background-color: var(--blue-hover);
  border-color: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 85, 255, .3);
}

.btn-secondary {
  background-color: var(--turquoise);
  color: var(--navy);
  border-color: var(--turquoise);
}

.btn-secondary:hover {
  background-color: var(--turquoise-dk);
  border-color: var(--turquoise-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 209, 193, .3);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .6);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-outline-navy {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-navy:hover {
  background-color: var(--navy);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: var(--text-lg);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-sm);
}


/* ═══════════════════════════════════════
   6. NAVIGATION
   ═══════════════════════════════════════ */

/* ── Top Bar ── */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: 36px;
  background-color: rgba(6, 20, 40, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  text-decoration: none;
  transition: color var(--transition);
}

.top-bar-link:hover {
  color: var(--turquoise);
}

/* Telefon linkleri — inline style/handler yerine CSS ile yönetilir */
.top-bar-phone-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.top-bar-phone-link:hover {
  opacity: 0.8;
}

/* Telefon span'ı için gap modifier */
.top-bar-link--phone {
  gap: 4px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.top-bar-social {
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  transition: color var(--transition);
}

.top-bar-social:hover {
  color: var(--turquoise);
}

.site-nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background-color: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background-color var(--transition), box-shadow var(--transition);
}

.site-nav.scrolled {
  background-color: var(--navy-deep);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .28);
}

.site-nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

/* Logo */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.nav-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine 5s infinite;
  z-index: 10;
  pointer-events: none;
}

.nav-logo img {
  height: 95px;
  width: auto;
}

/* Nav Layout (Single Row) */
.nav-exp-badge {
  display: none;
  /* Sadece mobilde gösterilir */
}

.nav-content-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
}

.nav-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  /* Increased gap for better spacing */
  flex: 1;
}

.nav-right-area {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  margin-bottom: 6px;
}

.nav-tagline-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: var(--fw-light);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-nav .tagline-btn {
  background-color: var(--turquoise-dk);
  border-color: var(--turquoise-dk);
  color: var(--white);
  font-size: 0.8rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 175, 161, 0.3);
}

.site-nav .tagline-btn:hover {
  background-color: var(--turquoise);
  border-color: var(--turquoise);
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .nav-bottom-row {
    display: none;
  }
}

.nav-right-area {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  margin-left: auto;
}

.nav-socials-desktop {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.social-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition), transform var(--transition);
}

.social-link svg {
  width: 24px;
  height: 24px;
  transition: transform var(--transition);
}

.social-link:hover {
  color: var(--turquoise);
  transform: translateY(-2px);
}

.social-link:hover svg {
  transform: scale(1.1);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: var(--sp-2) var(--sp-4);
  /* Increased horizontal padding */
  color: rgba(255, 255, 255, .78);
  font-weight: var(--fw-regular);
  font-size: var(--text-sm);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background-color: rgba(255, 255, 255, .08);
}

.nav-badge {
  font-size: 9px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  background-color: var(--turquoise);
  color: var(--navy);
  padding: 1px 4px;
  border-radius: 4px;
  margin-left: 6px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

.nav-arrow {
  font-size: 10px;
  opacity: .6;
  transition: transform var(--transition);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--navy-deep, #0a192f);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  min-width: 320px;
  width: max-content;
  max-width: 360px;
  padding: var(--sp-2) 0 var(--sp-3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  border-top: 2px solid var(--turquoise);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.dropdown-menu a {
  display: block;
  padding: var(--sp-3) 1.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  white-space: nowrap;
  border-left: 3px solid transparent;
  transition: color var(--transition), background-color var(--transition), padding-left var(--transition), border-color var(--transition);
}

.dropdown-menu a:hover {
  color: var(--turquoise);
  background-color: rgba(255, 255, 255, 0.06);
  padding-left: calc(1.25rem + 4px);
  border-left-color: var(--turquoise);
}

/* Nav CTA */
.nav-cta {
  margin-left: var(--sp-4);
  padding: 0.55rem 1.25rem;
  font-size: var(--text-sm);
}

.nav-cta-mobile,
.nav-mobile-contact {
  display: none;
}

.nav-cta-mobile .btn {
  width: 100%;
  justify-content: center;
}

.header-clock {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.clock-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ff4d4d;
  /* Default red */
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.clock-status-dot.is-open {
  background-color: #2ed573;
  /* Green */
  box-shadow: 0 0 8px rgba(46, 213, 115, 0.4);
}

#clockTorontoHeader {
  color: #00E5FF;
  font-weight: 600;
}


/* ── Hamburger Toggle Button ── */
.nav-toggle {
  display: none;
  /* Desktop'ta gizli */
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 6px;
  transition: background-color 0.2s;
  flex-shrink: 0;
}

.nav-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* X şekli — menü açıkken */
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}



/* ═══════════════════════════════════════
   7. HERO & SLIDER
   ═══════════════════════════════════════ */

/* Home Tagline Banner (Faz 6.4) */
.home-tagline-banner {
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 10px 0;
  text-align: center;
  position: relative;
  z-index: 90;
  /* Just below main nav */
}

.home-tagline-banner p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #071a2e;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .home-tagline-banner {
    padding: 8px 0;
  }

  .home-tagline-banner p {
    font-size: 0.85rem;
  }
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background-color: var(--navy-deep);
  padding-top: calc(var(--nav-h) + var(--top-bar-h));
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* Background image handling via <picture> */
.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 37, 64, 0.8);
  z-index: 1;
}

.slide-content {
  padding-block: var(--sp-24);
  position: relative;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background-color: rgba(0, 209, 193, .12);
  border: 1px solid rgba(0, 209, 193, .3);
  color: var(--turquoise);
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-xl);
  margin-bottom: var(--sp-6);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.2s;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--white);
  max-width: 1000px;
  margin-bottom: var(--sp-6);
  line-height: 1.15;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.4s;
}

.hero-title span {
  color: var(--turquoise);
}

.hero-sub {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, .72);
  max-width: 800px;
  margin-bottom: var(--sp-10);
  font-weight: var(--fw-light);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.6s;
}

.hero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.8s;
}

/* Activate animations for visible slide */
.slide.active .hero-badge,
.slide.active .hero-title,
.slide.active .hero-sub,
.slide.active .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255, 255, 255, .45);
  font-size: var(--text-xs);
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: scrollBounce 2.4s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--turquoise), transparent);
}

/* ═══════════════════════════════════════
   8. PAGE HERO (İç Sayfalar — Ortak Bileşen)
   ═══════════════════════════════════════ */

.page-hero {
  position: relative;
  width: 100%;
  padding-top: calc(var(--nav-h) + var(--top-bar-h) + 20px);
  padding-bottom: 24px;
  background: linear-gradient(135deg, #061428 0%, #0a2540 50%, #0d2d4a 100%);
  color: var(--white);
  overflow: hidden;
  z-index: 1;
}

/* Diagonal arka plan çizgisi */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 209, 193, 0.04) 0%, transparent 60%),
    repeating-linear-gradient(-45deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.012) 40px,
      rgba(255, 255, 255, 0.012) 41px);
  z-index: 0;
  pointer-events: none;
}

/* Sol turkuaz dikey çizgi aksanı */
.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--turquoise), transparent);
  z-index: 2;
}

/* İçerik katmanı */
.page-hero .container {
  position: relative;
  z-index: 3;
  text-align: left;
  width: 100%;
}

/* Sayfa başlığı etiketi */
.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 12px;
  opacity: 0.9;
}

.page-hero-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--turquoise);
  border-radius: 2px;
}

.page-hero .section-title {
  margin-bottom: var(--sp-3);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* Alt başlık */
.page-hero .hero-sub {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.72);
  max-width: 900px;
  margin-bottom: var(--sp-5);
  font-weight: var(--fw-light);
  line-height: 1.7;
  opacity: 1;
  visibility: visible;
  transform: none;
}

/* Breadcrumb */
.page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding-top: var(--sp-4);
  margin-top: var(--sp-4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 400;
  /* WCAG AA: .45 → .65 (navy bg üzerinde ~5.1:1 kontrast) */
  color: rgba(255, 255, 255, .65);
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, .80);
  transition: color var(--transition);
}

.page-breadcrumb a:hover {
  color: var(--turquoise);
}

.page-breadcrumb .sep {
  color: rgba(255, 255, 255, .25);
  font-size: 0.7rem;
}

.page-breadcrumb span[aria-current] {
  color: var(--turquoise);
  font-weight: 500;
}

/* Service content wrapper */
.service-content-wrap {
  max-width: 860px;
  margin: 0 auto;
}

/* Service detail section with background image */
.service-detail-section {
  position: relative;
  background-image: var(--service-bg, none);
  background-color: #fff;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.service-detail-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  z-index: 1;
}

.hero-decor {
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  transition: transform 4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
}

.page-hero:hover .hero-decor {
  opacity: 0.7;
  transform: translateY(-50%) scale(1.04) rotate(3deg);
}

/* Slider Controls */
.slider-dots {
  position: absolute;
  bottom: var(--sp-8);
  right: var(--container-pad);
  display: flex;
  gap: var(--sp-2);
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .4);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.dot.active {
  background: var(--turquoise);
  border-color: var(--turquoise);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .hero-decor {
    width: 300px;
    height: 300px;
    right: -10%;
    opacity: 0.3;
  }
}


/* ═══════════════════════════════════════
   8. TRUST BAR (Integrated into Services Section)
   ═══════════════════════════════════════ */


/* ═══════════════════════════════════════
   9. SERVICE CARDS
   ═══════════════════════════════════════ */
.service-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--turquoise));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 54px;
  height: 54px;
  background-color: var(--gray-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: var(--sp-6);
  transition: background-color var(--transition), transform var(--transition);
}

.service-card:hover .service-icon {
  background-color: rgba(0, 85, 255, .08);
  transform: scale(1.06);
}

.service-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-3);
}

.service-card p {
  font-size: var(--text-sm);
  margin-bottom: var(--sp-6);
  line-height: 1.75;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--blue);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  transition: gap var(--transition);
}

.service-link:hover {
  gap: var(--sp-3);
}


/* ═══════════════════════════════════════
   10. FORMS
   ═══════════════════════════════════════ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--navy);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: var(--fw-light);
  color: var(--text-primary);
  background-color: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 85, 255, .12);
}

.form-control::placeholder {
  /* WCAG AA: --gray-hint (#6b7a8d) açık arka plan üzerinde ~4.6:1 kontrast sağlar */
  color: var(--gray-hint);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

select.form-control {
  appearance: none;
  cursor: pointer;
}

/* Honeypot - must stay visually hidden, NOT display:none for some bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-error {
  font-size: var(--text-sm);
  color: #e53e3e;
}

.form-success {
  font-size: var(--text-sm);
  color: #38a169;
}

/* Checkbox Alignment (Phase 6.5) */
.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: var(--sp-6);
  margin-top: var(--sp-2);
}

.form-checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-checkbox-group .checkbox-label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  cursor: pointer;
}

.form-checkbox-group .checkbox-label a {
  color: var(--navy);
  font-weight: var(--fw-medium);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-checkbox-group .checkbox-label a:hover {
  color: var(--blue);
}


/* ═══════════════════════════════════════
   11. WORLD CLOCK
   ═══════════════════════════════════════ */
.world-clock {
  display: flex;
  gap: var(--sp-6);
  align-items: center;
}

.clock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clock-city {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 2px;
}

.clock-time {
  font-size: var(--text-xl);
  font-weight: var(--fw-light);
  color: var(--white);
  font-variant-numeric: tabular-nums;
  min-width: 5ch;
  text-align: center;
}

/* Contact Page Specific (Phase 6.5) */
.contact-aside {
  background-color: var(--gray-light);
  border-radius: var(--radius-md);
  padding: var(--sp-12);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-aside h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--sp-8);
  position: relative;
  padding-bottom: var(--sp-3);
}

.contact-aside h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--turquoise);
  border-radius: 2px;
}

.contact-info-block {
  margin-bottom: var(--sp-8);
}

.contact-info-block:last-child {
  margin-bottom: 0;
}

.contact-info-block strong {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  /* WCAG AA: --gray-hint (#6b7a8d) açık arka plan üzerinde ~4.6:1 kontrast sağlar */
  color: var(--gray-hint);
  margin-bottom: var(--sp-1);
  font-weight: var(--fw-medium);
}

.contact-info-block span,
.contact-info-block a {
  font-size: var(--text-base);
  color: var(--navy);
  font-weight: var(--fw-regular);
  line-height: 1.6;
}

.contact-info-block .company-title {
  font-size: var(--text-xl);
  color: var(--navy);
  font-weight: var(--fw-medium);
  margin-bottom: var(--sp-2);
}

/* Form Row for Phone (Phase 6.5) */
.form-row-inline {
  display: flex;
  gap: var(--sp-2);
}

.form-row-inline select {
  width: 140px;
  flex-shrink: 0;
}

.form-row-inline input {
  flex-grow: 1;
}

.contact-map-wrapper {
  margin-top: var(--sp-12);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.contact-map-wrapper iframe {
  width: 100% !important;
  height: 450px !important;
  border: 0 !important;
  display: block;
}

.clock-sep {
  color: rgba(255, 255, 255, .25);
  font-size: var(--text-sm);
  align-self: center;
  padding-top: var(--sp-3);
}


/* ═══════════════════════════════════════
   12. FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  background-color: var(--navy-deep);
  color: rgba(255, 255, 255, .7);
  padding-top: var(--sp-16);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/footer-grid-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.site-footer>* {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 2fr 0.8fr 2.2fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-logo {
  height: 100px;
  width: auto;
  margin-bottom: var(--sp-4);
}

.footer-tagline {
  font-size: var(--text-sm);
  font-style: italic;
  font-weight: var(--fw-light);
  color: rgba(255, 255, 255, .45);
  margin-bottom: var(--sp-6);
  line-height: 1.75;
  max-width: 300px;
}

.footer-heading {
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: var(--sp-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, .55);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--turquoise);
  padding-left: 4px;
}

.footer-contact p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, .55);
  line-height: 1.75;
  margin-bottom: var(--sp-3);
}

.footer-contact .footer-heading {
  color: var(--white);
}

.footer-contact a:hover {
  color: var(--turquoise);
}

.footer-memberships {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-top: var(--sp-6);
}

.membership-badge {
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: var(--navy);
  background-color: var(--turquoise);
  padding: 3px var(--sp-2);
  border-radius: var(--radius-sm);
  letter-spacing: .04em;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, .3);
}

.dev-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), text-shadow var(--transition);
}

.dev-link:hover {
  color: var(--turquoise);
  text-shadow: 0 0 8px rgba(0, 204, 187, 0.6);
}

.footer-legal {
  display: flex;
  gap: var(--sp-6);
}

.footer-legal a {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, .3);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, .7);
}


/* ═══════════════════════════════════════
   13. COOKIE BANNER
   ═══════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--navy);
  border-top: 2px solid var(--turquoise);
  padding: var(--sp-4) var(--container-pad);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-text {
  flex: 1;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, .78);
  min-width: 240px;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--turquoise);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: var(--sp-3);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════
   14. ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .6;
  }
}

.fade-in-up {
  animation: fadeInUp 0.65s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.22s;
}

.delay-3 {
  animation-delay: 0.34s;
}

.delay-4 {
  animation-delay: 0.46s;
}

/* Scroll-reveal (toggled by IntersectionObserver in JS) */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════
   16. RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ──────────────────────────────────────
   TABLET & MOBILE  (≤ 768px)
   ────────────────────────────────────── */
@media (max-width: 768px) {

  /* ── 0. GLOBALS ── */
  :root {
    --top-bar-h: 0px;
    --nav-h: 65px;
  }

  /* ── 1. HEADER & NAV (FIXED) ── */
  .top-bar {
    display: none;
  }

  .site-nav {
    top: 0;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .site-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
  }

  .nav-logo img {
    height: 38px;
    width: auto;
  }

  /* Trust Badge — Precise center between Logo and Toggle */
  .nav-exp-badge {
    display: block;
    color: var(--turquoise);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.05em;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .nav-exp-badge svg {
    display: none;
  }



  /* ── Hamburger butonu mobilde göster ── */
  .nav-toggle {
    display: flex;
  }

  /* ── Geniş ekran öğeleri gizle ── */
  .nav-right-area {
    display: none;
  }

  .nav-content-area {
    display: none;
  }

  /* ── MOBILE MENU PANELİ ──
     Mantık: nav-links her zaman position:fixed ama
     transform:translateX(100%) ile ekran dışında tutulur.
     .is-open eklenince transform kaldırılır ve panel görünür.
     Bu yöntem tüm mobil tarayıcılarda (iOS Safari dahil) %100 güvenilirdir.
  ── */
  .nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 65px);
    /* dvh: iOS adres çubuğu farkını kapsar */
    background-color: #061428;
    padding: 1.5rem 1.5rem 4rem 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    visibility: hidden;
  }

  .nav-links.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  /* ── Menü öğeleri ── */
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links .nav-link {
    display: flex;
    padding: 0.9rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    width: 100%;
    justify-content: space-between;
  }

  .nav-links .nav-link:hover {
    color: var(--turquoise);
    background-color: transparent;
  }

  /* ── Dropdown (mobilde yatay değil dikey) ── */
  .nav-links .nav-dropdown .dropdown-menu {
    display: block;
    position: static;
    background-color: transparent;
    padding: 0 0 0.5rem 1rem;
    margin-top: 0;
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links .nav-dropdown.is-expanded .dropdown-menu {
    max-height: 500px;
  }

  .nav-links .dropdown-menu a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    padding: 0.5rem 0;
    border-left: none;
    padding-left: 0;
  }

  .nav-links .dropdown-menu a:hover {
    color: var(--turquoise);
    background: none;
    padding-left: 0;
    border-left: none;
  }

  .nav-links .nav-arrow {
    font-size: 0.6rem;
    margin-left: auto;
    transition: transform 0.3s ease;
  }

  .nav-links .nav-dropdown.is-expanded .nav-arrow {
    transform: rotate(180deg);
  }

  /* CTA & Contact info inside sidebar */
  .nav-links.is-open .nav-cta-mobile {
    display: block !important;
    margin-top: var(--sp-6);
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--sp-6);
  }

  .nav-links.is-open .nav-cta-mobile a {
    width: 100%;
    margin-bottom: var(--sp-3);
  }

  .nav-mobile-contact {
    display: block !important;
    margin-top: var(--sp-10);
    width: 100%;
  }

  .nav-mobile-contact-inner {
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
  }

  .nav-mobile-contact-item {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    text-decoration: none;
  }

  .nav-mobile-contact-item svg {
    color: var(--turquoise);
  }

  /* ── 3. HERO SLIDER (TEXT & IMAGE FIX) ── */
  .hero-slider {
    height: 100svh;
    height: 100vh;
    /* fallback */
    min-height: 580px;
  }

  .slide-bg img {
    object-fit: cover;
    object-position: 70% center !important;
  }

  .slide-content {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: left !important;
    align-items: flex-start !important;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem) !important;
    line-height: 1.1;
    margin-bottom: var(--sp-4);
    text-align: left;
    width: 100%;
  }

  .hero-sub {
    font-size: var(--text-base) !important;
    max-width: 90%;
    margin-bottom: var(--sp-8);
    text-align: left;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: var(--sp-3);
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: none;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .hero-badge {
    margin-left: 0;
    margin-right: auto;
  }

  /* ── Slider Dots — Mobilde Ortala ── */
  .slider-dots {
    bottom: var(--sp-4);
    right: 50%;
    transform: translateX(50%);
  }

  /* ── 4. BLOG SLIDER (TRUE HORIZONTAL) ── */
  .blog-slider-mobile {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: var(--sp-4) !important;
    padding: 0 1rem var(--sp-8) !important;
    margin-inline: -1rem !important;
    scrollbar-width: none;
  }

  .blog-slider-mobile::-webkit-scrollbar {
    display: none;
  }

  .blog-slider-mobile>* {
    flex: 0 0 85% !important;
    scroll-snap-align: start !important;
    min-width: 280px !important;
  }

  /* ── 5. FOOTER (INTERACTIVE) ── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-heading[data-accordion] {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-4) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0;
    font-size: var(--text-base);
  }

  .footer-accordion-icon {
    font-size: 1.2rem;
    color: var(--turquoise);
    transition: transform 0.3s ease;
  }

  .footer-nav-group.is-open .footer-accordion-icon {
    transform: rotate(45deg);
  }

  .footer-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .footer-nav-group.is-open .footer-accordion-body {
    max-height: 500px;
    padding: var(--sp-3) 0 var(--sp-6);
  }

  .footer-brand,
  .footer-contact {
    padding-bottom: var(--sp-8);
  }

  /* ── 6. FOOTER BOTTOM BAR ── */
  .footer-bottom {
    flex-direction: column;
    gap: var(--sp-4);
    text-align: center;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-3);
  }

  /* ── 7. FOOTER LOGO ── */
  .footer-logo {
    height: 60px;
  }

  /* ── 8. CONTACT ASIDE PADDING ── */
  .contact-aside {
    padding: var(--sp-6);
  }

  /* ── 9. SECTION PADDING ── */
  .section {
    padding-block: var(--sp-12);
  }

  .section--lg {
    padding-block: var(--sp-16);
  }

  /* ── 10. PAGE HERO PADDING ── */
  .page-hero {
    padding-top: calc(var(--nav-h) + 24px);
  }

  /* ── 11. COOKIE BANNER MOBİL ── */
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
    padding: var(--sp-4);
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

/* ──────────────────────────────────────
   SMALL PHONES  (≤ 480px)
   ────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem !important;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .nav-exp-badge {
    font-size: 9px;
  }

  /* Hero decor SVG küçült */
  .hero-decor {
    width: 180px;
    height: 180px;
    right: -15%;
    opacity: 0.15;
  }

  /* grid-3 tek kolon */
  .grid-3 {
    grid-template-columns: 1fr;
  }

  /* grid-2 tek kolon */
  .grid-2 {
    grid-template-columns: 1fr;
  }

  /* About features mini tek kolon */
  .about-features-mini {
    grid-template-columns: 1fr;
  }

  /* Choose card dikey */
  .choose-card {
    flex-direction: column;
    gap: var(--sp-3);
  }

  /* Blog card thumb yüksekliği */
  .blog-card__thumb {
    height: 180px;
  }

  /* Servis detay butonları */
  .service-content-wrap .mt-8 {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
  }

  .service-content-wrap .mt-8 .btn {
    width: 100%;
    justify-content: center;
  }

  /* iOS background-attachment fix */
  .service-detail-section {
    background-attachment: scroll;
  }

  /* Nav logo küçük ekranda daha küçük */
  .nav-logo img {
    height: 32px;
  }

  /* Hero butonlar tam genişlik */
  .hero-actions .btn {
    font-size: var(--text-sm);
    padding: 0.7rem 1.25rem;
  }

  /* Form inline row küçük ekranda dikey */
  .form-row-inline {
    flex-direction: column;
  }

  .form-row-inline select {
    width: 100%;
  }

  /* Contact aside padding azalt */
  .contact-aside {
    padding: var(--sp-4);
  }

  /* Footer legal linkler küçük font */
  .footer-legal a {
    font-size: var(--text-xs);
  }
}

/* ──────────────────────────────────────
   VERY SMALL PHONES  (≤ 360px)
   ────────────────────────────────────── */
@media (max-width: 360px) {
  .nav-exp-badge {
    display: none;
  }
}

/* ──────────────────────────────────────
   FORM ROW INLINE — Telefon (≤ 400px)
   ────────────────────────────────────── */
@media (max-width: 400px) {
  .form-row-inline {
    flex-direction: column;
  }

  .form-row-inline select {
    width: 100%;
  }
}

/* ─── Blog Details & Sidebar ────────────────────────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: start;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.blog-main-content {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.blog-featured-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 14px;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.blog-meta-item svg {
  color: var(--turquoise);
}

.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.widget-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--turquoise);
  display: inline-block;
}

.recent-post-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition-base);
}

.recent-post-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.recent-post-card h4 {
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
}

.recent-post-card h4 a {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.2s;
}

.recent-post-card h4 a:hover {
  color: var(--color-accent);
}

.recent-post-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-post-card .post-date {
  font-size: 11px;
  color: var(--color-accent);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .blog-layout {
    grid-template-columns: 1fr;
    margin-top: -30px;
  }

  .blog-main-content {
    padding: var(--sp-6);
  }

  .blog-sidebar {
    position: static;
    margin-top: 20px;
  }
}


/* =========================================
   16. WHY CHOOSE US
   ========================================= */
.section--why-choose {
  background-color: var(--navy);
  color: var(--white);
  padding-block: var(--sp-20);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-8);
  margin-top: var(--sp-12);
}

.choose-card {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-6);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.choose-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--turquoise);
  transform: translateY(-4px);
}

.choose-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 209, 193, 0.1);
  color: var(--turquoise);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.choose-content h4 {
  color: var(--white);
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  margin-bottom: var(--sp-2);
}

.choose-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Utility Classes for Flex & Spacing */
.flex {
  display: flex;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.gap-4 {
  gap: var(--sp-4);
}

.gap-8 {
  gap: var(--sp-8);
}

.mb-4 {
  margin-bottom: var(--sp-4);
}

.mb-8 {
  margin-bottom: var(--sp-8);
}

.mt-8 {
  margin-top: var(--sp-8);
}

.mb-16 {
  margin-bottom: var(--sp-16);
}

.mt-16 {
  margin-top: var(--sp-16);
}

.py-8 {
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-8);
}

.border-top {
  border-top: 1px solid var(--border-color);
}

.opacity-7 {
  opacity: 0.7;
}

.font-medium {
  font-weight: var(--fw-medium);
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

/* Cert Bar Specific */
.cert-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--sp-12);
  padding-block: var(--sp-8);
  border-top: 1px solid var(--border-color);
}

.cert-item {
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  position: relative;
}

.cert-item:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: calc(var(--sp-6) * -1);
  color: var(--border-color);
}

@media (max-width: 768px) {
  .cert-bar {
    gap: var(--sp-4);
    flex-direction: column;
    text-align: center;
  }

  .cert-item:after {
    display: none;
  }
}

/* Improved Cert Badge Style */
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-6);
  background: rgba(0, 209, 193, 0.05);
  border: 1px solid rgba(0, 209, 193, 0.2);
  border-radius: var(--radius-xl);
  color: var(--navy);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  cursor: default;
}

.cert-badge:hover {
  background: var(--turquoise);
  color: var(--navy);
  border-color: var(--turquoise);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 209, 191, 0.2);
}

.cert-badge i {
  color: var(--turquoise);
  transition: color var(--transition);
}

.cert-badge:hover i {
  color: var(--navy);
}


/* Hero Trust Bar for About Us */
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.hero-trust-item i,
.hero-trust-item span {
  color: var(--turquoise);
  font-size: 14px;
}

@media (max-width: 768px) {
  .hero-trust-bar {
    gap: var(--sp-4);
  }

  .hero-trust-item {
    font-size: 10px;
  }
}


/* ═══════════════════════════════════════
   17. BLOG CARDS (listing & home preview)
   ═══════════════════════════════════════ */

/* Section overrides */
.blog-listing {
  padding-top: var(--sp-20);
  padding-bottom: var(--sp-20);
}

.blog-section-header {
  margin-bottom: var(--sp-12);
}

.blog-section-footer {
  margin-top: var(--sp-10);
}

/* Card */
.blog-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Thumbnail link wrapper */
.blog-card__thumb {
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--white);
  flex-shrink: 0;
}

.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.blog-card__thumb:hover img {
  transform: scale(1.05);
}

/* Placeholder when no image */
.blog-card__thumb--empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-light);
  color: var(--gray-mid);
  font-size: var(--text-sm);
}

/* Body */
.blog-card__body {
  padding: var(--sp-6);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Date */
.blog-card__date {
  font-size: var(--text-xs);
  color: var(--turquoise);
  font-weight: var(--fw-medium);
  margin-bottom: var(--sp-2);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Title */
.blog-card__title {
  font-size: var(--text-xl);
  line-height: 1.3;
  margin-bottom: var(--sp-3);
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.blog-card__title a:hover {
  color: var(--blue);
}

/* Excerpt */
.blog-card__excerpt {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  flex-grow: 1;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Read more button — pushed to bottom */
.blog-card__btn {
  align-self: flex-start;
  margin-top: var(--sp-5);
}

/* ═══════════════════════════════════════
   18. LEGAL PAGES (Rich Text Content)
   ═══════════════════════════════════════ */
.legal-page {
  padding-top: var(--sp-20);
  padding-bottom: var(--sp-24);
}

.legal-content {
  background: var(--white);
  padding: var(--sp-12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.rich-text {
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.8;
}

.rich-text h1,
.rich-text h2,
.rich-text h3 {
  color: var(--navy);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  font-weight: var(--fw-medium);
}

.rich-text h2 {
  font-size: var(--text-2xl);
}

.rich-text h3 {
  font-size: var(--text-xl);
}

.rich-text p {
  margin-bottom: var(--sp-6);
}

.rich-text ul,
.rich-text ol {
  margin-bottom: var(--sp-6);
  padding-left: var(--sp-6);
  list-style: initial;
}

.rich-text li {
  margin-bottom: var(--sp-2);
}

.rich-text strong {
  color: var(--navy);
  font-weight: var(--fw-medium);
}

@media (max-width: 768px) {
  .legal-content {
    padding: var(--sp-6);
  }
}

/* ═══════════════════════════════════════
   19. MODALS (Legal Modal)
   ═══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 37, 64, 0.85);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: var(--sp-4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--white);
  width: 100%;
  max-width: 800px;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.is-active .modal-container {
  transform: translateY(0);
}

.modal-header {
  padding: var(--sp-6) var(--sp-8);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: var(--text-xl);
  font-weight: var(--fw-medium);
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: var(--gray-mid);
  cursor: pointer;
  padding: 0;
  transition: color var(--transition);
}

.modal-close:hover {
  color: var(--navy);
}

.modal-body {
  padding: var(--sp-8);
  overflow-y: auto;
  flex-grow: 1;
}

.modal-loading {
  text-align: center;
  padding: var(--sp-20);
  color: var(--gray-mid);
}

@media (max-width: 768px) {
  .modal-container {
    max-height: 95vh;
  }

  .modal-body {
    padding: var(--sp-6);
  }
}

/* ═══════════════════════════════════════
   19. FORM FEEDBACK (AJAX MESSAGES)
   ═══════════════════════════════════════ */
.form-feedback {
  display: none;
  border-radius: var(--radius-sm);
}

.form-feedback--error {
  background-color: rgba(229, 62, 62, 0.1);
  border: 1px solid #e53e3e;
  color: #c53030;
}

.form-feedback--success {
  background-color: rgba(56, 161, 105, 0.1);
  border: 1px solid #38a169;
  color: #2f855a;
}


/* ═══════════════════════════════════════
   20. CONTENT FORMATTED (Servis & Generic)
   ═══════════════════════════════════════ */
.content-formatted {
  line-height: 1.8;
  color: var(--text-secondary);
}

.content-formatted h1,
.content-formatted h2,
.content-formatted h3,
.content-formatted h4 {
  color: var(--navy);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-4);
}

.content-formatted p {
  margin-bottom: var(--sp-4);
}

.content-formatted ul,
.content-formatted ol {
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-4);
  list-style: initial;
}

.content-formatted li {
  margin-bottom: var(--sp-2);
}

.content-formatted img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

/* Tablo taşma önleme */
.content-formatted table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
}

.content-formatted table th,
.content-formatted table td {
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--border-color);
  text-align: left;
  font-size: var(--text-sm);
}

.content-formatted table th {
  background: var(--gray-light);
  font-weight: var(--fw-medium);
  color: var(--navy);
}

/* ═══════════════════════════════════════
   20. QUOTE PAGE (PREMIUM MAKEOVER)
   ═══════════════════════════════════════ */

.quote-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.quote-card {
  background: var(--white);
  padding: var(--sp-10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.form-section {
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: var(--sp-4);
  padding-bottom: 0;
}

.form-section-title {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--turquoise);
  margin-bottom: var(--sp-6);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Modern Inputs */
.quote-card .form-control {
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
  background-color: #fcfcfc;
}

.quote-card .form-control:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 4px rgba(0, 209, 193, 0.1);
  background-color: var(--white);
  outline: none;
}

.input-with-icon {
  position: relative;
}

.input-with-icon svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-mid);
  pointer-events: none;
}

.input-with-icon .form-control {
  padding-left: 2.75rem;
}

/* Sidebar Styles */
.quote-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.sidebar-box {
  background: var(--white);
  padding: var(--sp-8);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.sidebar-box-title {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--navy);
  margin-bottom: var(--sp-6);
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.trust-list li {
  display: flex;
  gap: var(--sp-4);
}

.trust-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(0, 209, 193, 0.1);
  color: var(--turquoise);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-list strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--navy);
}

.trust-list p {
  font-size: var(--text-xs);
  margin: 0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.process-step {
  display: flex;
  gap: var(--sp-4);
}

.step-num {
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  color: rgba(10, 37, 64, 0.08);
  line-height: 1;
}

.step-text strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--navy);
}

.step-text p {
  font-size: var(--text-xs);
  margin: 0;
}

.industry-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.badge-item {
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 10px;
  text-align: center;
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: var(--gray-mid);
  border-radius: var(--radius-sm);
  letter-spacing: 0.1em;
}

/* Submit Section */
.form-submit-wrap {
  margin-top: var(--sp-8);
}

.btn-xl {
  padding: 1.15rem 2.5rem;
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
}

.secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--sp-4);
  font-size: 11px;
  color: var(--gray-mid);
  font-weight: var(--fw-medium);
}

.secure-badge svg {
  color: #22c55e;
}

/* Phone Input Helper */
.phone-input-wrap {
  display: flex;
  gap: 8px;
}

.country-select {
  width: 130px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .quote-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
}

@media (max-width: 768px) {
  .quote-card {
    padding: var(--sp-6);
  }

  .form-section-title {
    font-size: 11px;
  }

  .quote-sidebar {
    order: 2;
  }

  .quote-main {
    order: 1;
  }
}

@media (max-width: 768px) {
  .content-formatted {
    overflow-x: hidden;
    word-wrap: break-word;
  }

  .content-formatted table {
    font-size: var(--text-xs);
  }

  /* Resimler ve SVG'ler taşmasın */
  .content-formatted img,
  .content-formatted svg,
  .content-formatted iframe {
    max-width: 100% !important;
    height: auto !important;
  }

  /* ── About Us: Trust Bar (cert-badge'ler) ──
     4 rozet → 2 sütun grid, yan yana kayar */
  .content-formatted .cert-bar {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
    padding: 1rem !important;
  }

  .content-formatted .cert-badge {
    font-size: 0.8rem !important;
    text-align: center;
    padding: 0.5rem 0.25rem;
    background: rgba(0, 209, 193, 0.06);
    border-radius: 8px;
  }

  /* ── About Us: Ana grid (metin + resim) ──
     2 sütun → alt alta (metin önce, resim sonra) */
  .content-formatted .grid-2 {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  /* ── About Us: Stats kutular (30+ / 100%) ──
     2 kutu → yan yana kalır, scroll yok */
  .content-formatted .grid-2>div:first-child>.flex,
  .content-formatted .flex.gap-4 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }

  .content-formatted .grid-2>div:first-child>.flex .service-card,
  .content-formatted .flex.gap-4 .service-card {
    padding: 1.25rem 0.75rem !important;
    min-width: 0 !important;
  }

  .content-formatted .grid-2>div:first-child>.flex .service-card h3,
  .content-formatted .flex.gap-4 .service-card h3 {
    font-size: 1.75rem !important;
  }

  /* ── About Us: Resim kutusu ──
     500×500 sabit boyutu mobilde taşmasın */
  .content-formatted .grid-2 img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }

  /* ── About Us: "Why Clients Choose Us" grid ──
     3 sütun → 2 sütun (6 kart = 3 satır × 2) */
  .content-formatted .grid-3 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }

  .content-formatted .grid-3 .service-card {
    padding: 1.25rem 1rem !important;
  }

  .content-formatted .grid-3 .service-card h4 {
    font-size: 0.875rem !important;
  }

  .content-formatted .grid-3 .service-card p {
    font-size: 0.8125rem !important;
  }

  /* ── About Us: Gri arka plan bölümü ──
     Negatif margin mobilde taşmasın */
  .content-formatted .section--gray {
    margin: 0 !important;
    padding: 2.5rem 1rem !important;
    border-radius: 16px !important;
  }

  /* ── Genel: CMS'den gelen sabit genişlikli resimler taşmasın ── */
  .content-formatted [style*="width:"] img {
    max-width: 100% !important;
    height: auto !important;
  }
}