/* ================================================
   DENİZLİ TEKNİK SERVİSLERİ - SHARED STYLESHEET
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@400;500;600&display=swap');

:root {
  --primary: #0E1C36;
  --primary-mid: #1A2F55;
  --accent: #E63012;
  --accent-hover: #C42A0E;
  --cta-green: #1AA552;
  --cta-green-hover: #168040;
  --gold: #F5A623;
  --white: #FFFFFF;
  --light-bg: #F4F6FA;
  --text: #1C1C2E;
  --text-mid: #4A4A6A;
  --text-light: #8888A0;
  --border: #DDE2EE;
  --shadow: 0 4px 24px rgba(14,28,54,0.12);
  --shadow-lg: 0 8px 48px rgba(14,28,54,0.18);
  --radius: 8px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TOP CTA BAR ── */
.top-cta-bar {
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1000;
  flex-wrap: wrap;
}
.top-cta-bar .bar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: opacity 0.2s;
}
.top-cta-bar .bar-phone:hover { opacity: 0.85; }
.top-cta-bar .bar-phone svg { flex-shrink: 0; }
.top-cta-bar .bar-badge {
  background: var(--accent);
  color: var(--white);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,48,18,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(230,48,18,0); }
}

/* ── NAVBAR ── */
.navbar {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(14,28,54,0.08);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
}
.navbar-logo .logo-text {
  line-height: 1.2;
}
.navbar-logo .logo-text span:first-child {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--primary);
  letter-spacing: 0.04em;
}
.navbar-logo .logo-text span:last-child {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.navbar-nav a {
  text-decoration: none;
  color: var(--text-mid);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all 0.2s;
  text-transform: uppercase;
}
.navbar-nav a:hover { background: var(--light-bg); color: var(--primary); }
.navbar-nav a.active { color: var(--accent); }
.navbar-nav .dropdown { position: relative; }
.navbar-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 200px;
  padding: 8px 0;
  list-style: none;
}
.navbar-nav .dropdown:hover .dropdown-menu { display: block; }
.navbar-nav .dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 0;
  font-size: 14px;
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0;
}
.navbar-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  white-space: nowrap;
  transition: background 0.2s !important;
}
.navbar-cta-btn:hover { background: var(--accent-hover) !important; color: var(--white) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--text);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.mobile-menu .mobile-cta {
  display: block;
  margin-top: 16px;
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: none;
}

/* ── HERO SECTION ── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 60%, #1E3A6E 100%);
  color: var(--white);
  padding: 80px 20px 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  color: var(--white);
}
.hero h1 .highlight {
  color: var(--gold);
  display: block;
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230,48,18,0.4);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cta-green);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-whatsapp:hover {
  background: var(--cta-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,165,82,0.4);
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}
.hero-trust-item svg { color: var(--gold); flex-shrink: 0; }
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-stat-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s;
}
.hero-stat-card:hover { transform: translateX(6px); }
.hero-stat-card .stat-icon {
  width: 56px;
  height: 56px;
  background: rgba(245,166,35,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 26px;
  flex-shrink: 0;
}
.hero-stat-card .stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
}
.hero-stat-card .stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.hero-phone-card {
  background: var(--gold);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: all 0.25s;
}
.hero-phone-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.hero-phone-card .phone-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  animation: ring 3s ease-in-out infinite;
}
@keyframes ring {
  0%, 90%, 100% { transform: rotate(0); }
  92% { transform: rotate(-15deg); }
  94% { transform: rotate(15deg); }
  96% { transform: rotate(-10deg); }
  98% { transform: rotate(10deg); }
}
.hero-phone-card .phone-text span:first-child {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-phone-card .phone-text span:last-child {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: var(--primary);
  letter-spacing: 0.06em;
  line-height: 1.1;
}

/* ── SECTION COMMONS ── */
.section {
  padding: 80px 20px;
}
.section-dark {
  background: var(--primary);
  color: var(--white);
}
.section-light {
  background: var(--light-bg);
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-dark .section-label { color: var(--gold); }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-dark .section-title { color: var(--white); }
.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-dark .section-sub { color: rgba(255,255,255,0.70); }

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--gold);
}
.feature-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.feature-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}
.section-dark .feature-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.section-dark .feature-card:hover {
  background: rgba(255,255,255,0.10);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.section-dark .feature-card h3 { color: var(--white); }
.section-dark .feature-card p { color: rgba(255,255,255,0.65); }
.section-dark .feature-card .feature-icon {
  background: rgba(245,166,35,0.15);
  color: var(--gold);
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  counter-reset: step-counter;
}
.process-step {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}
.process-step::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--accent);
  font-weight: 900;
}
.process-step:last-child::after { display: none; }
.step-number {
  width: 64px;
  height: 64px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  margin: 0 auto 20px;
  position: relative;
}
.process-step h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.process-step p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── MID-PAGE CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #C42A0E 100%);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 0h80v80H0z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  margin-bottom: 32px;
}
.cta-section-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--accent);
  padding: 16px 36px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.25s;
}
.btn-white:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.25s;
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

