/* =========================================
   TrueLine Detectives – style.css
   Theme: Black header | #1E2D40 accents | #C9A84C gold | White bg
   ========================================= */

/* ─── CSS Variables ─── */
:root {
  --black: #0a0a0a;
  --navy: #1E2D40;
  --navy-dark: #162230;
  --navy-light: #253650;
  --gold: #C9A84C;
  --gold-light: #e8c76b;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --text-body: #2c3e50;
  --text-muted: #6c7a8d;
  --border: rgba(201, 168, 76, 0.22);

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 14px rgba(0, 0, 0, 0.10);
  --shadow-md: 0 6px 28px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 16px 56px rgba(0, 0, 0, 0.28);
  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

/* ─── Utility ─── */
.text-gold {
  color: var(--gold) !important;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gold);
  transition: all var(--transition);
  text-transform: uppercase;
  display: inline-block;
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gold);
  transition: all var(--transition);
  text-transform: uppercase;
  display: inline-block;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}

.section-gap {
  padding: 90px 0;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

/* ─── Section titles BLACK on white bg sections ─── */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: #111111;
  line-height: 1.18;
  margin-bottom: 1rem;
  font-weight: 700;
}

/* Section titles WHITE on dark bg sections */
.section-title-white {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-desc,
.section-subdesc {
  color: var(--text-muted);
  max-width: 580px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.text-center .section-desc,
.text-center .section-subdesc {
  margin-inline: auto;
}

/* ─── Top Bar ─── */
.topbar {
  background: #050505;
  padding: 9px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.topbar-link {
  color: #bbb;
  transition: color var(--transition);
}

.topbar-link:hover {
  color: var(--gold);
}

.topbar-divider {
  color: #444;
}

.topbar-text {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ─── Header / Navbar — stays BLACK ─── */
.site-header {
  background: #0a0a0a;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  z-index: 1030;
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  background: #0a0a0a;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.navbar {
  padding: 13px 0;
}

.nav-logo {
  width: 100px;
  height: 70px;
  object-fit: contain;
}

.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 25px;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}

.brand-sub {
  display: block;
  font-size: 12px;
  letter-spacing: 0.26em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
}

.navbar-nav .nav-link {
  color: #d0d8e0 !important;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 7px 11px !important;
  position: relative;
  transition: color var(--transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 11px;
  right: 11px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}

.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

/* Custom hamburger */
.navbar-toggler {
  border: none;
  background: none;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-icon {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ─── Hero Section ─── */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Desktop image — show on md+ (768px+), hide on mobile */
.hero-desktop-img {
  height: 90vh;
  display: block;
}
.hero-mobile-img {
  display: none;
}

/* Mobile: swap images */
@media (max-width: 767.98px) {
  .hero-desktop-img {
    display: none;
  }
  .hero-mobile-img {
    display: block;
    height: 100vh;
    width: 100%;
    object-fit: cover;
    object-position: center top;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 65%);
  z-index: 1;
}

/* Bottom fade into white */
.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  z-index: 2;
}

/* mobile hero handled by .hero-mobile-img above */

/* ─── HERO CARDS — overlapping half inside hero, half below ─── */
.hero-cards-section {
  background: transparent;
  margin-top: -80px;
  /* pull cards up to overlap hero */
  position: relative;
  z-index: 20;
  padding-bottom: 60px;
}

.hcard {
  background: var(--white);
  border: 1.5px solid rgb(201 168 76 / 48%);
  border-radius: var(--radius-md);
  padding: 28px 14px 22px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
  height: 100%;
}

.hcard:hover {
  background: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  transform: translateY(-8px);
}

.hcard-icon {
  font-size: 2.1rem;
  color: var(--gold);
  margin-bottom: 12px;
  transition: transform var(--transition);
}

.hcard:hover .hcard-icon {
  transform: scale(1.1);
}

.hcard-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #111;
  transition: color var(--transition);
  line-height: 1.3;
}

.hcard:hover .hcard-label {
  color: var(--white);
}

/* ─── Marquee ─── */
.marquee-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 13px 0;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 20px;
  flex-shrink: 0;
}

.mx-dot {
  color: var(--navy) !important;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ─── About Section — white bg, black title ─── */
.about-section {
  background: var(--white);
}

.about-img-grid {
  position: relative;
  padding-bottom: 65px;
}

.about-img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.about-img-main {
  width: 100%;
  height: 400px;
  position: relative;
  z-index: 2;
}

.about-img-secondary {
  width: 56%;
  height: 210px;
  position: absolute;
  bottom: 0;
  right: -16px;
  z-index: 3;
  border: 5px solid var(--white);
}

.about-badge {
  position: absolute;
  bottom: 10px;
  left: -10px;
  z-index: 4;
  background: var(--gold);
  color: var(--black);
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-section .section-desc {
  color: var(--text-body);
  font-size: 1.02rem;
}

.pillar-item {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

/* ─── Services Section — white bg, black heading ─── */
.services-section {
  background: var(--off-white);
}

.services-section .section-subdesc {
  color: var(--text-muted);
  font-size: 1.02rem;
}

.svc-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e4eaf0;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.svc-img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
}

.svc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10, 10, 10, 0.55));
}

.svc-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-icon {
  font-size: 1.9rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.svc-title {
  font-family: var(--font-serif);
  font-size: 1.13rem;
  color: #111;
  margin-bottom: 10px;
  font-weight: 700;
}

.svc-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 18px;
  line-height: 1.7;
}

.svc-link {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1.5px solid var(--gold);
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  align-self: flex-start;
}

.svc-link:hover {
  background: var(--gold);
  color: var(--black);
}

/* carousel removed — simple grid used instead */

/* ─── Why Choose Us — dark #1E2D40 bg ─── */
.why-section {
  background: var(--navy);
}

.why-section .section-eyebrow {
  color: var(--gold);
}

.why-section .section-title {
  color: var(--white);
}

.why-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.why-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.why-stat-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.why-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
}

.why-stat-lbl {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: all var(--transition);
}

.why-item:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  transform: translateX(5px);
}

