/* ============================================
   BATIKENT TAŞIMA ŞİRKETLERİ
   Corporate Professional | Turuncu & Beyaz
   Emixhas Yazılım
   ============================================ */

:root {
  --primary: #E55A1F;
  --primary-dark: #C44A10;
  --primary-light: #FF7A3F;
  --primary-soft: #FFF1E8;
  --primary-pale: #FDF7F2;
  --accent: #1F2937;
  --accent-light: #374151;
  --text: #111827;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --bg: #ffffff;
  --bg-gray: #F9FAFB;
  --bg-soft: #F3F4F6;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --success: #10B981;
  --wa-green: #25D366;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.03);
  --shadow-sm: 0 2px 8px rgba(17,24,39,0.04);
  --shadow: 0 4px 20px rgba(17,24,39,0.06);
  --shadow-lg: 0 20px 50px rgba(17,24,39,0.10);
  --radius: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 960px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 16px; color: var(--text-muted); line-height: 1.75; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 1px solid rgba(229,90,31,0.15);
}
.badge .dot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 14px;
  display: inline-block;
}

/* ========= TOPBAR ========= */
.topbar {
  background: var(--accent);
  color: rgba(255,255,255,0.85);
  padding: 10px 0;
  font-size: 0.82rem;
  border-bottom: 3px solid var(--primary);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; gap: 16px; }
