/* ==========================================================================
   Sewa Backhoe & Excavator Temerloh — fresh design (rebuild 2026-07-16)
   Motif: "sunrise band" (navy -> orange -> construction-yellow horizon),
   drawn from the logo. Cream/sand surface, midnight navy, safety-yellow.
   Distinct from siblings (bentong navy+gold, bera green+orange, maran teal).
   Type: Archivo (headings) + Mulish (body).
   ========================================================================== */

:root {
  --navy:        #12263A;
  --navy-deep:   #0B1522;
  --navy-soft:   #1D3A57;
  --yellow:      #FDB714;
  --yellow-2:    #FFC72C;
  --yellow-deep: #DE9500;
  --sun:         #EE7B2E;
  --sun-deep:    #CB5A16;
  --cream:       #F4EFE1;
  --cream-2:     #FBF8F0;
  --paper:       #FFFFFF;
  --text:        #1A222C;
  --muted:       #58636F;
  --muted-2:     #7C8794;
  --line:        #E6DCC8;
  --line-soft:   #EFE8D9;
  --wa:          #25A667;
  --wa-deep:     #1E8A55;

  --font-head: 'Archivo', system-ui, -apple-system, sans-serif;
  --font-body: 'Mulish', system-ui, -apple-system, sans-serif;
  --radius:    12px;
  --radius-sm: 8px;
  --container: 1160px;
  --header-h:  74px;
  --ease:      200ms ease;
  --sunrise:   linear-gradient(90deg, var(--navy-soft) 0%, var(--sun) 48%, var(--yellow) 100%);
  --shadow:    0 10px 30px -12px rgba(11, 21, 34, .28);
  --shadow-sm: 0 4px 14px -6px rgba(11, 21, 34, .22);

  font-family: var(--font-body);
  font-size: clamp(15.5px, 0.5vw + 0.7rem, 17px);
  color: var(--text);
  background: var(--cream);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
body { background: var(--cream); overflow-x: hidden; }
img { max-width: 100%; display: block; }
/* Inline icons default to text-sized; specific rules below override where larger */
svg { width: 1.1em; height: 1.1em; flex-shrink: 0; vertical-align: -0.15em; }

a { color: var(--sun-deep); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--yellow-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.01em;
  font-weight: 800;
}
h1 { font-size: clamp(2.2rem, 4.4vw + 0.7rem, 3.75rem); }
h2 { font-size: clamp(1.7rem, 2.4vw + 0.5rem, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1vw + 0.55rem, 1.4rem); font-weight: 700; }
h4 { font-size: 1.02rem; font-weight: 700; letter-spacing: .02em; }
p { color: var(--text); }
strong { font-weight: 700; color: var(--navy); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.1rem, 3vw, 2rem); }
section { padding: clamp(3.2rem, 6vw, 5.4rem) 0; }
.bg-cream  { background: var(--cream); }
.bg-cream2 { background: var(--cream-2); }
.bg-paper  { background: var(--paper); }
.bg-navy   { background: var(--navy); color: #EAF0F6; }
.bg-navy h2, .bg-navy h3 { color: #fff; }

/* ---- Section heading ---- */
.section-head { max-width: 760px; margin-bottom: 2.6rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 700; font-size: .74rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--sun-deep);
  margin-bottom: .85rem;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--sunrise); }
