@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@700;800&family=Source+Sans+3:wght@400;600;700&display=swap');

:root {
  --primary-navy: #0D4088;
  --primary-blue: #1E91CD;
  --dark-bg: #040E33;
  --primary-green: #00D7A0;
  --primary-yellow: #F7D232;
  --white: #FFFFFF;
  --black: #000000;
  --bg-gradient: linear-gradient(180deg, #0D4088 0%, #040E33 100%);
  --text-main: #13213f;
  --text-soft: #5d6a86;
  --surface: #f8fbff;
  --line: #d4e2f6;
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 24px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --shadow-soft: 0 10px 30px rgba(4, 14, 51, 0.08);
  --shadow-card: 0 14px 38px rgba(13, 64, 136, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-main);
  background:
    radial-gradient(1000px 300px at 80% -10%, rgba(30, 145, 205, 0.22), transparent 60%),
    radial-gradient(700px 300px at 0% 20%, rgba(0, 215, 160, 0.12), transparent 60%),
    #eef5ff;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-family: "Manrope", sans-serif;
  line-height: 1.2;
  color: var(--dark-bg);
}

p,
li {
  margin-top: 0;
  color: var(--text-main);
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding-block: var(--space-3);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  transition: transform 280ms ease;
}

.header-inner,
.footer-inner,
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.header-inner {
  position: relative;
}

.brand {
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
  color: var(--primary-navy);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  margin-inline-start: auto;
}

.main-nav a {
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--primary-navy);
  font-weight: 600;
}

.main-nav a:hover {
  background: #e8f2ff;
}

.main-nav a[aria-current="page"] {
  color: var(--white);
  background: var(--primary-blue);
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.nav-toggle::before,
.nav-toggle::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--primary-navy);
  left: 4px;
  transition: all 250ms ease;
}

.nav-toggle::before {
  top: 8px;
  box-shadow: 0 8px 0 var(--primary-navy);
}

.nav-toggle::after {
  bottom: 8px;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
  box-shadow: 0 0 0 var(--primary-navy);
  top: 15px;
}

.nav-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
  bottom: 15px;
}

main {
  padding-block: var(--space-5);
}

.section {
  margin-bottom: var(--space-4);
  padding: var(--space-5);
  border-radius: var(--radius-l);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(212, 226, 246, 0.8);
  box-shadow: var(--shadow-soft);
}

.hero {
  background: var(--bg-gradient);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  border: 0;
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 64, 136, 0.85) 0%,
    rgba(4, 14, 51, 0.9) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero h1,
.hero h2,
.hero p {
  color: var(--white);
  text-shadow: 0 2px 8px rgba(4, 14, 51, 0.6);
}

.section-head {
  margin-bottom: var(--space-3);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.cards-grid > :only-child {
  grid-column: 1 / -1;
  width: min(100%, 420px);
  justify-self: center;
}

.project-card,
.unit-card,
.destination-group,
form,
.destination-nav {
  border: 1px solid var(--line);
  padding: var(--space-3);
  background: var(--surface);
}

.project-card,
.unit-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-m);
}

.project-card {
  text-align: right;
  padding: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(13, 64, 136, 0.18);
  border-color: rgba(30, 145, 205, 0.35);
}

.card-media {
  position: relative;
}

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 0;
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(4, 14, 51, 0.78);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 18px;
  height: 100%;
}

.project-card h3,
.project-card h4,
.unit-card h3 {
  text-align: inherit;
  margin-bottom: 0;
  margin-top: 0;
}

.project-card > p,
.card-content > p {
  flex-grow: 1;
  margin-bottom: 0;
  color: var(--text-soft);
}

.project-card .meta,
.card-price {
  color: var(--primary-blue);
  font-weight: 700;
}

.project-card .text-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  font-weight: 700;
  color: var(--primary-navy);
  text-decoration: none;
}

.project-card .text-link::after {
  content: '←';
  font-size: 14px;
}

.project-availability-meta {
  text-align: right;
  color: var(--primary-blue);
  font-weight: 700;
  margin: 0;
}

.unit-meta {
  list-style: none;
  padding: 0;
  margin: var(--space-3) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  text-align: center;
}

