/* =============================
   🎨 GLOBAL VARIABLES
============================= */
:root {
  --primary: #1B2B4B;        /* Navy — trust, authority */
  --primary-soft: #4A72B0;   /* Lighter navy */
  --primary-strong: #0D1B2A; /* Darkest navy */
  --secondary: #0D1B2A;      /* Near-black navy */
  --hover: #243A65;          /* Mid navy hover */
  --accent: #C9A96E;         /* Gold — premium, quality */
  --accent-soft: rgba(201,169,110,0.14);
  --success: #2D7A4F;        /* Dark green */
  --success-soft: #34d399;
  --success-strong: #15803d;
  --urgent: #f59e0b;         /* Amber */
  --urgent-strong: #d97706;
  --whatsapp: #25D366;
  --dark: #0D1B2A;
  --muted: #64748b;
  --bg: #ffffff;
  --light: #F3F6FB;          /* Light steel blue tint */
  --outline: #93C5FD;
  --shadow-navy-1: rgba(13,27,42,.08);
  --shadow-navy-2: rgba(13,27,42,.16);
  --shadow-blue-1: rgba(13,27,42,.08);
  --shadow-blue-2: rgba(13,27,42,.16);
}

/* Basic reset and typography */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--dark);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6,
.display-5,
.brand .title {
  font-family: "Sora", "DM Sans", "Segoe UI", Arial, sans-serif;
  letter-spacing: -.01em;
}

