/* ============================================
   BEST SECURITY FORCE — STYLE.CSS
   Dark Luxury Theme — Black & Gold
   v3 — Localhost Safe, All Content Visible
============================================ */

:root {
  --gold: #C9A84C;
  --gold-light: #E2C27D;
  --gold-dark: #9E7D36;
  --black: #0A0A0A;
  --black-2: #111111;
  --black-3: #161616;
  --black-4: #1E1E1E;
  --black-5: #252525;
  --white: #FFFFFF;
  --gray-2: #AAAAAA;
  --gray-3: #666666;
  --font-main: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 8px 30px rgba(201, 168, 76, 0.28);
  --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.6);
  --radius: 4px;
  --radius-lg: 12px;
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-main);
  font-weight: 700;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black-2);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

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

.bg-dark-alt {
  background: var(--black-3);
}

.section-pad {
  padding: 100px 0;
}

/* BUTTONS */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black) !important;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-gold:hover {
  color: var(--black) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  filter: brightness(1.08);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold) !important;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* SECTION LABELS */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.55rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 18px;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-text {
  font-size: 0.96rem;
  color: var(--gray-2);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* =============================================
   SCROLL REVEAL — SAFE APPROACH
   Content is always visible.
   JS adds 'js-ready' to body, THEN hides/shows.
   If JS fails → everything stays visible.
============================================= */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

body.js-ready .reveal-up {
  opacity: 0;
  transform: translateY(32px);
}

body.js-ready .reveal-left {
  opacity: 0;
  transform: translateX(-38px);
}

body.js-ready .reveal-right {
  opacity: 0;
  transform: translateX(38px);
}

body.js-ready .reveal-up.visible,
body.js-ready .reveal-left.visible,
body.js-ready .reveal-right.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.07s;
}

.delay-2 {
  transition-delay: 0.15s;
}

.delay-3 {
  transition-delay: 0.23s;
}

.delay-4 {
  transition-delay: 0.31s;
}

.delay-5 {
  transition-delay: 0.39s;
}

/* =============================================
   NAVBAR
============================================= */
#mainNavbar {
  background: rgba(9, 9, 9, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
  z-index: 1000;
  border-bottom: 1px solid rgba(201, 168, 76, 0.14);
}

#mainNavbar.scrolled {
  background: rgba(6, 6, 6, 0.98);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.55);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--black);
  flex-shrink: 0;
}

.logo-icon.sm {
  width: 34px;
  height: 34px;
  font-size: 1rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.logo-sub {
  font-family: var(--font-main);
  font-size: 0.67rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-link {
  font-family: var(--font-main);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78) !important;
  padding: 8px 12px !important;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.nav-link:hover {
  color: var(--white) !important;
}

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

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

.toggler-icon {
  font-size: 1.3rem;
  color: var(--gold);
}

.navbar-toggler {
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 6px 10px;
}

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

@media (max-width:991px) {
  .navbar-collapse {
    background: rgba(8, 8, 8, 0.98);
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    margin-top: 8px;
  }

  .navbar-nav .btn-gold {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   HERO — CSS-ONLY BACKGROUND (localhost safe)
   Real image is optional on top. Gradient always shows.
============================================= */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Pure CSS fallback — always works, no external URL */
  background:
    linear-gradient(118deg, rgba(5, 5, 5, 0.98) 0%, rgba(10, 8, 4, 0.90) 50%, rgba(14, 10, 2, 0.75) 100%),
    repeating-linear-gradient(60deg, transparent, transparent 50px, rgba(201, 168, 76, 0.018) 50px, rgba(201, 168, 76, 0.018) 51px),
    #060606;
}

/* Thin gold left-border accent — always visible */
.hero-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 40%, var(--gold) 60%, transparent 100%);
  z-index: 4;
}

/* Optional hero image — loaded by JS if Unsplash is reachable */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  display: none;
  /* Hidden by default; shown by JS if loaded */
}

.hero-bg-img.loaded {
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(118deg, rgba(4, 4, 4, 0.97) 0%, rgba(8, 6, 2, 0.90) 45%, rgba(10, 8, 2, 0.68) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatP linear infinite;
}

@keyframes floatP {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.1;
  }

  100% {
    opacity: 0;
    transform: translateY(-75vh) scale(0.3);
  }
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
  padding-top: 145px;
  padding-bottom: 95px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.42);
  color: var(--gold-light);
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 40px;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.11;
  color: #FFFFFF;
  margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.hero-sub {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 530px;
  line-height: 1.78;
  margin-bottom: 36px;
}

