/* ============================================================
   services.css — Services Page Styles
   ANIB Building Contracting LLC
   ============================================================ */

:root {
  --gold: #C9973A;
  --gold-light: #E8B25C;
  --primary: #0D1B2A;
  --cream: #F5F0E8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "DM Sans", sans-serif;
  background: #F9F7F4;
  color: #1a1a1a;
  overflow-x: hidden;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transition: all 0.3s ease; opacity: 0.6;
}

/* ── PROGRESS BAR ── */
.progress-bar {
  position: fixed; top: 0; left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  z-index: 9999; width: 0%;
  transition: width 0.1s linear;
}

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; transition: all 0.5s ease;
  background: rgba(13,27,42,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header::after {
  content: ''; position: absolute;
  bottom: 0; left: 5%; right: 5%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,151,58,0.3), transparent);
}
.site-header.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4); height: 68px;
}

.logo-wrap { display: flex; align-items: center; gap: 14px; }
.logo-wrap img { height: 60px; transition: all 0.4s; }
.site-header.scrolled .logo-wrap img { height: 42px; }
.logo-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 600; letter-spacing: 0.15em;
  font-size: 0.85rem; color: white; text-transform: uppercase;
}

.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  text-decoration: none; position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.nav-active { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.nav-active::after { width: 100%; }
.nav-cta {
  background: var(--gold); color: var(--primary) !important;
  padding: 9px 22px; border-radius: 4px;
  font-weight: 700 !important; transition: all 0.3s ease !important;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,151,58,0.5); }
.nav-cta::after { display: none !important; }

.mobile-btn {
  display: none; background: none; border: 1px solid rgba(201,151,58,0.5);
  color: white; width: 40px; height: 40px; border-radius: 4px;
  cursor: pointer; font-size: 1.2rem; align-items: center; justify-content: center;
}
@media(max-width: 768px) {
  .nav-links { display: none; }
  .mobile-btn { display: flex; }
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: min(320px, 85vw); height: 100vh;
  background: var(--primary); z-index: 200;
  padding: 6rem 2.5rem 3rem; display: flex;
  flex-direction: column; gap: 0;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  border-left: 1px solid rgba(201,151,58,0.2);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 1.5rem; font-family: "Cormorant Garamond", serif;
  font-weight: 600; padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.3s, padding-left 0.3s;
}
.mobile-menu a:hover { color: var(--gold); padding-left: 8px; }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 199; opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mobile-overlay.show { opacity: 1; pointer-events: all; }
.close-menu {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: white;
  font-size: 1.5rem; cursor: pointer;
}

/* ── PAGE HERO ── */
.page-hero {
  position: relative; height: 85vh; min-height: 580px;
  display: flex; align-items: center; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: url('assets/images/services/hero-services.jpg') center center / cover no-repeat;
}
.page-hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #0D1B2A 0%, #1a3050 100%);
  z-index: -1;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.6) 55%, rgba(13,27,42,0.4) 100%);
}

/* Breadcrumb */
.page-hero-breadcrumb {
  position: absolute; top: 100px; left: clamp(1.5rem, 5vw, 5rem);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); z-index: 10;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb span:last-child { color: var(--gold); }
@media(max-width: 768px) { .page-hero-breadcrumb { top: 88px; } }

.page-hero-content {
  position: relative; z-index: 10;
  padding: 80px clamp(1.5rem, 5vw, 5rem) 0;
  max-width: 800px;
}
@media(min-width: 768px) { .page-hero-content { padding-top: 0; } }

.page-hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.2rem;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.page-hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
@media(max-width: 767px) { .page-hero-tag { display: none; } }

.page-hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300; line-height: 1.0; color: white; margin-bottom: 1.2rem;
  opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
}
.page-hero-h1 em { font-style: italic; color: var(--gold-light); }

.page-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.7);
  max-width: 560px; line-height: 1.75;
  opacity: 0; animation: fadeUp 0.9s 0.7s forwards;
}

/* Floating service nav pills at bottom of hero */
.hero-service-pills {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 10; display: flex; flex-wrap: wrap; gap: 0;
  background: rgba(13,27,42,0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201,151,58,0.2);
  opacity: 0; animation: fadeUp 0.8s 1s forwards;
}
.pill {
  flex: 1; min-width: 160px;
  padding: 1.1rem 1.5rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: all 0.3s ease;
  position: relative;
}
.pill::after {
  content: ''; position: absolute;
  bottom: 0; left: 20%; right: 20%; height: 2px;
  background: var(--gold); transform: scaleX(0);
  transition: transform 0.3s ease;
}
.pill:hover { color: var(--gold-light); background: rgba(201,151,58,0.06); }
.pill:hover::after { transform: scaleX(1); }
.pill:last-child { border-right: none; }
@media(max-width: 768px) {
  .hero-service-pills { display: none; }
  .page-hero { height: 72vh; }
}

