/* ============================================
   BAĞLUM NAKLİYAT - Ana Stil
   Turuncu & Beyaz Tema | Emixhas Yazılım
   ============================================ */

:root {
  --primary: #E8561B;
  --primary-dark: #C24311;
  --primary-light: #FF7A3D;
  --primary-soft: #FFF0E5;
  --accent: #1A1A2E;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --bg-cream: #fdf8f3;
  --border: #e8e8e8;
  --border-light: #f0f0f0;
  --wa-green: #25D366;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow: 0 8px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.08);
  --shadow-primary: 0 10px 30px rgba(232,86,27,0.25);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }

p { margin-bottom: 14px; color: var(--text-muted); }

/* ========= ANNOUNCEMENT BAR ========= */
.announcement {
  background: var(--accent);
  color: white;
  padding: 10px 0;
  font-size: 0.85rem;
  text-align: center;
}
.announcement span { margin: 0 12px; }
.announcement strong { 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-light);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Logo - BAĞLUM: hız temalı logo */
.logo { display: flex; align-items: center; gap: 14px; }
.logo-mark {
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(232,86,27,0.35);
  overflow: hidden;
}
.logo-mark svg { width: 32px; height: 32px; position: relative; z-index: 1; }
/* Hover - hızla ileri fırla efekti */
.logo:hover .logo-mark {
  box-shadow: 0 8px 20px rgba(232,86,27,0.5);
  background: var(--primary-dark);
}
.logo:hover .logo-mark svg {
  animation: speedDash 0.6s ease;
}
@keyframes speedDash {
  0%   { transform: translateX(0); }
  40%  { transform: translateX(6px); opacity: 0.7; }
  41%  { transform: translateX(-8px); opacity: 0; }
  42%  { transform: translateX(-8px); opacity: 0; }
  80%  { transform: translateX(-2px); opacity: 1; }
  100% { transform: translateX(0); }
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong {
  font-family: 'Playfair Display', serif;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.logo-text small {
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ========= NAVIGATION ========= */
.main-nav ul { list-style: none; display: flex; gap: 4px; align-items: center; }
.main-nav a {
  color: var(--text);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.94rem;
  display: block;
  transition: var(--transition);
}
.main-nav a:hover {
  background: var(--primary-soft);
  color: var(--primary);
}
.main-nav a.active {
  background: var(--primary);
  color: white;
}

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

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-family: inherit;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(232,86,27,0.4);
}
.btn-whatsapp {
  background: var(--wa-green);
  color: white;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { background: #1ea952; color: white; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  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; }

/* ========= HERO ========= */
.hero {
  padding: 70px 0 90px;
  background:
    radial-gradient(ellipse at top right, rgba(232,86,27,0.08) 0%, transparent 50%),
    var(--bg-cream);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid var(--primary-soft);
  box-shadow: var(--shadow-sm);
}
.hero-pill span.dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.hero h1 { margin-bottom: 22px; color: var(--text); }
.hero h1 .accent {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 2px;
  height: 8px;
  background: var(--primary);
  opacity: 0.2;
  z-index: -1;
  border-radius: 3px;
}

.hero p.lead {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.hero-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.hero-feature-ic {
  width: 32px; height: 32px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-feature strong {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}
.hero-feature span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Quote Card */
.quote-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  position: relative;
}
.quote-card::before {
  content: '';
  position: absolute;
  top: -8px; right: 30px;
  width: 60px; height: 16px;
  background: var(--primary);
  border-radius: 0 0 20px 20px;
}
.quote-card h3 {
  color: var(--text);
  margin-bottom: 8px;
  font-size: 1.5rem;
}
.quote-card > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 22px;
}
.quote-card .form-group { margin-bottom: 14px; }
.quote-card label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: var(--text);
}
.quote-card input,
.quote-card select,
.quote-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.94rem;
  background: var(--bg-soft);
  font-family: inherit;
  transition: var(--transition);
}
.quote-card input:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(232,86,27,0.1);
}
.quote-card button { width: 100%; margin-top: 8px; }

/* ========= SECTIONS ========= */
section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section-title h2 { margin-bottom: 12px; }
.section-title p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.bg-cream { background: var(--bg-cream); }
.bg-soft { background: var(--bg-soft); }
.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); }