/* =============================
   HEADER STICKY
============================= */
.urgency-banner {
  background: linear-gradient(90deg, #0D1B2A 0%, #1B2B4B 100%);
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .01em;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(245,158,11,.45);
}
.urgency-text { line-height: 1.25; }
.urgency-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: .55rem;
  background: var(--urgent);
  box-shadow: 0 0 0 0 rgba(245,158,11,.55);
  animation: availability-pulse 1.6s infinite;
}
@keyframes availability-pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245,158,11,.55); }
  70% { transform: scale(1); box-shadow: 0 0 0 9px rgba(245,158,11,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}

.header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: var(--bg);
  border-bottom: 1px solid #eef2f7;
}
.header .brand {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: .6rem;
  min-width: 0;
  padding: .5rem 0;
}
.brand picture {
  display: block;
  flex: 0 0 auto;
}
.brand img {
  display: block;
  width: 190px;
  height: auto;
  max-width: 100%;
  flex: 0 0 auto;
  object-fit: contain;
}
.brand .title {
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.15;
  margin: 0;
}
.header-cta { white-space: nowrap; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  padding: .45rem .72rem;
  border-radius: 999px;
  border: 1px solid rgba(27,43,75,.18);
  background: #f3f6fb;
  color: var(--primary-strong);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.header-phone i { font-size: .86rem; }
.header-phone:hover {
  color: var(--primary-strong);
  border-color: rgba(27,43,75,.3);
  box-shadow: 0 10px 22px var(--shadow-blue-1);
  transform: translateY(-1px);
}
.header-phone-label { display: none; }
.header-phone-desktop {
  padding: .42rem .68rem;
}

/* =============================
   BUTTONS (Bootstrap 5 overrides)
============================= */
.btn {
  font-family: "Sora", "DM Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  border-radius: 8px;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease;
}
.btn:focus-visible {
  outline: 3px solid var(--outline);
  outline-offset: 2px;
}
.btn:active { transform: translateY(0); }

.btn-primary, .btn-success {
  font-size: 1.05rem;
  padding: 12px 22px;
  border: 1px solid transparent;
  color: #fff;
  background-image: linear-gradient(
    140deg,
    var(--primary-soft) 0%,
    var(--primary) 55%,
    var(--primary-strong) 100%
  );
  box-shadow: 0 10px 24px var(--shadow-blue-1);
}
.btn-primary {
  border-color: rgba(27,43,75,.38);
  box-shadow: 0 12px 24px rgba(15,23,42,.14);
}
.btn-primary:hover {
  border-color: rgba(27,43,75,.48);
  background-image: linear-gradient(
    140deg,
    #6B8FCC 0%,
    var(--hover) 55%,
    var(--primary-strong) 100%
  );
  box-shadow: 0 14px 30px var(--shadow-blue-2);
}
.btn-success {
  border-color: rgba(21,128,61,.45);
  background-image: linear-gradient(
    140deg,
    var(--success-soft) 0%,
    var(--success) 55%,
    var(--success-strong) 100%
  );
  box-shadow: 0 12px 26px rgba(22,163,74,.22);
}
.btn-success:hover {
  border-color: rgba(21,128,61,.6);
  background-image: linear-gradient(
    140deg,
    #4ade80 0%,
    #22c55e 55%,
    var(--success-strong) 100%
  );
  box-shadow: 0 14px 30px rgba(21,128,61,.28);
}

/* Keep WhatsApp channel identity */
a.btn-success[href*="wa.me"] {
  background-image: linear-gradient(140deg, #2bd475 0%, #25D366 55%, #1ea95d 100%);
  border-color: rgba(30,169,93,.55);
  box-shadow: 0 10px 22px rgba(30,169,93,.24);
}
a.btn-success[href*="wa.me"]:hover {
  background-image: linear-gradient(140deg, #32dd7d 0%, #28da6c 55%, #1b9955 100%);
  border-color: rgba(30,169,93,.72);
  box-shadow: 0 14px 28px rgba(30,169,93,.3);
}

.btn[disabled], .btn:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

/* =============================
   FORM / CONTROLES
============================= */
.form-control {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: .65rem .8rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-control::placeholder { color: #9aa4b2; }
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 .2rem rgba(27,43,75,.16);
}
.form-control:valid:not(:placeholder-shown) {
  border-color: #16a34a;
  box-shadow: 0 0 0 .2rem rgba(22,163,74,.16);
  background-color: #fbfffd;
}
.form-control:valid:not(:placeholder-shown):focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 .2rem rgba(22,163,74,.24);
}
.form-check-input:checked {
  background-color: #16a34a;
  border-color: #16a34a;
}
.form-check-input:focus {
  box-shadow: 0 0 0 .2rem rgba(27,43,75,.24);
  border-color: var(--primary);
}
.small.muted, .muted { color: var(--muted); }
/* Keep the honeypot field fully hidden from users */
.hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px; height: 1px; overflow: hidden;
}

/* Form messaging */
#formMsg.text-success { color: #16a34a !important; }
#formMsg.text-danger  { color: #dc2626 !important; }

/* =============================
   HERO
============================= */
.hero {
  /* Make sure the path is correct from this CSS file.
     If CSS is in /css, use ../images/... */
  background:
    linear-gradient(160deg, rgba(10,20,50,.72), rgba(10,20,50,.50)),
    url('../images/history.jpg') center/cover no-repeat;
  color: #fff;
  padding: 40px 0 20px;
  min-height: 60vh;
  display: flex; align-items: center;
}
.hero h1 { font-weight: 800; line-height: 1.1; max-width: 52ch; }
.hero .lead { opacity: .98; max-width: 52ch; }
.hero .card { border: 0; border-radius: 16px; }
/* If text still inherits white, force dark color inside the card */
.hero .card *:not(.btn):not(.btn *) { color: var(--dark); }

/* =============================
   SECCIONES
============================= */
.section { padding: 56px 0; }
.social-proof-bar {
  background: #fff;
  border-top: 1px solid rgba(27,43,75,.08);
  border-bottom: 1px solid rgba(27,43,75,.08);
}

.cta-focus {
  background: linear-gradient(135deg, #0D1B2A 0%, #1B2B4B 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-focus::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 35%),
    radial-gradient(circle at 92% 78%, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 38%);
  pointer-events: none;
}
.cta-focus-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.cta-focus-kicker {
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .74rem;
  font-weight: 700;
  opacity: .9;
}
.cta-focus p { color: rgba(255,255,255,.9); }
.cta-focus .btn-primary {
  border-color: rgba(255,255,255,.45);
  box-shadow: 0 14px 30px rgba(10,30,80,.25);
}
.cta-focus .btn-primary:hover {
  box-shadow: 0 16px 32px rgba(10,30,80,.3);
}
.cta-focus .btn-outline-light {
  border-width: 2px;
}

/* =============================
   CARDS
============================= */
.card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 26px var(--shadow-blue-1);
  background-color: #fff;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px var(--shadow-blue-2); }

.card.glass {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 16px 36px var(--shadow-blue-2);
  
}

.floating-card {
  border-radius: 16px;
  box-shadow: 0 14px 34px var(--shadow-blue-1);
}
.floating-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px var(--shadow-blue-2);
}

/* Icon inside process cards */
.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eefbf8;
  box-shadow: inset 0 0 0 1px rgba(27,43,75,.18);
  line-height: 0;
}
.icon-circle i {
  font-size: 18px;
  display: block;
  line-height: 1;
}

/* =============================
   LISTAS
============================= */
.list-group-item {
  display:flex; gap:.6rem; align-items:flex-start;
  border: 1px solid #eef2f7;
}
.list-group-item i { margin-top:.2rem; }
.text-success, .check { color: var(--success) !important; }
.badge.bg-success {
  background-color: var(--success) !important;
}

/* =============================
   FAQ (Bootstrap 5 Accordion)
============================= */
.faq .accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  overflow: hidden; /* Keep rounded border corners clean */
}
.faq .accordion-item + .accordion-item {
  margin-top: .75rem;
}

