/* ==========================================================================
   LEO LOGISTICS MOVERS — Main Stylesheet
   Brand: Red / White / Charcoal
   ========================================================================== */

:root {
  --red: #e81416;
  --red-dark: #c10f11;
  --black: #17181a;
  --charcoal: #222325;
  --gray-900: #2b2c2e;
  --gray-700: #55575c;
  --gray-500: #7c7e83;
  --gray-200: #e7e7e9;
  --gray-100: #f4f4f5;
  --white: #ffffff;

  --font-head: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 10px rgba(23, 24, 26, 0.06);
  --shadow-md: 0 10px 30px rgba(23, 24, 26, 0.1);
  --shadow-red: 0 14px 30px rgba(232, 20, 22, 0.25);

  --container: 1200px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--black);
  line-height: 1.25;
  font-weight: 700;
}

/* Visible keyboard focus for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Layout helpers ---------- */
.container {
  width: 92%;
  max-width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-tight {
  padding: 60px 0;
}

.bg-light {
  background: var(--gray-100);
}

.bg-dark {
  background: var(--black);
  color: var(--gray-200);
}

.bg-dark h2, .bg-dark h3 {
  color: var(--white);
}

.section-head {
  max-width: 640px;
  margin-bottom: 50px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--gray-700);
  font-size: 16px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-head);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.topbar {
  background: var(--black);
  color: var(--gray-200);
  font-size: 13px;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar-left a,
.topbar-left span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gray-200);
}

.topbar-left a:hover {
  color: var(--red);
}

.topbar-social {
  display: flex;
  gap: 12px;
}

.topbar-social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.topbar-social a:hover {
  background: var(--red);
  border-color: var(--red);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 70px;
  width: auto;
  max-width: 280px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
  padding: 8px 0;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
}

.nav-phone .icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-phone-text span {
  display: block;
  font-size: 11px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-phone-text a {
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 1001;
}

.hamburger span {
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Page banner (inner pages) ---------- */
.page-banner {
  position: relative;
  padding: 110px 0 60px;
  background: linear-gradient(180deg, rgba(17, 18, 20, 0.78), rgba(17, 18, 20, 0.86)), url("https://images.unsplash.com/photo-1759272840712-c7e5ea852367?w=1800&h=700&fit=crop&auto=format&q=80") center/cover no-repeat;
  color: var(--white);
}

.page-banner h1 {
  color: var(--white);
  font-size: clamp(30px, 5vw, 46px);
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-200);
}

.breadcrumb a {
  color: var(--gray-200);
}

.breadcrumb a:hover {
  color: var(--red);
}

.breadcrumb .current {
  color: var(--red);
}

/* ---------- Hero (home) ---------- */
.hero {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(232, 20, 22, 0.18), transparent 55%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding: 90px 0 70px;
}

.hero-eyebrow {
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--red);
}

.hero p {
  color: var(--gray-200);
  font-size: 17px;
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-trust div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-200);
  font-size: 14px;
  font-weight: 600;
}

.hero-trust svg {
  color: var(--red);
  flex-shrink: 0;
}

.hero-media {
  position: relative;
}

.hero-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.hero-media-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--red);
  color: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-red);
}

.hero-media-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
}

.hero-media-badge span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

/* ---------- Trust / feature strip ---------- */
/* ---------- Hero enquiry bar ---------- */
.hero-enquiry-wrap {
  background: var(--black);
  padding-bottom: 60px;
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.hero-enquiry-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 26px 28px;
}

.hero-enquiry-bar form {
  display: grid;
  grid-template-columns: repeat(6, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.hero-enquiry-bar .field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
  white-space: nowrap;
}

.hero-enquiry-bar .field label svg {
  color: var(--red);
  flex-shrink: 0;
}

.hero-enquiry-bar .field input,
.hero-enquiry-bar .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--gray-100);
}

.hero-enquiry-bar .field input:focus,
.hero-enquiry-bar .field select:focus {
  border-color: var(--red);
  background: var(--white);
  outline: none;
}

