/* =============================================
   K.K. Associates — Main Stylesheet
   Color Palette: Charcoal, Dark Silver, Gold Accent
   ============================================= */

:root {
  --dark-bg: #1a1a1a;
  --darker-bg: #111111;
  --card-bg: #222222;
  --section-alt: #1e1e1e;
  --silver: #c0c0c0;
  --silver-light: #d8d8d8;
  --silver-dark: #888888;
  --gold: #c8a96e;
  --gold-light: #e0c080;
  --gold-dark: #a07840;
  --white: #f5f5f5;
  --border: rgba(200, 169, 110, 0.25);
  --text-muted: #999;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
  --radius: 8px;
  --font-display: 'Cinzel', serif;
  --font-body: 'Raleway', sans-serif;
  --font-elegant: 'Cormorant Garamond', serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}


body {
  font-family: var(--font-body);
  background-color: var(--dark-bg);
  color: var(--silver-light);
  font-size: 15px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--darker-bg);
}

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

/* ===== TOP BAR ===== */
.topbar {
  background: var(--darker-bg);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 12.5px;
  color: var(--silver-dark);
}

.topbar span {
  display: inline-flex;
  align-items: center;
}

.topbar i {
  color: var(--gold);
  font-size: 11px;
}

.topbar-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--silver-dark);
  text-decoration: none;
  font-size: 11px;
  margin-left: 6px;
  transition: var(--transition);
}

.topbar-social:hover {
  background: var(--gold);
  color: var(--darker-bg);
  border-color: var(--gold);
}

/* ===== NAVBAR ===== */
#mainNavbar {
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: var(--transition);
  z-index: 1000;
}

#mainNavbar.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow);
}

.brand-logo-wrap {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(200, 169, 110, 0.35);
}

.brand-logo {
  height: 75px;   /* adjust as needed */
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}

.brand-icon {
  font-size: 20px;
  color: var(--darker-bg);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.5px;
}

.brand-tagline {
  font-size: 10px;
  color: var(--silver-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--silver) !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 12px !important;
  position: relative;
  transition: var(--transition);
}

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

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

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

.btn-consult {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--darker-bg) !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  transition: var(--transition);
  text-decoration: none;
}

.btn-consult:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 169, 110, 0.4);
}

.navbar-toggler {
  border: 1px solid var(--border);
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(200,169,110,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ===== HERO CAROUSEL ===== */
#heroCarousel {
  background: var(--darker-bg);
}

.hero-slide {
  height: 92vh;
  min-height: 560px;
  max-height: 820px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.slide-1 {
  background-image: url('../img/banner-1.jpg');
}

.slide-2 {
  background-image: url('../img/banner-2.jpg');
}

.slide-3 {
  background-image: url('../img/banner-3.jpg');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.65) 55%, rgba(10, 10, 10, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 169, 110, 0.5);
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-elegant);
  font-weight: 300;
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  font-weight: 300;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--darker-bg) !important;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 169, 110, 0.45);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}

.btn-hero-outline:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
  background: rgba(200, 169, 110, 0.1);
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 56px;
  height: 56px;
  background: rgba(200, 169, 110, 0.15);
  border: 1px solid var(--border);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--gold);
}

.carousel-indicators button {
  width: 28px;
  height: 3px;
  background: rgba(200, 169, 110, 0.5) !important;
  border-radius: 2px;
  border: none !important;
}

.carousel-indicators .active {
  background: var(--gold) !important;
  width: 44px;
}

/* Slide animation */
.carousel-item.active .hero-content {
  animation: slideInUp 0.8s ease forwards;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, #111 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.stat-item {
  padding: 30px 20px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

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

.stat-item:hover {
  background: rgba(200, 169, 110, 0.05);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver-dark);
  margin-top: 4px;
  font-weight: 600;
}

/* ===== SECTIONS COMMON ===== */
.section-pad {
  padding: 90px 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-elegant);
  font-weight: 300;
}

.section-sub {
  color: var(--silver-dark);
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-top: 12px;
  border-radius: 2px;
}

/* ===== ABOUT ===== */
.about-img-wrap {
  position: relative;
  padding: 20px 20px 60px 20px;
}