.faq .accordion-button {
  font-weight: 700;
  color: var(--dark);
}
.faq .accordion-button:not(.collapsed) {
  background-color: #f7faff;
  color: var(--secondary);
  box-shadow: inset 0 -1px 0 rgba(15,30,80,.14);
}
.faq .accordion-button:focus {
  box-shadow: 0 0 0 .2rem rgba(27,43,75,.24);
  border-color: var(--primary);
}


/* =============================
   MOBILE STICKY CTA
============================= */
.sticky-bottom-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 1040;
  background: rgba(255,255,255,.94);
  -webkit-backdrop-filter: saturate(120%) blur(6px);
  backdrop-filter: saturate(120%) blur(6px);
  border-top: 1px solid #e5e7eb;
  padding: .65rem .9rem;
  display: flex; gap: .6rem; align-items: center; justify-content: space-between;
  box-shadow: 0 -8px 24px var(--shadow-blue-1);
}
.sticky-bottom-cta strong {
  flex: 1 1 auto;
  min-width: 0;
}
.sticky-bottom-cta-actions {
  flex: 0 0 auto;
}
.sticky-bottom-cta-actions .btn {
  white-space: nowrap;
}
@media (min-width: 768px) { .sticky-bottom-cta { display: none; } }

/* =============================
   WHATSAPP FLOAT
============================= */
.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 84px; /* above the mobile sticky CTA */
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 12px 28px var(--shadow-blue-2);
  z-index: 1060;
  font-size: 30px;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease;
  animation: whatsapp-blink 1.35s ease-in-out infinite;
}
.whatsapp-float i {
  display: block;
  line-height: 1;
}
.whatsapp-float:hover { filter: brightness(1.05); }
@media (max-width: 767px) { .whatsapp-float { bottom: 96px; } }

@keyframes whatsapp-blink {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 12px 28px var(--shadow-blue-2);
  }
  50% {
    transform: scale(1.08);
    opacity: .82;
    box-shadow: 0 0 0 10px rgba(37,211,102,0), 0 14px 34px rgba(15,30,80,.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    animation: none;
  }
}

/* =============================
   TESTIMONIALS
============================= */
.testimonials .card {
  background-color: #f8f9fa;
  border-left: 5px solid var(--secondary);
}
.testimonials p { font-style: italic; }
.airtasker-proof-strip {
  padding: .6rem .75rem;
  border-radius: 14px;
  border: 1px solid rgba(27,43,75,.12);
  background: linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
}
.airtasker-proof-logo {
  max-height: 56px;
  object-fit: contain;
}
.review-disclosure {
  margin-top: .9rem;
  padding: .75rem .9rem;
  border-radius: 12px;
  border: 1px solid rgba(27,43,75,.12);
  background: rgba(255,255,255,.88);
  color: #475569;
  font-size: .88rem;
  line-height: 1.45;
}
.review-disclosure strong {
  color: var(--secondary);
}
.review-link-note {
  margin-top: .75rem;
  color: var(--muted);
  font-size: .88rem;
}
.review-link-note a {
  color: var(--primary-strong);
  font-weight: 700;
}
.review-link-note a:hover {
  color: var(--primary);
}
.testimonial-aggregate {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .42rem;
}
.testimonial-aggregate-stars {
  color: #d97706;
  font-size: 1rem;
  letter-spacing: .08em;
}
.testimonial-aggregate strong {
  color: var(--secondary);
  font-family: "Sora", "DM Sans", "Segoe UI", Arial, sans-serif;
}
.testimonial-card {
  border: 1px solid rgba(27,43,75,.12);
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", "DM Sans", "Segoe UI", Arial, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, #1B2B4B 0%, #243A65 100%);
  box-shadow: 0 8px 16px rgba(13,27,42,.22);
}
.testimonial-name {
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  font-size: .9rem;
}
.testimonial-verified-inline {
  display: inline-flex;
  align-items: center;
  gap: .34rem;
  margin-top: .33rem;
  font-size: .68rem;
  font-weight: 700;
  color: #166534;
  background: #ecfdf3;
  border: 1px solid rgba(22,101,52,.2);
  border-radius: 999px;
  padding: .16rem .48rem;
}
.testimonial-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  padding: .28rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(27,43,75,.14);
  background: rgba(27,43,75,.06);
  color: var(--primary-strong);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  white-space: nowrap;
}
.testimonial-quote {
  color: #0f172a;
  font-size: .97rem;
  line-height: 1.5;
  font-style: italic;
  border-left: 3px solid rgba(27,43,75,.28);
  padding-left: .8rem;
  margin-left: 0;
}

