/* ============================================================
   ರಾಘವೇಂದ್ರ ಡೆವಲಪರ್ಸ್ — Custom Stylesheet
   Stack: HTML + CSS + Bootstrap 5 + PHP + MySQL
   Palette: Forest Green  #1a5c2e | Saffron Gold #f5a800 | Cream #fdf8ee
   ============================================================ */

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

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --green: #1a5c2e;
  --green-dark: #0f3d1e;
  --green-light: #2a7a42;
  --green-soft: #e8f5ec;
  --gold: #f5a800;
  --gold-deep: #d48900;
  --cream: #fdf8ee;
  --cream-muted: rgba(253, 248, 238, .80);
  --text-dark: #0f3d1e;
  --text-muted: #4a6c54;
  --border: #d8e8dc;
  --whatsapp: #25d366;
  --radius-card: 1.25rem;
  --radius-pill: 50rem;
  --shadow-soft: 0 4px 20px -4px rgba(26, 92, 46, .08);
  --shadow-card: 0 10px 40px -12px rgba(26, 92, 46, .18);
  --shadow-gold: 0 10px 30px -8px rgba(245, 168, 0, .45);
  --shadow-green: 0 12px 36px -10px rgba(26, 92, 46, .35);
  --transition: all .4s cubic-bezier(.4, 0, .2, 1);
  --bounce: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

/* ── Base ───────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans Kannada', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Noto Sans Kannada', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--green);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ── Gradient utilities ─────────────────────────────────────── */
.bg-gradient-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
}

.bg-gradient-green {
  background: linear-gradient(135deg, var(--green), var(--green-light));
}

.bg-gradient-green-dark {
  background: linear-gradient(160deg, var(--green-dark), var(--green));
}

.bg-soft {
  background: linear-gradient(180deg, var(--cream), #f0ede4);
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold {
  color: var(--gold) !important;
}

.text-cream {
  color: var(--cream) !important;
}

.text-cream-muted {
  color: var(--cream-muted) !important;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  padding: .65rem 1.5rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--green-dark);
  font-weight: 800;
  font-size: .92rem;
  box-shadow: var(--shadow-gold);
  border: none;
  cursor: pointer;
  transition: var(--bounce);
  white-space: nowrap;
}

.btn-gold:hover {
  transform: scale(1.05);
  color: var(--green-dark);
}

.btn-lg-hero {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-green);
}

.btn-green:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--green-dark);
  box-shadow: var(--shadow-gold);
}