.about-img-frame {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.about-img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.5s ease;
}

.about-img:hover {
  filter: grayscale(0%) contrast(1.1);
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--darker-bg);
  padding: 18px 22px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px 0 0 6px;
  box-shadow: var(--shadow-sm);
  line-height: 1.4;
}

.about-exp-tag {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--darker-bg);
  border: 1px solid var(--border);
  padding: 16px 18px;
  border-radius: 0 0 var(--radius) 0;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 10px;
}

.exp-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}

.exp-text {
  font-size: 11px;
  color: var(--silver-dark);
  line-height: 1.4;
}

.about-desc {
  color: var(--silver-dark);
  line-height: 1.85;
  margin-bottom: 10px;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--silver);
  font-size: 14px;
}

.feat-icon {
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--darker-bg) !important;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 169, 110, 0.4);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

/* ===== SERVICES ===== */
.services-section {
  background: var(--section-alt);
}

.service-cat-header {
  display: inline-flex;
  align-items: center;
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 4px;
}

.service-cat-header.criminal {
  background: rgba(150, 150, 170, 0.12);
  color: var(--silver);
  border-color: rgba(200, 200, 210, 0.2);
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: rgba(200, 169, 110, 0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background: #272727;
}

.service-card.criminal::before {
  background: linear-gradient(90deg, var(--silver), transparent);
}

.service-card.criminal:hover {
  border-color: rgba(200, 200, 200, 0.4);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--darker-bg);
}

.crim-icon {
  background: rgba(200, 200, 210, 0.1);
  color: var(--silver);
  border-color: rgba(200, 200, 210, 0.2);
}

.service-card.criminal:hover .crim-icon {
  background: var(--silver);
  color: var(--darker-bg);
}

.service-card h5 {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.service-card p {
  font-size: 13.5px;
  color: var(--silver-dark);
  margin: 0;
  line-height: 1.7;
}

/* ===== WHY US ===== */
.why-section {
  background: var(--dark-bg);
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(200, 169, 110, 0.45);
}

.why-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: rgba(200, 169, 110, 0.08);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 22px;
}

.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--darker-bg);
  margin-bottom: 18px;
  box-shadow: 0 4px 18px rgba(200, 169, 110, 0.3);
}

.why-card h5 {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13.5px;
  color: var(--silver-dark);
  line-height: 1.75;
  margin: 0;
}

/* ===== ACHIEVEMENTS ===== */
.achievements-section {
  background: var(--section-alt);
  position: relative;
}

.achievements-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200, 169, 110, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.achieve-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}

.achieve-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(200, 169, 110, 0.4);
}

.achieve-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
}

.achieve-body h5 {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--white);
  margin-bottom: 6px;
}

.achieve-body p {
  font-size: 13.5px;
  color: var(--silver-dark);
  margin: 0;
  line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--dark-bg);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: grayscale(15%) brightness(0.9);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(1.05);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 28px;
  color: var(--gold);
}

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

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

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

.lb-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
  text-align: center;
}

.lb-img-wrap img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.lb-caption {
  color: var(--silver);
  font-size: 13px;
  margin-top: 12px;
  letter-spacing: 1px;
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(200, 169, 110, 0.15);
  border: 1px solid var(--border);
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-close:hover {
  background: var(--gold);
  color: var(--darker-bg);
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(200, 169, 110, 0.15);
  border: 1px solid var(--border);
  color: var(--gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.lb-prev {
  left: 20px;
}

.lb-next {
  right: 20px;
}

.lb-nav:hover {
  background: var(--gold);
  color: var(--darker-bg);
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--section-alt);
}

.contact-info-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  height: 100%;
}

.contact-info-box h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
}

.contact-item {
  display: flex;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(200, 169, 110, 0.1);
}

.contact-item:last-child {
  border-bottom: none;
}

.ci-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(200, 169, 110, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
}

.contact-item strong {
  display: block;
  color: var(--white);
  font-size: 13px;
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--silver-dark);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.contact-item a {
  color: var(--silver-dark);
  text-decoration: none;
  transition: color 0.3s;
}

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