/* =============================
   FOOTER
============================= */
footer {
  background-color: #0f172a;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}
footer a {
  color: #fff;
  margin: 0 10px;
  font-size: 20px;
  transition: color .15s ease;
}
footer a:hover { color: var(--primary); }

/* =============================
   UTILITIES / RESPONSIVE
============================= */

/* Responsive improvements */
@media (max-width: 992px) {
  .hero h1 { font-size: 2rem; }
  .hero .lead { font-size: 1rem; }
}
@media (min-width: 1200px) {
  .brand img {
    width: 235px;
  }
}
@media (max-width: 767px) {
  .brand img {
    width: 145px;
  }
  .brand .title {
    font-size: .88rem;
    line-height: 1.2;
    max-width: 160px;
  }
  .header-phone {
    padding: .4rem .6rem;
    font-size: .82rem;
  }
  .header-phone-number { display: none; }
  .header-phone-label { display: inline; }
  .testimonial-card .card-body {
    padding: .98rem;
  }
  .testimonial-head {
    gap: .45rem;
    margin-bottom: .75rem !important;
  }
  .testimonial-avatar {
    width: 38px;
    height: 38px;
    font-size: .78rem;
  }
  .testimonial-name {
    font-size: .84rem;
  }
  .testimonial-verified-inline {
    font-size: .62rem;
    padding: .14rem .4rem;
  }
  .testimonial-rating {
    font-size: .82rem;
    letter-spacing: .05em;
  }
  .testimonial-quote {
    font-size: .91rem;
    line-height: 1.45;
    margin-bottom: .75rem !important;
  }
}
@media (max-width: 420px) {
  .testimonial-card .card-body {
    padding: .9rem;
  }
  .testimonial-head {
    align-items: center !important;
  }
  .testimonial-verified-inline {
    font-size: .6rem;
    padding: .12rem .38rem;
  }
}

@media (max-width: 400px) {
  .brand .title {
    display: none;
  }
}

/* Accessibility / reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* Unified pricing tables */
.price-table-min thead th {
  font-weight: 600;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.price-table-min tbody td {
  padding-top: .85rem;
  padding-bottom: .85rem;
  border-top: 1px solid rgba(0,0,0,.04);
  vertical-align: middle;
}

.price-table-min tbody tr:hover td {
  background: rgba(0,0,0,.015);
}

/* Section background */
.section-light { background-color: var(--light); }

/* CTA strip */
.minimal-cta {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 24px var(--shadow-blue-1);
  border-radius: .5rem;
}

/* Modern minimal pricing grid */
.price-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  max-width: 100%;
}

@media (min-width: 481px) {
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* On large screens (desktop), use 4 columns */
@media (min-width: 992px) {
  .price-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.pricing-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  border: 1px solid rgba(0,0,0,.06);
}
.pricing-card .card-body {
  min-width: 0;
  max-width: 100%;
  padding: 1rem;
}
.pricing-card:hover,
.pricing-card:focus-visible { outline:3px solid var(--outline); outline-offset:2px; }
.pricing-card-popular {
  border: 2px solid var(--primary);
  box-shadow: 0 14px 30px rgba(27,43,75,.22);
  overflow: visible;
}
.pricing-card-popular .card-body {
  padding-top: 2rem;
}
.popular-badge {
  position: absolute;
  top: -12px;
  right: 14px;
  z-index: 2;
  padding: .34rem .66rem;
  border-radius: 999px;
  border: 1px solid rgba(201,169,110,.55);
  background: linear-gradient(135deg, #C9A96E 0%, #b8924a 100%);
  color: #fff;
  font-size: .72rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: normal;
  text-align: center;
  box-shadow: 0 10px 18px rgba(29,78,216,.35);
}
@media (max-width: 576px) {
  .popular-badge {
    top: -10px;
    right: 10px;
    font-size: .68rem;
    padding: .24rem .55rem;
  }
}
.pill {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: .2rem .5rem;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  font-size: .8rem;
  line-height: 1.2;
  color: #333;
  background: #fff;
  white-space: normal;
}
.pill strong { margin-left: .25rem; }
.pricing-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  min-width: 0;
  max-width: 100%;
}
.pricing-card-meta .pill {
  min-width: 0;
}
.popular-badge {
  max-width: calc(100% - 24px);
}
.addons-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(27,43,75,.16);
  background: linear-gradient(135deg, rgba(27,43,75,.08) 0%, rgba(255,255,255,.98) 100%);
  color: var(--primary-strong);
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(15,30,80,.08);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.addons-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(27,43,75,.26);
  box-shadow: 0 16px 32px rgba(15,30,80,.12);
  color: var(--primary-strong);
}
.addons-toggle:focus-visible {
  outline: 3px solid var(--outline);
  outline-offset: 2px;
}
.addons-toggle-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.addons-toggle-eyebrow {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--secondary);
}
.addons-toggle-label {
  font-family: "Sora", "DM Sans", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.addons-toggle-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 18px rgba(27,43,75,.22);
  transition: transform .15s ease;
}
.addons-toggle[aria-expanded="true"] .addons-toggle-icon {
  transform: rotate(180deg);
}

