/* ============================================================
   EFE TEKNİK SERVİS – Main Stylesheet
   teknikeskisehir.com
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --clr-bg: #0a0d14;
  --clr-bg2: #0f1320;
  --clr-surface: #131826;
  --clr-surface2: #1a2035;
  --clr-border: rgba(255,255,255,0.07);
  --clr-border2: rgba(255,255,255,0.12);

  --clr-orange: #FF6B00;
  --clr-orange2: #FF8C00;
  --clr-orange3: #FFB300;
  --clr-blue: #1E90FF;
  --clr-blue2: #0066CC;

  --clr-text: #e8eaf0;
  --clr-text-muted: #8b92a9;
  --clr-text-faint: #5a6178;

  --grad-orange: linear-gradient(135deg, #FF6B00 0%, #FFB300 100%);
  --grad-blue: linear-gradient(135deg, #1E90FF 0%, #0051cc 100%);
  --grad-dark: linear-gradient(135deg, #0f1320 0%, #1a2035 100%);

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow-orange: 0 0 40px rgba(255,107,0,0.25);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);

  --header-h: 64px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,107,0,0.12);
  color: var(--clr-orange2);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--clr-text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--grad-orange);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(255,107,0,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,107,0,0.5);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: #1db954;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 1.5px solid var(--clr-orange);
  color: var(--clr-orange);
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--clr-orange);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-top {
  background: rgba(10,13,20,0.95);
  border-bottom: 1px solid var(--clr-border);
  padding: 6px 0;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

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

.header-contact-quick {
  display: flex;
  gap: 20px;
}

.quick-call {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--clr-text-muted);
  transition: color 0.2s;
}
.quick-call:hover { color: var(--clr-orange); }

.header-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4ade80;
  font-weight: 600;
  font-size: 0.78rem;
}

.badge-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.header-main {
  background: rgba(15,19,32,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  padding: 0;
}

.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
}

.site-logo-img:hover {
  opacity: 0.85;
}

.footer-logo-img {
  height: 52px;
  margin-bottom: 12px;
}

.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(255,107,0,0.15), rgba(255,179,0,0.05));
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.logo-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--clr-text);
  letter-spacing: 0.04em;
  line-height: 1;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--clr-orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a {
  display: block;
  padding: 8px 14px;
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--clr-text);
  background: rgba(255,255,255,0.06);
}

.main-nav .has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border2);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  z-index: 100;
}

.dropdown li a {
  padding: 10px 14px !important;
  font-size: 0.88rem !important;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown li a:hover {
  background: rgba(255,107,0,0.1) !important;
  color: var(--clr-orange) !important;
}

.btn-call-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--grad-orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(255,107,0,0.3);
}
.btn-call-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255,107,0,0.5);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  padding: 6px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 900;
}
.mobile-overlay.active { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,13,20,0.92) 0%, rgba(10,13,20,0.65) 60%, rgba(10,13,20,0.35) 100%),
    linear-gradient(180deg, rgba(10,13,20,0.3) 0%, rgba(10,13,20,0.85) 100%),
    radial-gradient(ellipse 50% 60% at 75% 50%, rgba(255,107,0,0.1) 0%, transparent 60%);
}

/* Grid pattern overlay */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--clr-orange);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp var(--dur, 6s) var(--delay, 0s) infinite ease-in;
}

@keyframes floatUp {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.8; transform: translateY(-20px) scale(1); }
  90% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-400px) scale(0.5); }
}

.hero-content {
  position: relative;
  max-width: 700px;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-orange2);
  margin-bottom: 28px;
}

.pulse-dot {
  width: 8px; height: 8px;
  background: var(--clr-orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
}
.hero-desc strong { color: var(--clr-text); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 40px;
  width: fit-content;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-border2);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: bounceY 2s infinite;
}

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--clr-text);
  border-bottom: 2px solid var(--clr-text);
  transform: rotate(45deg);
}

@keyframes bounceY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding: 100px 0;
  background: var(--clr-bg2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
  display: block;
  color: inherit;
}

.service-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.8) saturate(1.2);
}

.service-card:hover .service-card-img img {
  transform: scale(1.06);
  filter: brightness(0.9) saturate(1.3);
}

.service-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(19,24,38,0.9) 100%);
  pointer-events: none;
}

.service-card-body {
  padding: 28px 32px 32px;
}

.service-card:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-glow-orange);
}

.service-card-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,107,0,0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: var(--transition);
}

.service-card:hover .service-card-glow {
  opacity: 1.5;
}