/* Scroll hint */
.scroll-hint {
  position: absolute; right: 2.5rem; bottom: 5rem;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; z-index: 10; color: rgba(255,255,255,0.45);
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease infinite; }
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}
@media(max-width: 768px) { .scroll-hint { display: none; } }

/* ── SECTION BASE ── */
.section { padding: 6rem clamp(1.5rem, 5vw, 5rem); }
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.section-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.2; color: var(--primary);
}
.section-h2 em { font-style: italic; color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── INTRO SECTION ── */
.intro-section { background: white; }
.intro-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; align-items: center;
}
@media(max-width: 768px) { .intro-inner { grid-template-columns: 1fr; gap: 2.5rem; } }

.intro-right p {
  color: #555; line-height: 1.85; font-size: 0.97rem; margin-bottom: 2rem;
}
.intro-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(201,151,58,0.2);
}
.intro-stat { text-align: center; }
.is-num {
  display: block; font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.is-label {
  display: block; font-size: 0.68rem; color: #888;
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 6px;
}

/* ── OVERVIEW GRID ── */
.overview-section { background: var(--primary); }
.overview-section .section-h2 { color: white; }
.overview-header { max-width: 1200px; margin: 0 auto 3.5rem; }

.overview-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: rgba(255,255,255,0.04);
  border-radius: 6px; overflow: hidden;
}
@media(max-width: 900px) { .overview-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 560px) { .overview-grid { grid-template-columns: 1fr; } }

.ov-card {
  position: relative; padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,151,58,0.1);
  text-decoration: none; cursor: pointer;
  transition: all 0.4s ease; overflow: hidden;
}
.ov-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform 0.4s ease;
}
.ov-card:hover { background: rgba(201,151,58,0.07); border-color: rgba(201,151,58,0.3); transform: translateY(-3px); }
.ov-card:hover::before { transform: scaleX(1); }

.ov-card-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,151,58,0.3);
  border-radius: 4px; display: flex; align-items: center;
  justify-content: center; color: var(--gold); margin-bottom: 1.5rem;
  transition: all 0.35s;
}
.ov-card:hover .ov-card-icon { background: var(--gold); color: var(--primary); border-color: var(--gold); }

.ov-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem; font-weight: 300;
  color: rgba(201,151,58,0.15); line-height: 1;
  position: absolute; top: 1.5rem; right: 1.5rem;
  transition: color 0.4s;
}
.ov-card:hover .ov-num { color: rgba(201,151,58,0.35); }

.ov-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem; font-weight: 600;
  color: white; margin-bottom: 0.75rem;
}
.ov-desc { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 1.5rem; }
.ov-link {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  opacity: 0; transform: translateY(6px); transition: all 0.35s 0.05s;
  display: block;
}
.ov-card:hover .ov-link { opacity: 1; transform: translateY(0); }

/* ── SERVICE DETAIL SECTIONS ── */
.svc-detail { padding: 7rem clamp(1.5rem, 5vw, 5rem); }
.svc-detail--light { background: white; }
.svc-detail--dark  { background: var(--primary); }
.svc-detail--cream { background: var(--cream); }

.svc-detail-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.svc-detail-inner--reverse { direction: rtl; }
.svc-detail-inner--reverse > * { direction: ltr; }
@media(max-width: 768px) {
  .svc-detail-inner { grid-template-columns: 1fr; gap: 3rem; }
  .svc-detail-inner--reverse { direction: ltr; }
}

.svc-detail-img { position: relative; }
.svc-detail-img img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; border-radius: 6px; display: block;
  transition: transform 0.6s ease;
}
.svc-detail-img:hover img { transform: scale(1.02); }
.svc-detail-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--primary); color: white;
  padding: 1rem 1.5rem; border-radius: 4px;
  border-left: 3px solid var(--gold);
  display: flex; flex-direction: column; gap: 3px;
}
.svc-detail--dark .svc-detail-badge { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); }
.sdb-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.sdb-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
}

.svc-detail-text p {
  line-height: 1.85; margin-bottom: 1.2rem; font-size: 0.95rem; color: #555;
}
.svc-detail--dark .svc-detail-text p { color: rgba(255,255,255,0.7); }

.svc-list {
  list-style: none; margin: 1.5rem 0 2rem;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.svc-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; color: #444; font-weight: 500;
}
.svc-list li::before {
  content: ''; width: 20px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.svc-list--light li { color: rgba(255,255,255,0.75); }
.svc-list--light li::before { background: var(--gold); }

.svc-detail-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold); color: var(--primary);
  padding: 13px 30px; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 4px; text-decoration: none; display: inline-block;
  transition: all 0.35s ease;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,151,58,0.45); }