@media (max-width: 480px) {
  #pricing {
    overflow-x: hidden;
  }
  #pricing .container {
    max-width: 100%;
  }
  #pricing .d-flex.flex-wrap.align-items-end.justify-content-between {
    gap: .75rem;
  }
  #pricing .d-flex.flex-wrap.align-items-end.justify-content-between .btn {
    width: 100%;
  }
  .price-grid {
    gap: 10px;
  }
  .pricing-card .card-body {
    padding: .9rem;
  }
  .pricing-card-popular .card-body {
    padding-top: 1.6rem;
  }
  .pricing-card .h4 {
    font-size: 1.3rem;
    line-height: 1.15;
  }
  .pricing-card .muted.small {
    font-size: .8rem;
  }
  .pricing-card-meta {
    gap: .4rem;
    margin-bottom: .65rem !important;
  }
  .pill {
    padding: .18rem .46rem;
    font-size: .75rem;
  }
  .popular-badge {
    right: 8px;
    max-width: calc(100% - 16px);
  }
  .addons-toggle {
    padding: .9rem 1rem;
    gap: .8rem;
  }
  .addons-toggle-label {
    font-size: .92rem;
  }
  .addons-toggle-icon {
    width: 2rem;
    height: 2rem;
  }
}

/* Add-ons list style to stay secondary */
.addon-list .list-group-item {
  padding-top: .75rem;
  padding-bottom: .75rem;
}
.addon-list .list-group-item strong { font-weight: 700; }

/* =============================
   Add-ons: selected state
   (works with .selected and/or aria-pressed="true")
============================= */
.addon-item {
  position: relative;
  cursor: pointer;
  transition: background .12s ease, border-color .12s ease, box-shadow .12s ease, transform .12s ease;
  border-left: 3px solid transparent; /* selected accent */
}


/* Subtle hover when NOT selected */
.addon-item:not(.selected):not([aria-pressed="true"]):hover {
  background: #f9fafb;
  border-color: rgba(0,0,0,.06);
}

/* Selected state (uses --success) */
.addon-item.selected,
.addon-item[aria-pressed="true"] {
  background: #ffffff;
  border-color: rgba(0,0,0,.12) !important;
  border-left-color: var(--success);
  box-shadow: 0 10px 24px var(--shadow-blue-1);
  transform: translateY(-1px);
}