.unit-meta li {
  font-size: 14px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.unit-meta li i {
  color: var(--primary-blue);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.meta-label {
  font-weight: 700;
  color: var(--primary-navy);
  margin-left: 6px;
}

.project-card .meta {
  color: var(--text-soft);
  font-weight: 600;
}

.destination-group {
  margin-bottom: var(--space-3);
  scroll-margin-top: 96px;
}

.destination-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.destination-nav a {
  text-decoration: none;
  border: 1px solid #b9d4f3;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--primary-navy);
  font-weight: 700;
  background: #f3f9ff;
}

.gallery-intro {
  margin-bottom: var(--space-3);
  color: var(--text-soft);
  font-weight: 600;
}

.gallery-grid {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #9ab9e5 #edf4ff;
}

.gallery-grid::-webkit-scrollbar {
  height: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
  background: #edf4ff;
  border-radius: 999px;
}

.gallery-grid::-webkit-scrollbar-thumb {
  background: #9ab9e5;
  border-radius: 999px;
}

.gallery-grid::-webkit-scrollbar-thumb:hover {
  background: #6f9ed9;
}

.gallery-grid::after {
  content: '';
  min-width: 4px;
}

.gallery-item {
  flex: 0 0 clamp(220px, 28vw, 320px);
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: block;
  scroll-snap-align: start;
  min-height: auto;
}

.gallery-item-main {
  flex-basis: clamp(320px, 42vw, 560px);
  aspect-ratio: 16 / 10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}

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

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-block: var(--space-3);
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 14px;
  border: 0;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

.btn:active {
  transform: translateY(0);
}

.btn::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: 8px;
  display: inline-block;
  font-size: 16px;
}

.btn-whatsapp::before {
  content: '\f232';
  font-family: 'Font Awesome 6 Brands';
  font-weight: 400;
}

.btn-call::before {
  content: '\f095';
}

.btn-installment::before {
  content: '\f133';
}

.btn:not(.btn-whatsapp):not(.btn-call):not(.btn-installment)::before {
  content: '\f054';
}

.btn:not(.btn-whatsapp):not(.btn-call):not(.btn-installment) {
  background: var(--primary-blue);
  color: var(--white);
}

.btn-whatsapp {
  background: var(--primary-green);
  color: #04372a;
}

.btn-call {
  background: #0a6ca9;
  color: var(--white);
}

.btn-installment {
  background: var(--primary-yellow);
  color: #413300;
}

.text-link {
  font-weight: 700;
  color: var(--primary-navy);
  text-decoration-thickness: 2px;
}

.site-footer {
  padding-block: var(--space-4);
  background: var(--dark-bg);
  color: var(--white);
}

.site-footer a {
  color: #8fd2ff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: var(--space-4);
  align-items: start;
}

.footer-col h3,
.footer-col h4 {
  color: var(--white);
  margin-bottom: 10px;
}

.footer-note,
.footer-disclaimer {
  color: #d9e8ff;
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #bde2ff;
}

.footer-links a:hover,
.footer-disclaimer a:hover,
.footer-top-link:hover {
  color: var(--white);
}

.footer-top-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
}

.footer-bottom {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(143, 210, 255, 0.28);
}

.footer-bottom p {
  margin: 0;
  color: #c3ddff;
}

#highlights ul {
  list-style: none;
  padding: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: var(--space-3);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 14px;
  border-radius: var(--radius-m);
  border: 1px solid #cddff6;
  background: #f4f9ff;
  text-align: center;
}

.feature-item i {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(145deg, var(--primary-blue), var(--primary-navy));
  box-shadow: 0 8px 22px rgba(13, 64, 136, 0.25);
}

.feature-item h3 {
  margin: 0;
  font-size: 17px;
  color: var(--primary-navy);
}

.feature-item p {
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

.developer-overview {
  max-width: 980px;
  margin: 0 auto;
  text-align: right;
  line-height: 1.9;
}

.project-overview-copy {
  display: grid;
  gap: 14px;
  line-height: 1.9;
}

.project-overview-copy p {
  margin: 0;
}

.final-cta-centered .container {
  text-align: center;
}

.final-cta-centered p {
  max-width: 760px;
  margin-inline: auto;
}

.location-map {
  margin: 0;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.project-gallery-link,
.location-map a {
  display: block;
  cursor: zoom-in;
}

.project-gallery-link img,
.location-map img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease, filter 220ms ease;
}

.project-gallery-link:hover img,
.location-map a:hover img {
  transform: scale(1.02);
  filter: brightness(1.03);
}

.glightbox-clean .gprev,
.glightbox-clean .gnext {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(13, 64, 136, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, background 180ms ease;
}

.glightbox-clean .gprev:hover,
.glightbox-clean .gnext:hover {
  background: rgba(30, 145, 205, 0.96);
  transform: scale(1.06);
}

.glightbox-clean .gprev svg,
.glightbox-clean .gnext svg {
  width: 20px;
  height: 20px;
}

.faq-list {
  display: grid;
  gap: var(--space-2);
}

.faq-item {
  border: 1px solid #cddff6;
  border-radius: var(--radius-m);
  background: #f6faff;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: var(--primary-navy);
  padding: 14px 16px;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 16px;
  top: 14px;
  transition: transform 200ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 16px 14px;
  color: var(--text-soft);
}

.cookie-banner-visible {
  padding-bottom: 104px;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  left: 16px;
  bottom: 16px;
  z-index: 40;
  border: 1px solid rgba(212, 226, 246, 0.95);
  border-radius: 18px;
  background: rgba(4, 14, 51, 0.96);
  box-shadow: 0 18px 40px rgba(4, 14, 51, 0.22);
  color: var(--white);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  width: min(1120px, 100%);
  margin-inline: auto;
  padding: 14px 18px;
}

.cookie-banner p {
  margin: 0;
  color: #eef6ff;
  font-size: 15px;
}

.cookie-banner a {
  color: var(--primary-green);
  font-weight: 700;
}

.cookie-banner a:hover {
  color: var(--white);
}

.modal-open {
  overflow: hidden;
}

.installment-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
}

.installment-modal.is-open {
  display: block;
}

.installment-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 14, 51, 0.56);
}

