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

:root {
  --red: #D62B2B;
  --red-dark: #B01E1E;
  --navy: #0B1F3A;
  --navy-light: #142d52;
  --white: #FFFFFF;
  --off-white: #F7F7F7;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --transition: 0.3s ease;
}

*, *::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(--navy);
  background: var(--white);
  overflow-x: hidden;
}

/* ── UTILS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid var(--red);
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(214,43,43,0.3); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid var(--white);
  transition: var(--transition);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--navy);
}

.section-title.light { color: var(--white); }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: box-shadow 0.4s ease, padding 0.4s ease;
  padding: 0.75rem 0;
}
#navbar.scrolled {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 0.5rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  color: var(--white);
  font-size: 1.2rem;
}
.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.1;
}
.nav-logo-text span { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--red); }

.nav-right { display: flex; align-items: center; gap: 1rem; }

/* Language Dropdown */
.lang-dropdown { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}
.lang-btn:hover { background: var(--gray-light); }
.lang-btn svg { width: 14px; height: 14px; transition: transform 0.2s; }
.lang-dropdown.open .lang-btn svg { transform: rotate(180deg); }

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
  min-width: 130px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.lang-dropdown.open .lang-menu { display: block; }
.lang-menu button {
  display: block;
  width: 100%;
  padding: 0.65rem 1rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}
.lang-menu button:hover, .lang-menu button.active { background: var(--red); color: var(--white); }

.nav-cta { font-size: 0.9rem; padding: 0.6rem 1.25rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--red); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(11, 31, 58, 0.92) 0%,
    rgba(11, 31, 58, 0.82) 50%,
    rgba(11, 31, 58, 0.55) 100%
  );
}
.hero-accent {
  position: absolute;
  right: -10%;
  top: 0;
  width: 55%;
  height: 100%;
  background: var(--red);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.08;
}
.hero-accent-2 {
  position: absolute;
  bottom: -5%;
  left: 0;
  width: 100%;
  height: 15%;
  background: var(--white);
  clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(214,43,43,0.15);
  border: 1px solid rgba(214,43,43,0.3);
  color: #ff6b6b;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
  display: block;
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 550px;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}
.stat-num span { color: var(--red); }
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── SERVICES OVERVIEW ── */
.services-overview { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  border-bottom: 4px solid transparent;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.service-card:hover {
  border-bottom-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.service-icon {
  width: 56px; height: 56px;
  background: rgba(214,43,43,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
}
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.service-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--navy); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 16.5%;
  right: 16.5%;
  height: 2px;
  background: rgba(255,255,255,0.1);
}
.step { text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}
.step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── TRUST BADGES ── */
.trust-strip {
  background: var(--red);
  padding: 2rem 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}
.trust-item svg { width: 28px; height: 28px; flex-shrink: 0; }
.trust-item strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  border-left: 4px solid var(--red);
}
.stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author strong {
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ── FAQ ── */
.faq { background: var(--off-white); }
.faq-list { margin-top: 3rem; max-width: 800px; }
.faq-item {
  border-bottom: 1px solid var(--gray-light);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s; color: var(--red); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 200px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: var(--red);
  opacity: 0.07;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
}
.cta-banner p { color: rgba(255,255,255,0.6); margin-top: 0.5rem; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: var(--red);
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  text-transform: uppercase;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-top: 1rem;
  max-width: 600px;
}

/* ── SERVICES PAGE ── */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--gray-light);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-img {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 8px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.service-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--red);
}
.service-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.service-text p { color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem; }
.service-features { list-style: none; margin-bottom: 2rem; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--navy);
}
.service-features li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--red);
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(214,43,43,0.15);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
}
.pricing-card:hover:not(.featured) {
  border-color: var(--navy);
  transform: translateY(-4px);
}
.pricing-tier {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
}
.pricing-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-price span { font-size: 1.2rem; font-weight: 600; }
.pricing-desc {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-light);
}
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--navy);
}
.pricing-features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
}
.pricing-features li.no::before { content: '✕'; color: var(--gray); }
.pricing-features li.no { color: var(--gray); }

/* ── ABOUT ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 8px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
}
.about-img::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--red);
  border-radius: 8px;
  z-index: -1;
}
.about-text .section-title { margin-bottom: 1.5rem; }
.about-text p { color: var(--gray); line-height: 1.8; margin-bottom: 1rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.team-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--navy), var(--red));
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
}
.team-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.team-card span { font-size: 0.85rem; color: var(--red); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.fleet-item {
  background: var(--off-white);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  font-size: 2.5rem;
}
.fleet-item p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-top: 0.75rem;
  text-transform: uppercase;
}

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: var(--transition);
  text-decoration: none;
  display: block;
  color: inherit;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}
.blog-tag {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}
.blog-body { padding: 1.5rem; }
.blog-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.blog-body p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-bottom: 1rem; }
.blog-meta { font-size: 0.8rem; color: var(--gray); display: flex; gap: 1rem; }

/* Blog post page */
.blog-post-content {
  max-width: 780px;
  margin: 0 auto;
}
.blog-post-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.blog-post-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
}
.blog-post-content p {
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.blog-post-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.blog-post-content ul li {
  color: #374151;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.875rem;
  color: var(--gray);
  flex-wrap: wrap;
}
.blog-post-meta span { display: flex; align-items: center; gap: 0.4rem; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(214,43,43,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.contact-detail strong { display: block; font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.2rem; }
.contact-detail span { font-size: 0.9rem; color: var(--gray); }
.contact-detail a { color: var(--gray); text-decoration: none; }
.contact-detail a:hover { color: var(--red); }
.map-embed {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  height: 220px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.9rem;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.contact-form { background: var(--off-white); border-radius: 12px; padding: 2.5rem; }
.contact-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  color: rgba(255,255,255,0.5);
}
.footer-social { display: flex; gap: 0.75rem; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--red); color: var(--white); }
footer h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.75rem; }
footer ul a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}
footer ul a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .service-block, .service-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .about-intro { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
}