.service-card.featured {
  border-color: rgba(255,107,0,0.35);
  background: linear-gradient(135deg, rgba(255,107,0,0.06) 0%, var(--clr-surface) 60%);
}

.featured-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--grad-orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.service-icon {
  width: 68px; height: 68px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--clr-orange2);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(255,107,0,0.18);
  transform: scale(1.05);
}

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--clr-text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--clr-text-muted);
}

.service-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--clr-orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--clr-orange);
  font-size: 0.88rem;
  font-weight: 600;
  transition: gap 0.2s;
}

.service-card:hover .service-link { gap: 10px; }

/* ============================================================
   WHY US
   ============================================================ */
.why-us-section {
  padding: 100px 0;
  background: var(--clr-bg);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-us-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.why-us-content > p {
  color: var(--clr-text-muted);
  margin-bottom: 36px;
  font-size: 1.02rem;
}

.why-features {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-icon {
  font-size: 1.5rem;
  width: 48px; height: 48px;
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-feature h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-feature p {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Visual stack */
.why-us-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card-stack {
  position: relative;
  width: 320px;
  height: 360px;
}

.v-card {
  position: absolute;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border2);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
  animation: floatCard 4s ease-in-out infinite;
}

.v-card-1 { top: 0; left: 0; right: 40px; animation-delay: 0s; }
.v-card-2 { top: 110px; left: 20px; right: 20px; animation-delay: 0.8s; }
.v-card-3 { top: 220px; left: 40px; right: 0; animation-delay: 1.6s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.vcard-icon { font-size: 1.6rem; }

.v-card span {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  display: block;
}

.v-card strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-orange2);
}

.rating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--clr-surface2);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.stars { color: #FFB300; font-size: 0.9rem; display: block; margin-bottom: 4px; }
.rating-badge span:last-child { font-size: 0.75rem; color: var(--clr-text-muted); }

/* ============================================================
   PROCESS
   ============================================================ */
.process-section {
  padding: 80px 0;
  background: var(--clr-bg2);
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 32px 28px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  flex: 1;
  min-width: 180px;
  max-width: 210px;
  transition: var(--transition);
}

.process-step:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-4px);
}

.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--clr-orange);
  letter-spacing: 0.1em;
  background: rgba(255,107,0,0.1);
  padding: 4px 10px;
  border-radius: 100px;
}

.step-icon { font-size: 2rem; }

.process-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.process-arrow {
  color: var(--clr-orange);
  padding: 0 8px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 100px 0;
  background: var(--clr-bg);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: rgba(255,107,0,0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--clr-text);
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--clr-orange); }
.faq-item.open .faq-question { color: var(--clr-orange); }

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--clr-text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.blog-preview-section {
  padding: 100px 0;
  background: var(--clr-bg2);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.blog-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  display: block;
  color: inherit;
}

.blog-card:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.blog-card-cat {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,107,0,0.1);
  color: var(--clr-orange2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.blog-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.blog-card:hover h3 { color: var(--clr-orange); }

.blog-card p {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.blog-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-orange);
}

.blog-preview-cta { text-align: center; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 100px 0;
  background: var(--clr-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

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

.contact-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.2s;
}

.contact-card:hover { border-color: rgba(255,107,0,0.3); }

.contact-avatar {
  width: 52px; height: 52px;
  background: var(--grad-orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.contact-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }

.contact-role {
  font-size: 0.78rem;
  color: var(--clr-orange);
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}

.contact-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-contact-call, .btn-contact-wp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-contact-call {
  background: rgba(255,107,0,0.1);
  color: var(--clr-orange2);
  border: 1px solid rgba(255,107,0,0.2);
}
.btn-contact-call:hover {
  background: var(--grad-orange);
  color: #fff;
  border-color: transparent;
}

.btn-contact-wp {
  background: rgba(37,211,102,0.1);
  color: #25D366;
  border: 1px solid rgba(37,211,102,0.2);
}
.btn-contact-wp:hover {
  background: #25D366;
  color: #fff;
  border-color: transparent;
}

.contact-address {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.address-icon { font-size: 1.5rem; }

.contact-address h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }

.contact-address p {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.map-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-orange);
}
.map-link:hover { text-decoration: underline; }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  min-height: 380px;
  background: var(--clr-surface);
}

.contact-map iframe { height: 100%; min-height: 380px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #07090f;
}

.footer-top {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--clr-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
  font-size: 1.3rem;
}

.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: rgba(255,107,0,0.4);
  background: rgba(255,107,0,0.1);
}

.footer-links h5,
.footer-contact-info h5 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--clr-orange); }

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

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.footer-contact-info li svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact-info a { color: var(--clr-text-muted); }
.footer-contact-info a:hover { color: var(--clr-orange); }

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--clr-text-faint);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--clr-text-faint);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--clr-orange); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