.btn-outline-cream {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  background: rgba(253, 248, 238, .15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(253, 248, 238, .4);
  color: var(--cream);
  font-weight: 800;
  font-size: 1.1rem;
  transition: var(--transition);
}

.btn-outline-cream:hover {
  background: rgba(253, 248, 238, .25);
  color: var(--cream);
}

/* ── Shadow utilities ───────────────────────────────────────── */
.shadow-gold {
  box-shadow: var(--shadow-gold);
}

.shadow-green {
  box-shadow: var(--shadow-green);
}

/* ── Section helpers ────────────────────────────────────────── */
.section-pad {
  padding: 6rem 0;
}

.section-badge {
  display: inline-block;
  padding: .35rem 1.1rem;
  border-radius: var(--radius-pill);
  background: var(--green-soft);
  color: var(--green);
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 1.1rem;
}

.section-badge-gold {
  background: var(--gold);
  color: var(--green-dark);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: .75rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.section-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.link-primary-arrow {
  color: var(--green);
  font-weight: 800;
  font-size: 1.1rem;
  transition: gap .2s;
  display: inline-block;
}

.link-primary-arrow:hover {
  letter-spacing: .03em;
}

/* ── Animate on scroll ──────────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.animated {
  opacity: 1;
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(253, 248, 238, .88);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.logo-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  display: grid;
  place-items: center;
  color: var(--cream);
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: var(--shadow-green);
  flex-shrink: 0;
}

.brand-text {
  line-height: 1.2;
}

.brand-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--green);
}

.brand-sub {
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .04em;
}

.desktop-nav {
  align-items: center;
  gap: 2rem;
}

.desktop-nav a {
  font-size: .88rem;
  font-weight: 700;
  color: rgba(15, 61, 30, .75);
  position: relative;
  transition: var(--transition);
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width .35s;
}

.desktop-nav a:hover {
  color: var(--green);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.mobile-toggle {
  background: none;
  border: none;
  padding: .4rem .5rem;
  border-radius: .5rem;
  color: var(--green);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-toggle:hover {
  background: var(--green-soft);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(253, 248, 238, .96);
  backdrop-filter: blur(10px);
}

.mobile-menu.open {
  display: block;
}

.mobile-link {
  display: block;
  padding: .75rem .75rem;
  border-radius: .6rem;
  font-weight: 700;
  color: rgba(15, 61, 30, .8);
  transition: var(--transition);
}

.mobile-link:hover {
  background: var(--green-soft);
  color: var(--green);
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--green-dark);
}

.carousel-item {
  height: 100vh;
  min-height: 700px;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 61, 30, .85), rgba(26, 92, 46, .55) 50%, rgba(245, 168, 0, .25));
}

.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--green-dark) 0%, rgba(15, 61, 30, .4) 40%, transparent);
}

.hero-content {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  max-width: 900px;
  /* text-align: center; */
  padding: 0 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.25rem;
  border-radius: var(--radius-pill);
  background: rgba(245, 168, 0, 0.95);
  color: var(--green-dark);
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(245, 168, 0, 0.4);
  animation-delay: 0.2s;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-dark);
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 950;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  animation-delay: 0.4s;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: rgba(253, 248, 238, .93);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 600px;
  /* margin: 0 auto; */
  animation-delay: 1s;
}

.stat-item {
  color: var(--cream);
}

.stat-number {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: .25rem;
}

.stat-label {
  font-size: .8rem;
  color: rgba(253, 248, 238, .8);
  font-weight: 500;
}

/* ── FEATURE CARDS (About) ──────────────────────────────────── */
.feature-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(215, 232, 220, .5);
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: var(--green-dark);
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: .4rem;
}

.feature-desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── PROJECT CARDS ──────────────────────────────────────────── */
.project-card {
  background: linear-gradient(180deg, #fff, var(--cream));
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(215, 232, 220, .5);
  transition: var(--transition);
  height: 100%;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px -16px rgba(26, 92, 46, .25);
}

.project-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.project-card:hover .project-img {
  transform: scale(1.08);
}

.project-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: .3rem .85rem;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 800;
  box-shadow: var(--shadow-gold);
}

.project-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(0, 0, 0, .55), transparent);
}

.project-body {
  padding: 1.5rem;
}

.project-location {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: .4rem;
}

.project-name {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: .5rem;
}

.project-desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: .5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.project-read-more {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold-deep);
  cursor: pointer;
  margin-bottom: 1rem;
  transition: color .2s;
  border: none;
  background: none;
  padding: 0;
}

.project-read-more:hover {
  color: var(--green);
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
}

/* ── Project Detail Modal ──────────────────────────────────── */
.project-detail-modal .modal-content {
  border: none;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .25);
}

.project-detail-modal .modal-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--cream);
  border: none;
  padding: 1.5rem 2rem;
}

.project-detail-modal .modal-header .btn-close {
  filter: invert(1);
}

.project-detail-modal .modal-body {
  padding: 2rem;
  background: var(--cream);
}

.project-detail-modal .modal-body .detail-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.project-detail-modal .modal-body .detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.project-detail-modal .modal-body .detail-meta .meta-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: .75rem 1.25rem;
  flex: 1;
  min-width: 140px;
}

.project-detail-modal .modal-body .detail-meta .meta-item .meta-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: .25rem;
}