/* "Selected" badge next to price (without editing HTML) */
.addon-item.selected strong,
.addon-item[aria-pressed="true"] strong { position: relative; padding-right: 74px; }

.addon-item.selected strong::after,
.addon-item[aria-pressed="true"] strong::after {
  content: "Selected";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px; line-height: 1;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: #e9f8ee;            /* very light green */
  color: #116a36;                  /* green text */
  font-weight: 600;
}

/* Visual checkmark on the right (inline SVG, no dependencies) */
.addon-item.selected::after,
.addon-item[aria-pressed="true"]::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 20px; height: 20px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-image: url("data:image/svg+xml;utf8,\
    <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231B2B4B'>\
      <path d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm-1 14-4-4 1.41-1.41L11 12.17l5.59-5.59L18 8l-7 8Z'/>\
    </svg>");
}

/* Accessibility: visible focus for keyboard navigation */
.addon-item:focus-visible {
  outline: 3px solid var(--outline);
  outline-offset: 2px;
  border-radius: 8px;
}

.btn-outline-light {
  border-width: 1px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.handyman-showcase-card {
  height: 100%;
  border: 1px solid rgba(27,43,75, 0.1);
}

.handyman-showcase-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ccfbf1 0%, #ffffff 100%);
  color: var(--primary-strong);
  line-height: 0;
  box-shadow: inset 0 0 0 1px rgba(27,43,75, 0.12);
}

.handyman-showcase-icon i {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.pricing-card.is-active,
.price-card.is-active {
  border: 2px solid var(--primary);
  box-shadow: 0 16px 30px rgba(27,43,75, 0.22);
}

.service-checklist li,
.scope-notes li {
  margin-bottom: 0.55rem;
}

.hero-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(103, 232, 249, 0.85);
  margin-bottom: 14px;
}

.hero h1 {
  font-family: "Sora", "DM Sans", sans-serif;
  font-size: clamp(1.65rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  max-width: 22ch;
  margin-bottom: 16px;
}

.hero-lead {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 38ch;
  margin-bottom: 24px;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.trust-pill i {
  font-size: 0.68rem;
  color: rgba(103, 232, 249, 0.9);
}

.urgency-banner {
  background: linear-gradient(90deg, #0D1B2A 0%, #1B2B4B 100%);
  border-bottom-color: rgba(251, 191, 36, 0.35);
}

.header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
}

.header-phone {
  background: #f8fbfa;
  border-color: rgba(27,43,75, 0.14);
  color: var(--secondary);
}

.hero {
  position: relative;
  padding: 56px 0 28px;
  min-height: 68vh;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(45, 212, 191, 0.15) 0%, rgba(45, 212, 191, 0) 34%),
    radial-gradient(circle at 86% 78%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 28%);
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  background: #1B2B4B;
  color: #ffffff;
  font-family: "Sora", "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 16px 32px rgba(27,43,75, 0.35);
}

.btn-hero-primary:hover {
  background: #243A65;
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(27,43,75, 0.4);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.btn-hero-secondary:hover {
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.btn-hero-secondary .wa-icon {
  color: #25d366;
}

.hero-local-line {
  margin-top: 22px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.42);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-local-line i {
  font-size: 0.7rem;
}

.hero-form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px 24px;
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.2);
}

.form-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  max-width: 100%;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f0fdf9;
  border: 1px solid rgba(27,43,75, 0.2);
  color: #0D1B2A;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.form-badge i {
  font-size: 0.65rem;
}

.form-heading {
  font-family: "Sora", "DM Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.form-sub {
  font-size: 0.925rem;
  color: #64748b;
  line-height: 1.45;
  margin-bottom: 18px;
}

