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

    :root {
      --red: #C0181A;
      --red-dark: #8B0E0F;
      --red-light: #E83235;
      --red-pale: #FDF0F0;
      --red-pale2: #F9E2E2;
      --white: #FFFFFF;
      --off-white: #FAFAFA;
      --gray-50: #F5F5F5;
      --gray-100: #EBEBEB;
      --gray-200: #D4D4D4;
      --gray-500: #737373;
      --gray-700: #404040;
      --gray-900: #1A1A1A;
      --font-display: 'Raleway', sans-serif;
      --font-body: 'Lato', sans-serif;
      --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
      --shadow-md: 0 4px 16px rgba(0,0,0,.07);
      --shadow-lg: 0 12px 40px rgba(0,0,0,.09);
      --radius: 12px;
      --radius-lg: 20px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--gray-900);
      background: var(--white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ── TOPBAR ── */
    .topbar {
      background: var(--red-dark);
      color: rgba(255,255,255,.85);
      font-size: 13px;
      padding: 8px 0;
    }
    .topbar-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .topbar a { color: inherit; text-decoration: none; }
    .topbar a:hover { color: #fff; }
    .topbar-items { display: flex; gap: 20px; align-items: center; }
    .topbar-item { display: flex; align-items: center; gap: 6px; }

    /* ── HEADER / NAV ── */
    header {
      background: var(--white);
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid var(--gray-100);
      box-shadow: 0 2px 12px rgba(0,0,0,.05);
    }
    nav {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      gap: 24px;
    }
    .logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .logo-wrap img { height: 52px; width: auto; }
    .logo-text { line-height: 1.2; }
    .logo-text strong {
      display: block;
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 800;
      color: var(--red);
      letter-spacing: -.3px;
    }
    .logo-text span {
      font-size: 11px;
      color: var(--gray-500);
      font-weight: 300;
      letter-spacing: .5px;
      text-transform: uppercase;
    }
    .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
    .nav-links a {
      text-decoration: none;
      color: var(--gray-700);
      font-size: 14px;
      font-weight: 500;
      padding: 8px 14px;
      border-radius: 8px;
      transition: all .18s;
    }
    .nav-links a:hover { color: var(--red); background: var(--red-pale); }
    .nav-links a.active { color: var(--red); }
    .btn-nav {
      background: var(--red);
      color: #fff !important;
      border-radius: 8px;
      padding: 9px 18px !important;
    }
    .btn-nav:hover { background: var(--red-light) !important; color: #fff !important; }

    /* ── HERO ── */
    .hero {
      position: relative;
      overflow: hidden;
      min-height: 600px;
      display: flex;
      align-items: center;
      background: #3a0a0a; /* fallback while images load */
    }
    .hero-slider {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.4s ease;
      transform: scale(1.06);
    }
    .hero-slide.active {
      opacity: 1;
      animation: kenburns 8s ease-out forwards;
    }
    @keyframes kenburns {
      from { transform: scale(1.06); }
      to   { transform: scale(1.0);  }
    }
    .hero-slide::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        105deg,
        rgba(60,5,5,.78) 0%,
        rgba(110,10,10,.58) 35%,
        rgba(10,5,5,.22) 100%
      );
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1180px;
      margin: 0 auto;
      padding: 100px 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.25);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      padding: 7px 16px;
      border-radius: 100px;
      margin-bottom: 24px;
    }
    .hero-tag::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,.8);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .5; transform: scale(1.3); }
    }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 900;
      color: #fff;
      line-height: 1.08;
      letter-spacing: -1px;
      margin-bottom: 20px;
    }
    .hero h1 em { font-style: normal; color: rgba(255,255,255,.65); font-weight: 400; }
    .hero p {
      color: rgba(255,255,255,.8);
      font-size: 17px;
      font-weight: 300;
      line-height: 1.75;
      margin-bottom: 36px;
      max-width: 480px;
    }
    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
    .hero-dots { display: flex; gap: 8px; }
    .hero-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,.35);
      cursor: pointer;
      transition: all .3s;
      border: none;
      padding: 0;
    }
    .hero-dot.active { background: #fff; width: 24px; border-radius: 4px; }
    .hero-visual {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-stat-card {
      background: rgba(255,255,255,.12);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: var(--radius-lg);
      padding: 28px 32px;
      color: #fff;
      text-align: center;
      width: 100%;
      max-width: 280px;
    }
    .hero-stat-card .big {
      font-family: var(--font-display);
      font-size: 52px;
      font-weight: 900;
      line-height: 1;
      margin-bottom: 6px;
    }
    .hero-stat-card .sub {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      opacity: .7;
      margin-bottom: 20px;
    }
    .hero-stat-card .divider-line {
      width: 40px; height: 2px;
      background: rgba(255,255,255,.35);
      margin: 0 auto 20px;
      border-radius: 2px;
    }
    .hero-stat-card .tagline {
      font-size: 14px;
      opacity: .75;
      line-height: 1.6;
    }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 26px;
      border-radius: 10px;
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .3px;
      text-decoration: none;
      cursor: pointer;
      transition: all .2s;
      border: none;
    }
    .btn-white { background: #fff; color: var(--red); }
    .btn-white:hover { background: var(--red-pale); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
    .btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
    .btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); }
    .stats-strip {
      background: var(--white);
      border-bottom: 1px solid var(--gray-100);
    }
    .stats-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .stat-item {
      padding: 28px 24px;
      text-align: center;
      border-right: 1px solid var(--gray-100);
    }
    .stat-item:last-child { border-right: none; }
    .stat-item .num {
      font-family: var(--font-display);
      font-size: 36px;
      font-weight: 800;
      color: var(--red);
      line-height: 1;
      display: block;
    }
    .stat-item .lbl {
      font-size: 13px;
      color: var(--gray-500);
      margin-top: 4px;
      font-weight: 400;
    }

    /* ── ABOUT ── */
    .section {
      padding: 88px 24px;
      max-width: 1180px;
      margin: 0 auto;
    }
    .section-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 800;
      color: var(--gray-900);
      letter-spacing: -.5px;
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .section-lead {
      font-size: 17px;
      color: var(--gray-500);
      line-height: 1.75;
      font-weight: 300;
      max-width: 600px;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-text {}
    .about-body {
      margin-top: 24px;
      font-size: 16px;
      color: var(--gray-700);
      line-height: 1.8;
    }
    .about-features {
      margin-top: 32px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .feat-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .feat-icon {
      width: 36px; height: 36px;
      background: var(--red-pale);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }
    .feat-item h4 { font-size: 14px; font-weight: 600; color: var(--gray-900); margin-bottom: 2px; }
    .feat-item p { font-size: 13px; color: var(--gray-500); }
    .about-image-stack {
      position: relative;
    }
    .about-img-main {
      width: 100%;
      aspect-ratio: 4/3;
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow-lg);
    }
    .about-img-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .about-img-main::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(100,5,5,.25) 0%, transparent 60%);
      pointer-events: none;
    }
    .about-badge {
      position: absolute;
      bottom: -16px;
      right: -16px;
      background: var(--red);
      color: #fff;
      border-radius: var(--radius);
      padding: 16px 20px;
      box-shadow: var(--shadow-lg);
    }
    .about-badge strong {
      display: block;
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 800;
      line-height: 1;
    }
    .about-badge span { font-size: 12px; opacity: .8; }

    /* ── SERVICES ── */
    .services-section {
      background: var(--gray-50);
      padding: 88px 0;
    }
    .services-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .services-header { text-align: center; margin-bottom: 56px; }
    .services-header .section-lead { margin: 0 auto; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .service-card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: all .25s;
      cursor: default;
    }
    .service-card:hover {
      border-color: var(--red-pale2);
      box-shadow: 0 8px 32px rgba(192,24,26,.1);
      transform: translateY(-4px);
    }
    .svc-img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      display: block;
      transition: transform .4s ease;
    }
    .service-card:hover .svc-img { transform: scale(1.04); }
    .svc-img-wrap { overflow: hidden; }
    .svc-body { padding: 20px 20px 22px; }
    .service-card h3 {
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 700;
      color: var(--gray-900);
      margin-bottom: 8px;
    }
    .service-card p {
      font-size: 13px;
      color: var(--gray-500);
      line-height: 1.65;
    }

    /* ── WHY US ── */
    .why-section {
      background: var(--red-dark);
      padding: 88px 0;
      position: relative;
      overflow: hidden;
    }
    .why-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .why-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 1;
    }
    .why-header { text-align: center; margin-bottom: 56px; }
    .why-header .section-tag { color: rgba(255,255,255,.6); }
    .why-header .section-title { color: #fff; }
    .why-header .section-lead { color: rgba(255,255,255,.65); margin: 0 auto; }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .why-card {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
    }
    .why-num {
      font-family: var(--font-display);
      font-size: 48px;
      font-weight: 800;
      color: rgba(255,255,255,.1);
      line-height: 1;
      margin-bottom: 16px;
    }
    .why-card h3 {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
    }
    .why-card p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.7; }

    /* ── CTA ── */
    .cta-section {
      padding: 88px 24px;
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 48px;
      align-items: center;
    }
    .cta-text .section-title { margin-bottom: 8px; }
    .cta-text p { font-size: 16px; color: var(--gray-500); }
    .cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
    .btn-red {
      background: var(--red);
      color: #fff;
    }
    .btn-red:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(192,24,26,.3); }
    .btn-ghost {
      background: transparent;
      color: var(--gray-700);
      border: 1.5px solid var(--gray-200);
    }
    .btn-ghost:hover { border-color: var(--red); color: var(--red); }
    .cta-phone {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 22px;
      font-family: var(--font-display);
      font-weight: 700;
      color: var(--red);
      text-decoration: none;
      white-space: nowrap;
    }
    .cta-phone:hover { color: var(--red-dark); }

    /* ── FOOTER ── */
    footer {
      background: var(--gray-900);
      color: rgba(255,255,255,.65);
    }
    .footer-main {
      max-width: 1180px;
      margin: 0 auto;
      padding: 56px 24px 40px;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
    }
    .footer-brand img { height: 44px; margin-bottom: 16px; }
    .footer-brand p { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,.5); max-width: 240px; }
    .footer-col h4 {
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      letter-spacing: .5px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul a {
      color: rgba(255,255,255,.5);
      text-decoration: none;
      font-size: 14px;
      transition: color .15s;
    }
    .footer-col ul a:hover { color: #fff; }
    .footer-contact p { font-size: 14px; margin-bottom: 8px; }
    .footer-contact a { color: rgba(255,255,255,.7); text-decoration: none; }
    .footer-contact a:hover { color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      max-width: 1180px;
      margin: 0 auto;
      padding: 20px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: rgba(255,255,255,.35);
    }
    .footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }

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

    /* ── DIVIDER ── */
    .divider { border: none; border-top: 1px solid var(--gray-100); margin: 0; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero-visual { display: none; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2) { border-right: none; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .why-grid { grid-template-columns: 1fr 1fr; }
      .cta-section { grid-template-columns: 1fr; gap: 24px; }
      .footer-main { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .topbar-items:first-child { display: none; }
      nav { height: 60px; }
      .nav-links { display: none; }
      .services-grid { grid-template-columns: 1fr; }
      .stats-inner { grid-template-columns: 1fr 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .footer-main { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    }
  
/* ── SERVICE CARD LINK ── */
.service-card { text-decoration: none; color: inherit; display: block; }
.svc-link { display:inline-block;margin-top:12px;font-size:13px;font-weight:700;color:var(--red);letter-spacing:.2px; }
.service-card:hover .svc-link { text-decoration:underline; }

/* ── MOBILE NAV TOGGLE ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all .2s;
}
.nav-links.open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 12px 24px;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links:not(.open) { display: none; }
  header { position: relative; }
}

/* ── SVG ICON BOXES ── */
.feat-icon {
  width: 36px; height: 36px;
  background: var(--red-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--red-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.icon-box {
  width: 52px; height: 52px;
  background: var(--red-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.why-icon {
  color: rgba(255,255,255,.65);
  margin-bottom: 16px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  background-color: var(--red-dark); /* fallback if image missing */
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero::before {
  /* Ken Burns subtle zoom on load */
  content: '';
  position: absolute;
  inset: -5%;
  background: inherit;
  background-size: cover;
  background-position: center;
  animation: pagezoom 8s ease-out forwards;
  z-index: 0;
}
@keyframes pagezoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0);  }
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* lighter overlay so photos show through clearly */
  background: linear-gradient(
    to top,
    rgba(60,5,5,.80) 0%,
    rgba(80,8,8,.45) 40%,
    rgba(20,5,5,.15) 100%
  );
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px;
  width: 100%;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}
.breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.page-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -.5px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.page-hero-inner > p {
  color: rgba(255,255,255,.8);
  font-size: 16px;
  text-shadow: 0 1px 6px rgba(0,0,0,.25);
}