/* ── PROBLEMS GRID ── */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.problem-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.25s;
}
.problem-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(230,48,18,0.1);
}
.problem-item .prob-icon {
  width: 42px;
  height: 42px;
  background: rgba(230,48,18,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  font-size: 20px;
}
.problem-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.problem-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── FAQ ── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--light-bg); }
.faq-question.open { background: var(--primary); color: var(--white); }
.faq-question .faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--accent);
}
.faq-question.open .faq-chevron { transform: rotate(180deg); color: var(--gold); }
.faq-answer {
  background: var(--light-bg);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
}
.faq-answer.open {
  max-height: 300px;
  padding: 20px 24px;
}

/* ── CONTACT SECTION ── */
.contact-section {
  background: var(--primary);
  color: var(--white);
  padding: 80px 20px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.contact-info p {
  color: rgba(255,255,255,0.70);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  text-decoration: none;
}
.contact-item .ci-icon {
  width: 50px;
  height: 50px;
  background: rgba(245,166,35,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
  flex-shrink: 0;
}
.contact-item .ci-text span:first-child {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.contact-item .ci-text span:last-child {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.contact-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.70);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}
.form-group select option { background: var(--primary); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-form {
  width: 100%;
  background: var(--gold);
  color: var(--primary);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-form:hover {
  background: #E5961F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,0.3);
}

/* ── DISCLAIMER SECTION ── */
.disclaimer-section {
  background: #1C2840;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 20px;
}
.disclaimer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.disclaimer-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(245,166,35,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}
.disclaimer-text {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  line-height: 1.7;
}
.disclaimer-text strong {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}

/* ── FOOTER ── */
footer {
  background: var(--primary);
  color: rgba(255,255,255,0.60);
  padding: 60px 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo-text-f {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.25s;
}
.footer-phone-link:hover { background: var(--accent-hover); transform: scale(1.02); }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ── FLOATING WHATSAPP ── */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: var(--cta-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(26,165,82,0.5);
  z-index: 9000;
  transition: all 0.25s;
  animation: float-in 0.5s ease 1s both;
}
.float-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(26,165,82,0.6);
}
@keyframes float-in {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}
.float-wa-label {
  position: fixed;
  bottom: 36px;
  right: 100px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow);
  z-index: 8999;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.25s;
  pointer-events: none;
}
.float-wa:hover ~ .float-wa-label,
.float-wa-label:hover {
  opacity: 1;
  transform: translateX(0);
}

/* ── COOKIE CONSENT ── */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 99998;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.cookie-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.cookie-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 -4px 60px rgba(0,0,0,0.2);
  transform: translateY(30px);
  transition: transform 0.4s;
  border-top: 4px solid var(--primary);
}
.cookie-overlay.show .cookie-box {
  transform: translateY(0);
}
.cookie-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.cookie-box p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 22px;
}
.cookie-box p a { color: var(--accent); font-weight: 600; }
.cookie-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-cookie-accept {
  flex: 1;
  min-width: 140px;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.btn-cookie-accept:hover { background: var(--accent); }
.btn-cookie-reject {
  min-width: 120px;
  background: transparent;
  color: var(--text-mid);
  border: 1px solid var(--border);
  padding: 13px 24px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.btn-cookie-reject:hover { background: var(--light-bg); }

/* ── SERVICE AREAS ── */
.services-nav {
  background: var(--light-bg);
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.services-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.services-nav-inner span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 8px;
}
.snav-link {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-mid);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.snav-link:hover, .snav-link.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ── BRAND BADGE ── */
.brand-info-section {
  background: var(--light-bg);
  padding: 60px 20px;
}
.brand-info-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
.brand-name-display {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  color: var(--white);
}
.brand-name-display .brand-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.brand-name-display .brand-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero { padding: 50px 20px; }
  .hero h1 { font-size: 42px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .top-cta-bar { font-size: 13px; gap: 12px; }
  .brand-info-grid { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .cookie-box { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .btn-primary, .btn-whatsapp { width: 100%; justify-content: center; }
  .hero-ctas { flex-direction: column; }
  .cta-section-btns { flex-direction: column; }
  .float-wa { bottom: 16px; right: 16px; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
}
.breadcrumb-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}
.breadcrumb-inner a { color: var(--text-mid); text-decoration: none; font-weight: 600; }
.breadcrumb-inner a:hover { color: var(--accent); }
.breadcrumb-inner span { color: var(--text-light); }
.breadcrumb-inner .current { color: var(--accent); font-weight: 700; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--accent);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 16px;
}
.testimonial-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  flex-shrink: 0;
}
.author-info span:first-child {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
}
.author-info span:last-child {
  display: block;
  font-size: 13px;
  color: var(--text-light);
}