.btn-hero {
  font-size: 0.85rem;
  padding: 15px 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.hero-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.trust-item {
  font-family: var(--font-main);
  font-size: 0.73rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-item i {
  color: var(--gold);
  font-size: 0.82rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-family: var(--font-main);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  z-index: 4;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: sPulse 2s ease-in-out infinite;
}

@keyframes sPulse {

  0%,
  100% {
    opacity: 0.2;
    transform: scaleY(0.5);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* =============================================
   STATS STRIP
============================================= */
.stats-section {
  background: var(--black-4);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.stat-box {
  padding: 42px 20px;
  text-align: center;
  border-right: 1px solid rgba(201, 168, 76, 0.1);
  transition: var(--transition);
}

.stat-box:last-child {
  border-right: none;
}

.stat-box:hover {
  background: rgba(201, 168, 76, 0.05);
}

.stat-number {
  font-family: var(--font-main);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: inline;
}

.stat-plus {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  display: inline;
  vertical-align: top;
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-family: var(--font-main);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 10px;
}

/* =============================================
   ABOUT
============================================= */
.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: var(--black-4);
  min-height: 260px;
}

.about-badge-card {
  position: absolute;
  bottom: -16px;
  right: -14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-main);
  box-shadow: var(--shadow-gold);
}

.about-badge-card i {
  font-size: 1.6rem;
}

.about-badge-card strong {
  display: block;
  font-size: 0.94rem;
  font-weight: 800;
}

.about-badge-card span {
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.75;
}

.about-cert {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(8, 8, 8, 0.92);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.about-points {
  margin: 22px 0;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-point i {
  margin-top: 3px;
  flex-shrink: 0;
}

/* =============================================
   SERVICES — Image Cards
============================================= */
.service-card {
  background: var(--black-4);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.38);
  transform: translateY(-7px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-img {
  position: relative;
  width: 100%;
  height: 195px;
  overflow: hidden;
  /* Gold-dark gradient — shows while image loads */
  background: linear-gradient(135deg, #1c1504, #100d02);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.4s ease;
  filter: brightness(0.75) saturate(0.75);
}

.service-card:hover .service-card-img img {
  transform: scale(1.07);
  filter: brightness(0.5) saturate(0.55);
}

.service-img-badge {
  position: absolute;
  bottom: -18px;
  left: 22px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  color: var(--black);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.45);
  z-index: 2;
}

.service-card-body {
  padding: 32px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--gray-2);
  line-height: 1.75;
  flex: 1;
}

.service-footer {
  margin-top: 18px;
}

.service-link {
  font-family: var(--font-main);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-link i {
  transition: transform 0.3s;
}

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

.service-link:hover i {
  transform: translateX(4px);
}

/* =============================================
   WHY US
============================================= */
.why-list {
  margin-top: 20px;
}

.why-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.why-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-item:hover .why-icon {
  background: var(--gold);
  color: var(--black);
}

.why-content h4 {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.why-content p {
  font-size: 0.85rem;
  color: var(--gray-2);
  line-height: 1.65;
  margin: 0;
}

.why-visual {
  position: relative;
}

.why-img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: var(--black-4);
  min-height: 260px;
}

.why-overlay-card {
  position: absolute;
  background: rgba(12, 12, 12, 0.94);
  border: 1px solid rgba(201, 168, 76, 0.25);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-main);
  box-shadow: var(--shadow-dark);
}

.why-overlay-card i {
  font-size: 1.35rem;
}

.why-overlay-card strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}

.why-overlay-card span {
  font-size: 0.68rem;
  color: var(--gray-2);
}

.top-card {
  top: 22px;
  left: -22px;
}

.bottom-card {
  bottom: 34px;
  right: -22px;
}

/* =============================================
   TESTIMONIALS
============================================= */
.testimonial-card {
  background: var(--black-4);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.testi-stars {
  color: var(--gold);
  font-size: 0.84rem;
  margin-bottom: 13px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.89rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
  margin-bottom: 16px;
}

.testi-text::before {
  content: '\201C';
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -0.45em;
  margin-right: 3px;
  font-style: normal;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 13px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--white);
}

.testi-author span {
  font-size: 0.74rem;
  color: var(--gray-3);
}

/* =============================================
   CONTACT
============================================= */
.contact-info-block,
.contact-form-wrap {
  background: var(--black-4);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
}

.contact-info-title,
.contact-form-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.ci-label {
  display: block;
  font-family: var(--font-main);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 3px;
}

.ci-value {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

a.ci-value:hover {
  color: var(--gold);
}

.contact-social {
  display: flex;
  gap: 9px;
}

.contact-social a {
  width: 37px;
  height: 37px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--gray-2);
  font-size: 0.88rem;
  transition: var(--transition);
}

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

.form-group-custom {
  margin-bottom: 4px;
}

.form-group-custom label {
  display: block;
  font-family: var(--font-main);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 7px;
}

.form-control-custom {
  display: block;
  width: 100%;
  background: var(--black-5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 11px 14px;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}

.form-control-custom:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
  background: #1c1c1c;
}

.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

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

select.form-control-custom {
  cursor: pointer;
}

select.form-control-custom option {
  background: var(--black-3);
  color: var(--white);
}

.btn-submit {
  font-size: 0.9rem;
  padding: 14px;
  border-radius: var(--radius);
}

.form-success-msg {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: var(--radius);
  color: var(--gold-light);
  font-family: var(--font-main);
  font-size: 0.87rem;
  padding: 13px 17px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--black-2);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

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

.footer-about {
  font-size: 0.875rem;
  color: var(--gray-3);
  line-height: 1.8;
  margin-bottom: 18px;
}

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

.footer-social a {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--gray-3);
  font-size: 0.84rem;
  transition: var(--transition);
}

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

.footer-heading {
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 17px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 26px;
  height: 1.5px;
  background: var(--gold);
}

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

.footer-links a {
  font-size: 0.875rem;
  color: var(--gray-3);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.855rem;
  color: var(--gray-3);
  line-height: 1.6;
}

.footer-contact-item i {
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: var(--gray-3);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px 0;
  font-size: 0.77rem;
  color: var(--gray-3);
  font-family: var(--font-main);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* =============================================
   FLOATING BUTTONS
============================================= */
.float-whatsapp {
  position: fixed;
  bottom: 26px;
  right: 22px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  z-index: 9000;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.42);
  transition: var(--transition);
}

.float-whatsapp:hover {
  background: #1fbe5c;
  transform: scale(1.1) translateY(-2px);
  color: #fff;
}

.float-tooltip {
  position: absolute;
  right: 64px;
  background: var(--black-2);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.float-whatsapp:hover .float-tooltip {
  opacity: 1;
}

.float-call {
  position: fixed;
  bottom: 92px;
  right: 22px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  z-index: 9000;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

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

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width:991px) {
  .top-card {
    left: 10px;
  }

  .bottom-card {
    right: 10px;
  }
}

@media (max-width:767px) {
  .section-pad {
    padding: 68px 0;
  }

  .hero-content-wrap {
    padding-top: 110px;
    padding-bottom: 72px;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-sub {
    font-size: 0.93rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    gap: 13px;
  }

  .about-img {
    height: 290px;
  }

  .about-badge-card {
    bottom: -12px;
    right: 8px;
    padding: 10px 13px;
  }

  .stat-box {
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  }

  .stat-box:last-child {
    border-bottom: none;
  }

  .contact-info-block,
  .contact-form-wrap {
    padding: 22px 16px;
  }

  .top-card,
  .bottom-card {
    display: none;
  }

  .why-img {
    height: 290px;
  }

  .service-card-img {
    height: 160px;
  }
}

@media (max-width:575px) {

  .section-label::before,
  .section-label::after {
    width: 16px;
  }
}

.md-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.md-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.md-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.md-subtitle {
  color: #c9a34e;
  margin-bottom: 15px;
  font-weight: 500;
}

.md-points {
  margin-top: 20px;
}

.md-point {
  margin-bottom: 10px;
  font-size: 15px;
}

.gallery-section {
  background: #0f1115;
  /* dark premium background */
}

.gallery-card {
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.gallery-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
  transition: 0.4s ease;
}

/* HOVER EFFECT */
.gallery-card:hover img {
  transform: scale(1.08);
}

/* OPTIONAL OVERLAY EFFECT */
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0;
  transition: 0.3s;
}

.gallery-card:hover::after {
  opacity: 1;
}

.client-section {
  background: #0f1115;
  overflow: hidden;
}

.client-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.client-track {
  display: flex;
  width: calc(250px * 12);
  animation: scroll 25s linear infinite;
}

.client-logo {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.client-logo img {
  max-width: 140px;

  opacity: 0.7;
  transition: 0.3s ease;
}

.client-logo {
  width: 200px;
  /* equal width */
  height: 120px;
  /* equal height */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.client-logo img {
  max-width: 100%;
  max-height: 100px;
  border-radius: 10px;
  /* control logo size */
  object-fit: contain;

  /* REMOVE GRAYSCALE */
  filter: none;
  opacity: 1;

  transition: 0.3s ease;
}

/* OPTIONAL HOVER (SUBTLE PREMIUM EFFECT) */
.client-logo img:hover {
  transform: scale(1.08);
}

/* HOVER EFFECT */
.client-logo img:hover {

  transform: scale(1.1);
}

/* SCROLL ANIMATION */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

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

/* PAUSE ON HOVER (OPTIONAL PREMIUM TOUCH) */
.client-slider:hover .client-track {
  animation-play-state: paused;
}

.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dots span {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.5;
  border-radius: 50%;
  cursor: pointer;
}

.hero-dots span.active {
  opacity: 1;
  background: #c9a34e;
}
/* ===== BREADCRUMB ===== */
.breadcrumb-section {
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
              url('assets/img/breadcrumb.jpg') center/cover no-repeat;
  padding: 120px 0 60px;
  color: #fff;
  position: relative;
}

.breadcrumb-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.breadcrumb-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.breadcrumb-nav a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb-nav a:hover {
  color: #d4af37;
}

.breadcrumb-nav span {
  color: #777;
}

.breadcrumb-nav .active {
  color: #d4af37;
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
  .breadcrumb-title {
    font-size: 28px;
  }
}
/* ===== WORK PROCESS ===== */
.work-process {
  background: #0a0a0a;
}

.process-card {
  background: #111;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  position: relative;
  transition: 0.4s;
  height: 100%;
}

.process-card i {
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 15px;
}

.process-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  color: #aaa;
}

/* NUMBER BADGE */
.process-number {
  position: absolute;
  top: -12px;
  left: 15px;
  background: #d4af37;
  color: #000;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 13px;
}

/* HOVER EFFECT */
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}