.form-label-custom {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.form-label-custom .opt {
  font-weight: 400;
  color: #94a3b8;
}

.form-control-custom {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  font-size: 0.975rem;
  color: #0f172a;
  background: #ffffff;
  font-family: inherit;
  line-height: 1.5;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-control-custom:focus {
  border-color: #1B2B4B;
  box-shadow: 0 0 0 3px rgba(27,43,75, 0.1);
}

.form-control-custom::placeholder {
  color: #cbd5e1;
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 76px;
}

.field-hint {
  font-size: 0.845rem;
  color: #94a3b8;
  margin-top: 3px;
}

.starting-rate-card {
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(27,43,75, 0.14);
  background: linear-gradient(
    180deg,
    rgba(240, 253, 250, 0.95) 0%,
    rgba(255, 255, 255, 0.98) 100%
  );
}

.starting-rate-label {
  display: block;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1B2B4B;
  margin-bottom: 2px;
}

.starting-rate-value {
  display: block;
  font-family: "Sora", "DM Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.starting-rate-note {
  display: block;
  margin-top: 4px;
  font-size: 0.845rem;
  color: #64748b;
  line-height: 1.4;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 14px;
}

.consent-row input[type="checkbox"] {
  margin-top: 2px;
  accent-color: #1B2B4B;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.consent-row span {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.45;
}

.consent-row a {
  color: #1B2B4B;
}

.btn-submit {
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  background: #1B2B4B;
  color: #ffffff;
  font-family: "Sora", "DM Sans", sans-serif;
  font-size: 1.075rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s ease;
}

.btn-submit:hover {
  background: #243A65;
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.response-promise {
  text-align: center;
  font-size: 0.845rem;
  color: #94a3b8;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.wa-alt-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 9px;
  font-size: 0.905rem;
  font-weight: 600;
  color: #1B2B4B;
  text-decoration: none;
}

.wa-alt-link:hover {
  color: #243A65;
  text-decoration: underline;
}

.wa-alt-link i {
  color: #25d366;
}

#formMsg {
  font-size: 0.82rem;
  text-align: center;
  min-height: 1.2em;
  margin-bottom: 6px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(27,43,75, 0.08);
  border: 1px solid rgba(27,43,75, 0.12);
  color: var(--primary-strong);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-heading-group {
  text-align: center;
  margin-bottom: 1.35rem;
}

.social-proof-bar {
  background: linear-gradient(180deg, #fbfdfc 0%, #f6faf9 100%);
}

.social-proof-row {
  padding: 0.95rem 0;
}

.social-proof-col {
  display: flex;
}

.social-proof-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  text-align: left;
  overflow: hidden;
}

.proof-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  line-height: 0;
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.1) 0%, rgba(255, 255, 255, 0.98) 100%);
  color: var(--primary-strong);
  box-shadow:
    inset 0 0 0 1px rgba(27,43,75, 0.1),
    0 4px 10px rgba(15, 23, 42, 0.035);
}

.proof-icon i {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.proof-icon i::before {
  display: block;
  line-height: 1;
}

.proof-copy {
  display: grid;
  gap: 0.16rem;
  min-width: 0;
}

.proof-title {
  display: block;
  margin: 0;
  font-family: "Sora", "DM Sans", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--secondary);
}

.proof-note {
  display: block;
  margin: 0;
  max-width: 30ch;
  line-height: 1.35;
  color: #64748b;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.work-gallery-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfb 100%);
  padding-top: 42px;
  padding-bottom: 42px;
}

.work-gallery-card {
  overflow: hidden;
  border: 1px solid rgba(27,43,75, 0.08);
}

.work-gallery-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.work-gallery-image-team {
  object-position: center 42%;
}

.work-gallery-image-kitchen {
  object-position: center 58%;
}

.work-gallery-image-bathroom {
  object-position: center 74%;
}

.work-gallery-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.55rem;
  padding: 0.3rem 0.58rem;
  border-radius: 999px;
  background: rgba(27,43,75, 0.08);
  color: var(--primary-strong);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-result {
  display: inline-flex;
  margin-top: 0.8rem;
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  background: rgba(27,43,75, 0.08);
  color: var(--primary-strong);
  font-size: 0.76rem;
  font-weight: 700;
}

.pricing-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.65rem;
}

.pricing-intro .badge {
  background: rgba(27,43,75, 0.08);
  border: 1px solid rgba(27,43,75, 0.14);
  color: var(--primary-strong);
}

.pricing-reassurance {
  margin-top: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(27,43,75, 0.06) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid rgba(27,43,75, 0.1);
  color: #475569;
  font-size: 0.92rem;
}

.pricing-reassurance strong {
  color: var(--secondary);
}

.airtasker-proof-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.airtasker-proof-copy {
  flex: 1 1 280px;
}

.airtasker-proof-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.airtasker-proof-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.34rem 0.58rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(27,43,75, 0.12);
  color: #334155;
  font-size: 0.78rem;
  font-weight: 700;
}

.faq .accordion-body {
  color: #475569;
  line-height: 1.65;
}