.hero-enquiry-bar .field.invalid input,
.hero-enquiry-bar .field.invalid select {
  border-color: var(--red);
}

.hero-enquiry-bar .field-error {
  display: none;
  color: var(--red-dark);
  font-size: 11px;
  margin-top: 5px;
}

.hero-enquiry-bar .field.invalid .field-error {
  display: block;
}

.hero-enquiry-bar button[type="submit"] {
  white-space: nowrap;
  height: 46px;
}

.hero-enquiry-bar .form-success {
  grid-column: 1 / -1;
}

@media (max-width: 1200px) {
  .hero-enquiry-bar form {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-enquiry-bar button[type="submit"] {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-enquiry-wrap {
    margin-top: -24px;
    padding-bottom: 40px;
  }

  .hero-enquiry-bar {
    padding: 20px 18px;
  }

  .hero-enquiry-bar form {
    grid-template-columns: 1fr 1fr;
  }
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 34px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item .icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

.trust-item p {
  font-size: 13px;
  color: var(--gray-500);
}

/* ---------- About split ---------- */
.about-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media .frame-line {
  position: absolute;
  top: -22px;
  right: -22px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--red);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-media-images {
  position: relative;
  z-index: 1;
}

.about-media-images img.img-main {
  border-radius: var(--radius-lg);
  height: 460px;
  object-fit: cover;
  width: 100%;
}

.about-media-images img.img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-copy .checklist {
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14.5px;
}

.checklist svg {
  color: var(--red);
  flex-shrink: 0;
}

.about-copy p {
  color: var(--gray-700);
  margin-bottom: 16px;
}

.about-stat-box {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.about-stat-box strong {
  font-size: 30px;
  font-family: var(--font-head);
  display: block;
  line-height: 1;
}

.about-stat-box span {
  font-size: 12.5px;
  opacity: 0.9;
}

/* ---------- Value / process steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 20px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.step-num {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  color: var(--gray-200);
  position: absolute;
  top: 18px;
  right: 22px;
}

.step-card .icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step-card h4 {
  font-size: 17px;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--gray-700);
}

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-200);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.service-media {
  position: relative;
  height: 210px;
}

.service-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.service-media .icon-box {
  position: absolute;
  bottom: -26px;
  left: 26px;
  width: 56px;
  height: 56px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red);
}

.service-body {
  padding: 40px 26px 28px;
}

.service-body h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.service-body p {
  font-size: 14.5px;
  color: var(--gray-700);
  margin-bottom: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.service-link svg {
  color: var(--red);
  transition: transform var(--transition);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* ---------- Why choose us (dark image split) ---------- */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.why-media {
  position: relative;
  min-height: 460px;
}

.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.why-copy {
  background: var(--black);
  color: var(--gray-200);
  padding: 70px 60px;
}

.why-copy .eyebrow {
  color: var(--red);
}

.why-copy h2 {
  color: var(--white);
  font-size: clamp(26px, 3.6vw, 34px);
  margin-bottom: 18px;
}

.why-copy p {
  margin-bottom: 26px;
  color: var(--gray-200);
  opacity: 0.85;
}

.why-list {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.why-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-list .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(232, 20, 22, 0.15);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-list strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  margin-bottom: 2px;
}

.why-list span {
  font-size: 13.5px;
  color: var(--gray-500);
}

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--red);
  color: var(--white);
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 50px 0;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.stat strong {
  font-family: var(--font-head);
  font-size: 34px;
  line-height: 1;
}

.stat span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

/* ---------- Portfolio / gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 18, 20, 0.85) 0%, rgba(17, 18, 20, 0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--red);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.gallery-overlay h4 {
  color: var(--white);
  font-size: 17px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(17, 18, 20, 0.94);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 900px;
  max-height: 82vh;
  width: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: 26px;
  right: 30px;
  color: var(--white);
  font-size: 32px;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 34px;
  padding: 10px;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card .quote-mark {
  color: var(--red);
  font-size: 46px;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 18px;
  color: var(--gray-900);
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-stars {
  color: var(--red);
  margin-bottom: 14px;
  font-size: 15px;
  letter-spacing: 2px;
}

.testimonial-name strong {
  display: block;
  font-family: var(--font-head);
}

.testimonial-name span {
  font-size: 13px;
  color: var(--gray-500);
}

.testimonial-note {
  margin-top: 28px;
  font-size: 12.5px;
  color: var(--gray-500);
  border-top: 1px dashed var(--gray-200);
  padding-top: 14px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Quote / Contact form ---------- */
.quote-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 44px;
  border: 1px solid var(--gray-200);
}

.quote-panel h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.quote-panel > p {
  color: var(--gray-700);
  font-size: 14px;
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14.5px;
  background: var(--gray-100);
  transition: border-color var(--transition), background var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  background: var(--white);
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.field-error {
  color: var(--red-dark);
  font-size: 12px;
  margin-top: 6px;
  display: none;
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: var(--red);
}

.field.invalid .field-error {
  display: block;
}

.form-note {
  font-size: 12.5px;
  color: var(--gray-500);
  margin-top: 14px;
}

.form-success {
  display: none;
  background: #eafaf0;
  border: 1px solid #b7e6c7;
  color: #1c7a3d;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 20px;
}

.form-success.show {
  display: block;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 30%, rgba(232, 20, 22, 0.22), transparent 55%);
}

.cta-banner .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 26px;
  padding: 56px 0;
}

.cta-banner h3 {
  color: var(--white);
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 8px;
}

.cta-banner p {
  color: var(--gray-200);
  font-size: 15px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-phone .icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-phone span {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
}

.cta-phone a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

/* ---------- Blog / article cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-media {
  height: 190px;
}

.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-body {
  padding: 24px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 12.5px;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-body h4 {
  font-size: 17px;
  margin-bottom: 12px;
}

.blog-link {
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Map + contact cards ---------- */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.contact-info-card .icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-info-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 14px;
  color: var(--gray-700);
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--gray-500);
  padding-top: 70px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  height: 58px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-200);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.footer-col h5 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--red);
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-col ul li a {
  transition: var(--transition);
  color: var(--gray-500);
}