.contact-form-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.contact-form-box h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
}

.form-group-custom {
  position: relative;
}

.form-control-custom {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--silver-light);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 18px 14px 42px;
  outline: none;
  transition: var(--transition);
}

.form-control-custom::placeholder {
  color: var(--silver-dark);
}

.form-control-custom:focus {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.05);
}

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

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

select.form-control-custom option {
  background: var(--card-bg);
  color: var(--silver);
}

.form-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 13px;
  pointer-events: none;
}

.form-icon.ta {
  top: 18px;
  transform: none;
}

/* ===== MAP ===== */
.map-section {
  border-top: 1px solid var(--border);
  filter: grayscale(60%) invert(0.9) contrast(0.9);
  opacity: 0.85;
}

/* ===== FOOTER ===== */
.footer-section {
  background: var(--darker-bg);
}

.footer-top {
  padding: 70px 0 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand-icon {
  font-size: 22px;
  color: var(--gold);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
}

.footer-about {
  font-size: 13.5px;
  color: var(--silver-dark);
  line-height: 1.8;
  margin-top: 8px;
}

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

.fsoc {
  width: 34px;
  height: 34px;
  background: rgba(200, 169, 110, 0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--silver-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: var(--transition);
}

.fsoc:hover {
  background: var(--gold);
  color: var(--darker-bg);
  border-color: var(--gold);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

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

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

.footer-links a {
  color: var(--silver-dark);
  text-decoration: none;
  font-size: 13.5px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.footer-links a i {
  color: var(--gold);
  font-size: 10px;
}

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

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

.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--silver-dark);
  align-items: flex-start;
}

.footer-contact-list i {
  color: var(--gold);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: var(--silver-dark);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  padding: 18px 0;
  font-size: 12.5px;
  color: var(--silver-dark);
}

.footer-disclaimer {
  color: rgba(200, 169, 110, 0.5);
}

/* ===== FLOATING BUTTONS ===== */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 990;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  position: relative;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
}

.whatsapp-btn:hover {
  background: #1db954;
  color: #fff;
  transform: scale(1.1);
}

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

.call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(200, 169, 110, 0.5);
}

/* Pulse ring */
.float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse-ring 2s infinite;
  pointer-events: none;
}

.call-pulse {
  border-color: var(--gold);
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.45);
    opacity: 0;
  }

  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

/* ===== SCROLL TOP ===== */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.15);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 16px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 990;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.scroll-top-btn.visible {
  display: flex;
}

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

/* ===== AOS-LIKE ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-aos="fade-right"] {
  transform: translateX(-24px);
}

[data-aos="fade-left"] {
  transform: translateX(24px);
}

[data-aos="zoom-in"] {
  transform: scale(0.92);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-slide {
    height: 70vh;
    min-height: 480px;
  }

  .about-img {
    height: 380px;
  }

  .about-exp-tag,
  .about-badge {
    font-size: 10px;
  }

  .navbar-collapse {
    background: var(--darker-bg);
    padding: 16px;
    border-top: 1px solid var(--border);
  }

  .nav-link::after {
    display: none;
  }

  .btn-consult {
    display: inline-block;
    margin-top: 10px;
  }

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

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}
@media(max-width:768px)
{
	.cu-mb-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
	justify-content:center;
	text-align:center
	}
}
@media (max-width: 767px) {
  .hero-slide {
    height: 62vh;
    min-height: 420px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    font-size: 12px;
    padding: 11px 22px;
  }

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

  .stat-num {
    font-size: 30px;
  }

  .topbar-left span:last-child {
    display: none;
  }

  .contact-form-box,
  .contact-info-box {
    padding: 24px 20px;
  }

  .about-img {
    height: 540px;
  }

  .about-exp-tag,
  .about-badge {
    position: static;
    margin-top: 12px;
  }

  .floating-btns {
    bottom: 18px;
    right: 14px;
  }

  .scroll-top-btn {
    bottom: 18px;
    left: 14px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }

  .section-title {
    font-size: 24px;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    text-align: center;
  }

  .footer-bottom .row {
    flex-direction: column;
  }
}