/* ===========================
   TrGoBornes – Stylesheet (Orange Theme)
   =========================== */

:root {
  --orange: #F97316;
  --orange-dark: #EA580C;
  --orange-light: #FFF7ED;
  --orange-tint: #FFEDD5;
  --navy: #1A1A2E;
  --navy-light: #16213E;
  --white: #FFFFFF;
  --gray-light: #F8F9FA;
  --gray: #6B7280;
  --text: #1F2937;
  --border: #E5E7EB;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --radius: 14px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section { padding: 90px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.35);
}
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--orange-tint);
  transform: translateY(-2px);
}
.btn-lg { padding: 14px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin: 10px 0 14px;
}
.section-header p { color: var(--gray); max-width: 540px; margin: 0 auto; }

.tag {
  display: inline-block;
  background: var(--orange-tint);
  color: var(--orange-dark);
  padding: 5px 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tag-white {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--orange);
  color: var(--white);
  font-size: 0.82rem;
  padding: 9px 0;
  position: relative;
  z-index: 200;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.92);
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar-right a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  transition: var(--transition);
}
.topbar-right a:hover { color: var(--white); }

/* ===== HEADER / NAV ===== */
#header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 48px; width: auto; object-fit: contain; }
.logo-img-footer { height: 42px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--orange); }
.nav-links > li > a .fa-chevron-down { font-size: 0.7rem; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  border-top: 3px solid var(--orange);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--text);
  transition: var(--transition);
}
.dropdown li a:hover {
  background: var(--orange-light);
  color: var(--orange);
  padding-left: 26px;
}

.nav-cta { flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 11px 16px;
  font-size: 0.9rem;
  font-weight: 500;
}
.announce-bar i { margin-right: 6px; }
.announce-bar a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 8px;
}
.announce-bar a:hover { opacity: 0.85; }

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 110px);
  overflow: hidden;
}
.hero-left {
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 60px 0;
}
.hero-left-content {
  padding: 0 60px 0 calc((100vw - 1200px) / 2 + 5%);
  max-width: 620px;
}
.hero-left-content h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-left-content h1 span {
  background: var(--orange);
  color: var(--white);
  padding: 2px 8px;
  display: inline;
  border-radius: 4px;
}
.hero-left-content p {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 32px;
  text-align: justify;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
}
.stat span {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat p { font-size: 0.78rem; color: var(--gray); margin: 4px 0 0; }
.stat-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* Hero right */
.hero-right {
  position: relative;
  overflow: hidden;
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-image-bg {
  width: 100%;
  height: 100%;
  background: url('../images/bg.png') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}
.hero-image-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0.18) 100%);
}
.hero-image-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 28px;
}
.hero-icon-main { display: none; }
.hero-floating-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  font-size: 0.82rem;
  color: var(--text);
  white-space: nowrap;
  top: 20%;
  right: 10%;
  animation: cardFloat 5s ease-in-out infinite;
}
.card-2 {
  top: auto;
  bottom: 20%;
  right: auto;
  left: 8%;
  animation-delay: 2s;
}
.hero-floating-card i { color: var(--orange); font-size: 1.3rem; }
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== SEGMENTS ===== */
.segments { background: var(--gray-light); }
.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.segment-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--border);
}
.segment-card:hover {
  border-top-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.segment-card.featured {
  background: var(--orange);
  color: var(--white);
  border-top-color: var(--orange-dark);
}
.segment-card.featured p,
.segment-card.featured .segment-features li { color: rgba(255,255,255,0.82); }
.badge-featured {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--white);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
}
.segment-icon {
  width: 56px; height: 56px;
  background: var(--orange-tint);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 20px;
}
.segment-card.featured .segment-icon {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.segment-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.segment-card.featured h3 { color: var(--white); }
.segment-card p { color: var(--gray); margin-bottom: 20px; font-size: 0.92rem; }
.segment-features { margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.segment-features li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; }
.segment-features li i { color: var(--orange); }
.segment-card.featured .segment-features li i { color: rgba(255,255,255,0.9); }

/* ===== BRANDS ===== */
.brands { background: var(--white); padding: 80px 0; }
.brands .section-header h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  color: #333;
  letter-spacing: 0.02em;
  cursor: default;
  transition: var(--transition);
  background: var(--white);
  padding: 10px;
}
.brand-item:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.12);
}