.center .eyebrow::before, .eyebrow.center::before { display: none; }
.lead { font-size: 1.08rem; color: var(--muted); margin-top: .9rem; }
.bg-navy .lead { color: #B9C6D4; }
.bg-navy .eyebrow { color: var(--yellow); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 700; font-size: .96rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform var(--ease), background var(--ease), color var(--ease), box-shadow var(--ease);
  line-height: 1; letter-spacing: .01em;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: var(--navy); box-shadow: 0 8px 20px -8px rgba(222,149,0,.6); }
.btn-primary:hover { background: var(--yellow-2); color: var(--navy); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-deep); color: #fff; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-soft); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn-outline-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.btn-lg { padding: 1rem 1.8rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---- Topbar ---- */
.topbar { background: var(--navy-deep); color: #C9D5E1; font-size: .8rem; font-weight: 500; letter-spacing: .02em; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 38px; }
.topbar a { color: var(--yellow); }
.topbar-hours { display: inline-flex; align-items: center; gap: .45rem; }
.topbar-hours::before { content: "\25CF"; color: var(--wa); font-size: .6rem; }
@media (max-width: 680px) { .topbar-right { display: none; } }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(244,239,225,.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand img { height: 52px; width: auto; }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-txt b { font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: 1.06rem; letter-spacing: -.01em; }
.brand-txt span { font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; color: var(--sun-deep); font-weight: 700; margin-top: 2px; }
@media (max-width: 460px) { .brand-txt { display: none; } }

.main-nav { display: flex; align-items: center; gap: .35rem; }
.main-nav a { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--navy); padding: .5rem .8rem; border-radius: 7px; transition: color var(--ease), background var(--ease); }
.main-nav a:hover { color: var(--sun-deep); background: rgba(238,123,46,.08); }
.main-nav a.active { color: var(--sun-deep); }
.main-nav a.nav-cta { background: var(--navy); color: #fff; padding: .58rem 1.15rem; border-radius: 999px; margin-left: .4rem; }
.main-nav a.nav-cta:hover { background: var(--navy-soft); color: #fff; }
@media (max-width: 900px) { .main-nav { display: none; } }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.hamburger span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 3px; transition: var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (max-width: 900px) { .hamburger { display: flex; } }

.mobile-menu { display: none; flex-direction: column; background: var(--navy); padding: .5rem 1rem 1.3rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-head); font-weight: 600; color: #EAF0F6; padding: .85rem .4rem; border-bottom: 1px solid rgba(255,255,255,.09); }
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu a:hover { color: var(--yellow); }

/* ---- Hero ---- */
.hero { position: relative; background: var(--navy); color: #EAF0F6; overflow: hidden; padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem); }
.hero::before { content: ""; position: absolute; left: 50%; bottom: -40%; transform: translateX(-50%); width: 140%; height: 120%; background: radial-gradient(ellipse at center, rgba(238,123,46,.42) 0%, rgba(253,183,20,.14) 34%, transparent 62%); pointer-events: none; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: var(--sunrise); }
.hero .container { position: relative; z-index: 2; max-width: 900px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-weight: 700; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--yellow); background: rgba(253,183,20,.1); border: 1px solid rgba(253,183,20,.32); padding: .4rem .9rem; border-radius: 999px; margin-bottom: 1.3rem; }
.hero h1 { color: #fff; max-width: 16ch; }
.hero h1 .hl { color: var(--yellow); }
.hero-sub { font-size: clamp(1.02rem, 1.1vw + .6rem, 1.22rem); color: #C4D0DC; margin-top: 1.2rem; max-width: 60ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }
.hero-chips { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: 2.1rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12); }
.hero-chip { display: inline-flex; align-items: center; gap: .5rem; font-size: .9rem; color: #D6E0EA; font-weight: 600; }
.hero-chip svg { width: 18px; height: 18px; flex: none; color: var(--yellow); }

/* ---- Trust strip ---- */
.strip { background: var(--yellow); color: var(--navy); }
.strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .5rem 1.5rem; padding-top: .95rem; padding-bottom: .95rem; }
.strip span { font-family: var(--font-head); font-weight: 700; font-size: .93rem; display: inline-flex; align-items: center; gap: .5rem; }
.strip .dot { opacity: .45; }

/* ---- Grids ---- */
.grid { display: grid; gap: 1.3rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.svc-card { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.6rem 1.5rem; overflow: hidden; transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease); }
.svc-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--sunrise); transform: scaleX(0); transform-origin: left; transition: transform 280ms ease; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ico { width: 52px; height: 52px; border-radius: 12px; background: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.svc-ico svg { width: 28px; height: 28px; color: var(--yellow); }
.svc-card h3 { margin-bottom: .5rem; }
.svc-card p { color: var(--muted); font-size: .96rem; }
.svc-card .more { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--sun-deep); }
.svc-card .more::after { content: "\2192"; transition: transform var(--ease); }
.svc-card:hover .more::after { transform: translateX(4px); }

/* ---- Split ---- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.checklist { list-style: none; padding: 0; display: grid; gap: .85rem; }
.checklist li { position: relative; padding-left: 2.1rem; color: var(--text); }
.checklist li::before { content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 6px; background: var(--navy) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FDB714' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat; }
.panel { background: var(--navy); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.3rem); color: #EAF0F6; }
.panel .checklist li { color: #DCE5EE; }
.panel .checklist li::before { background-color: var(--yellow); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312263A' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }

/* ---- Coverage pills ---- */
.pills { display: flex; flex-wrap: wrap; gap: .7rem; }
.pill { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-weight: 700; font-size: .95rem; padding: .7rem 1.25rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.22); color: #EAF0F6; background: rgba(255,255,255,.05); transition: var(--ease); }
.pill:hover { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
.pill.lead-pill { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
.pill.lead-pill:hover { background: var(--yellow-2); }

/* ---- Steps ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem 1.4rem; }
.step .n { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--navy); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: var(--yellow); margin-bottom: 1rem; }
.step h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .92rem; }

/* ---- FAQ ---- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: .8rem; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 1.15rem 1.3rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--navy); }
.faq-q .chev { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; transition: var(--ease); }
.faq-q .chev svg { width: 14px; height: 14px; color: var(--sun-deep); }
.faq-item.open .faq-q .chev { background: var(--navy); transform: rotate(180deg); }
.faq-item.open .faq-q .chev svg { color: var(--yellow); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 320ms ease; }
.faq-item.open .faq-a { max-height: 520px; }
.faq-a p { padding: 0 1.3rem 1.25rem; color: var(--muted); }

/* ---- Form ---- */
.form-wrap { max-width: 720px; margin: 0 auto; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); }
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-row.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form-row.two { grid-template-columns: 1fr; } }
.field label { display: block; font-family: var(--font-head); font-weight: 700; font-size: .86rem; color: var(--navy); margin-bottom: .4rem; }
.field input, .field select, .field textarea { width: 100%; font-family: var(--font-body); font-size: .98rem; color: var(--text); padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--cream-2); transition: border-color var(--ease), box-shadow var(--ease); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--sun); box-shadow: 0 0 0 3px rgba(238,123,46,.15); background: #fff; }
.field textarea { min-height: 120px; resize: vertical; }
.form-status { margin-top: 1rem; padding: .85rem 1rem; border-radius: var(--radius-sm); font-size: .93rem; font-weight: 600; display: none; }
.form-status.show { display: block; }
.form-status.success { background: #E7F6EE; color: #1E7A46; border: 1px solid #B7E3C9; }
.form-status.error { background: #FBEAEA; color: #B23A3A; border: 1px solid #EFC4C4; }

/* ---- CTA band ---- */
.cta-band { position: relative; background: var(--navy); color: #fff; overflow: hidden; text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, rgba(238,123,46,.4), transparent 55%); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #C4D0DC; max-width: 52ch; margin: 1rem auto 0; }
.cta-band .btns { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.8rem; }
.cta-phone { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--yellow); margin-top: 1.4rem; letter-spacing: .01em; }

/* ---- Prose ---- */
.prose { max-width: 760px; }
.prose.wide { max-width: 860px; }
.prose h2 { margin: 2.2rem 0 .9rem; }
.prose h3 { margin: 1.7rem 0 .6rem; color: var(--navy); }
.prose p { margin-bottom: 1.05rem; }
.prose ul { margin: 0 0 1.2rem; padding-left: 0; list-style: none; display: grid; gap: .6rem; }
.prose ul li { position: relative; padding-left: 1.6rem; color: var(--text); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px; border-radius: 2px; background: var(--sun); transform: rotate(45deg); }
.prose .callout { background: var(--cream-2); border-left: 4px solid var(--yellow); border-radius: var(--radius-sm); padding: 1.1rem 1.3rem; margin: 1.4rem 0; }
.prose .callout p { margin: 0; color: var(--navy); font-weight: 600; }

/* ---- Page hero ---- */
.page-hero { background: var(--navy); color: #fff; position: relative; overflow: hidden; padding: clamp(2.6rem, 5vw, 3.8rem) 0 clamp(2.4rem, 5vw, 3.4rem); }
.page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--sunrise); }
.page-hero::before { content: ""; position: absolute; right: -10%; top: -30%; width: 60%; height: 160%; background: radial-gradient(ellipse at center, rgba(238,123,46,.28), transparent 60%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #C4D0DC; margin-top: .8rem; max-width: 60ch; }
.crumbs { font-size: .84rem; color: #93A3B4; margin-bottom: 1rem; font-weight: 600; }
.crumbs a { color: var(--yellow); }
.crumbs span { opacity: .6; margin: 0 .4rem; }

/* ---- Article layout ---- */
.article-grid { display: grid; grid-template-columns: 1fr 320px; gap: clamp(1.8rem, 4vw, 3rem); align-items: start; }
@media (max-width: 940px) { .article-grid { grid-template-columns: 1fr; } }
.aside-card { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 1.7rem 1.5rem; position: sticky; top: calc(var(--header-h) + 16px); }
.aside-card h3 { color: #fff; font-size: 1.2rem; }
.aside-card p { color: #C4D0DC; font-size: .93rem; margin: .7rem 0 1.2rem; }
.aside-card .btn { width: 100%; margin-bottom: .6rem; }
.aside-list { list-style: none; padding: 0; margin: 1.4rem 0 0; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.2rem; display: grid; gap: .55rem; }
.aside-list a { color: #DCE5EE; font-weight: 600; font-size: .93rem; display: flex; align-items: center; gap: .5rem; }
.aside-list a::before { content: "\2192"; color: var(--yellow); }
.aside-list a:hover { color: var(--yellow); }

/* ---- Footer ---- */
.site-footer { background: var(--navy-deep); color: #A9B7C6; padding: clamp(2.8rem, 5vw, 4rem) 0 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 64px; margin-bottom: 1rem; border-radius: 10px; }
.footer-brand p { font-size: .92rem; color: #93A3B4; max-width: 34ch; }
.footer-col h4 { color: #fff; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.footer-col a { color: #A9B7C6; font-size: .93rem; }
.footer-col a:hover { color: var(--yellow); }
.footer-contact { display: grid; gap: .7rem; }
.footer-contact div { font-size: .93rem; color: #A9B7C6; display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--yellow); flex: none; margin-top: 3px; }
.footer-contact a { color: #CBD6E2; }
.footer-bottom { margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.09); font-size: .84rem; color: #7C8794; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; }
.footer-bottom a { color: #A9B7C6; }

/* ---- Floating mobile CTA ---- */
.floating-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none; gap: 1px; background: rgba(11,21,34,.12); box-shadow: 0 -6px 20px -8px rgba(11,21,34,.4); }
.floating-cta a { flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .95rem; font-family: var(--font-head); font-weight: 700; font-size: .96rem; }
.floating-cta svg { width: 19px; height: 19px; }
.fc-call { background: var(--navy); color: #fff; }
.fc-wa { background: var(--wa); color: #fff; }
@media (max-width: 900px) { .floating-cta { display: flex; } body { padding-bottom: 56px; } }

/* ---- Utilities ---- */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 1.6rem; } .mt-3 { margin-top: 2.4rem; }
.center-btns { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 2.4rem; }
.text-center { text-align: center; }