.topbar-right a {
  color: white;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar-right a:hover { color: var(--primary-light); }

/* ========= HEADER ========= */
.header {
  background: var(--bg);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.header.scrolled {
  padding: 12px 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

/* Logo - Truck icon + text */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 50px; height: 50px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(229,90,31,0.3);
}
.logo:hover .logo-mark { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(229,90,31,0.4); }
.logo-mark svg { width: 32px; height: 32px; fill: white; }
.logo-text { line-height: 1.1; }
.logo-text strong {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  display: block;
  letter-spacing: -0.5px;
}
.logo-text small {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
}

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
}
.main-nav a {
  color: var(--text);
  padding: 10px 14px;
  font-weight: 500;
  font-size: 0.94rem;
  border-radius: 8px;
  transition: all 0.2s;
  display: block;
}
.main-nav a:hover {
  background: var(--bg-gray);
  color: var(--primary);
}
.main-nav a.active {
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 600;
}

.header-cta { display: flex; gap: 10px; align-items: center; }
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--border);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 1.3rem;
  cursor: pointer;
}

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(229,90,31,0.25);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229,90,31,0.35);
}
.btn-whatsapp {
  background: var(--wa-green);
  color: white;
  box-shadow: 0 4px 12px rgba(37,211,102,0.25);
}
.btn-whatsapp:hover { background: #1ea952; color: white; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.35); }
.btn-outline {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }
.btn-ghost {
  background: var(--primary-soft);
  color: var(--primary);
}
.btn-ghost:hover { background: var(--primary); color: white; }
.btn-dark {
  background: var(--accent);
  color: white;
}
.btn-dark:hover { background: var(--accent-light); color: white; transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ========= HERO CORPORATE ========= */
.hero-corporate {
  background: linear-gradient(135deg, #FDF7F2 0%, white 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-corporate::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--primary-soft) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content h1 {
  margin-bottom: 24px;
}
.hero-content h1 .highlight {
  color: var(--primary);
  position: relative;
  white-space: nowrap;
}
.hero-content h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 8px;
  background: var(--primary-soft);
  z-index: -1;
  border-radius: 2px;
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Trust row */
.hero-trust {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-trust-ic {
  width: 38px; height: 38px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-trust-item strong { display: block; font-size: 0.92rem; color: var(--text); }
.hero-trust-item small { color: var(--text-muted); font-size: 0.8rem; }

/* Hero card panel */
.hero-panel {
  background: white;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  position: relative;
}
.hero-panel::before {
  content: '';
  position: absolute;
  top: -3px; left: 30px; right: 30px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 0 0 10px 10px;
}
.hero-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
}
.hero-panel h3 {
  font-size: 1.3rem;
  margin: 0;
}
.panel-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 600;
}
.panel-status::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.panel-form .form-group { margin-bottom: 14px; }
.panel-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.panel-form input,
.panel-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.2s;
  background: white;
}
.panel-form input:focus,
.panel-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(229,90,31,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ========= SECTIONS ========= */
section { padding: 80px 0; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); }

.bg-gray { background: var(--bg-gray); }
.bg-pale { background: var(--primary-pale); }
.bg-dark { background: var(--accent); color: white; }
.bg-dark h2, .bg-dark h3 { color: white; }
.bg-dark p { color: rgba(255,255,255,0.8); }
.bg-dark .eyebrow { color: var(--primary-light); }

/* ========= STATS BAR ========= */
.stats-bar {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -60px;
  position: relative;
  z-index: 3;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.stat-cell {
  padding: 30px 24px;
  text-align: center;
  border-right: 1px solid var(--border-light);
  transition: background 0.3s;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: var(--primary-pale); }
.stat-cell .num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-cell .lbl {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ========= SERVICES - CORPORATE BLOCKS ========= */
.services-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.tab-btn {
  background: white;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.tab-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-block {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-block:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-icon-box {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary-soft) 0%, rgba(229,90,31,0.15) 100%);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.service-block:hover .service-icon-box {
  background: var(--primary);
  color: white;
  transform: rotate(-5deg) scale(1.05);
}
.service-block h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.service-block p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin-bottom: 20px;
  flex-grow: 1;
}
.service-features {
  list-style: none;
  margin-bottom: 20px;
}
.service-features li {
  padding: 5px 0;
  color: var(--text);
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.service-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}
.service-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  transition: gap 0.2s;
}
.service-link:hover { gap: 12px; }

/* ========= WHY CHOOSE US - Feature Grid ========= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: white;
  padding: 32px 28px;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.feature-num {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary);
  width: 44px; height: 44px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.93rem; margin: 0; }

/* ========= PROCESS - Step Cards ========= */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-step {
  background: white;
  padding: 30px 24px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s;
}
.process-step:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.process-step::after {
  content: '→';
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 2;
}
.process-step:last-child::after { display: none; }
.process-step-num {
  width: 50px; height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 18px;
  box-shadow: 0 4px 12px rgba(229,90,31,0.35);
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; margin: 0; }

/* ========= REGIONS - Clean grid ========= */
.regions-block {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px;
}
.regions-block h3 {
  text-align: center;
  margin-bottom: 8px;
}
.regions-block > p { text-align: center; margin-bottom: 30px; }
.regions-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
}
.region-chip {
  background: var(--bg-gray);
  padding: 14px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.region-chip:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.region-chip-ic {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.region-chip-text strong {
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
}
.region-chip-text small { color: var(--text-muted); font-size: 0.75rem; }

/* ========= TESTIMONIALS ========= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.testimonial-stars {
  color: #FBBF24;
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: 2px;
}
.testimonial-text {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}
.testimonial-avatar {
  width: 46px; height: 46px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}
.testimonial-author small {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ========= PARTNERS ========= */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.partner-block {
  background: white;
  padding: 28px 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}
.partner-block:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.partner-block-ic {
  width: 52px; height: 52px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 12px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.partner-block h4 { font-size: 1rem; margin-bottom: 8px; }
.partner-block p { font-size: 0.82rem; margin-bottom: 12px; }
.partner-block a {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========= FAQ ========= */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  padding: 20px 26px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--primary-pale); }
.faq-toggle {
  width: 28px; height: 28px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--primary); color: white; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 26px 22px;
}
.faq-answer p { margin: 0; color: var(--text-muted); line-height: 1.75; }

/* ========= CTA Banner ========= */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 60px 50px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 { color: white; margin-bottom: 12px; font-size: 2rem; }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 1.05rem; margin: 0; }
.cta-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cta-banner .btn-primary { background: white; color: var(--primary); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.cta-banner .btn-primary:hover { background: var(--primary-soft); transform: translateY(-2px); }

/* ========= PAGE HEADER ========= */
.page-header {
  background: linear-gradient(135deg, var(--primary-pale) 0%, white 100%);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.page-header h1 { margin-bottom: 14px; }
.page-header .lead { color: var(--text-muted); font-size: 1.1rem; max-width: 620px; margin: 0 auto 20px; }
.breadcrumb {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 20px;
}
.breadcrumb a { color: var(--primary); font-weight: 600; }
.breadcrumb .sep { margin: 0 8px; color: var(--text-light); }

/* ========= CONTENT ========= */
.content-section { padding: 70px 0; }
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}
.content-main h2 { margin-top: 40px; }
.content-main h2:first-child { margin-top: 0; }
.content-main p { color: var(--text); line-height: 1.8; }
.content-main ul, .content-main ol { margin: 14px 0 22px 22px; }
.content-main li { margin-bottom: 8px; line-height: 1.7; color: var(--text); }
.content-main blockquote {
  background: var(--primary-pale);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 10px 10px 0;
  font-size: 1.05rem;
  color: var(--text);
  font-style: italic;
}
.content-main strong { color: var(--text); font-weight: 700; }

.sidebar-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 20px;
  position: sticky;
  top: 100px;
}
.sidebar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--primary-soft);
  color: var(--text);
}
.sidebar-card ul { list-style: none; }
.sidebar-card ul li { padding: 10px 0; border-bottom: 1px solid var(--border-light); }
.sidebar-card ul li:last-child { border: none; }
.sidebar-card ul a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-card ul a::before {
  content: '→';
  color: var(--primary);
  transition: transform 0.2s;
}
.sidebar-card ul a:hover { color: var(--primary); }
.sidebar-card ul a:hover::before { transform: translateX(4px); }

