:root {
  --blue-950: #061b33;
  --blue-900: #08284f;
  --blue-800: #0b315f;
  --blue-600: #1265a8;
  --cyan-500: #1d9bd7;
  --yellow-500: #f5b51b;
  --yellow-400: #ffd45a;
  --slate-900: #111827;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --shadow-soft: 0 20px 60px rgba(8, 40, 79, 0.12);
  --shadow-card: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--slate-900);
  background: #f8fafc;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-padding {
  padding: 108px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(226, 232, 240, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 210px;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-950);
}

.nav-menu > a:not(.btn) {
  position: relative;
}

.nav-menu > a:not(.btn)::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--yellow-500), var(--cyan-500));
  border-radius: 999px;
  transition: width 0.2s ease;
}

.nav-menu > a:not(.btn):hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--blue-900);
  border: 0;
  border-radius: 14px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--blue-950);
  background: linear-gradient(135deg, var(--yellow-500), var(--yellow-400));
  box-shadow: 0 16px 32px rgba(245, 181, 27, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 20px 40px rgba(245, 181, 27, 0.38);
}

.btn-secondary {
  color: var(--blue-950);
  background: var(--white);
  border: 1px solid rgba(8, 40, 79, 0.12);
  box-shadow: var(--shadow-soft);
}