.float-wp {
  background: #25D366;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}
.float-wp:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 32px rgba(37,211,102,0.5);
}

.float-call {
  background: var(--grad-orange);
  box-shadow: 0 6px 24px rgba(255,107,0,0.4);
}
.float-call:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 32px rgba(255,107,0,0.5);
}

.float-label {
  white-space: nowrap;
}

/* ============================================================
   INNER PAGES HERO
   ============================================================ */
.page-hero {
  padding: 160px 0 80px;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,107,0,0.1) 0%, transparent 70%),
    var(--clr-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
}

.page-hero p {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 32px;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 24px;
  position: relative;
}

.breadcrumb a { color: var(--clr-orange); }
.breadcrumb span { opacity: 0.5; }

/* ============================================================
   CONTENT SECTIONS (inner pages)
   ============================================================ */
.content-section {
  padding: 80px 0;
}

.content-section.alt-bg { background: var(--clr-bg2); }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25;
}

.content-text p {
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.check-list li::before {
  content: '✓';
  color: var(--clr-orange);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.content-visual {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mini-info-card {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.mini-info-card .icon { font-size: 1.5rem; }
.mini-info-card h5 { font-size: 0.92rem; font-weight: 700; margin-bottom: 2px; }
.mini-info-card p { font-size: 0.8rem; color: var(--clr-text-muted); }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-header {
  padding: 160px 0 60px;
  text-align: center;
  background: var(--clr-bg);
}

.blog-page-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 40px;
  padding: 60px 0 100px;
  background: var(--clr-bg);
}

.blog-posts-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.blog-post-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: block;
  color: inherit;
  transition: var(--transition);
}

.blog-post-card:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateX(4px);
}

.blog-post-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-post-card:hover h2 { color: var(--clr-orange); }

.blog-post-card p {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.blog-meta span {
  font-size: 0.78rem;
  color: var(--clr-text-faint);
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.sidebar-widget h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--clr-border);
}

.sidebar-contact-box {
  text-align: center;
  background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,179,0,0.05));
  border-color: rgba(255,107,0,0.25);
}

.sidebar-contact-box p {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

/* ============================================================
   BLOG ARTICLE
   ============================================================ */
.article-header {
  padding: 160px 0 60px;
  background: var(--clr-bg);
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding: 60px 0 100px;
}

.article-content {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.article-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--clr-text);
}

.article-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 24px 0 10px;
  color: var(--clr-orange2);
}

.article-content p {
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.article-content ul {
  list-style: none;
  margin: 16px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--clr-text-muted);
  font-size: 0.93rem;
}

.article-content ul li::before {
  content: '→';
  color: var(--clr-orange);
  flex-shrink: 0;
}

.article-content strong { color: var(--clr-text); }

.article-cta {
  background: linear-gradient(135deg, rgba(255,107,0,0.12), rgba(255,179,0,0.05));
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 40px;
  text-align: center;
}

.article-cta h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--clr-text) !important;
}

.article-cta p {
  margin-bottom: 20px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-us-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-us-visual { margin-top: 20px; }
  .visual-card-stack { transform: scale(0.9); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .blog-page-grid,
  .article-grid { grid-template-columns: 1fr; }
  .blog-sidebar { display: none; }
  .article-sidebar { display: none; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 300px; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .header-top { display: none; }

  .main-nav {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: var(--clr-surface);
    border-left: 1px solid var(--clr-border);
    padding: 80px 24px 32px;
    z-index: 950;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
  }

  .main-nav.active { transform: translateX(0); }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .main-nav ul li { width: 100%; }
  .main-nav ul li a {
    padding: 14px 16px;
    font-size: 1rem;
    display: block;
  }

  .dropdown {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,0.2);
    margin-top: 4px;
  }

  .burger { display: flex; }
  .btn-call-header { display: none; }

  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-stats { flex-wrap: wrap; }
  .stat-item { padding: 0 16px; }

  .services-grid { grid-template-columns: 1fr; }

  .process-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .process-step { max-width: 100%; }
  .process-arrow { display: none; }

  .why-us-visual { display: none; }

  .footer-grid { grid-template-columns: 1fr; }

  .float-label { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; }

  .content-grid { grid-template-columns: 1fr; }
  .content-visual { padding: 28px; }

  .article-content { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-whatsapp { width: 100%; justify-content: center; }
  .hero-stats { width: 100%; justify-content: center; }
  .stat-item:nth-child(even) { display: none; }
  .stat-divider { display: none; }
}