.project-detail-modal .modal-body .detail-meta .meta-item .meta-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--green);
}

/* ── AMENITIES ──────────────────────────────────────────────── */
.amenity-card {
  background: rgba(253, 248, 238, .1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(253, 248, 238, .2);
  border-radius: var(--radius-card);
  padding: 1.75rem 1rem;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.amenity-card:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.amenity-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  background: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: var(--green-dark);
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
  background: var(--cream);
  color: var(--green-dark);
}

.amenity-label {
  font-weight: 700;
  color: var(--cream);
  font-size: .92rem;
  transition: var(--transition);
}

.amenity-card:hover .amenity-label {
  color: var(--green-dark);
}

/* ── WHY US ─────────────────────────────────────────────────── */
.layout-plan-wrap {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 4px solid rgba(245, 168, 0, .3);
  box-shadow: var(--shadow-card);
  margin-top: 2rem;
}

.layout-plan-img {
  width: 100%;
  height: auto;
}

.why-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(215, 232, 220, .5);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.why-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: #fff;
}

.why-title {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: .25rem;
}

.why-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── GALLERY ────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.gallery-item:hover {
  box-shadow: var(--shadow-card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

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

.gallery-item-big {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 61, 30, .7), transparent);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  transition: var(--transition);
}

.gallery-item:hover .gallery-hover {
  opacity: 1;
}

.gallery-hover span {
  color: var(--cream);
  font-weight: 700;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-item-big {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }
}

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(215, 232, 220, .5);
  color: inherit;
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: .875rem;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--green-dark);
}

.contact-info-title {
  font-weight: 800;
  color: var(--green);
  margin-bottom: .2rem;
  font-size: .9rem;
}

.contact-info-line {
  font-size: .85rem;
  color: var(--text-muted);
}

.contact-form-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(215, 232, 220, .5);
}

.contact-form-title {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.form-label-custom {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
}

.form-input-custom {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 2px solid var(--border);
  border-radius: .875rem;
  background: var(--cream);
  font-family: 'Noto Sans Kannada', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: border-color .25s;
  outline: none;
  resize: none;
}

.form-input-custom:focus {
  border-color: var(--green);
}

.form-input-custom::placeholder {
  color: #a0b0a8;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--green-dark);
  color: rgba(253, 248, 238, .8);
  padding: 4rem 0 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-bottom: 1.25rem;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--green-dark);
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.footer-brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--cream);
}

.footer-brand-sub {
  font-size: .75rem;
  color: rgba(253, 248, 238, .6);
}

.footer-about {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: .6rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(253, 248, 238, .1);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  color: var(--cream);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--green-dark);
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li+li {
  margin-top: .5rem;
}

.footer-links a {
  font-size: .9rem;
  color: rgba(253, 248, 238, .75);
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(253, 248, 238, .75);
  margin-bottom: .8rem;
}

.footer-contact-list i {
  margin-top: .15rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(253, 248, 238, .12);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(253, 248, 238, .6);
}

/* ── FLOATING BUTTONS ───────────────────────────────────────── */
.floating-btns {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, .3);
  transition: var(--bounce);
}

.float-btn:hover {
  transform: scale(1.12);
  color: #fff;
}

.float-btn-wa {
  background: var(--whatsapp);
  animation: ring-pulse 2s infinite;
}

.float-btn-call {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--green-dark);
}

.float-btn-call:hover {
  color: var(--green-dark);
}

@keyframes ring-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ── Scroll-to-top via navbar scroll shade ──────────────────── */
.navbar-fixed.scrolled {
  background: rgba(253, 248, 238, .97);
  box-shadow: 0 4px 20px rgba(26, 92, 46, .1);
}

/* ── Responsive tweaks ──────────────────────────────────────── */
@media (max-width: 576px) {
  .section-pad {
    padding: 4rem 0;
  }

  .hero-stats {
    max-width: 100%;
  }

  .contact-form-card {
    padding: 1.5rem;
  }
}