.footer-col ul li a:hover {
  color: var(--red);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 14px;
}

.footer-contact svg {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0;
  font-size: 13px;
}

.footer-bottom a {
  color: var(--gray-500);
}

.footer-bottom a:hover {
  color: var(--red);
}

/* ---------- Floating buttons ---------- */
.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 900;
}

.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}

.fab:hover {
  transform: translateY(-4px);
}

.fab-whatsapp {
  background: #25d366;
  color: var(--white);
}

.fab-top {
  background: var(--red);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.fab-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: 380px;
  }

  .about-split,
  .why-split {
    grid-template-columns: 1fr;
  }

  .why-media {
    min-height: 320px;
  }

  .why-copy {
    padding: 50px 34px;
  }

  .steps-grid,
  .services-grid,
  .gallery-grid,
  .blog-grid,
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip .container,
  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 860px) {
  .brand img {
    height: 56px;
    max-width: 220px;
  }

  .nav-links,
  .nav-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.mobile-open {
    display: flex;
    position: fixed;
    inset: 0 0 0 auto;
    width: 78%;
    max-width: 320px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    gap: 22px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
  }

  .topbar-left span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 640px) {
  .brand img {
    height: 48px;
    max-width: 190px;
  }

  .section {
    padding: 60px 0;
  }

  .steps-grid,
  .services-grid,
  .gallery-grid,
  .blog-grid,
  .contact-info-grid,
  .form-grid,
  .footer-grid,
  .trust-strip .container,
  .stats-bar .container {
    grid-template-columns: 1fr;
  }

  .about-copy .checklist {
    grid-template-columns: 1fr;
  }

  .about-media-images img.img-float {
    display: none;
  }

  .quote-panel {
    padding: 26px;
  }

  .cta-banner .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-banner {
    padding: 100px 0 44px;
  }
}
