/* =================================================================
   MARKS ELECTRICAL SERVICES — Stylesheet
   Theme: Confident, electric, trustworthy
   Palette: Deep navy + electric amber + bold red accents
================================================================= */

/* ---------- CSS VARIABLES ---------- */
:root {
  --ink: #0B1E3F;          /* Deep navy — primary text & dark areas */
  --ink-soft: #1a2f5a;     /* Softer navy for layers */
  --accent: #FFB800;       /* Electric amber — main accent */
  --accent-deep: #E59E00;  /* Darker amber for hover */
  --red: #DC2626;          /* Bold red — matches visiting card */
  --red-deep: #B91C1C;
  --bg: #FAFAF7;           /* Off-white page background */
  --bg-alt: #F3F1EA;       /* Slightly warmer panel */
  --card: #FFFFFF;
  --line: #E5E0D5;         /* Subtle warm border */
  --muted: #6B7280;
  --text: #111827;

  --display: 'Bricolage Grotesque', system-ui, serif;
  --body: 'Manrope', system-ui, sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 12px rgba(11, 30, 63, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 30, 63, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 30, 63, 0.18);

  --max-w: 1200px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- SHARED TYPE ---------- */
.section__head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section__eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  padding: 6px 14px;
  background: rgba(220, 38, 38, 0.08);
  border-radius: 100px;
  margin-bottom: 18px;
}
.section__eyebrow--light { color: var(--accent); background: rgba(255, 184, 0, 0.12); }
.section__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section__title--light { color: white; }
.section__sub {
  margin-top: 18px;
  font-size: 1.08rem;
  color: var(--muted);
}
.text-accent {
  background: linear-gradient(180deg, transparent 60%, rgba(255, 184, 0, 0.45) 60%);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(255, 184, 0, 0.4), inset 0 -3px 0 rgba(0, 0, 0, 0.08);
}
.btn--primary:hover {
  transform: translateY(-2px);
  background: var(--accent-deep);
  box-shadow: 0 10px 24px rgba(255, 184, 0, 0.5);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: white; }
.btn--sm { padding: 9px 18px; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ---------- TOP STRIP ---------- */
.top-strip {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 8px 0;
}
.top-strip__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.top-strip__divider { color: var(--accent); }
.top-strip__call { color: var(--accent); font-weight: 700; }
.top-strip__call:hover { color: white; }

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
  transition: padding 0.2s ease;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo__bolt {
  width: 44px;
  height: 44px;
  background: var(--ink);
  border-radius: 12px;
  display: grid;
  place-items: center;
  transform: rotate(-4deg);
  transition: transform 0.3s ease;
}
.logo:hover .logo__bolt { transform: rotate(0deg) scale(1.05); }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.logo__sub {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 3px;
}
.logo--light .logo__name { color: white; }
.logo--light .logo__sub { color: var(--accent); }
.logo--light .logo__bolt { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a:not(.btn) {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}
.nav a:not(.btn):hover::after { width: 100%; }

.hamburger {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 6px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--bg);
  padding: 60px 0 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black 30%, transparent 75%);
  opacity: 0.6;
}
.hero__bolt {
  position: absolute;
  color: var(--accent);
  opacity: 0.08;
}
.hero__bolt svg { width: 100%; height: 100%; }
.hero__bolt--1 { top: 10%; right: -2%; width: 320px; height: 320px; transform: rotate(15deg); }
.hero__bolt--2 { bottom: 5%; left: -3%; width: 220px; height: 220px; transform: rotate(-25deg); color: var(--red); }