.btn-light {
  color: var(--blue-950);
  background: var(--white);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.btn-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 780px;
  padding-top: 172px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(29, 155, 215, 0.22), transparent 34%),
    radial-gradient(circle at 76% 20%, rgba(245, 181, 27, 0.22), transparent 26%),
    linear-gradient(135deg, #f8fbff 0%, #edf5ff 42%, #ffffff 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(8, 40, 79, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 40, 79, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 75%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-600);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--yellow-500), var(--cyan-500));
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--blue-950);
  font-size: clamp(2.55rem, 6vw, 5.45rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.hero-content > p {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--slate-700);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 560px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(8, 40, 79, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero-proof div {
  padding: 22px 20px;
  border-right: 1px solid rgba(8, 40, 79, 0.08);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  display: block;
  color: var(--blue-900);
  font-size: 1.38rem;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 6px;
  color: var(--slate-500);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.visual-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: linear-gradient(145deg, rgba(8, 40, 79, 0.98), rgba(6, 27, 51, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 38px;
  box-shadow: 0 34px 90px rgba(6, 27, 51, 0.28);
}

.visual-card::before {
  position: absolute;
  inset: -24% -20% auto auto;
  width: 300px;
  height: 300px;
  content: "";
  background: rgba(245, 181, 27, 0.24);
  border-radius: 50%;
  filter: blur(6px);
}

.visual-topline {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 10px 14px;
  color: #d9ecff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #43e07f;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(67, 224, 127, 0.14);
}

.floating-panel {
  position: absolute;
  width: min(260px, 72%);
  padding: 18px 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  box-shadow: 0 22px 55px rgba(6, 27, 51, 0.2);
  backdrop-filter: blur(18px);
}

.floating-panel span,
.floating-panel strong {
  display: block;
}

.floating-panel span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-panel strong {
  margin-top: 4px;
  font-size: 1rem;
}

.panel-top {
  top: 52px;
  right: -18px;
  background: rgba(8, 40, 79, 0.82);
}

.panel-bottom {
  left: -20px;
  bottom: 52px;
  background: rgba(18, 101, 168, 0.82);
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -70px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(8, 40, 79, 0.09);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.icon,
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: var(--blue-900);
  background: linear-gradient(135deg, rgba(245, 181, 27, 0.22), rgba(29, 155, 215, 0.16));
  border-radius: 16px;
}

.icon svg,
.service-icon svg {
  width: 27px;
  height: 27px;
}

.icon svg path,
.service-icon svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-float svg path {
  fill: currentColor;
  stroke: none;
}

.trust-grid h2,
.service-card h3,
.work-card h3 {
  margin-bottom: 10px;
  color: var(--blue-950);
  font-size: 1.05rem;
  line-height: 1.28;
}

.trust-grid p,
.service-card p,
.section-heading p,
.about p,
.contact-info p,
.emergency p,
.footer p {
  color: var(--slate-500);
}

.trust-grid p,
.service-card p,
.work-card h3 {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading h2,
.about h2,
.contact-info h2,
.emergency h2 {
  margin-bottom: 18px;
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.section-heading p,
.about p,
.contact-info p,
.emergency p {
  font-size: 1.06rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 262px;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(8, 40, 79, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.service-card.featured {
  color: var(--white);
  background:
    radial-gradient(circle at 84% 12%, rgba(245, 181, 27, 0.3), transparent 30%),
    linear-gradient(145deg, var(--blue-900), var(--blue-950));
}

.service-card.featured h3,
.service-card.featured p {
  color: var(--white);
}

.service-card.featured .service-icon {
  color: var(--blue-950);
  background: linear-gradient(135deg, var(--yellow-500), var(--yellow-400));
}

.why {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(245, 181, 27, 0.18), transparent 28%),
    linear-gradient(135deg, var(--blue-950), var(--blue-900));
}

.why::after {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  content: "";
  background: rgba(29, 155, 215, 0.16);
  border-radius: 50%;
  filter: blur(2px);
}

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: start;
  gap: 54px;
}

.why .section-heading {
  margin-bottom: 0;
}

.why .eyebrow,
.why .section-heading h2 {
  color: var(--white);
}

.why .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.why-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.why-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--blue-950);
  background: linear-gradient(135deg, var(--yellow-500), var(--yellow-400));
  border-radius: 14px;
  font-size: 0.92rem;
}

.why-card h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.08rem;
}

.why-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.works {
  background:
    linear-gradient(180deg, #f8fafc, #eef5fc),
    radial-gradient(circle at top right, rgba(29, 155, 215, 0.14), transparent 30%);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
}

.work-card {
  min-width: 220px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(8, 40, 79, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  scroll-snap-align: start;
}

.work-card > div:last-child {
  padding: 18px;
}

.work-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-image {
  min-height: 180px;
  background-color: var(--blue-900);
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 42%),
    radial-gradient(circle at 78% 26%, rgba(245, 181, 27, 0.5), transparent 18%);
}

.work-image::after {
  display: grid;
  place-items: center;
  width: 100%;
  height: 180px;
  color: rgba(255, 255, 255, 0.74);
  content: "Imagen del trabajo";
  font-weight: 800;
}

.work-image-1 {
  background-color: #0b315f;
}

.work-image-2 {
  background-color: #0f466d;
}

.work-image-3 {
  background-color: #11344a;
}

.work-image-4 {
  background-color: #1265a8;
}

.work-image-5 {
  background-color: #08284f;
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 70px;
}

.about-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-list span {
  padding: 10px 14px;
  color: var(--blue-900);
  background: #edf6ff;
  border: 1px solid rgba(29, 155, 215, 0.16);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.about-card {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  padding: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 24%, rgba(245, 181, 27, 0.34), transparent 26%),
    linear-gradient(145deg, var(--blue-950), var(--blue-800));
  border-radius: 38px;
  box-shadow: 0 28px 80px rgba(8, 40, 79, 0.22);
}

.about-card img {
  position: relative;
  z-index: 1;
  width: min(360px, 100%);
  padding: 22px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.about-card-content {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  backdrop-filter: blur(16px);
}

.about-card-content strong,
.about-card-content span {
  display: block;
}

.about-card-content span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
}

.emergency {
  padding: 72px 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 181, 27, 0.28), transparent 28%),
    linear-gradient(135deg, var(--blue-900), var(--blue-950));
}

.emergency-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 38px;
}

.emergency .eyebrow,
.emergency h2,
.emergency p {
  color: var(--white);
}

.emergency p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact {
  background:
    radial-gradient(circle at 0% 10%, rgba(29, 155, 215, 0.12), transparent 28%),
    #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 46px;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-card {
  display: block;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(8, 40, 79, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.contact-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--slate-500);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-card strong {
  color: var(--blue-900);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(8, 40, 79, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row-full {
  grid-column: 1 / -1;
}

label {
  color: var(--blue-950);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--slate-900);
  background: #f8fafc;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(29, 155, 215, 0.12);
}

.form-note {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: var(--slate-500);
  font-size: 0.9rem;
}

.footer {
  padding: 64px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--blue-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.7fr 0.7fr;
  gap: 38px;
}

.footer-logo {
  width: 190px;
  margin-bottom: 18px;
  padding: 10px;
  background: var(--white);
  border-radius: 14px;
}

.footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 10px;
}

.footer a:hover {
  color: var(--yellow-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--white);
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(34, 197, 94, 0.36);
  transition: transform 0.18s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

@media (max-width: 1040px) {
  .section-padding {
    padding: 84px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
  }

  .hero-grid,
  .about-grid,
  .why-grid,
  .contact-grid,
  .emergency-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .panel-top {
    right: 18px;
  }

  .panel-bottom {
    left: 18px;
  }

  .trust-grid,
  .services-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav {
    min-height: 74px;
  }

  .brand {
    width: 174px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 74px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 14px;
    visibility: hidden;
    background: var(--white);
    border: 1px solid rgba(8, 40, 79, 0.1);
    border-radius: 22px;
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }

  .menu-open .nav-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 14px 12px;
  }

  .nav-menu .btn {
    margin-top: 8px;
  }

  .hero {
    padding-top: 122px;
  }

  h1 {
    font-size: clamp(2.3rem, 11vw, 4rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    border-right: 0;
    border-bottom: 1px solid rgba(8, 40, 79, 0.08);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .floating-panel {
    position: static;
    width: 100%;
    margin-top: 14px;
    background: var(--blue-900);
  }

  .trust-strip {
    margin-top: 0;
    padding-top: 22px;
  }

  .trust-grid,
  .services-grid,
  .why-cards,
  .quote-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-card {
    min-height: 360px;
  }

  .emergency-card .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .section-padding {
    padding: 68px 0;
  }

  .hero {
    padding-top: 108px;
  }

  .visual-card,
  .about-card,
  .quote-form,
  .service-card,
  .trust-grid article {
    border-radius: 22px;
  }

  .visual-card {
    padding: 14px;
  }

  .section-heading h2,
  .about h2,
  .contact-info h2,
  .emergency h2 {
    font-size: 2rem;
  }

  .quote-form {
    padding: 22px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}