.why-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--gold);
  line-height: 1;
  min-width: 50px;
  opacity: 0.65;
  transition: opacity var(--transition);
}

.why-item:hover .why-num {
  opacity: 1;
}

.why-content h4 {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  color: var(--white);
  margin-bottom: 5px;
  font-weight: 700;
}

.why-content p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
  line-height: 1.65;
}

/* ─── Counter Section — dark #1E2D40 ─── */
.counter-section {
  background: var(--navy-dark);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.counter-item {
  position: relative;
  text-align: center;
}

.counter-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4rem);
  color: var(--gold);
  line-height: 1;
  display: inline-block;
}

.counter-plus {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--gold);
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
}

.counter-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  margin-top: 8px;
}

/* ─── Gallery — white bg, black title ─── */
.gallery-section {
  background: var(--white);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 45, 64, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 2.2rem;
  color: var(--gold);
}

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

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

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.25);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: var(--gold);
  color: var(--black);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── FAQ — off-white bg, black title ─── */
.faq-section {
  background: var(--off-white);
}

.tl-acc-item {
  background: var(--white);
  border: 1px solid #e0eaf2;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tl-acc-btn {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: #111;
  background: var(--white);
  padding: 18px 22px;
  border: none;
  box-shadow: none !important;
}

.tl-acc-btn:not(.collapsed) {
  color: var(--gold);
  background: var(--navy);
}

.tl-acc-btn::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C9A84C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.tl-acc-body {
  font-size: 0.96rem;
  color: var(--text-body);
  padding: 18px 22px;
  background: var(--white);
  border-top: 1px solid #edf2f7;
  line-height: 1.75;
}

/* ─── Contact Section — white bg ─── */
.contact-section {
  background: var(--white);
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ci-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: var(--off-white);
  border: 1px solid #e0eaf2;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 17px;
  transition: all var(--transition);
}

.ci-card:hover {
  background: var(--navy);
  border-left-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.ci-card:hover .ci-label,
.ci-card:hover .ci-value {
  color: var(--white);
}

.ci-icon {
  font-size: 1.35rem;
  color: var(--gold);
  min-width: 28px;
  margin-top: 2px;
}

.ci-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.ci-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color var(--transition);
  word-break: break-word;
}

.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid #e0eaf2;
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-sm);
}

.tl-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 6px;
}

.tl-input {
  background: var(--white);
  border: 1.5px solid #d4dde8;
  border-radius: var(--radius-sm);
  color: var(--text-body);
  font-size: 0.96rem;
  padding: 11px 15px;
  transition: all var(--transition);
}

.tl-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.14);
  background: var(--white);
  outline: none;
}

.tl-check {
  accent-color: var(--gold);
}

.tl-check-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-success-msg {
  margin-top: 18px;
  padding: 16px;
  background: #f0faf4;
  border: 1px solid #7dc99f;
  border-radius: var(--radius-sm);
  font-size: 0.96rem;
  color: #1a6b3a;
  font-weight: 500;
}