.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 40px 24px 80px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: white;
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero__pulse {
  width: 9px;
  height: 9px;
  background: #10B981;
  border-radius: 50%;
  position: relative;
}
.hero__pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  border-radius: inherit;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 22px;
}
.hero__highlight {
  position: relative;
  display: inline-block;
  color: var(--red);
  white-space: nowrap;
}
.hero__highlight::after {
  content: '';
  position: absolute;
  left: -3%;
  bottom: 4px;
  width: 106%;
  height: 14px;
  background: var(--accent);
  z-index: -1;
  transform: skew(-8deg);
  border-radius: 4px;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero__subtitle strong { color: var(--ink); font-weight: 700; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.hero__stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* HERO VISUAL — overlapping cards */
.hero__visual {
  position: relative;
  height: 540px;
  min-height: 480px;
}
.hero__card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero__card img { width: 100%; height: 100%; object-fit: cover; }
.hero__card--main {
  top: 0;
  right: 0;
  width: 78%;
  height: 75%;
  transform: rotate(2deg);
}
.hero__card--main:hover { transform: rotate(0) scale(1.02); }
.hero__card--small {
  bottom: 0;
  left: 0;
  width: 55%;
  height: 45%;
  transform: rotate(-3deg);
  border: 4px solid var(--bg);
}
.hero__card--small:hover { transform: rotate(0) scale(1.04); }
.hero__card-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: white;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
.hero__floating-rating {
  position: absolute;
  top: 38%;
  left: -8%;
  background: white;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero__stars { color: var(--accent); font-size: 1.1rem; letter-spacing: 2px; }
.hero__rating-text { font-size: 0.8rem; color: var(--muted); }
.hero__rating-text strong { color: var(--ink); font-size: 0.95rem; display: block; }

/* MARQUEE */
.marquee {
  background: var(--ink);
  color: white;
  padding: 18px 0;
  overflow: hidden;
  border-top: 4px solid var(--accent);
}
.marquee__track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.marquee__track span:nth-child(odd) { color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- ABOUT ---------- */
.about {
  padding: 100px 0;
  background: var(--bg-alt);
}
.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__visual {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}
.about__visual img {
  border-radius: 24px;
  height: 540px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about__badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--accent);
  color: var(--ink);
  padding: 24px 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-alt);
}
.about__badge-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
}
.about__badge-text {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}
.about__lead {
  margin-top: 20px;
  margin-bottom: 28px;
  font-size: 1.08rem;
  color: var(--muted);
}
.about__list {
  list-style: none;
  margin-bottom: 32px;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-weight: 500;
  color: var(--ink);
}
.about__list span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  background: var(--accent);
  color: var(--ink);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ---------- SERVICES ---------- */
.services { padding: 100px 0; background: var(--bg); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink);
}
.service:hover::before { transform: scaleX(1); }

.service--featured {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.service--featured::before {
  background: var(--accent);
  transform: scaleX(1);
}
.service--featured .service__title { color: white; }
.service--featured .service__desc { color: rgba(255,255,255,0.7); }
.service--featured .service__icon { background: rgba(255, 184, 0, 0.15); color: var(--accent); }
.service--featured .service__link { color: var(--accent); }

.service__icon {
  width: 52px;
  height: 52px;
  background: rgba(220, 38, 38, 0.08);
  color: var(--red);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.service__icon svg { width: 26px; height: 26px; }
.service__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.service__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service__desc {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 16px;
  flex: 1;
}
.service__img {
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  height: 130px;
  object-fit: cover;
  margin-bottom: 16px;
  margin-top: 4px;
}
.service__link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--red);
  align-self: flex-start;
  transition: gap 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  gap: 4px;
}
.service__link:hover { transform: translateX(4px); }

/* ---------- WHY US ---------- */
.whyus {
  padding: 100px 0;
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
}
.whyus::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.5;
}
.whyus__head { text-align: center; max-width: 700px; margin: 0 auto 56px; position: relative; }
.whyus__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.whyus__item {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: background 0.3s ease, transform 0.3s ease;
}
.whyus__item:hover {
  background: rgba(255, 184, 0, 0.08);
  border-color: var(--accent);
  transform: translateY(-4px);
}
.whyus__num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 14px;
  line-height: 1;
}
.whyus__item h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.whyus__item p { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; line-height: 1.6; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { padding: 100px 0; background: var(--bg); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.testimonial {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: var(--display);
  font-size: 5rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.4;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial__stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial__text {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 22px;
  font-weight: 500;
}
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--red));
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
  font-family: var(--display);
}
.testimonial__author strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
}
.testimonial__author span { color: var(--muted); font-size: 0.82rem; }

/* FEEDBACK FORM */
.feedback {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: white;
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.feedback::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.feedback__head { position: relative; }
.feedback__head h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.85rem;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.feedback__head p { color: rgba(255, 255, 255, 0.7); font-size: 1rem; }
.feedback__form { position: relative; }

.rating-input { display: flex; gap: 6px; margin-top: 8px; }
.rating-input__star {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  transition: color 0.15s ease, transform 0.15s ease;
  padding: 0;
}
.rating-input__star.active { color: var(--accent); }
.rating-input__star:hover { transform: scale(1.15); }

/* ---------- FORMS ---------- */
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form__field { margin-bottom: 16px; }
.form__field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--body);
  font-size: 0.98rem;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.15);
}
.form__field textarea { resize: vertical; min-height: 110px; }