.sticky-bottom-cta {
  background: rgba(255, 255, 255, 0.97);
}

.sticky-bottom-cta strong {
  color: var(--secondary);
}

.card,
.floating-card,
.pricing-card,
.testimonial-card,
.minimal-cta {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.card:hover,
.floating-card:hover {
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.09);
}

@media (max-width: 767px) {
  .hero {
    padding: 36px 0 32px;
    min-height: auto;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-cta-group {
    max-width: 100%;
  }

  .hero-local-line {
    font-size: 0.72rem;
  }

  .social-proof-item {
    padding: 0.95rem 0.9rem;
  }

  .work-gallery-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .work-gallery-image {
    height: 220px;
  }

  .proof-title,
  .proof-note {
    max-width: none;
  }

  .airtasker-proof-strip {
    text-align: center;
    justify-content: center;
  }

  .airtasker-proof-copy {
    flex-basis: 100%;
  }

  .airtasker-proof-badges {
    justify-content: center;
  }

  .pricing-intro {
    gap: 0.45rem;
  }
}

/* =============================
   TYPOGRAPHY — PLAYFAIR + INTER
============================= */
body {
  font-family: "Inter", "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1, h2, h3,
.hero h1,
.section-heading-group h2,
.form-heading {
  font-family: "Playfair Display", "Sora", Georgia, serif;
  letter-spacing: -0.02em;
}

h4, h5, h6,
.btn,
.btn-hero-primary,
.btn-hero-secondary,
.btn-submit,
.section-eyebrow,
.form-badge,
.hero-kicker,
.proof-title {
  font-family: "Sora", "Inter", "DM Sans", sans-serif;
}

/* =============================
   GOLD ACCENTS — conversion signals
============================= */
.hero-kicker {
  color: rgba(201, 169, 110, 0.92);
}

.trust-pill {
  border-color: rgba(201, 169, 110, 0.22);
  background: rgba(201, 169, 110, 0.07);
}

.trust-pill i {
  color: rgba(201, 169, 110, 0.85);
}

.section-eyebrow {
  background: rgba(201, 169, 110, 0.1);
  border-color: rgba(201, 169, 110, 0.22);
  color: #8a6830;
}

.form-badge {
  background: rgba(201, 169, 110, 0.1);
  border-color: rgba(201, 169, 110, 0.28);
  color: #7a5c24;
}

.starting-rate-label {
  color: #8a6830;
}

/* Gold top-border on form card — premium feel */
.hero-form-card {
  border-top: 3px solid #C9A96E;
}

/* =============================
   FOOTER — dark navy, 3 columns
============================= */
.site-footer {
  background: linear-gradient(180deg, #0D1B2A 0%, #111827 100%);
  color: #e2e8f0;
  padding: 3rem 0 1.5rem;
}

.footer-shell {
  display: grid;
  gap: 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.footer-brand-name {
  color: #fff;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.footer-brand-copy {
  color: #cbd5e1;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.footer-abn {
  margin-top: 0.6rem;
  color: #94a3b8;
  font-size: 0.82rem;
}

.footer-col-title {
  color: #fff;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-link-list a {
  color: #dbeafe;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.footer-link-list a:hover {
  color: #C9A96E;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #cbd5e1;
  margin-bottom: 0.55rem;
}

.footer-contact-item i {
  color: #C9A96E;
  margin-top: 0.15rem;
  flex: 0 0 auto;
  font-size: 0.82rem;
}

.footer-contact-item a {
  color: #dbeafe;
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: #C9A96E;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1rem;
  padding-top: 1.2rem;
  color: #94a3b8;
  font-size: 0.84rem;
}

.footer-socials {
  display: inline-flex;
  gap: 0.6rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  background: rgba(201, 169, 110, 0.18);
  border-color: rgba(201, 169, 110, 0.5);
  color: #C9A96E;
}

@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* ── Multi-step form ─────────────────────────────────────────────────────── */
[data-form-step] { transition: opacity .15s ease; }
[data-form-step][hidden] { display: none !important; }

#step-indicator {
  font-size: .75rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}

.btn-link-back {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: none;
  border: none;
  padding: 0;
  margin-top: .25rem;
  font-size: .85rem;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
}
.btn-link-back:hover { color: var(--primary); }

/* ── Photo upload preview ────────────────────────────────────────────────── */
.photo-preview-row {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.photo-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}