/* ========= SERVICES ========= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  padding: 32px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-soft);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.08);
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.service-card a.more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.service-card a.more:hover { gap: 10px; }

/* ========= NUMBERS ========= */
.numbers-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 50px 0;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin: -40px auto 0;
  max-width: 1100px;
  position: relative;
  z-index: 5;
}
.number-item { text-align: center; padding: 0 20px; border-right: 1px solid var(--border-light); }
.number-item:last-child { border: none; }
.number-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.number-item .label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ========= PROCESS ========= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.process-card {
  background: white;
  padding: 30px 24px;
  border-radius: var(--radius);
  position: relative;
  border: 1px solid var(--border-light);
}
.process-num {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 40px; height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.process-card h3 { margin-top: 16px; font-size: 1.15rem; }
.process-card p { font-size: 0.92rem; }

/* ========= PARTNERS / BACKLINKS ========= */
.partners {
  background: var(--bg-cream);
  padding: 70px 0;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 34px;
}
.partner-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.partner-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.partner-card h4 {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
.partner-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.partner-card a {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
}

/* ========= TESTIMONIALS ========= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px; left: 20px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  padding-top: 14px;
}
.testimonial-stars { color: #FFC107; font-size: 1rem; margin-bottom: 12px; margin-top: 20px; letter-spacing: 2px; }
.testimonial p { color: var(--text); font-style: italic; margin-bottom: 16px; line-height: 1.6; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border-light); }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.testimonial-info strong { display: block; font-weight: 600; color: var(--text); }
.testimonial-info small { color: var(--text-muted); font-size: 0.82rem; }

/* ========= FAQ ========= */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text);
}
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-toggle {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 20px; }
.faq-answer p { color: var(--text-muted); line-height: 1.7; }

/* ========= CTA BANNER ========= */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 60px auto;
  max-width: 1200px;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  border-radius: 50%;
}
.cta-banner h2 { color: white; }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 26px; }
.cta-banner .btn-primary {
  background: white;
  color: var(--primary);
}
.cta-banner .btn-primary:hover { background: var(--accent); color: white; }

/* ========= BLOG ========= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary-soft);
}
.blog-thumb {
  height: 200px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--primary);
  position: relative;
}
.blog-thumb .category-pill {
  position: absolute;
  bottom: 14px; left: 14px;
  background: white;
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.blog-body { padding: 24px; }
.blog-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { color: var(--text-muted); font-size: 0.93rem; }
.blog-card .read-more {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ========= POST ========= */
.post-hero {
  background: var(--bg-cream);
  padding: 60px 0 50px;
  border-bottom: 1px solid var(--border-light);
}
.post-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 14px;
}
.post-category {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.post-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px;
}
.post-content h2 { margin-top: 36px; margin-bottom: 16px; }
.post-content h3 { margin-top: 28px; color: var(--text); }
.post-content p { color: var(--text); line-height: 1.8; font-size: 1.05rem; margin-bottom: 16px; }
.post-content ul, .post-content ol { margin: 14px 0 22px 22px; color: var(--text); }
.post-content li { margin-bottom: 8px; line-height: 1.8; }
.post-content blockquote {
  background: var(--bg-cream);
  border-left: 4px solid var(--primary);
  padding: 18px 24px;
  margin: 22px 0;
  font-style: italic;
  color: var(--text);
  border-radius: 0 10px 10px 0;
}
.post-content strong { color: var(--primary-dark); font-weight: 700; }

/* ========= GALLERY ========= */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-btn {
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  font-family: inherit;
}
.filter-btn:hover, .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-cream);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border-light);
  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: 3rem; margin-bottom: 10px; }
.gallery-item.placeholder p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }

/* ========= CONTACT ========= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info h2 { margin-bottom: 8px; }
.contact-box {
  background: white;
  padding: 22px;
  border-radius: var(--radius);
  margin-bottom: 14px;
  border: 1px solid var(--border-light);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-box:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.contact-box-ic {
  width: 44px; height: 44px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-box strong {
  color: var(--text-muted);
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-box a, .contact-box span.val {
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
}
.contact-box a:hover { color: var(--primary); }

/* ========= PAGE HEADER ========= */
.page-header {
  background: var(--bg-cream);
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.page-header h1 {
  margin-bottom: 10px;
  color: var(--text);
}
.breadcrumb {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.breadcrumb a { color: var(--primary); }

/* ========= CONTENT ========= */
.content-section { padding: 60px 0; }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.content-main h2 { margin-top: 30px; color: var(--text); }
.content-main p { color: var(--text); line-height: 1.8; font-size: 1.02rem; }

.sidebar-box {
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  margin-bottom: 20px;
}
.sidebar-box h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
.sidebar-box ul { list-style: none; }
.sidebar-box ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.sidebar-box ul li:last-child { border: none; }
.sidebar-box ul a { color: var(--text); font-weight: 500; font-size: 0.95rem; }
.sidebar-box ul a:hover { color: var(--primary); }

/* ========= 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: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-text strong { color: white; }
.footer-brand .logo-text small { color: rgba(255,255,255,0.6); }
.footer-brand p { color: rgba(255,255,255,0.6); margin-top: 16px; }
.footer h4 {
  color: white;
  margin-bottom: 18px;
  font-size: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer ul a:hover { color: var(--primary-light); }
.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom a { color: var(--primary-light); font-weight: 600; }
.emixhas-signature {
  padding: 16px 120px 16px 20px;
  text-align: center;
  background: #0f0f1e;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 1;
}
.emixhas-signature a {
  color: var(--primary-light);
  font-weight: 700;
  border-bottom: 1px dashed var(--primary-light);
  padding-bottom: 2px;
}

/* ========= FLOATING CONTACT ========= */
.floating-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 58px; height: 58px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.float-btn.whatsapp { background: var(--wa-green); animation: wa-pulse 2.5s infinite; }
.float-btn.phone { background: var(--primary); animation: phone-ring 3s infinite; }
.float-btn:hover { transform: scale(1.1) rotate(-5deg); border-radius: 22px; }
.float-btn .label {
  position: absolute;
  right: 70px;
  background: var(--accent);
  color: white;
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}
.float-btn .label::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--accent);
}
.float-btn:hover .label { opacity: 1; transform: translateX(0); }
.float-btn.whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: var(--wa-green);
  z-index: -1;
  animation: ring 2s infinite;
}
@keyframes ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 25px rgba(0,0,0,0.2), 0 0 0 0 rgba(37,211,102, 0.7); }
  50% { box-shadow: 0 10px 25px rgba(0,0,0,0.2), 0 0 0 15px rgba(37,211,102, 0); }
}
@keyframes phone-ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-12deg); }
  20%, 40% { transform: rotate(12deg); }
  50% { transform: rotate(0deg); }
}

.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 20px rgba(0,0,0,0.05);
}
.mobile-call-bar a {
  flex: 1;
  padding: 12px;
  text-align: center;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
}
.mobile-call-bar .wa { background: var(--wa-green); color: white; }
.mobile-call-bar .ph { background: var(--primary); color: white; }

/* ========= RESPONSIVE ========= */
@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    padding: 20px;
    border-top: 1px solid var(--border-light);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; align-items: stretch; }
  .dropdown { display: none; }
  .mobile-toggle { display: block; }
  .header-cta .btn-primary { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-features { grid-template-columns: 1fr; }
  .numbers-row { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 30px; }
  .number-item { border: none; border-bottom: 1px solid var(--border-light); padding: 16px; }
  .number-item:nth-last-child(-n+2) { border-bottom: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .floating-contact { bottom: 80px; }
  .mobile-call-bar { display: flex; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 70px; }
  section { padding: 50px 0; }
  .container { padding: 0 16px; }
  .numbers-row { margin-top: -20px; padding: 20px; }
  .number-item .num { font-size: 2.2rem; }
}