.feedback__form .form__field label { color: rgba(255, 255, 255, 0.85); }
.feedback__form .form__field input,
.feedback__form .form__field textarea {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: white;
}
.feedback__form .form__field input::placeholder,
.feedback__form .form__field textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
.feedback__form .form__field input:focus,
.feedback__form .form__field textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}

.form__status {
  margin-top: 14px;
  font-size: 0.92rem;
  font-weight: 600;
  min-height: 22px;
}
.form__status.success { color: #10B981; }
.form__status.error { color: #F87171; }

/* ---------- CONTACT ---------- */
.contact { padding: 100px 0; background: var(--bg-alt); }
.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}
.contact__lead { margin-top: 18px; margin-bottom: 36px; color: var(--muted); font-size: 1.05rem; }

.contact__items { display: grid; gap: 14px; }
.contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
a.contact__item:hover {
  transform: translateX(4px);
  border-color: var(--accent);
}
.contact__item-icon {
  width: 46px;
  height: 46px;
  background: var(--accent);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact__item-label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
  font-weight: 600;
}
.contact__item strong {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
}

.contact__form-wrap {
  background: var(--card);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.contact__form-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.map {
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.map iframe { width: 100%; height: 100%; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 0;
}
.footer__container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__tagline {
  margin-top: 18px;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 360px;
}
.footer__col h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.08rem;
  color: white;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.footer__col ul { list-style: none; display: grid; gap: 10px; }
.footer__col li, .footer__col a { font-size: 0.95rem; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  font-size: 0.85rem;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- FLOATING BUTTONS ---------- */
.floating-btn {
  position: fixed;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  z-index: 50;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-btn:hover { transform: scale(1.08); }
.floating-btn--whatsapp {
  bottom: 24px;
  right: 24px;
  background: #25D366;
}
.floating-btn--call {
  display: none;
  bottom: 24px;
  right: 90px;
  background: var(--red);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero__container { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { height: 460px; max-width: 560px; margin: 0 auto; width: 100%; }
  .about__container { grid-template-columns: 1fr; gap: 80px; }
  .about__visual img { height: 420px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .whyus__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .feedback { grid-template-columns: 1fr; padding: 40px 32px; gap: 32px; }
  .contact__container { grid-template-columns: 1fr; gap: 48px; }
  .footer__container { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .top-strip { font-size: 0.75rem; }
  .top-strip__divider { display: none; }
  .top-strip__inner { gap: 8px; }

  .header__inner { padding: 12px 20px; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--card);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 24px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .nav.active { transform: translateX(0); }
  .nav a:not(.btn) { font-size: 1.15rem; }
  .nav__cta { margin-top: 12px; }
  .hamburger { display: flex; z-index: 102; }

  .hero { padding: 40px 0 0; }
  .hero__container { padding: 24px 20px 60px; gap: 40px; }
  .hero__title { font-size: clamp(2.1rem, 9vw, 3rem); }
  .hero__subtitle { font-size: 1rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 18px 14px; padding-top: 28px; }
  .hero__visual { height: 380px; }
  .hero__floating-rating { left: 0; padding: 10px 14px; }

  .marquee { padding: 14px 0; }
  .marquee__track { font-size: 0.85rem; gap: 24px; }

  .about, .services, .whyus, .testimonials, .contact { padding: 70px 0; }
  .section__head { margin-bottom: 40px; }
  .about__badge { right: 8px; bottom: -22px; padding: 18px 22px; }
  .about__badge-num { font-size: 2.2rem; }

  .services__grid { grid-template-columns: 1fr; gap: 20px; }
  .whyus__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }

  .feedback { padding: 32px 24px; }
  .feedback__head h3 { font-size: 1.4rem; }

  .form__row { grid-template-columns: 1fr; gap: 0; }
  .contact__form-wrap { padding: 28px 22px; }

  .footer__container { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  .floating-btn--call { display: grid; }
  .floating-btn { width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .logo__name { font-size: 1.1rem; }
  .logo__sub { font-size: 0.65rem; }
  .hero__floating-rating { display: none; }
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