.installment-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 92%);
  margin: 42px auto;
  max-height: calc(100vh - 84px);
  overflow: auto;
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  background: #fdfefe;
  padding: 24px;
}

.installment-modal-close {
  position: absolute;
  top: 12px;
  left: 12px;
  border: 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary-navy);
  background: #e9f2ff;
}

.installment-modal h2 {
  margin-bottom: 8px;
  padding-left: 42px;
}

.installment-modal-note {
  margin-bottom: 18px;
  color: var(--text-soft);
  font-weight: 600;
}

.installment-form {
  display: grid;
  gap: 10px;
}

.installment-form input[readonly] {
  background: #f1f6ff;
  color: #2a3d62;
  font-weight: 700;
}

.thank-you-wrap {
  text-align: center;
}

.thank-you-wrap p {
  margin-inline: auto;
  max-width: 640px;
  margin-bottom: 16px;
}

form {
  display: grid;
  gap: var(--space-2);
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

input,
textarea,
button {
  font: inherit;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #afc8e8;
  border-radius: 8px;
  background: #fff;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
    margin-inline-start: auto;
    flex-shrink: 0;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    padding: var(--space-2) 0;
    border-radius: var(--radius-m);
    margin-inline-start: 0;
  }

  .main-nav.nav-open {
    display: flex;
  }

  .main-nav a {
    padding: var(--space-3) var(--space-3);
    width: 100%;
    border-radius: 0;
    text-align: right;
    border-bottom: 1px solid var(--surface);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .header-inner {
    align-items: center;
    flex-direction: row;
  }

  .footer-inner,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section {
    padding: var(--space-4);
  }

  .hero {
    min-height: 250px;
    background-attachment: scroll;
  }

  .hero .container {
    text-align: center;
  }

  .gallery-item,
  .gallery-item-main {
    flex-basis: clamp(240px, 70vw, 360px);
  }
}

@media (max-width: 560px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .project-gallery-link:hover img,
  .location-map a:hover img {
    transform: scale(1.045);
  }

  .glightbox-clean .gprev,
  .glightbox-clean .gnext {
    width: 46px;
    height: 46px;
  }

  .cookie-banner-visible {
    padding-bottom: 128px;
  }

  .cookie-banner {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .cookie-banner-inner {
    padding: 12px 14px;
  }

  .cookie-banner p {
    font-size: 14px;
  }

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

  .installment-modal-dialog {
    margin: 20px auto;
    max-height: calc(100vh - 40px);
    padding: 18px;
  }

  .gallery-item,
  .gallery-item-main {
    flex-basis: 82vw;
  }
}

/* ============================================================
   Hero — Location tag + CTA group
   ============================================================ */
.hero-location {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 6px;
  margin-bottom: 0;
}

.hero-location i {
  color: var(--primary-green);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-top: var(--space-3);
}

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

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

/* ============================================================
   Quick Stats Bar
   ============================================================ */
.project-stats-wrap {
  background: var(--primary-navy);
  padding: 0;
}

.project-stats-bar {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 14px 20px;
  flex: 1 1 0;
  min-width: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.stat-item:last-child {
  border-left: none;
}

.stat-item i {
  font-size: 18px;
  color: var(--primary-green);
}

.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Source Sans 3', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.stat-value {
  font-size: 14px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  color: var(--white);
}

/* ============================================================
   Closing CTA section
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-bg) 100%);
  text-align: center;
  border: none;
}

.cta-section h2,
.cta-section .cta-section-sub {
  color: var(--white);
  text-shadow: 0 2px 8px rgba(4, 14, 51, 0.5);
}

.cta-section-sub {
  font-size: 16px;
  margin-bottom: var(--space-3);
  color: rgba(255, 255, 255, 0.82);
}

/* ============================================================
   Floating WhatsApp Button
   ============================================================ */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 90;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 26px rgba(37, 211, 102, 0.65);
}

@media (max-width: 560px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

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

  .stat-item {
    padding: 12px 10px;
  }

  .stat-label {
    font-size: 10px;
  }

  .stat-value {
    font-size: 13px;
  }

  .float-whatsapp {
    bottom: 16px;
    left: 16px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}

@media (max-width: 360px) {
  .project-stats-bar {
    gap: 0;
  }

  .stat-item {
    padding: 10px 6px;
  }

  .stat-item i {
    font-size: 16px;
  }

  .stat-label {
    font-size: 9px;
  }

  .stat-value {
    font-size: 12px;
  }
}