/* ─── Footer — black bg ─── */
.site-footer {
  background: #0a0a0a;
}

.footer-top {
  padding: 62px 0 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
  width: 56px;
  margin-bottom: 16px;
}

.footer-about-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.8;
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.footer-heading {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.22);
}

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

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.52);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
}

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

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 13px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.52);
}

.footer-contact li i {
  color: var(--gold);
  font-size: 0.92rem;
  min-width: 16px;
  margin-top: 2px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.52);
}

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

.footer-bottom {
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.02);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.32);
}

/* ─── Floating Buttons ─── */
.float-wa,
.float-call {
  position: fixed;
  bottom: 28px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--white);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.32);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}

.float-wa {
  left: 20px;
  background: #25d366;
}

.float-call {
  right: 20px;
  background: var(--gold);
  color: var(--black);
}

.float-wa:hover,
.float-call:hover {
  transform: scale(1.13);
  box-shadow: 0 8px 34px rgba(0, 0, 0, 0.42);
  color: var(--white);
}

.float-call:hover {
  color: var(--black);
}

/* Float labels */
.float-wa::before,
.float-call::before {
  position: absolute;
  bottom: 58px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 3px 9px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.float-wa::before {
  content: 'WhatsApp';
  background: #25d366;
  color: #fff;
  left: 0;
}

.float-call::before {
  content: 'Call Us';
  background: var(--gold);
  color: var(--black);
  right: 0;
}

.float-wa:hover::before,
.float-call:hover::before {
  opacity: 1;
}

/* ─── Scroll-to-Top ─── */
.scroll-top-btn {
  position: fixed;
  bottom: 92px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  font-size: 0.96rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* ─── Mobile Responsiveness ─── */
@media (max-width: 991.98px) {
  .section-gap {
    padding: 65px 0;
  }

  .about-img-main {
    height: 300px;
  }

  .about-img-secondary {
    width: 50%;
    height: 165px;
    right: 0;
  }

  .why-section .col-lg-5 {
    display: none !important;
  }

  .navbar-collapse {
    background: #0a0a0a;
    padding: 16px 0;
    margin-top: 8px;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
  }

  .navbar-nav .nav-link {
    padding: 11px 16px !important;
  }

  .contact-form-wrap {
    padding: 26px 20px;
  }

  .hero-cards-section {
    margin-top: -40px;
  }
}

@media (max-width: 767.98px) {
  .section-gap {
    padding: 50px 0;
  }

  .gallery-img {
    height: 185px;
  }

  .counter-section {
    padding: 52px 0;
  }

  .about-img-grid {
    padding-bottom: 0;
  }

  .about-img-secondary {
    display: none;
  }

  .about-badge {
    left: 0;
    bottom: 0;
  }

  .hero-cards-section {
    margin-top: -24px;
    padding-bottom: 40px;
  }

  .footer-top {
    padding: 42px 0 32px;
  }

  .ci-card {
    padding: 13px;
  }
}

@media (max-width: 575.98px) {
  .hcard {
    padding: 18px 8px 16px;
  }

  .hcard-icon {
    font-size: 1.7rem;
  }

  .hcard-label {
    font-size: 0.72rem;
  }

  .about-img-main {
    height: 230px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .hero-bg-img {
    height: 64vw;
    min-height: 500px;
  }
}

/* ─── Hero Wrapper ─── */
.hero-wrapper {
  position: relative;
  background: var(--white);
}

/* Hero content overlay — text on top of image */
.hero-content-overlay {
  position: absolute;
  bottom: 120px;
  left: 0;
  right: 0;
  z-index: 5;
}

.hero-tagline {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 14px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Confidential consultation box */
.hero-consult-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  max-width: 400px;
  backdrop-filter: blur(6px);
}

.consult-icon {
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
}

.consult-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 10px;
}

.consult-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
}

.consult-list li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.consult-list li i {
  color: var(--gold);
  font-size: 0.85rem;
}

.consult-footer {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  padding-top: 12px;
}

/* Mobile adjustments for hero content */
@media (max-width: 767.98px) {
  .hero-content-overlay {
    bottom: 100px;
  }

  .hero-desc {
    font-size: 0.9rem;
    max-width: 280px;
  }

  .hero-consult-box {
    max-width: 300px;
    padding: 16px 18px;
  }

  .consult-title {
    font-size: 0.82rem;
  }

  .consult-icon {
    font-size: 1.8rem;
  }
}

@media (max-width: 575.98px) {
  .hero-content-overlay {
    display: none;
  }
}