/* Brand typography styles */
.brand-jeep   { font-family: 'Arial Black', sans-serif; letter-spacing: 0.12em; font-size: 1.05rem; }
.brand-bmw    { font-family: 'Arial', sans-serif; letter-spacing: 0.06em; color: #1c69d4; }
.brand-chevy  { font-size: 0.85rem; letter-spacing: 0.04em; color: #c8a045; }
.brand-vw     { font-family: 'Arial', sans-serif; font-size: 1.1rem; color: #00438a; }
.brand-volvo  { letter-spacing: 0.14em; font-size: 0.88rem; color: #003057; }
.brand-porsche{ letter-spacing: 0.08em; font-size: 0.75rem; color: #c00; }
.brand-mb     { font-size: 0.88rem; color: #222; }
.brand-ford   { font-family: Georgia, serif; font-style: italic; font-size: 1.1rem; color: #003478; }
.brand-audi   { letter-spacing: 0.1em; color: #bb0a14; }
.brand-hyundai{ font-size: 0.82rem; letter-spacing: 0.04em; color: #002c5f; }
.brand-citroen{ font-size: 0.85rem; color: #9b1a2f; }
.brand-toyota { color: #eb0a1e; font-size: 0.88rem; }
.brand-lr     { font-size: 0.72rem; letter-spacing: 0.1em; color: #005a2b; }
.brand-honda  { letter-spacing: 0.08em; color: #cc0000; }
.brand-cupra  { letter-spacing: 0.14em; color: #c4952a; font-size: 0.85rem; }
.brand-fiat   { letter-spacing: 0.14em; color: #8b0000; }
.brand-byd    { letter-spacing: 0.1em; color: #1d5fa6; }
.brand-mg     { letter-spacing: 0.1em; color: #c00; font-size: 1.1rem; }
.brand-nissan { letter-spacing: 0.08em; font-size: 0.8rem; color: #c3002f; }
.brand-peugeot{ letter-spacing: 0.06em; font-size: 0.78rem; color: #333; }
.brand-mini   { letter-spacing: 0.1em; color: #1e1e1e; }
.brand-renault{ font-size: 0.88rem; color: #efb914; }
.brand-jaguar { letter-spacing: 0.1em; font-size: 0.75rem; color: #2d6a4f; }

/* ===== CERTIFICATIONS ===== */
.certs { background: var(--gray-light); }
.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cert-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border-bottom: 3px solid transparent;
}
.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--orange);
}
.cert-icon {
  width: 64px; height: 64px;
  background: var(--orange-tint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--orange);
  margin: 0 auto 18px;
}
.cert-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.cert-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ===== WHY US ===== */
.why-us { background: var(--white); overflow: hidden; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.why-image-inner {
  position: relative;
  width: 360px; height: 360px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}
.why-big-icon {
  font-size: 9rem;
  color: var(--orange);
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 0 40px rgba(249,115,22,0.3));
}
.why-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--orange);
  opacity: 0.15;
  animation: pulse 3s ease-in-out infinite;
}
.c1 { width: 200px; height: 200px; animation-delay: 0s; }
.c2 { width: 280px; height: 280px; animation-delay: 1s; }
.c3 { width: 360px; height: 360px; animation-delay: 2s; }
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 0.15; }
  50% { transform: scale(1.05); opacity: 0.28; }
}
.why-content h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; color: var(--navy); margin: 10px 0 14px; }
.why-content > p { color: var(--gray); margin-bottom: 36px; }
.why-points { display: flex; flex-direction: column; gap: 22px; }
.why-point { display: flex; align-items: flex-start; gap: 14px; }
.why-point-icon {
  width: 46px; height: 46px; min-width: 46px;
  background: var(--orange-tint);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.05rem;
}
.why-point h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 3px; color: var(--navy); }
.why-point p { font-size: 0.88rem; color: var(--gray); margin: 0; }

/* ===== PRODUCTS ===== */
.products { background: var(--gray-light); }
.products-filter { display: flex; gap: 10px; justify-content: center; margin-bottom: 44px; flex-wrap: wrap; }
.filter-btn {
  padding: 9px 22px;
  border-radius: 6px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--gray);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-card.hidden { display: none; }
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 3px 12px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  z-index: 2;
}
.product-badge.ac { background: #2563EB; }
.product-badge.dc { background: #DC2626; }
.product-badge.portable { background: #7C3AED; }
.product-img {
  height: 160px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  color: var(--orange);
}
.product-info { padding: 22px; }
.product-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.product-info p { font-size: 0.88rem; color: var(--gray); margin-bottom: 14px; }
.product-specs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.product-specs span {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.78rem;
  color: var(--orange-dark);
  background: var(--orange-tint);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
}

/* ===== MAP ===== */
.map-section { background: var(--white); padding-bottom: 0; }
.map-section .section-header { padding: 0 0 36px; }
.map-container { position: relative; }
#map { width: 100%; height: 500px; }
.map-legend {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  min-width: 190px;
  border-top: 3px solid var(--orange);
}
.map-legend h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 12px; color: var(--navy); display: flex; align-items: center; gap: 6px; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text); margin-bottom: 8px; }
.dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.dot.green { background: #16A34A; }
.dot.orange-dot { background: var(--orange); }
.dot.red { background: #DC2626; }
.dot.blue { background: #2563EB; }

/* ===== PROCESS ===== */
.process { background: var(--navy); padding: 90px 0; }
.process .section-header h2 { color: var(--white); }
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.process-step { flex: 1; text-align: center; padding: 0 20px; }
.step-number { font-size: 3rem; font-weight: 900; color: rgba(249,115,22,0.15); line-height: 1; margin-bottom: -8px; }
.step-icon {
  width: 60px; height: 60px;
  background: rgba(249,115,22,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--orange);
  margin: 0 auto 16px;
}
.process-step h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.process-arrow { color: var(--orange); font-size: 1.2rem; padding-top: 46px; opacity: 0.5; flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--gray-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-bottom-color: var(--orange); }
.stars { color: var(--orange); font-size: 1rem; margin-bottom: 14px; }
.testimonial-card p { font-size: 0.9rem; color: var(--gray); font-style: italic; margin-bottom: 20px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: 1rem;
}
.testimonial-author strong { display: block; font-size: 0.92rem; color: var(--navy); }
.testimonial-author span { font-size: 0.8rem; color: var(--gray); }

/* ===== BLOG ===== */
.blog { background: var(--white); }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.featured-article { grid-row: 1 / 3; }
.blog-img {
  height: 220px;
  background: linear-gradient(135deg, var(--navy), #0F2027);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: var(--orange);
}
.blog-img.small { height: 110px; font-size: 2.8rem; }
.blog-content { padding: 22px; }
.blog-cat {
  display: inline-block;
  background: var(--orange-tint);
  color: var(--orange-dark);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-content h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.featured-article .blog-content h3 { font-size: 1.15rem; }
.blog-content p { font-size: 0.88rem; color: var(--gray); margin-bottom: 14px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: var(--gray); }
.read-more { color: var(--orange); font-weight: 600; display: flex; align-items: center; gap: 5px; }
.read-more:hover { color: var(--orange-dark); }

/* ===== CONTACT ===== */
.contact { background: var(--gray-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 46px; height: 46px;
  background: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1rem;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.contact-item h4 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.contact-item p { font-size: 0.88rem; color: var(--gray); margin: 0; }
.contact-social { display: flex; gap: 10px; }
.contact-social a {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 0.95rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.contact-social a:hover { background: var(--orange); color: var(--white); transform: translateY(-3px); }
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.92rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,0.1); }
.form-group textarea { resize: vertical; }
.form-success {
  display: none;
  background: #ECFDF5;
  color: #065F46;
  padding: 12px 18px;
  border-radius: 8px;
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 500;
  align-items: center;
  gap: 8px;
}
.form-success.show { display: flex; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); }
.footer-top { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin: 16px 0 22px; line-height: 1.8; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-links h4 { font-size: 0.92rem; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-links a:hover { color: var(--orange); }
.footer-newsletter h4 { font-size: 0.92rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.footer-newsletter p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  padding: 11px 14px;
  border-radius: 6px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { background: rgba(255,255,255,0.12); }
.newsletter-form .btn { padding: 11px 16px; border-radius: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
  position: fixed;
  bottom: 84px; right: 22px;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }
.back-to-top {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 44px; height: 44px;
  background: var(--orange);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.95rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--orange-dark); }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-left-content { padding: 0 40px 0 5%; }
  .segments-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .container { width: 93%; }
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }

  /* Topbar */
  .topbar { display: none; }

  /* Header */
  .nav { height: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 1.1rem;
    overflow-y: auto;
    padding: 24px;
  }
  .nav-links.open > li > a { color: var(--text); font-size: 1.1rem; }
  .nav-links.open > li > a:hover { color: var(--orange); }
  .nav-links.open .dropdown { display: none; }
  .hamburger { display: flex; }

  /* Announce */
  .announce-bar { font-size: 0.8rem; }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right {
    clip-path: none;
    height: 280px;
    order: -1;
  }
  .hero-icon-main { display: none; }
  .hero-floating-card { display: none; }
  .hero-left { padding: 40px 0; }
  .hero-left-content { padding: 0; max-width: 100%; }
  .hero-left-content h1 { font-size: 1.85rem; }
  .hero-left-content p { font-size: 0.92rem; }
  .hero-btns { flex-direction: column; gap: 10px; margin-bottom: 32px; }
  .hero-btns .btn-lg { width: 100%; justify-content: center; }
  .hero-stats { gap: 0; padding-top: 24px; }
  .stat span { font-size: 1.8rem; }
  .stat p { font-size: 0.72rem; }

  /* Brands */
  .brands-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .brand-item { height: 66px; font-size: 0.85rem; }

  /* Certs */
  .certs-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Segments */
  .segments-grid { grid-template-columns: 1fr; gap: 18px; }

  /* Why */
  .why-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; gap: 18px; }
  .products-filter { gap: 8px; }

  /* Map */
  .map-container { display: flex; flex-direction: column-reverse; }
  #map { height: 320px; }
  .map-legend {
    position: relative;
    top: auto; right: auto;
    border-radius: 0;
    box-shadow: none;
    border-top: 3px solid var(--orange);
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding: 14px 16px;
    align-items: center;
  }
  .map-legend h4 { width: 100%; margin-bottom: 2px; }

  /* Process */
  .process-steps { flex-direction: column; align-items: center; gap: 8px; }
  .process-step { max-width: 280px; }
  .process-arrow { transform: rotate(90deg); padding: 0; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 18px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; gap: 18px; }
  .featured-article { grid-row: auto; }
  .blog-img { height: 150px; font-size: 3.5rem; }
  .blog-img.small { height: 110px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form { padding: 22px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Footer */
  .footer-top { padding: 48px 0 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; text-align: center; gap: 6px; }

  /* Float */
  .whatsapp-float { bottom: 76px; right: 14px; width: 46px; height: 46px; font-size: 1.2rem; }
  .back-to-top { bottom: 18px; right: 14px; width: 40px; height: 40px; }
}

@media (max-width: 420px) {
  .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .brand-item { height: 56px; font-size: 0.72rem; padding: 6px; }
  .certs-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .hero-left-content h1 { font-size: 1.6rem; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { display: none; }
  .stat { flex-direction: row; align-items: center; gap: 8px; }
  .stat span { font-size: 1.6rem; }
  .contact-form { padding: 16px 12px; }
}