/* ========= CONTACT ========= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 14px; }
.contact-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border: none; }
.contact-row-ic {
  width: 48px; height: 48px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-row .info strong {
  color: var(--text);
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-row .info a,
.contact-row .info span.val {
  color: var(--text);
  font-weight: 600;
  font-size: 1.1rem;
}
.contact-row .info a:hover { color: var(--primary); }

/* Contact Form */
.quote-form {
  background: white;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.quote-form h3 { font-size: 1.4rem; margin-bottom: 8px; }
.quote-form > p { margin-bottom: 24px; font-size: 0.95rem; }
.quote-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.82rem;
  color: var(--text);
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  background: white;
  font-family: inherit;
  transition: all 0.2s;
}
.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(229,90,31,0.1);
}
.quote-form .form-group { margin-bottom: 16px; }
.quote-form button { width: 100%; margin-top: 10px; }

/* ========= GALLERY ========= */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  background: white;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  padding: 10px 22px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  font-family: inherit;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  aspect-ratio: 4/3;
  background: var(--bg-gray);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid var(--border);
  position: relative;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--primary);
}
.gallery-item.placeholder .ph-ic { font-size: 2.5rem; margin-bottom: 10px; }
.gallery-item.placeholder p { color: var(--text-muted); font-size: 0.85rem; margin: 0; font-weight: 500; }

/* ========= BLOG ========= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s;
}
.blog-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-tag {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: 0.92rem; margin-bottom: 16px; }
.blog-meta {
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.blog-meta .read-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Post */
.post-hero {
  background: linear-gradient(135deg, var(--primary-pale) 0%, white 100%);
  padding: 60px 0 50px;
  border-bottom: 1px solid var(--border-light);
}
.post-hero h1 { margin-bottom: 18px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.post-meta {
  display: flex;
  gap: 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.post-content { max-width: 760px; margin: 0 auto; padding: 60px 24px; }
.post-content h2 { margin-top: 40px; margin-bottom: 16px; }
.post-content h3 { margin-top: 28px; font-size: 1.25rem; }
.post-content p { color: var(--text); line-height: 1.85; font-size: 1.05rem; margin-bottom: 18px; }
.post-content ul, .post-content ol { margin: 16px 0 24px 22px; }
.post-content li { margin-bottom: 8px; line-height: 1.75; }

/* ========= FOOTER ========= */
.footer {
  background: var(--accent);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-brand .logo-text strong { color: white; }
.footer-brand .logo-text small { color: var(--primary-light); }
.footer-brand p { color: rgba(255,255,255,0.6); margin-top: 18px; line-height: 1.7; font-size: 0.92rem; }
.footer-contact {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-contact p { color: var(--primary-light); font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.footer h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { color: rgba(255,255,255,0.6); font-size: 0.92rem; transition: all 0.2s; }
.footer ul a:hover { color: var(--primary-light); padding-left: 4px; }
.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom a { color: var(--primary-light); font-weight: 600; }
.emixhas-signature {
  padding: 16px 20px;
  text-align: center;
  background: #0F172A;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
}
.emixhas-signature a {
  color: var(--primary-light);
  font-weight: 700;
}

/* ========= MOBILE BOTTOM BAR ========= */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  border-top: 1px solid var(--border);
  padding: 10px;
  z-index: 998;
  gap: 8px;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.05);
}
.mobile-call-bar a {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 10px;
}
.mobile-call-bar .wa { background: var(--wa-green); color: white; }
.mobile-call-bar .ph { background: var(--primary); color: white; }

/* ========= RESPONSIVE ========= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .services-grid, .testimonials-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2)::after { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { grid-template-columns: 1fr; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    padding: 16px;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 2px; align-items: stretch; }
  .mobile-toggle { display: block; }
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }
  .header-cta {
    justify-content: flex-end;
  }
  .header-cta .btn-primary { display: none; }
  .topbar-left { display: none; }
  .mobile-call-bar { display: flex; }
  section { padding: 60px 0; }
  .hero-corporate { padding: 40px 0 60px; }
}
@media (max-width: 600px) {
  .services-grid, .testimonials-grid, .blog-grid,
  .features-grid, .process-steps, .partners-grid { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--border-light); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .hero-panel { padding: 28px 22px; }
}