.btn-outline-dark {
  border: 1.5px solid var(--primary); color: var(--primary);
  padding: 13px 30px; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 4px; text-decoration: none; display: inline-block;
  transition: all 0.35s ease;
}
.btn-outline-dark:hover { background: var(--primary); color: white; }

.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,0.4); color: white;
  padding: 13px 30px; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 4px; text-decoration: none; display: inline-block;
  transition: all 0.35s ease;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,151,58,0.08); }

/* ── PROCESS SECTION ── */
.process-section { background: #F9F7F4; }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 5rem; }
.process-sub {
  color: #666; font-size: 0.95rem; line-height: 1.75;
  max-width: 520px; margin: 1rem auto 0;
}

.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative;
}
@media(max-width: 900px) {
  .process-steps { grid-template-columns: 1fr; gap: 0; }
}

.process-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 2rem 1.5rem; position: relative;
}
.step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 0.75rem;
}
/* Connector line */
.step-line {
  position: absolute; top: 54px; left: 50%; right: -50%;
  height: 1px; background: linear-gradient(to right, var(--gold), rgba(201,151,58,0.2));
  z-index: 0;
}
.step-line.hide-last { display: none; }
@media(max-width: 900px) {
  .step-line { display: none; }
}

.step-icon {
  width: 64px; height: 64px;
  background: white; border: 2px solid rgba(201,151,58,0.2);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem;
  margin-bottom: 1.25rem; position: relative; z-index: 1;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.process-step:hover .step-icon {
  border-color: var(--gold);
  background: var(--primary);
  box-shadow: 0 8px 30px rgba(201,151,58,0.25);
}

.step-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--primary); margin-bottom: 0.6rem;
}
.step-desc { font-size: 0.8rem; color: #777; line-height: 1.65; }

/* Mobile process: vertical layout */
@media(max-width: 900px) {
  .process-step {
    flex-direction: row; text-align: left; align-items: flex-start;
    gap: 1.5rem; padding: 1.5rem 0;
    border-bottom: 1px solid rgba(201,151,58,0.1);
  }
  .step-icon { flex-shrink: 0; margin-bottom: 0; }
  .step-num { font-size: 0.65rem; }
}

/* ── WHY US STRIP ── */
.whyus-strip { background: var(--primary); }
.whyus-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: center;
}
@media(max-width: 768px) { .whyus-strip-inner { grid-template-columns: 1fr; gap: 3rem; } }

.ws-left .section-h2 { color: white; }
.ws-right { display: flex; flex-direction: column; gap: 1.5rem; }

.ws-feature {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,151,58,0.12);
  border-radius: 6px; transition: all 0.35s;
}
.ws-feature:hover {
  border-color: rgba(201,151,58,0.35);
  background: rgba(201,151,58,0.07);
  transform: translateX(6px);
}
.wsf-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,151,58,0.1); border-radius: 4px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.wsf-title { font-weight: 700; font-size: 0.9rem; color: white; margin-bottom: 4px; }
.wsf-desc { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ── CTA ── */
.cta-section { background: var(--cream); text-align: center; }
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-sub { color: #666; line-height: 1.75; margin-bottom: 2.5rem; font-size: 0.95rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: #080F18; color: rgba(255,255,255,0.55); padding: 5rem clamp(1.5rem, 5vw, 5rem) 2rem; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media(max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media(max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 120px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.82rem; line-height: 1.75; color: rgba(255,255,255,0.4); max-width: 260px; }
.footer-col h5 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }
.footer-contact-item span:first-child { color: var(--gold); margin-top: 2px; }
.footer-bottom { max-width: 1200px; margin: 2rem auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; flex-wrap: wrap; gap: 0.5rem; }

/* ── FLOATING BUTTONS ── */
.float-group { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 90; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.wa-float { width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 25px rgba(37,211,102,0.45); transition: all 0.35s; text-decoration: none; }
.wa-float:hover { background: #20bc5a; transform: scale(1.1) translateY(-2px); box-shadow: 0 14px 35px rgba(37,211,102,0.55); }
.wa-float svg { width: 28px; height: 28px; }
.scroll-top-btn { width: 54px; height: 54px; background: var(--primary); border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 8px 25px rgba(13,27,42,0.4); transition: all 0.35s ease; opacity: 0; transform: translateY(16px); pointer-events: none; }
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top-btn:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px) scale(1.08); box-shadow: 0 14px 35px rgba(201,151,58,0.45); }
.scroll-top-btn svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s; }
.scroll-top-btn:hover svg { stroke: white; }

/* ── SELECTION ── */
::selection { background: rgba(201,151,58,0.25); color: var(--primary); }