/* 
   Elite Home Solutions - Premium Custom Stylesheet
   Brand Colors: Navy Blue, Gold, White
*/

:root {
  --primary-navy: #0f1e36;
  --primary-navy-light: #1a2f50;
  --secondary-gold: #d4af37;
  --secondary-gold-dark: #b89025;
  --accent-gold: #ffdf00;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-gold: 0 10px 25px rgba(212, 175, 55, 0.25);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Overrides - Fixing Backgrounds & Layouts */
body {
  font-family: "Poppins", sans-serif !important;
  background: var(--bg-white) !important;
  background-color: var(--bg-white) !important;
  color: var(--text-dark) !important;
}

/* Clean Main Container Backgrounds */
.main-contain {
  background-color: var(--bg-white) !important;
}

/* ==========================================
   FORCE TEXT CONTRAST & VISIBILITY SCOPING
   ========================================== */

/* Light Sections (Default) */
.main-contain p,
.main-contain span,
.main-contain li,
.main-contain label,
.main-contain div,
.main-contain .text-muted,
.main-contain .card-text,
.main-contain .faq-body,
.main-contain .why-card p,
.main-contain .service-card p,
.main-contain .testimonial-text,
#rs-footer p,
#rs-footer span,
#rs-footer li {
  color: var(--text-dark) !important;
}

.main-contain h1,
.main-contain h2,
.main-contain h3,
.main-contain h4,
.main-contain h5,
.main-contain h6,
.main-contain .card-title,
.main-contain .process-step-title,
.main-contain .why-card h5,
.main-contain .faq-header span {
  color: var(--primary-navy) !important;
}

/* Except for explicit dark sections (Banners, Headers, Footers, Quote Form) */
.bg-navy,
.cta-banner-section,
.quote-card-container,
.elite-breadcrumb-section,
header,
footer,
.dark-section {
  background-color: var(--primary-navy) !important;
  color: #ffffff !important;
}

.bg-navy h1,
.bg-navy h2,
.bg-navy h3,
.bg-navy h4,
.bg-navy h5,
.bg-navy h6,
.cta-banner-section h1,
.cta-banner-section h2,
.cta-banner-section h3,
.cta-banner-section h4,
.cta-banner-section h5,
.cta-banner-section h6,
.quote-card-container h1,
.quote-card-container h2,
.quote-card-container h3,
.quote-card-container h4,
.quote-card-container h5,
.quote-card-container h6,
.elite-breadcrumb-section h1,
.elite-breadcrumb-section h2,
.elite-breadcrumb-section h3,
.elite-breadcrumb-section h4,
.elite-breadcrumb-section h5,
.elite-breadcrumb-section h6,
header h1,
header h2,
header h3,
header h4,
header h5,
header h6,
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section h5,
.dark-section h6 {
  color: #ffffff !important;
}

.bg-navy p,
.bg-navy span,
.bg-navy li,
.bg-navy label,
.bg-navy div,
.cta-banner-section p,
.cta-banner-section span,
.cta-banner-section li,
.cta-banner-section label,
.quote-card-container p,
.quote-card-container span,
.quote-card-container li,
.quote-card-container label,
.quote-card-container div,
.elite-breadcrumb-section p,
.elite-breadcrumb-section span,
.elite-breadcrumb-section li,
header p,
header span,
header li,
header label,
footer p,
footer span,
footer li,
footer label,
footer div,
.dark-section p,
.dark-section span,
.dark-section li,
.dark-section label {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Handle links inside dark sections */
footer a,
.elite-breadcrumb-section a,
.cta-banner-section a {
  color: var(--secondary-gold) !important;
  transition: var(--transition-smooth);
}
footer a:hover {
  color: #ffffff !important;
  text-decoration: none !important;
}
.elite-breadcrumb-section a:hover,
.cta-banner-section a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

/* Preserve gold highlight text color */
.text-gold,
.main-contain .text-gold,
.text-gold i {
  color: var(--secondary-gold) !important;
}

/* ==========================================
   PREMIUM HOVER CARD EFFECTS (Navy & Gold Theme)
   ========================================== */

/* 1. Service Grid Cards */
.service-card {
  background: var(--bg-white) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 12px !important;
  padding: 35px 25px !important;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-gold), var(--accent-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.4s ease;
}
.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 15px 35px rgba(15, 30, 54, 0.1),
    var(--shadow-gold);
  border-color: var(--secondary-gold) !important;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card .icon-box {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background-color: rgba(15, 30, 54, 0.04);
  color: var(--primary-navy);
  margin: 0 auto 25px;
  font-size: 32px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}
.service-card:hover .icon-box {
  background-color: var(--primary-navy);
  color: var(--secondary-gold);
  border-color: var(--secondary-gold);
  transform: rotate(360deg);
}

/* 2. Why Choose Us Cards */
.why-card {
  background-color: var(--bg-light) !important;
  border-left: 5px solid var(--secondary-gold) !important;
  padding: 25px 20px !important;
  border-radius: 0 12px 12px 0 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}
.why-card:hover {
  background-color: var(--bg-white) !important;
  box-shadow: 0 10px 25px rgba(15, 30, 54, 0.08);
  transform: translateX(8px);
  border-left-color: var(--primary-navy) !important;
}

/* 3. Before & After Results Cards */
.before-after-card {
  background-color: var(--bg-white) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}
.before-after-card:hover {
  box-shadow: 0 15px 35px rgba(15, 30, 54, 0.12);
  transform: translateY(-8px);
  border-color: var(--secondary-gold) !important;
}
.comparison-container {
  overflow: hidden;
}
.comparison-container img {
  transition: transform 0.6s ease;
}
.before-after-card:hover .comparison-container img {
  transform: scale(1.05);
}

/* 4. Testimonial Cards */
.testimonial-card {
  background: var(--bg-white) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 12px !important;
  padding: 30px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  box-shadow: 0 15px 30px rgba(15, 30, 54, 0.08);
  transform: translateY(-5px);
  border-color: var(--secondary-gold) !important;
}

/* 5. General Bootstrap Card hover adjustments (e.g. Blogs) */
.card.border {
  border-radius: 12px !important;
  transition: all 0.4s ease !important;
}
.card.border:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 15px 30px rgba(15, 30, 54, 0.1) !important;
  border-color: var(--secondary-gold) !important;
}
.card.border .card-img-top {
  transition: transform 0.6s ease;
}
.card.border:hover .card-img-top {
  transform: scale(1.06);
}

/* ==========================================
   BUTTONS, HEADERS, FOOTERS & COMPONENTS
   ========================================== */

/* Premium Buttons */
.btn-premium-gold {
  background-color: var(--secondary-gold) !important;
  color: var(--primary-navy) !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 30px !important;
  border-radius: 4px !important;
  border: 2px solid var(--secondary-gold) !important;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  text-decoration: none !important;
  display: inline-block;
}
.btn-premium-gold:hover {
  background-color: transparent !important;
  color: var(--secondary-gold) !important;
  box-shadow: var(--shadow-gold) !important;
  transform: translateY(-2px);
}

.btn-premium-navy {
  background-color: var(--primary-navy) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 30px !important;
  border-radius: 4px !important;
  border: 2px solid var(--primary-navy) !important;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  text-decoration: none !important;
  display: inline-block;
}
.btn-premium-navy:hover {
  background-color: transparent !important;
  color: var(--primary-navy) !important;
  transform: translateY(-2px);
}

/* Glassmorphism Quote Form */
.quote-card-container {
  background: rgba(15, 30, 54, 0.95) !important;
  border: 2px solid var(--secondary-gold) !important;
  border-radius: 12px !important;
  padding: 30px !important;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

/* Navigation Custom Styling - Redesigned Floating Pill Navbar & Top Bar */
.custom-premium-header {
  position: absolute;
  top: 0px !important;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent !important;
  padding: 0 !important;
}

/* 2. Floating Navbar Card */
.header-nav-container {
  padding: 12px 40px 8px 40px;
}

/* Make container wider on desktop viewports */
@media (min-width: 992px) {
  .header-nav-container .container-fluid {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

.custom-floating-navbar {
  background: rgba(15, 30, 54, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(212, 175, 55, 0.22) !important;
  border-radius: 50px !important;
  padding: 10px 24px !important;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    var(--shadow-gold) !important;
  transition: var(--transition-smooth);
}

/* Logo */
.navbar-brand img {
  max-height: 48px !important;
  transition: var(--transition-smooth);
}

/* Nav Links Styling */
.custom-nav-list .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600 !important;
  font-size: 14.5px !important;
  text-transform: uppercase !important;
  padding: 8px 18px !important;
  border-radius: 30px !important;
  transition: var(--transition-smooth);
  margin: 0 4px;
}

.custom-nav-list .nav-link:hover {
  color: var(--secondary-gold) !important;
  background-color: rgba(212, 175, 55, 0.05) !important;
}

/* Active Highlight Pill styling */
.custom-nav-list .nav-link.active-pill {
  background-color: var(--secondary-gold) !important;
  color: var(--primary-navy) !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35) !important;
}

.custom-nav-list .nav-link.active-pill:hover {
  background-color: var(--secondary-gold) !important;
  color: var(--primary-navy) !important;
}

/* Pill-shaped Quote Button */
.btn-pill-quote {
  border-radius: 50px !important;
  background-color: var(--secondary-gold) !important;
  color: var(--primary-navy) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: var(--transition-smooth);
  border: 2px solid var(--secondary-gold) !important;
}

.btn-pill-quote:hover {
  background-color: transparent !important;
  color: var(--secondary-gold) !important;
  box-shadow: var(--shadow-gold) !important;
  transform: translateY(-1px);
}

/* Sticky Header Custom Adaptations - Keep Elegant Rounded Pill Shape & Minimize Gap */
header.menu-sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1050 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important; /* Force override style.css and responsive.css default padding */
}

header.menu-sticky .header-nav-container {
  padding: 0 !important; /* Force zero margin/padding above the sticky navbar */
}

header.menu-sticky .custom-floating-navbar {
  margin-top: 0 !important;
  border-radius: 50px !important; /* Keep the beautiful rounded shape! */
  border: 1px solid rgba(212, 175, 55, 0.25) !important; /* Retain the gold border */
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.45),
    var(--shadow-gold) !important;
  background: rgba(
    15,
    30,
    54,
    0.93
  ) !important; /* Slightly more opaque for better readability on scroll */
}

/* Dropdown Menu Style */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  background-color: rgba(15, 30, 54, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  border-radius: 16px !important;
  margin-top: 10px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35) !important;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.dropdown-item {
  color: #ffffff !important;
  font-weight: 500 !important;
  padding: 10px 20px !important;
  transition: var(--transition-smooth);
  border-radius: 8px !important;
}

.dropdown-item:hover {
  background-color: var(--secondary-gold) !important;
  color: var(--primary-navy) !important;
}

/* Mobile responsive media query adaptations */
@media (max-width: 991px) {
  .header-nav-container {
    padding: 8px 0 !important;
  }
  .custom-floating-navbar {
    border-radius: 20px !important;
    padding: 8px 16px !important;
  }
  .custom-nav-list {
    margin-top: 15px !important;
    padding-bottom: 10px !important;
    text-align: center !important;
  }
  .custom-nav-list .nav-link {
    display: block !important;
    padding: 10px !important;
    margin: 5px 0 !important;
  }
  .custom-nav-list .nav-link.active-pill {
    background-color: rgba(212, 175, 55, 0.15) !important;
    color: var(--secondary-gold) !important;
    box-shadow: none !important;
  }
  .dropdown-menu {
    background-color: rgba(15, 30, 54, 0.5) !important;
    border: none !important;
    box-shadow: none !important;
    margin-top: 5px !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* FAQ Accordion Styling */
.faq-accordion .faq-item {
  border: 1px solid var(--border-color) !important;
  border-radius: 6px !important;
  margin-bottom: 15px !important;
  background-color: var(--bg-white) !important;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.faq-accordion .faq-item:hover {
  border-color: var(--secondary-gold) !important;
}
.faq-accordion .faq-header {
  padding: 18px 25px !important;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  user-select: none;
  transition: var(--transition-smooth);
}
.faq-accordion .faq-header .toggle-icon {
  font-size: 18px;
  color: var(--secondary-gold) !important;
  transition: var(--transition-smooth);
}
.faq-accordion .faq-item.expanded {
  border-color: var(--secondary-gold) !important;
}
.faq-accordion .faq-item.expanded .faq-header {
  background-color: var(--bg-light) !important;
}
.faq-accordion .faq-item.expanded .toggle-icon {
  transform: rotate(180deg) !important;
}
.faq-accordion .faq-body {
  padding: 0 25px !important;
  height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
  line-height: 1.6;
}
.faq-accordion .faq-item.expanded .faq-body {
  padding: 20px 25px !important;
  height: auto !important;
  border-top: 1px solid var(--border-color) !important;
}

/* Step Timeline Section */
.process-timeline {
  position: relative;
  margin-top: 40px;
}
.process-step {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}
.process-step-node {
  width: 60px;
  height: 60px;
  line-height: 56px;
  border: 2px solid var(--secondary-gold) !important;
  background-color: var(--primary-navy) !important;
  color: var(--secondary-gold) !important;
  border-radius: 50%;
  margin: 0 auto 15px;
  font-size: 22px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}
.process-step:hover .process-step-node {
  background-color: var(--secondary-gold) !important;
  color: var(--primary-navy) !important;
  transform: scale(1.1);
}

/* Floating CTAs (Desktop Only) - Shifted up to clear scroll-to-top button */
.floating-cta-container {
  position: fixed;
  bottom: 95px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}
.floating-cta-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 24px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
  text-decoration: none !important;
}
.floating-cta-btn:hover {
  animation: none !important;
  transform: scale(1.15) translateY(-4px) !important;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25) !important;
}
.cta-whatsapp {
  background-color: #25d366 !important;
  animation: pulse-whatsapp 2s infinite ease-in-out;
}
.cta-call {
  background-color: var(--secondary-gold) !important;
  animation: pulse-call 2s infinite ease-in-out;
  /* animation-delay: 1.25s; */
}

@keyframes pulse-whatsapp {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes pulse-call {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 18px rgba(212, 175, 55, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

/* Sticky Action Bar (Mobile Viewports Only) */
.mobile-sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-navy) !important;
  border-top: 3px solid var(--secondary-gold) !important;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  z-index: 9999;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
}
.mobile-cta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 10px 5px;
  font-size: 11px;
  font-weight: 500;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}
.mobile-cta-item i {
  font-size: 18px;
  margin-bottom: 4px;
}
.mobile-cta-item:last-child {
  border-right: none;
}
.mobile-cta-item:hover,
.mobile-cta-item:active {
  background-color: var(--primary-navy-light) !important;
  color: var(--secondary-gold) !important;
}

/* Breadcrumbs Section */
.elite-breadcrumb-section {
  background: linear-gradient(
    135deg,
    var(--primary-navy) 0%,
    var(--primary-navy-light) 100%
  ) !important;
  padding: 60px 0 !important;
  color: #ffffff !important;
  border-bottom: 2px solid var(--secondary-gold) !important;
}
.elite-breadcrumbs {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.elite-breadcrumbs li a {
  color: var(--secondary-gold) !important;
  text-decoration: none;
}
.elite-breadcrumbs li::after {
  content: "/";
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.5) !important;
}
.elite-breadcrumbs li:last-child::after {
  content: "";
}

/* Call to Action Banner */
.cta-banner-section {
  background: linear-gradient(
    rgba(15, 30, 54, 0.95),
    rgba(15, 30, 54, 0.95)
  ) !important;
  background-size: cover;
  background-position: center;
  color: #ffffff !important;
  padding: 80px 0 !important;
  border-top: 3px solid var(--secondary-gold) !important;
  border-bottom: 3px solid var(--secondary-gold) !important;
}

/* Service Area Section Links */
.service-area-badge {
  background-color: var(--bg-light) !important;
  border: 1px solid var(--border-color) !important;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  margin: 5px;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition-smooth);
}
.service-area-badge:hover {
  background-color: var(--secondary-gold) !important;
  color: var(--primary-navy) !important;
  border-color: var(--secondary-gold) !important;
  transform: translateY(-2px);
}

/* Partner Program Benefits List */
.partner-benefit-list {
  list-style: none;
  padding: 0;
}
.partner-benefit-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 16px;
}
.partner-benefit-list li::before {
  content: "\f058"; /* FontAwesome check-circle */
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--secondary-gold) !important;
  font-size: 18px;
}

/* Responsive Grid Connectors for Desktop Timeline */
@media (min-width: 992px) {
  .process-timeline::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
  }
}

/* Responsive Breakpoints & Device Support */
@media (max-width: 991px) {
  .floating-cta-container {
    display: none !important; /* Hide floating buttons on small screens in favor of sticky footer */
  }
  .mobile-sticky-cta-bar {
    display: grid; /* Show bottom actions bar on tablets/mobiles */
  }
  body {
    padding-bottom: 60px !important; /* Avoid content overlap with sticky footer bar */
  }
  .elite-breadcrumb-section {
    padding: 40px 0;
  }
  .process-step-node {
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .quote-card-container {
    padding: 20px;
  }
  .comparison-container {
    flex-direction: column;
  }
  .comparison-side {
    width: 100%;
  }
  .comparison-side img {
    height: 200px;
  }
  .cta-banner-section {
    padding: 50px 0;
    text-align: center;
  }
}

/* ==========================================
   HERO BANNER & SUBPAGE HEADER ALIGNMENT FIXES
   ========================================== */

/* 1. Main Hero Banner Padding & Background Fixes */
.iq-banner.bg-navy {
  padding-top: 150px !important; /* Clears absolute navigation bar */
  padding-bottom: 90px !important;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--primary-navy) 0%,
    var(--primary-navy-light) 100%
  ) !important;
}

/* Remove cryptocurrency icons watermark left over from coinex theme */
.iq-banner::before {
  display: none !important;
}

/* 2. Inner Page Breadcrumbs Padding Fix */
.elite-breadcrumb-section {
  padding-top: 150px !important; /* Clears absolute navigation bar on subpages */
  padding-bottom: 70px !important;
}

/* Responsive adjustment for headers on smaller viewports */
@media (max-width: 991px) {
  .iq-banner.bg-navy {
    padding-top: 110px !important;
    padding-bottom: 60px !important;
  }
  .elite-breadcrumb-section {
    padding-top: 110px !important;
    padding-bottom: 50px !important;
  }
}

/* ==========================================
   HERO BANNER DESIGN ENHANCEMENTS
   ========================================== */

/* Premium Gold Badge Styling */
.iq-banner .badge.bg-warning {
  background-color: var(--secondary-gold) !important;
  color: var(--primary-navy) !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  display: inline-block !important;
  margin-bottom: 20px !important;
}

/* Hero Typography & Text Styling */
.iq-banner h1.display-4 {
  font-size: 3.2rem !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  letter-spacing: -0.5px !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.iq-banner p.lead {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
  margin-bottom: 30px !important;
}

/* Checklist Items */
.iq-banner .banner-text .row span {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #ffffff !important;
}

.iq-banner .banner-text .fa-check-circle {
  color: var(--secondary-gold) !important;
  font-size: 18px !important;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5) !important;
}

.iq-banner .banner-text .col-sm-6 {
  margin-bottom: 15px !important;
}

/* ==========================================
   QUOTE CARD FORM DESIGN UPGRADE
   ========================================== */

.quote-card-container {
  background: rgba(15, 30, 54, 0.95) !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  border-radius: 16px !important;
  padding: 35px 30px !important;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(212, 175, 55, 0.1) !important;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.quote-card-container:hover {
  border-color: var(--secondary-gold) !important;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.5),
    var(--shadow-gold) !important;
}

.quote-card-container h3 {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 8px !important;
  letter-spacing: -0.5px !important;
}

.quote-card-container p {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 13px !important;
}

.quote-card-container .form-group {
  margin-bottom: 18px !important;
}

/* Modern inputs & dropdown selects with light translucent borders */
.quote-card-container .form-control {
  background-color: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  height: 48px !important;
  border-radius: 6px !important;
  padding: 10px 16px !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
}

.quote-card-container .form-control::placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
}

.quote-card-container .form-control:focus {
  background-color: rgba(255, 255, 255, 0.12) !important;
  border-color: var(--secondary-gold) !important;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3) !important;
  color: #ffffff !important;
  outline: none !important;
}

/* Select element styling specifics */
.quote-card-container select.form-control {
  color: rgba(255, 255, 255, 0.7) !important;
}

.quote-card-container select.form-control:focus {
  color: #ffffff !important;
}

.quote-card-container select.form-control option {
  background-color: #101f35 !important;
  color: #ffffff !important;
}

/* Button override for card compatibility */
.quote-card-container button.btn-premium-gold {
  margin-top: 10px !important;
  border-radius: 6px !important;
  height: 48px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* ==========================================
   PREMIUM SERVICE CARDS (Reference Match)
   ========================================== */

.premium-service-card {
  background: linear-gradient(180deg, #faf8f2 0%, #ffffff 100%) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  border-radius: 30px !important;
  padding: 24px !important;
  text-align: left;
  box-shadow: 0 10px 30px rgba(15, 30, 54, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.premium-service-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(15, 30, 54, 0.08),
    0 0 25px rgba(212, 175, 55, 0.15);
  border-color: var(--secondary-gold) !important;
}

/* Curved Image Container */
.premium-service-card .card-img-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
}

.premium-service-card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  /* Beautiful convex dome curve matching the reference wave look */
  clip-path: ellipse(110% 85% at 50% 15%);
}

.premium-service-card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

/* Card Body Content */
.premium-service-card h4 {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--primary-navy) !important;
  margin-bottom: 12px !important;
  padding: 0 4px !important;
  line-height: 1.3 !important;
}

.premium-service-card p {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: var(--text-dark) !important;
  opacity: 0.85;
  margin-bottom: 24px !important;
  padding: 0 4px !important;
  flex-grow: 1; /* Pushes button to bottom */
}

/* Pill Button Footer */
.premium-service-card .card-btn-link {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  background: #ffffff !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  border-radius: 50px !important;
  padding: 8px 8px 8px 24px !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  margin-top: auto; /* Aligns to bottom */
}

.premium-service-card .card-btn-link span {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--primary-navy) !important;
  transition: color 0.3s ease;
}

.premium-service-card .card-btn-link .btn-arrow-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.1) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.premium-service-card .card-btn-link .btn-arrow-circle i {
  color: var(--secondary-gold) !important;
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* Hover styles for button inside card */
.premium-service-card:hover .card-btn-link {
  background: var(--primary-navy) !important;
  border-color: var(--primary-navy) !important;
  box-shadow: 0 8px 20px rgba(15, 30, 54, 0.15);
}

.premium-service-card:hover .card-btn-link span {
  color: #ffffff !important;
}

.premium-service-card:hover .card-btn-link .btn-arrow-circle {
  background-color: var(--secondary-gold) !important;
}

.premium-service-card:hover .card-btn-link .btn-arrow-circle i {
  color: var(--primary-navy) !important;
  transform: translateX(2px);
}

/* ==========================================
   LUXURY HERO SECTION REDESIGN STYLES
   ========================================== */

/* Main Hero Section & Backgrounds */
.luxury-hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 135px !important;
  padding-bottom: 75px !important;
  z-index: 1;
  transition: background 0.8s ease;
}

/* Base gradients and meshes */
.hero-luxury-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -3;
}

.hero-gold-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
}

.hero-lighting-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

/* Background Gradients: White on left, Navy on right on desktop */
@media (min-width: 992px) {
  .luxury-hero-section {
    background: linear-gradient(
      105deg,
      #ffffff 0%,
      #f7f9fc 50%,
      #152744 60%,
      #0f1e36 100%
    ) !important;
  }
  .hero-luxury-mesh {
    background:
      radial-gradient(
        circle at 15% 25%,
        rgba(212, 175, 55, 0.04) 0%,
        transparent 40%
      ),
      radial-gradient(
        circle at 85% 30%,
        rgba(212, 175, 55, 0.12) 0%,
        transparent 45%
      );
  }
  .hero-gold-glow {
    background: radial-gradient(
      circle at 75% 50%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 50%
    );
  }
  .hero-lighting-effect {
    background: radial-gradient(
      circle at 40% 20%,
      rgba(255, 255, 255, 0.8) 0%,
      transparent 60%
    );
  }
}

/* Stacking gradients for mobile: White on top, Navy on bottom */
@media (max-width: 991px) {
  .luxury-hero-section {
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f9fc 40%,
      #152744 48%,
      #0f1e36 100%
    ) !important;
    padding-top: 100px !important;
    padding-bottom: 40px !important;
  }
  .hero-luxury-mesh {
    background:
      radial-gradient(
        circle at 50% 20%,
        rgba(212, 175, 55, 0.03) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 50% 80%,
        rgba(212, 175, 55, 0.1) 0%,
        transparent 40%
      );
  }
  .hero-gold-glow {
    background: radial-gradient(
      circle at 50% 70%,
      rgba(212, 175, 55, 0.06) 0%,
      transparent 45%
    );
  }
  .hero-lighting-effect {
    background: radial-gradient(
      circle at 50% 10%,
      rgba(255, 255, 255, 0.8) 0%,
      transparent 50%
    );
  }
}

/* Social Proof Pill Badge */
.hero-social-badge {
  display: inline-block;
}

.social-proof-pill {
  background: rgba(255, 255, 255, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  color: #0f1e36 !important;
  border-radius: 30px !important;
  padding: 8px 18px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(15, 30, 54, 0.05) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.social-proof-pill .stars i {
  font-size: 12px;
  color: #d4af37 !important;
  margin-right: 1px;
}

/* Headline & Gold Gradient Animation */
.hero-title {
  font-size: 3.2rem !important;
  line-height: 1.25 !important;
  letter-spacing: -1px;
  color: #0f1e36 !important; /* Deep Navy for white left side */
  text-shadow: none !important;
}

.text-gradient-gold {
  background: linear-gradient(
    90deg,
    #d4af37 0%,
    #f3e5ab 30%,
    #aa7c11 60%,
    #d4af37 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShift 4s linear infinite;
  display: inline-block;
}

@keyframes goldShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* Dynamic Typing Text */
.hero-typing-subtitle {
  font-size: 24px !important;
  font-weight: 600 !important;
  color: #0f1e36 !important;
  letter-spacing: -0.5px;
}

.typing-prefix {
  color: #0f1e36 !important;
}

.typing-text {
  color: #d4af37 !important;
  font-weight: 700 !important;
  border-right: none;
  margin-left: 5px;
}

.typing-cursor {
  animation: blink 0.75s step-end infinite;
  color: #d4af37;
  font-weight: 300;
  margin-left: 2px;
}

@keyframes blink {
  from,
  to {
    color: transparent;
  }
  50% {
    color: #d4af37;
  }
}

/* Mini Service Chips */
.hero-service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-chip {
  background: rgba(15, 30, 54, 0.04) !important;
  border: 1px solid rgba(15, 30, 54, 0.08) !important;
  color: #0f1e36 !important;
  border-radius: 30px !important;
  padding: 6px 14px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.service-chip:hover {
  background: rgba(15, 30, 54, 0.08) !important;
  border-color: rgba(212, 175, 55, 0.4) !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2) !important;
  transform: translateY(-2px);
}

/* Subheading */
.hero-subtitle {
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: rgba(15, 30, 54, 0.8) !important;
}

/* Trust Badges (Pills) */
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-badge {
  background: rgba(15, 30, 54, 0.04) !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  color: #0f1e36 !important;
  border-radius: 30px !important;
  padding: 6px 14px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(15, 30, 54, 0.03);
  transition: all 0.3s ease;
}

.trust-badge i {
  font-size: 10px;
  color: #d4af37 !important;
}

.trust-badge:hover {
  background: rgba(15, 30, 54, 0.08) !important;
  transform: translateY(-2px);
}

/* Upgraded CTA Buttons */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px !important; /* 16px gap */
}

.btn-outline-navy {
  background-color: #0f1e36 !important; /* Navy Background */
  color: #ffffff !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  height: 60px !important; /* Height 58px to 62px */
  padding: 0 32px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 4px !important;
  border: 2px solid #d4af37 !important; /* Gold Border */
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none !important;
  animation: callFloat 4s ease-in-out infinite; /* Gentle auto floating */
}

.btn-outline-navy i {
  color: #ffffff !important; /* White Icon */
}

.btn-outline-navy:hover {
  animation: none !important; /* Stop floating on hover */
  transform: translateY(-6px) !important; /* TranslateY(-6px) */
  box-shadow:
    0 12px 30px rgba(212, 175, 55, 0.65),
    0 0 15px rgba(212, 175, 55, 0.35) !important; /* Intense Gold Glow */
  border-color: #d4af37 !important; /* Border Glow */
}

.btn-whatsapp-green {
  background-color: #25d366 !important; /* Premium WhatsApp Green */
  border: 2px solid #25d366 !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  height: 60px !important; /* Height 58px to 62px */
  padding: 0 32px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 4px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25) !important; /* Soft Glow Effect */
  animation: whatsappFloatAndPulse 10s ease-in-out infinite; /* Gentle auto float + pulse every 10s */
}

.btn-whatsapp-green i {
  color: #ffffff !important; /* White Icon */
}

.btn-whatsapp-green:hover {
  animation: none !important; /* Stop animation on hover */
  transform: translateY(-6px) scale(1.05) !important; /* TranslateY(-6px) & Scale(1.05) */
  box-shadow:
    0 12px 30px rgba(37, 211, 102, 0.65),
    0 0 15px rgba(37, 211, 102, 0.3) !important; /* Strong Green Shadow */
  background-color: #25d366 !important;
  color: #ffffff !important;
}

/* Keyframe animations for auto floating & pulse */
@keyframes callFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes whatsappFloatAndPulse {
  /* Auto Floating Phase (0% to 80% / 0s to 8s) */
  0%,
  20%,
  40%,
  60%,
  80% {
    transform: translateY(-5px);
  }
  10%,
  30%,
  50%,
  70% {
    transform: translateY(0);
  }
  /* Subtle Pulse Phase (80% to 100% / 8s to 10s) */
  85% {
    transform: translateY(-2px) scale(1.06);
    box-shadow:
      0 8px 25px rgba(37, 211, 102, 0.55),
      0 0 15px rgba(37, 211, 102, 0.3) !important;
  }
  90% {
    transform: translateY(-2px) scale(0.97);
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.15) !important;
  }
  95% {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45) !important;
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/* Glassmorphism Quote Card Form - Upgraded to Premium luxury Style */
.luxury-quote-card {
  background: rgba(
    255,
    255,
    255,
    0.08
  ) !important; /* Extremely clean transparent glass */
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 24px !important; /* Rounded corners 24px */
  padding: 35px !important;
  backdrop-filter: blur(25px) !important; /* Backdrop blur */
  -webkit-backdrop-filter: blur(25px) !important;
  position: relative;
  z-index: 5;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    0 0 20px rgba(212, 175, 55, 0.1) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

/* Razor-sharp premium gold-white glass border gradient */
.luxury-quote-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4),
    rgba(212, 175, 55, 0.25) 30%,
    rgba(15, 30, 54, 0) 60%,
    rgba(212, 175, 55, 0.4) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 6;
}

/* Clean Hover Translation & Lift (Matching lower section cards) */
.luxury-quote-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.13) !important;
  border-color: rgba(212, 175, 55, 0.65) !important;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.45),
    0 0 35px rgba(212, 175, 55, 0.25) !important;
}

.luxury-quote-card h3 {
  font-size: 25px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 6px !important;
  letter-spacing: -0.5px;
  text-shadow: 0 3px 6px rgba(15, 30, 54, 0.5);
}

.luxury-quote-card p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 13.5px !important;
}

.form-floating-group {
  position: relative;
  width: 100%;
}

.form-floating-group .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.3s ease;
  z-index: 7;
}

.form-floating-group .form-control {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  height: 52px !important;
  border-radius: 10px !important;
  padding: 10px 16px 10px 42px !important;
  font-size: 14px !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.35s ease !important;
  position: relative;
  z-index: 6;
}

.form-floating-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

.form-floating-group .form-control:focus {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: #d4af37 !important;
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.1),
    0 0 20px rgba(212, 175, 55, 0.4) !important;
  color: #ffffff !important;
  outline: none !important;
}

.form-floating-group .form-control:focus + .input-icon {
  color: #d4af37 !important;
}

.form-floating-group select.form-control {
  color: #ffffff !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-floating-group select.form-control option {
  background: #0f1e36 !important;
  color: #ffffff !important;
}

/* Custom Dropdown Chevron arrow indicator for select */
.form-floating-group:has(select)::after {
  content: "\f107";
  font-family: "FontAwesome";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  pointer-events: none;
  z-index: 7;
  transition: all 0.3s ease;
}

.form-floating-group:has(select):focus-within::after {
  color: #d4af37;
  transform: translateY(-50%) rotate(180deg);
}

/* Form submit button upgraded style */
.luxury-quote-card .btn-shine-gold {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #ffdf00 0%,
    #d4af37 50%,
    #b89025 100%
  ) !important; /* Ultra shiny gold gradient */
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow:
    0 8px 25px rgba(212, 175, 55, 0.35),
    0 1px 2px rgba(255, 255, 255, 0.3) inset,
    0 -3px 0 rgba(0, 0, 0, 0.2) inset !important; /* 3D bottom bevel */
  border-radius: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  color: #0f1e36 !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.luxury-quote-card .btn-shine-gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: none;
}

.luxury-quote-card .btn-shine-gold:hover::after {
  left: 160%;
  transition: left 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.luxury-quote-card .btn-shine-gold:hover {
  transform: translateY(-3px) !important; /* Hover lift forward */
  color: #ffffff !important;
  background: #0f1e36 !important; /* Premium Navy background on hover */
  border-color: #d4af37 !important;
  box-shadow:
    0 14px 35px rgba(212, 175, 55, 0.5),
    0 1px 2px rgba(255, 255, 255, 0.45) inset,
    0 -3px 0 rgba(0, 0, 0, 0.25) inset !important;
}

.luxury-quote-card .btn-shine-gold:active {
  transform: translateY(1px) !important;
  box-shadow:
    0 6px 15px rgba(212, 175, 55, 0.4),
    0 1px 2px rgba(255, 255, 255, 0.2) inset,
    0 -1px 0 rgba(0, 0, 0, 0.2) inset !important;
}

/* Floating Trust Card */
.floating-trust-card {
  position: absolute;
  top: -20px;
  right: -20px; /* Top-right of form card area */
  z-index: 10;
  pointer-events: none;
}

.floating-trust-inner {
  background: rgba(15, 30, 54, 0.95) !important; /* Semi-transparent */
  border: 2px solid var(--secondary-gold) !important; /* Gold Border */
  border-radius: 16px !important;
  padding: 12px 18px !important;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(212, 175, 55, 0.2) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  animation: floatTrustCard 5s ease-in-out infinite alternate;
}

.floating-trust-label {
  font-size: 10px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-trust-val {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #d4af37 !important;
  line-height: 1.2;
  margin-top: 2px;
}

@keyframes floatTrustCard {
  0% {
    transform: translateY(0) rotate(-1.5deg);
  }
  100% {
    transform: translateY(-12px) rotate(1.5deg);
  }
}

/* Bottom Trust Bar (Upgraded) */
.hero-bottom-trust-bar {
  width: 100%;
  margin-top: 40px;
}

.hero-bottom-trust-bar .trust-card {
  background: #0f1e36 !important; /* Luxury Navy Card */
  border: 1px solid rgba(212, 175, 55, 0.35) !important; /* Gold Border */
  border-radius: 16px !important;
  padding: 22px 30px !important;
  box-shadow: 0 12px 30px rgba(15, 30, 54, 0.1) !important;
  flex: 1;
  min-width: 260px;
  max-width: 330px;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 15px !important;
  text-align: left !important;
}

.hero-bottom-trust-bar .trust-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(212, 175, 55, 0.6) !important;
  box-shadow: 0 18px 40px rgba(15, 30, 54, 0.25) !important;
}

.hero-bottom-trust-bar .trust-icon {
  font-size: 24px !important;
  color: #d4af37 !important; /* Gold Icon */
  display: inline-flex;
  align-items: center;
}

.hero-bottom-trust-bar .trust-text {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #ffffff !important; /* White Text */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Animation helpers */
.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.hero-text-left .fade-in-up:nth-child(1) {
  animation-delay: 0.1s;
}
.hero-text-left .fade-in-up:nth-child(2) {
  animation-delay: 0.2s;
}
.hero-text-left .fade-in-up:nth-child(3) {
  animation-delay: 0.3s;
}
.hero-text-left .fade-in-up:nth-child(4) {
  animation-delay: 0.4s;
}
.hero-text-left .fade-in-up:nth-child(5) {
  animation-delay: 0.5s;
}
.hero-text-left .fade-in-up:nth-child(6) {
  animation-delay: 0.6s;
}

.luxury-quote-card.fade-in-up {
  animation-delay: 0.5s;
}
.floating-trust-card.fade-in-up {
  animation-delay: 0.75s;
}

.hero-bottom-trust-bar .trust-card:nth-child(1) {
  animation-delay: 0.7s;
}
.hero-bottom-trust-bar .trust-card:nth-child(2) {
  animation-delay: 0.8s;
}
.hero-bottom-trust-bar .trust-card:nth-child(3) {
  animation-delay: 0.9s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Overrides & Viewport compatibility */
@media (max-width: 1199px) {
  .floating-trust-card {
    top: -25px;
    right: 15px; /* Keep floating card on screen when stacked */
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.4rem !important;
    text-align: center;
  }
  .hero-social-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
  }
  .hero-typing-subtitle {
    text-align: center;
    font-size: 20px !important;
  }
  .hero-service-chips {
    justify-content: center;
    margin-bottom: 20px;
  }
  .hero-subtitle {
    text-align: center;
  }
  .hero-trust-strip {
    justify-content: center;
  }
  .hero-cta-group {
    justify-content: center;
    gap: 16px !important;
  }
  #quote-form-section {
    margin-top: 30px;
  }
}

/* ==========================================
   WHY CHOOSE US - LUXURY SERVICE SHOWCASE
   ========================================== */

.why-choose-luxury-section {
  background-color: var(--bg-white) !important;
  position: relative;
  z-index: 1;
}

/* Left Column: Visual Wrapper & Floating Cards */
.why-visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 480px;
  border-radius: 24px !important;
}

/* Soft gold glow behind image */
.why-glow-back {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.2) 0%,
    transparent 70%
  );
  z-index: -2;
  pointer-events: none;
}

/* Subtle gradient ring */
.why-gradient-ring {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 36px;
  border: 2px dashed rgba(212, 175, 55, 0.25) !important;
  pointer-events: none;
  z-index: -1;
}

.why-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px !important;
  box-shadow: 0 20px 40px rgba(15, 30, 54, 0.15) !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
}

/* Glassmorphism Floating Cards */
.why-achievement-card {
  position: absolute;
  background: rgba(15, 30, 54, 0.9) !important;
  border: 1px solid rgba(212, 175, 55, 0.45) !important;
  border-radius: 16px !important;
  padding: 12px 18px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(10px);
  z-index: 10;
}

.why-achievement-card .card-title {
  font-size: 11px !important;
  text-transform: uppercase;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  color: #ffffff !important;
}

.why-achievement-card .stars i {
  font-size: 10px;
  color: var(--secondary-gold) !important;
}

.why-achievement-card .percentage {
  font-size: 26px !important;
  line-height: 1 !important;
  margin-bottom: 2px !important;
}

.why-achievement-card .badge-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-achievement-card .badge-icon-box i {
  font-size: 14px;
}

/* Position settings for the floating badges */
.why-achievement-card.top-left {
  top: 40px;
  left: -35px;
}

.why-achievement-card.top-right {
  top: 140px;
  right: -45px;
  width: 200px;
}

.why-achievement-card.bottom-right {
  bottom: 40px;
  right: -25px;
  text-align: center;
}

/* Achievement Floating Animations */
.float-card-1 {
  animation: floatCard1 6s ease-in-out infinite;
}
.float-card-2 {
  animation: floatCard2 7s ease-in-out infinite;
}
.float-card-3 {
  animation: floatCard3 5s ease-in-out infinite;
}

@keyframes floatCard1 {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}
@keyframes floatCard2 {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
}
@keyframes floatCard3 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Right Column: Feature Cards */
.why-feature-card {
  background-color: var(--bg-white) !important;
  border: 1px solid rgba(212, 175, 55, 0.15) !important;
  border-radius: 18px !important;
  padding: 24px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  text-align: left;
}

.why-feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--secondary-gold) !important;
  box-shadow:
    0 15px 30px rgba(15, 30, 54, 0.05),
    0 0 20px rgba(212, 175, 55, 0.12) !important;
}

.why-feature-card .feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(212, 175, 55, 0.1) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.why-feature-card .feature-icon-box i {
  color: var(--secondary-gold) !important;
  font-size: 20px;
}

.why-feature-card:hover .feature-icon-box {
  background-color: var(--secondary-gold) !important;
}

.why-feature-card:hover .feature-icon-box i {
  color: var(--primary-navy) !important;
}

.why-feature-card h5 {
  color: var(--primary-navy) !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  margin-bottom: 8px !important;
}

.why-feature-card p {
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: var(--text-muted) !important;
}

/* Bottom Trust Bar Strip */
.why-trust-strip {
  background: rgba(15, 30, 54, 0.03) !important;
  border: 1px dashed rgba(212, 175, 55, 0.3) !important;
  border-radius: 16px !important;
}

.trust-strip-item {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--primary-navy) !important;
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
}

.trust-strip-item i {
  color: var(--secondary-gold) !important;
  font-size: 14px;
}

/* Responsive Rules for Mobile */
@media (max-width: 991px) {
  .why-visual-wrapper {
    margin-bottom: 40px;
    max-width: 320px;
    height: 380px;
  }
  .why-achievement-card.top-left {
    left: -15px;
    top: 20px;
  }
  .why-achievement-card.top-right {
    right: -25px;
    top: 120px;
    width: 170px;
  }
  .why-achievement-card.bottom-right {
    right: -15px;
    bottom: 20px;
  }
  .why-content-right {
    text-align: center !important;
  }
  .why-content-right h2 {
    font-size: 2rem !important;
  }
  .why-feature-card {
    text-align: center;
  }
  .why-feature-card .feature-icon-box {
    margin: 0 auto 15px;
  }
  .why-trust-strip {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px !important;
  }
  .trust-strip-item {
    padding: 5px 0;
  }
}

/* ==========================================
   BEFORE & AFTER INTERACTIVE TRANSFORMATION SHOWCASE
   ========================================== */

/* Subtle gold glow behind gallery */
.ba-glow-back {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 60%;
  height: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 70%
  );
  z-index: -1;
  pointer-events: none;
}

/* 1. Category Filter Styling */
.ba-filter-group {
  background: rgba(15, 30, 54, 0.03) !important;
  border: 1px solid rgba(15, 30, 54, 0.05) !important;
  border-radius: 50px !important;
  padding: 6px 12px !important;
}

.ba-filter-btn {
  border-radius: 30px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--primary-navy) !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  padding: 8px 20px !important;
  transition: var(--transition-smooth) !important;
}

.ba-filter-btn:hover {
  color: var(--secondary-gold) !important;
}

.ba-filter-btn.active {
  background-color: var(--primary-navy) !important;
  color: var(--secondary-gold) !important;
  border-color: var(--primary-navy) !important;
  box-shadow: 0 4px 15px rgba(15, 30, 54, 0.15) !important;
}

/* 2. Before/After Slider Container */
.ba-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
  background-color: #f3f4f6;
  user-select: none;
  -webkit-user-select: none;
  --slider-pos: 50%; /* Default variable value */
}

.ba-slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Sizing configurations */
.featured-slider {
  height: 380px;
}

.mini-slider {
  height: 180px;
}

/* Before Image Wrapper with Clip-Path clipping based on JS-updated variable */
.img-before-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  clip-path: polygon(0 0, var(--slider-pos) 0, var(--slider-pos) 100%, 0 100%);
  transition: clip-path 0.05s linear;
}

.img-before {
  filter: brightness(0.65) grayscale(0.4) contrast(0.95);
}

/* Transparent Range Input Overlay */
.ba-slider-range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}

/* Slider Handle Bar & Floating Icon */
.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--slider-pos);
  width: 4px;
  background-color: var(--secondary-gold);
  z-index: 5;
  pointer-events: none;
  transform: translateX(-50%);
  transition: left 0.05s linear;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.ba-slider-handle i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary-navy);
  border: 2px solid var(--secondary-gold);
  color: var(--secondary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  transition: all 0.3s ease;
}

.ba-slider:hover .ba-slider-handle i {
  transform: translate(-50%, -50%) scale(1.15);
  background-color: var(--secondary-gold);
  color: var(--primary-navy);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.5);
}

/* 3. Cards Sizing & Layout Details */
.ba-featured-card {
  background-color: var(--bg-white) !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  border-radius: 20px !important;
  padding: 20px !important;
  box-shadow: 0 15px 35px rgba(15, 30, 54, 0.05) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.ba-featured-card:hover {
  transform: translateY(-8px);
  border-color: var(--secondary-gold) !important;
  box-shadow:
    0 20px 45px rgba(15, 30, 54, 0.08),
    0 0 25px rgba(212, 175, 55, 0.12) !important;
}

/* Badges */
.badge-popular {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 12;
  background-color: var(--secondary-gold) !important;
  color: var(--primary-navy) !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 30px !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.ba-badge-location {
  background-color: rgba(212, 175, 55, 0.12) !important;
  color: var(--secondary-gold) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 4px !important;
  display: inline-block;
}

.ba-badge-location i {
  color: var(--secondary-gold) !important;
}

.ba-badge-service {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--text-muted) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ba-badge-duration {
  background-color: rgba(15, 30, 54, 0.04) !important;
  color: var(--primary-navy) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 4px !important;
  display: inline-block;
}

/* Results checklist tables */
.result-label-box {
  padding: 18px !important;
  border-radius: 12px !important;
  height: 100%;
  transition: var(--transition-smooth);
}

.result-label-box.before {
  background-color: rgba(220, 53, 69, 0.03) !important;
  border: 1px solid rgba(220, 53, 69, 0.08) !important;
}

.result-label-box.after {
  background-color: rgba(40, 167, 69, 0.03) !important;
  border: 1px solid rgba(40, 167, 69, 0.08) !important;
}

.result-label-box h6 {
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  margin-bottom: 10px !important;
  text-transform: uppercase;
}

.result-label-box ul li {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--text-dark) !important;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.result-label-box ul li:last-child {
  margin-bottom: 0;
}

.result-label-box ul li i {
  font-size: 14px;
}

/* Grid Cards (Right column) */
.ba-grid-card {
  background-color: var(--bg-white) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.ba-grid-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 10px 25px rgba(15, 30, 54, 0.05),
    0 0 15px rgba(212, 175, 55, 0.08) !important;
  border-color: var(--secondary-gold) !important;
}

.ba-grid-info h5 {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--primary-navy) !important;
  margin-bottom: 6px !important;
  margin-top: 10px !important;
}

.ba-grid-info p {
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: var(--text-muted) !important;
}

/* 4. Trust Stats Bar Styling */
.ba-trust-stats-bar {
  background: var(--primary-navy) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: 16px !important;
  box-shadow: 0 15px 35px rgba(15, 30, 54, 0.12) !important;
}

.ba-trust-stats-bar .stat-item {
  padding: 15px 25px;
  flex: 1;
  min-width: 200px;
  transition: var(--transition-smooth);
}

.ba-trust-stats-bar .stat-item h5 {
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  margin-top: 10px !important;
}

.ba-trust-stats-bar .stat-item i {
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* 5. Customer Proof Floating Card */
.ba-floating-review-card {
  background: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  border-radius: 20px !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(15, 30, 54, 0.06) !important;
  transition: all 0.3s ease;
}

.ba-floating-review-card:hover {
  transform: translateY(-3px);
  border-color: var(--secondary-gold) !important;
  box-shadow: 0 20px 45px rgba(15, 30, 54, 0.1) !important;
}

.ba-floating-review-card p {
  color: var(--primary-navy) !important;
  line-height: 1.6;
}

.ba-floating-review-card .stars i {
  font-size: 12px;
}

/* 6. Luxury Bottom CTA Banner */
.cta-banner-luxury-section {
  background: linear-gradient(135deg, #0f1e36 0%, #1a2f50 100%) !important;
  border-top: 3px solid var(--secondary-gold) !important;
  border-bottom: 3px solid var(--secondary-gold) !important;
  position: relative;
  overflow: hidden;
}

.cta-banner-luxury-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
  animation: luxuryGlow 12s linear infinite;
  z-index: 1;
}

@keyframes luxuryGlow {
  0% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(15%) translateY(5%);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

/* Custom CTA Button Styling overrides */
.btn-whatsapp-gold {
  background-color: #25d366 !important;
  color: #ffffff !important;
  border: 2px solid #25d366 !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
  padding: 12px 30px !important;
  border-radius: 4px !important;
  transition: var(--transition-smooth);
  display: inline-block;
  text-decoration: none !important;
}

.btn-whatsapp-gold:hover {
  background-color: transparent !important;
  color: #25d366 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25) !important;
}

.btn-shine-gold {
  background-color: var(--secondary-gold) !important;
  color: var(--primary-navy) !important;
  border: 2px solid var(--secondary-gold) !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
  padding: 12px 30px !important;
  border-radius: 4px !important;
  transition: var(--transition-smooth);
  display: inline-block;
  text-decoration: none !important;
  box-shadow: var(--shadow-sm);
}

.btn-shine-gold:hover {
  background-color: transparent !important;
  color: var(--secondary-gold) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold) !important;
}

.btn-outline-gold {
  background-color: transparent !important;
  color: var(--secondary-gold) !important;
  border: 2px solid var(--secondary-gold) !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
  padding: 12px 30px !important;
  border-radius: 4px !important;
  transition: var(--transition-smooth);
  display: inline-block;
  text-decoration: none !important;
}

.btn-outline-gold:hover {
  background-color: var(--secondary-gold) !important;
  color: var(--primary-navy) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold) !important;
}

/* Responsive adjustments for Before & After Sliders */
@media (max-width: 991px) {
  .ba-gallery-item {
    margin-bottom: 20px;
  }
  .ba-gallery-item:last-child {
    margin-bottom: 0;
  }
  .featured-slider {
    height: 320px;
  }
  .mini-slider {
    height: 200px;
  }
  .ba-trust-stats-bar {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px !important;
  }
  .ba-trust-stats-bar .stat-item {
    border-left: none !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
    width: 100%;
    padding: 10px 0;
  }
  .ba-trust-stats-bar .stat-item:last-child {
    border-bottom: none !important;
  }
}

@media (max-width: 767px) {
  .featured-slider {
    height: 250px;
  }
  .mini-slider {
    height: 180px;
  }
  .result-label-box:last-child {
    margin-bottom: 0;
  }
}

/* ==========================================
   PREMIUM LUXURY CTA REDESIGN OVERRIDES & FX
   ========================================== */

.cta-banner-luxury-section {
  background: linear-gradient(135deg, #0f1e36 0%, #081120 100%) !important;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 3px solid var(--secondary-gold) !important;
  border-bottom: 3px solid var(--secondary-gold) !important;
}

.cta-luxury-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.09) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

.cta-light-beams {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.01) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
  animation: ctaBeam 15s linear infinite;
}

@keyframes ctaBeam {
  0% {
    transform: translateX(-100%) skewX(-15deg);
  }
  100% {
    transform: translateX(100%) skewX(-15deg);
  }
}

/* Pill badge styling */
.cta-pill-badge {
  background-color: rgba(212, 175, 55, 0.12) !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  color: var(--secondary-gold) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  padding: 8px 24px !important;
  border-radius: 50px !important;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.05);
}

.cta-pill-badge i {
  color: var(--secondary-gold) !important;
}

/* Headline & Gradient Highlights */
.cta-main-headline {
  font-size: 3rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
}

.text-gold-gradient {
  background: linear-gradient(90deg, #ffe899 0%, #d4af37 50%, #f3d060 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block;
  font-weight: 800 !important;
}

/* Subheadline */
.cta-subheadline {
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Trust Indicators Badges */
.cta-trust-indicators {
  margin-bottom: 25px !important;
}

.trust-badge-item {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  padding: 6px 18px !important;
  border-radius: 30px !important;
  display: inline-flex;
  align-items: center;
}

.trust-badge-item i {
  color: var(--secondary-gold) !important;
}

/* Buttons and customized animations */
.btn-cta-main {
  background-color: var(--secondary-gold) !important;
  color: var(--primary-navy) !important;
  border: 2px solid var(--secondary-gold) !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  padding: 14px 34px !important;
  border-radius: 4px !important;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35) !important;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-cta-main::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(30deg);
  pointer-events: none;
  animation: shineSweep 4s ease-in-out infinite;
}

@keyframes shineSweep {
  0% {
    left: -30%;
  }
  15%,
  100% {
    left: 130%;
  }
}

.btn-cta-main:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5) !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: var(--primary-navy) !important;
}

.btn-cta-sec {
  background-color: transparent !important;
  color: var(--secondary-gold) !important;
  border: 2px solid var(--secondary-gold) !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  padding: 14px 34px !important;
  border-radius: 4px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-cta-sec:hover {
  transform: translateY(-4px) !important;
  background-color: rgba(212, 175, 55, 0.1) !important;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.45) !important;
  color: var(--secondary-gold) !important;
}

.btn-cta-third {
  background-color: #25d366 !important;
  border: 2px solid #25d366 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  padding: 14px 34px !important;
  border-radius: 4px !important;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  animation: whatsappPulse 10s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%,
  90%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
  }
  93% {
    transform: scale(1.06);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.7);
  }
  96% {
    transform: scale(0.97);
  }
  98% {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
  }
}

.btn-cta-third:hover {
  transform: translateY(-4px) !important;
  background-color: transparent !important;
  color: #25d366 !important;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.45) !important;
}

/* Footnote line */
.cta-footnote {
  font-size: 13px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-top: 25px !important;
}

/* Floating Glass Review Panel */
.cta-floating-review {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 280px;
  padding: 18px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35) !important;
  animation: floatReviewPanel 6s ease-in-out infinite;
  z-index: 5;
  text-align: left;
}

@keyframes floatReviewPanel {
  0%,
  100% {
    transform: translateY(0) rotate(0.5deg);
  }
  50% {
    transform: translateY(-8px) rotate(-0.5deg);
  }
}

.cta-floating-review p {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-style: italic;
  line-height: 1.4 !important;
  margin-bottom: 8px !important;
}

.cta-floating-review .author {
  font-size: 10px !important;
  color: var(--secondary-gold) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.cta-floating-review .stars i {
  font-size: 10px;
  color: var(--secondary-gold) !important;
}

/* Floating Response Urgency Card */
.cta-floating-glass-badge {
  position: absolute;
  top: 40px;
  left: 40px;
  background: rgba(212, 175, 55, 0.12) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: 10px !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25) !important;
  animation: floatGlassBadgeCard 5s ease-in-out infinite;
  z-index: 5;
}

@keyframes floatGlassBadgeCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Mobile Optimizations for CTA Banner */
@media (max-width: 991px) {
  .cta-main-headline {
    font-size: 2.3rem !important;
  }
  .cta-floating-review,
  .cta-floating-glass-badge {
    display: none !important; /* Hide floating badges on tablets and mobiles */
  }
}

@media (max-width: 767px) {
  .cta-banner-luxury-section {
    padding: 40px 15px !important;
  }
  .cta-main-headline {
    font-size: 2rem !important;
  }
  .cta-subheadline {
    font-size: 14px !important;
  }
  .cta-trust-indicators {
    flex-direction: column;
    align-items: center;
    gap: 8px !important;
    margin-bottom: 20px !important;
  }
  .trust-badge-item {
    width: 100%;
    max-width: 290px;
    justify-content: center;
    padding: 8px 16px !important;
  }
  .cta-button-group {
    flex-direction: column;
    align-items: stretch !important;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 15px !important;
    gap: 12px !important;
  }
  .cta-button-group a {
    width: 100%;
    text-align: center;
    padding: 14px 20px !important;
  }
  .cta-footnote {
    margin-top: 15px !important;
    font-size: 11px !important;
  }
}

/* ==========================================
   CUSTOMER TESTIMONIALS - PREMIUM SHOWCASE
   ========================================== */

.testimonials-luxury-section {
  background: linear-gradient(
    135deg,
    #070d18 0%,
    #0f1e36 50%,
    #152744 100%
  ) !important;
  border-top: 2px solid #d4af37 !important;
  border-bottom: 2px solid #d4af37 !important;
  padding: 70px 0 !important;
}

.testimonials-gold-label {
  background-color: rgba(212, 175, 55, 0.12) !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  color: #d4af37 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  padding: 6px 18px !important;
  border-radius: 50px !important;
  text-transform: uppercase;
}

.testimonials-subheading {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
}

/* Top Trust Bar */
.testimonials-trust-bar {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(5px);
  gap: 15px 30px;
}

.trust-badge-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
}

.trust-badge-badge .badge-icon {
  font-size: 16px;
}

.trust-badge-badge .badge-txt {
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
}

/* Featured Spotlight Review Card */
.featured-review-highlight {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 2px solid rgba(212, 175, 55, 0.3) !important;
  border-radius: 24px !important;
  backdrop-filter: blur(10px);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(212, 175, 55, 0.05) !important;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.featured-review-highlight::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 15px;
  font-size: 160px;
  font-family: serif;
  color: rgba(212, 175, 55, 0.08);
  line-height: 1;
  pointer-events: none;
}

.featured-review-highlight:hover {
  border-color: #d4af37 !important;
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.4),
    0 0 35px rgba(212, 175, 55, 0.15) !important;
  transform: translateY(-5px);
}

.featured-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15) !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  color: #d4af37 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  padding: 4px 12px !important;
  border-radius: 4px !important;
  letter-spacing: 1px;
}

.featured-quote {
  font-size: 16px !important;
  line-height: 1.6 !important;
  font-style: italic;
  font-weight: 500;
}

.featured-avatar {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid #d4af37 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.featured-name {
  font-size: 15px !important;
}

/* Reviews Carousel */
.reviews-carousel-outer {
  width: 100%;
}

.reviews-carousel-viewport {
  width: 100%;
  overflow-x: scroll;
  scroll-behavior: smooth;
  cursor: grab;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.reviews-carousel-viewport::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.reviews-carousel-viewport:active {
  cursor: grabbing;
}

.reviews-carousel-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  padding: 10px 0;
}

/* Review Cards */
.premium-review-card {
  flex: 0 0 auto;
  width: 320px;
  background: #ffffff !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  border-radius: 24px !important;
  margin-right: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.premium-review-card:hover {
  transform: translateY(-10px);
  border-color: #d4af37 !important;
  box-shadow:
    0 20px 40px rgba(15, 30, 54, 0.12),
    0 0 25px rgba(212, 175, 55, 0.2) !important;
}

.review-avatar {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border: 2px solid #d4af37 !important;
}

.review-name {
  font-size: 14px !important;
}

.review-text {
  font-size: 13.5px !important;
  line-height: 1.5 !important;
  font-style: italic;
}

/* Nav buttons */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 30, 54, 0.85) !important;
  border: 1px solid #d4af37 !important;
  color: #d4af37 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  outline: none !important;
}

.carousel-nav-btn:hover {
  background: #d4af37 !important;
  color: #0f1e36 !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5) !important;
}

.carousel-nav-btn.prev-btn {
  left: -20px;
}

.carousel-nav-btn.next-btn {
  right: -20px;
}

/* Dots */
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3) !important;
  margin: 0 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #d4af37 !important;
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* Google Floating Badge */
.google-badge-floating {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 180px;
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(212, 175, 55, 0.5) !important;
  border-radius: 16px !important;
  padding: 15px !important;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(212, 175, 55, 0.1) !important;
  z-index: 999;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: left;
}

.google-badge-floating:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: #d4af37 !important;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.25),
    0 0 25px rgba(212, 175, 55, 0.25) !important;
}

/* Mobile Optimizations */
@media (max-width: 991px) {
  .google-badge-floating {
    display: none !important; /* Hide floating badge */
  }
  .carousel-nav-btn {
    display: none !important; /* Hide arrows on mobile/tablet since swiping is native */
  }
  .premium-review-card {
    width: 290px;
    margin-right: 15px;
  }
}

@media (max-width: 767px) {
  .testimonials-luxury-section {
    padding: 50px 0 !important;
  }
  .testimonials-luxury-section h2 {
    font-size: 24px !important;
  }
  .testimonials-trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 10px !important;
  }
  .trust-badge-badge {
    padding: 4px;
  }
  .trust-badge-badge .badge-txt {
    font-size: 13px !important;
  }
}

/* ========================================================
   SPECIFICITY OVERRIDES TO FIX TEXT CONTRAST ON DARK NAVY
   ======================================================== */

/* 1. Bottom CTA Banner Contrast Fixes */
.cta-banner-luxury-section {
  color: #ffffff !important;
}

.cta-banner-luxury-section .cta-pill-badge {
  color: #d4af37 !important;
}

.cta-banner-luxury-section h2.cta-main-headline,
.cta-banner-luxury-section h2 {
  color: #ffffff !important;
}

.cta-banner-luxury-section p.cta-subheadline,
.cta-banner-luxury-section p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.cta-banner-luxury-section .trust-badge-item,
.cta-banner-luxury-section span.trust-badge-item {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.cta-banner-luxury-section p.cta-footnote {
  color: rgba(255, 255, 255, 0.6) !important;
}

.cta-banner-luxury-section .cta-floating-review p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.cta-banner-luxury-section .cta-floating-review .author {
  color: #d4af37 !important;
}

.cta-banner-luxury-section .cta-floating-glass-badge {
  color: #ffffff !important;
  background: rgba(212, 175, 55, 0.12) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
}

/* 2. Customer Testimonials Section Contrast Fixes */
.testimonials-luxury-section {
  color: #ffffff !important;
}

.testimonials-luxury-section .testimonials-gold-label,
section.testimonials-luxury-section .testimonials-gold-label {
  color: #d4af37 !important;
}

.testimonials-luxury-section h2,
section.testimonials-luxury-section h2 {
  color: #ffffff !important;
}

.testimonials-luxury-section p.testimonials-subheading,
section.testimonials-luxury-section p.testimonials-subheading {
  color: rgba(255, 255, 255, 0.8) !important;
}

.testimonials-luxury-section .trust-badge-badge .badge-txt {
  color: #ffffff !important;
}

.testimonials-luxury-section .featured-review-highlight {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 2px solid rgba(212, 175, 55, 0.3) !important;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(212, 175, 55, 0.05) !important;
}

.testimonials-luxury-section .featured-review-highlight .featured-badge {
  color: #d4af37 !important;
  background: rgba(212, 175, 55, 0.15) !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
}

.testimonials-luxury-section .featured-review-highlight .featured-quote,
.testimonials-luxury-section .featured-review-highlight blockquote {
  color: #ffffff !important;
}

.testimonials-luxury-section .featured-review-highlight .featured-name {
  color: #ffffff !important;
}

.testimonials-luxury-section .featured-review-highlight .featured-meta {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* ========================================================
   REDESIGNED LUXURY CONTACT WIZARD & OFFICE SHOWCASE
   ======================================================== */

.contact-luxury-section {
  background: #ffffff !important;
  color: #374151 !important;
  padding: 80px 0 !important;
  border-top: 3px solid #d4af37 !important;
  border-bottom: 3px solid #d4af37 !important;
}

/* Specificity override for all text-white elements inside this section */
.contact-luxury-section .text-white {
  color: #0f1e36 !important;
}

.contact-luxury-section .text-white-70,
.contact-luxury-section .text-white-80 {
  color: #4b5563 !important;
}

.contact-luxury-section .text-white-50,
.contact-luxury-section .text-white-60 {
  color: #6b7280 !important;
}

.contact-luxury-section h2,
.contact-luxury-section h3,
.contact-luxury-section h4,
.contact-luxury-section h5,
.contact-luxury-section h6 {
  color: #0f1e36 !important;
}

.contact-luxury-section p {
  color: #4b5563 !important;
}

.contact-gold-label {
  color: #d4af37 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase;
}

/* Responsive CSS Grid Container */
.contact-grid-container {
  display: grid;
  grid-template-columns: 60% 40%;
  grid-template-areas: "form office";
  gap: 40px;
}

.contact-grid-form {
  grid-area: form;
}

.contact-grid-office {
  grid-area: office;
  position: relative;
}

/* Full Width Map in Grid */
.contact-grid-map {
  grid-column: 1 / -1;
  width: 100%;
}

.embedded-map-container {
  background: #ffffff !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  border-radius: 24px !important;
  padding: 8px !important;
  box-shadow: 0 15px 35px rgba(15, 30, 54, 0.06) !important;
  transition: all 0.3s ease;
}

.embedded-map-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(15, 30, 54, 0.1) !important;
}

.embedded-map-container iframe {
  border-radius: 18px !important;
}

/* Trust Badges Container above Form */
.contact-trust-badges-container {
  margin-top: 10px;
}

.contact-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.07) !important;
  border: 1.5px solid rgba(212, 175, 55, 0.22) !important;
  color: #0f1e36 !important;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(15, 30, 54, 0.02) !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-bottom: 8px;
  margin-right: 8px;
}

.contact-trust-badge:hover {
  background: var(--secondary-gold) !important;
  color: var(--primary-navy) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3) !important;
}

.contact-trust-badge i {
  color: #d4af37 !important;
  font-size: 14px;
}

.contact-trust-badge:hover i {
  color: var(--primary-navy) !important;
}

/* Glassmorphism Multi-step Form Wizard */
.contact-wizard-card {
  background: #ffffff !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  border-radius: 24px !important;
  box-shadow:
    0 20px 50px rgba(15, 30, 54, 0.08),
    0 0 30px rgba(212, 175, 55, 0.05) !important;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.contact-wizard-card:hover {
  border-color: rgba(212, 175, 55, 0.5) !important;
  box-shadow:
    0 25px 60px rgba(15, 30, 54, 0.12),
    0 0 40px rgba(212, 175, 55, 0.08) !important;
}

/* Progress Indicator */
.wizard-progress-track {
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

@keyframes progressShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.wizard-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #d4af37, #ffdf00, #d4af37) !important;
  background-size: 200% auto !important;
  animation: progressShimmer 2.5s linear infinite !important;
  border-radius: 10px;
  transition: width 0.4s ease;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5) !important;
}

/* Wizard Steps display states */
.wizard-step {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.wizard-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Service Card selection */
.service-select-card {
  background: #f9fafb !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-select-card .select-icon svg {
  color: #4b5563;
  transition: all 0.3s ease;
}

.service-select-card .select-label {
  font-size: 13px;
  font-weight: 600;
  color: #374151 !important;
  transition: all 0.3s ease;
}

.service-select-card:hover {
  background: #f3f4f6 !important;
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-5px) scale(1.02) !important;
  box-shadow: 0 12px 25px rgba(15, 30, 54, 0.06), 0 0 12px rgba(212, 175, 55, 0.08) !important;
}

.service-select-card:hover .select-icon svg {
  color: #d4af37;
  transform: scale(1.1);
}

.service-select-card.active {
  background: rgba(212, 175, 55, 0.09) !important;
  border: 2px solid #d4af37 !important;
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.22) !important;
  transform: scale(1.04) !important;
}

.service-select-card.active .select-icon svg {
  color: #d4af37;
}

.service-select-card.active .select-label {
  color: #0f1e36 !important;
  font-weight: 700;
}

/* Property Size Cards Selection */
.property-select-card {
  background: #f9fafb !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  height: 100%;
}

.property-select-card .prop-title {
  font-size: 15px;
  color: #374151 !important;
  transition: all 0.3s ease;
}

.property-select-card .prop-sub {
  font-size: 11px;
  color: #6b7280 !important;
  transition: all 0.3s ease;
}

.property-select-card:hover {
  background: #f3f4f6 !important;
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-5px) scale(1.02) !important;
  box-shadow: 0 12px 25px rgba(15, 30, 54, 0.06), 0 0 12px rgba(212, 175, 55, 0.08) !important;
}

.property-select-card.active {
  background: rgba(212, 175, 55, 0.09) !important;
  border: 2px solid #d4af37 !important;
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.22) !important;
  transform: scale(1.04) !important;
}

.property-select-card.active .prop-title {
  color: #d4af37 !important;
  font-weight: 700;
}

.property-select-card.active .prop-sub {
  color: #0f1e36 !important;
  font-weight: 600;
}

/* Form Controls Inside Wizard */
.contact-wizard-card .form-control {
  background-color: #ffffff !important;
  border: 1px solid #d1d5db !important;
  color: #1f2937 !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
}

.contact-wizard-card .form-control::placeholder {
  color: #9ca3af !important;
}

.contact-wizard-card .form-control:focus {
  background-color: #ffffff !important;
  border-color: #d4af37 !important;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.2) !important;
  outline: none !important;
  color: #1f2937 !important;
}

/* Date input specific styles */
.contact-wizard-card input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0);
  cursor: pointer;
}

/* Next / Back Buttons inside form */
.btn-outline-gold {
  background: transparent !important;
  color: #d4af37 !important;
  border: 2px solid #d4af37 !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  border-radius: 6px !important;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: #d4af37 !important;
  color: #0f1e36 !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4) !important;
}

.btn-shine-gold {
  background: linear-gradient(
    135deg,
    #d4af37 0%,
    #f3e5ab 50%,
    #b89025 100%
  ) !important;
  background-size: 200% auto !important;
  color: #0f1e36 !important;
  border: none !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  border-radius: 6px !important;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-shine-gold:hover {
  background-position: right center !important;
  transform: translateY(-2px);
  box-shadow:
    0 8px 25px rgba(212, 175, 55, 0.5),
    0 0 15px rgba(212, 175, 55, 0.2) !important;
}

/* Glassmorphic Office Card */
.contact-office-card {
  background: #ffffff !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  border-radius: 20px !important;
  box-shadow: 0 15px 35px rgba(15, 30, 54, 0.06) !important;
  backdrop-filter: blur(15px);
  height: 100%;
  transition: all 0.3s ease;
}

.contact-office-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 30, 54, 0.1) !important;
}

.office-details-list span,
.office-details-list a {
  color: #4b5563 !important;
}

.office-details-list a:hover {
  color: #d4af37 !important;
}

.luxury-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.2),
    transparent
  );
}

.trust-indicator-item {
  font-size: 13px !important;
  font-weight: 500;
  color: #374151 !important;
  display: flex;
  align-items: center;
}

/* Floating Response Urgency Card overlay */
.floating-response-card {
  position: absolute;
  top: -24px;
  right: 24px;
  background: linear-gradient(135deg, #0f1e36, #1b2f4a) !important;
  border: 1px solid #d4af37 !important;
  border-radius: 14px !important;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 30px rgba(15, 30, 54, 0.22), 0 0 15px rgba(212, 175, 55, 0.12) !important;
  z-index: 10;
  animation: floatGentlyCard 4s ease-in-out infinite;
}

.main-contain .floating-response-card .text-white {
  color: #ffffff !important;
}

.main-contain .floating-response-card .text-gold {
  color: #d4af37 !important;
}

@keyframes floatGentlyCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.response-pulse-ring {
  width: 8px;
  height: 8px;
  background-color: #25d366;
  border-radius: 50%;
  position: relative;
}

.response-pulse-ring::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 2px solid #25d366;
  border-radius: 50%;
  animation: pulseRingGreen 2s infinite;
}

@keyframes pulseRingGreen {
  0% { transform: translate(-50%, -50%) scale(0.3); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0; }
}

/* Social Media Circle Buttons */
.luxury-social-group .social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3f4f6 !important;
  border: 1px solid #e5e7eb !important;
  color: #4b5563 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
}

.luxury-social-group .social-icon-btn:hover {
  background: #0f1e36 !important;
  color: #d4af37 !important;
  border-color: #0f1e36 !important;
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 5px 15px rgba(15, 30, 54, 0.2);
}

/* Office List Layout Custom Style Class Rules */
.contact-icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1) !important;
  color: #d4af37 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.08);
  transition: all 0.3s ease;
}

.office-details-list .d-flex:hover .contact-icon-wrapper {
  background: #d4af37 !important;
  color: #ffffff !important;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.office-details-list .contact-info-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #6b7280 !important;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.office-details-list .contact-info-value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #0f1e36 !important;
}

.office-details-list .contact-info-value a {
  color: #0f1e36 !important;
  transition: color 0.2s ease;
}

.office-details-list .contact-info-value a:hover {
  color: #d4af37 !important;
}

/* Embedded Map Card Section */
.premium-map-card {
  background: #ffffff !important;
  border: 1.5px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: 24px !important;
  box-shadow: 0 25px 60px rgba(15, 30, 54, 0.08) !important;
  overflow: hidden;
  position: relative;
}

.map-action-overlay {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 5;
}

/* Why Contact Us Section */
.why-contact-card {
  background: #ffffff !important;
  border: 1px solid rgba(15, 30, 54, 0.07) !important;
  border-radius: 20px !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.why-contact-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 15px 30px rgba(15, 30, 54, 0.08) !important;
  border-color: var(--secondary-gold) !important;
}

.why-icon-box {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08) !important;
  transition: all 0.3s ease;
}

.why-icon-box i {
  font-size: 22px !important;
  color: var(--secondary-gold) !important;
}

.why-contact-card:hover .why-icon-box {
  background: var(--secondary-gold) !important;
}

.why-contact-card:hover .why-icon-box i {
  color: var(--primary-navy) !important;
}

/* Customer reviews cards */
.luxury-review-card {
  background: #ffffff !important;
  border: 1px solid rgba(15, 30, 54, 0.07) !important;
  border-radius: 20px !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.luxury-review-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 15px 30px rgba(15, 30, 54, 0.08) !important;
  border-color: var(--secondary-gold) !important;
}

.review-stars-gold i {
  color: var(--secondary-gold);
  font-size: 13px;
  margin-left: 2px;
}

.customer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: rgba(15, 30, 54, 0.08) !important;
  color: var(--primary-navy) !important;
}

/* Final Conversion CTA Linear Gradient Banner */
.premium-cta-gradient {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #172c4c 50%, #081120 100%) !important;
  border-top: 3px solid var(--secondary-gold) !important;
  position: relative;
  overflow: hidden;
}

.premium-cta-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Bottom Conversion Bar styling overrides */
.conversion-bar-container {
  background: #f9fafb !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(15, 30, 54, 0.05);
}

.conversion-bar-title {
  color: #0f1e36 !important;
}

.btn-whatsapp-gold {
  background: #25d366 !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4) !important;
}

/* Mobile Stacking Styler overrides */
@media (max-width: 991px) {
  .contact-grid-container {
    grid-template-columns: 100%;
    grid-template-areas:
      "office"
      "form";
    gap: 30px;
  }

  .floating-response-card {
    position: relative;
    top: 0;
    right: 0;
    display: inline-flex;
    margin-bottom: 20px;
    float: right;
  }

  .conversion-bar-container {
    flex-direction: column;
    text-align: center;
    padding: 20px !important;
  }

  .conversion-bar-buttons {
    flex-direction: column;
    width: 100%;
  }

  .conversion-bar-buttons .btn {
    width: 100%;
  }
}

/* ==========================================
   PREMIUM LUXURY FAQ REDESIGN
   ========================================== */

.faq-luxury-section {
  background-color: #ffffff !important;
  background-image: radial-gradient(
    rgba(212, 175, 55, 0.05) 1.5px,
    transparent 1.5px
  );
  background-size: 24px 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.15) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.faq-bg-glow {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.04) 0%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
}

/* Header typography specific overrides to beat main-contain global rules */
.main-contain .faq-gold-label {
  color: #d4af37 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase;
}

.main-contain .faq-luxury-section .text-navy {
  color: #0f1e36 !important;
  font-weight: 800 !important;
}

.main-contain .faq-luxury-section p.text-muted {
  color: #4b5563 !important;
}

/* Left side visual illustration and trust badges */
.faq-visual-container {
  position: relative;
  padding-right: 15px;
}

.faq-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.faq-main-image {
  border-radius: 24px !important;
  border: 1px solid rgba(212, 175, 55, 0.15) !important;
  box-shadow: 0 20px 40px rgba(15, 30, 54, 0.06) !important;
  transition: transform 0.4s ease;
}

.faq-image-wrapper:hover .faq-main-image {
  transform: scale(1.02);
}

.faq-floating-review {
  position: absolute;
  bottom: 20px;
  right: -15px;
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(15, 30, 54, 0.08) !important;
  z-index: 10;
  animation: faqFloat 6s ease-in-out infinite;
  max-width: 240px;
}

@keyframes faqFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.main-contain .faq-floating-review .review-txt {
  color: #0f1e36 !important;
  font-size: 12px !important;
}

.faq-floating-review .review-stars i {
  color: #d4af37 !important;
  font-size: 11px;
  margin-right: 2px;
}

.faq-trust-list {
  display: flex;
  flex-direction: column;
  gap: 15px !important;
}

.faq-badge-item {
  background: #ffffff !important;
  border: 1px solid rgba(15, 30, 54, 0.05) !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-contain .faq-badge-item .text-muted {
  color: #6b7280 !important;
}

.faq-badge-item:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.3) !important;
  box-shadow:
    0 12px 30px rgba(15, 30, 54, 0.04),
    0 0 15px rgba(212, 175, 55, 0.04) !important;
}

.faq-badge-item .badge-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08) !important;
  color: #d4af37 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.faq-badge-item:hover .badge-icon-box {
  background: #0f1e36 !important;
  color: #d4af37 !important;
}

/* Right side search bar and accordion styling */
.faq-search-wrapper {
  box-shadow: 0 10px 30px rgba(15, 30, 54, 0.02) !important;
}

.faq-search-wrapper input {
  border-color: #e5e7eb !important;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq-search-wrapper input:focus {
  border-color: #d4af37 !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15) !important;
  outline: none !important;
}

.faq-accordion-wrapper {
  position: relative;
}

.faq-card {
  background: #ffffff !important;
  border: 1px solid rgba(15, 30, 54, 0.06) !important;
  border-left: 4px solid #d4af37 !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 25px rgba(15, 30, 54, 0.02) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

.faq-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.25) !important;
  box-shadow:
    0 15px 35px rgba(15, 30, 54, 0.05),
    0 0 15px rgba(212, 175, 55, 0.03) !important;
}

.faq-card.active {
  background: rgba(212, 175, 55, 0.03) !important;
  border-color: rgba(212, 175, 55, 0.35) !important;
  box-shadow:
    0 15px 35px rgba(15, 30, 54, 0.04),
    0 0 20px rgba(212, 175, 55, 0.05) !important;
}

.faq-card-header {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.main-contain .faq-question {
  color: #0f1e36 !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  transition: color 0.3s ease;
}

.main-contain .faq-card-header:hover .faq-question,
.main-contain .faq-card.active .faq-question {
  color: #d4af37 !important;
}

.faq-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-card.active .faq-card-body {
  max-height: 350px;
}

.main-contain .faq-answer {
  border-top: 1px solid rgba(212, 175, 55, 0.06);
  color: #4b5563 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

/* Plus/Minus Morphing Icon */
.faq-icon-wrapper {
  width: 24px;
  height: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-icon-line {
  background-color: #d4af37 !important;
  border-radius: 2px;
  position: absolute;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-icon-line.horizontal {
  width: 14px;
  height: 2px;
}

.faq-icon-line.vertical {
  width: 2px;
  height: 14px;
}

.faq-card.active .faq-icon-line.vertical {
  transform: rotate(90deg) scaleY(0);
}

.faq-card.active .faq-icon-line.horizontal {
  transform: rotate(180deg);
}

/* Bottom help card section */
.faq-bottom-card {
  background: #ffffff !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  border-radius: 20px !important;
  box-shadow: 0 15px 35px rgba(15, 30, 54, 0.03) !important;
  transition: border-color 0.3s ease;
}

.main-contain .faq-bottom-card .text-muted {
  color: #4b5563 !important;
}

.faq-bottom-card:hover {
  border-color: rgba(212, 175, 55, 0.35) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .faq-visual-container {
    padding-right: 0;
  }
  .faq-floating-review {
    right: 15px;
  }
}

/* ==========================================
   PREMIUM LUXURY FOOTER REDESIGN
   ========================================== */

.premium-luxury-footer {
  background: linear-gradient(135deg, #0f1e36 0%, #050b14 100%) !important;
  border-top: 3px solid var(--secondary-gold) !important;
  position: relative;
  overflow: hidden;
  padding-top: 80px !important;
  padding-bottom: 40px !important;
  z-index: 1;
}

.footer-bg-glow {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 70%
  );
  z-index: -1;
  pointer-events: none;
}

/* 1. Top CTA Strip Above Footer */
.footer-cta-strip {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  border-radius: 24px !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 40px 35px !important;
  margin-bottom: 60px !important;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.15),
    0 0 30px rgba(212, 175, 55, 0.05) !important;
  position: relative;
  overflow: hidden;
}

.footer-cta-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 80% 50%,
    rgba(212, 175, 55, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: -1;
}

.footer-cta-title {
  color: #ffffff !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px;
}

.footer-cta-sub {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 15px !important;
  margin-bottom: 0;
}

/* 2. Column Titles & Typography */
.premium-luxury-footer h5.footer-column-title {
  color: var(--secondary-gold) !important;
  font-size: 16.5px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase;
  margin-bottom: 25px !important;
  position: relative;
  padding-bottom: 12px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.premium-luxury-footer h5.footer-column-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 3px;
  background-color: var(--secondary-gold) !important;
  border-radius: 2px;
  box-shadow: 0 0 8px var(--secondary-gold);
}

.premium-luxury-footer p,
.premium-luxury-footer span,
.premium-luxury-footer li,
.premium-luxury-footer a {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 14.5px !important;
  line-height: 1.7 !important;
}

.premium-luxury-footer .small,
.premium-luxury-footer small {
  font-size: 14px !important;
}

.premium-luxury-footer li span.d-block {
  font-size: 12.5px !important;
  letter-spacing: 0.8px !important;
}

/* Brand Section Details */
.footer-tagline {
  color: var(--secondary-gold) !important;
  font-weight: 700 !important;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 14.5px !important;
  line-height: 1.7 !important;
  color: rgba(255, 255, 255, 0.72) !important;
}

.footer-trust-badges-small {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-trust-badge-item {
  font-size: 12px !important;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8) !important;
  display: flex;
  align-items: center;
}

.footer-trust-badge-item i {
  color: var(--secondary-gold) !important;
  margin-right: 8px;
  font-size: 12px;
}

/* Social media icons */
.footer-social-group {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-size: 16px;
}

.footer-social-btn:hover {
  transform: translateY(-4px) scale(1.1);
  background: var(--secondary-gold) !important;
  color: var(--primary-navy) !important;
  border-color: var(--secondary-gold) !important;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.45);
}

.footer-social-btn:hover i {
  color: var(--primary-navy) !important;
}

/* Underline link animations */
.footer-hover-link {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
  padding: 2px 0;
}

.footer-hover-link::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1.5px;
  bottom: -1px;
  left: 0;
  background-color: var(--secondary-gold) !important;
  transform-origin: bottom left;
  transition: transform 0.3s ease-out;
}

.footer-hover-link:hover {
  color: var(--secondary-gold) !important;
}

.footer-hover-link:hover::after {
  transform: scaleX(1);
}

.premium-luxury-footer ul li {
  margin-bottom: 12px;
}

.premium-luxury-footer ul li i {
  font-size: 14.5px !important;
  margin-right: 10px !important;
  transition: transform 0.3s ease;
  display: inline-block;
  color: var(--secondary-gold) !important;
}

.premium-luxury-footer li.d-flex i {
  font-size: 18px !important;
  margin-right: 14px !important;
  margin-top: 4px !important;
  transition: transform 0.3s ease;
  display: inline-block;
  color: var(--secondary-gold) !important;
}

.premium-luxury-footer ul li:hover i {
  transform: translateX(4px);
}

/* Mini Map Preview */
.footer-map-mini {
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.25) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  height: 115px;
  display: block;
  position: relative;
}

.footer-map-mini iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(1.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-map-mini::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 30, 54, 0.25);
  transition: background 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.footer-map-mini:hover {
  border-color: var(--secondary-gold) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
}

.footer-map-mini:hover iframe {
  filter: grayscale(0) invert(0) contrast(1);
}

.footer-map-mini:hover::before {
  background: transparent;
}

/* 3. Horizontal Trust Bar */
.footer-trust-bar {
  background: rgba(15, 30, 54, 0.6) !important;
  border: 1px solid rgba(212, 175, 55, 0.18) !important;
  border-radius: 12px !important;
  padding: 24px 30px !important;
  margin-top: 50px !important;
  margin-bottom: 50px !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: relative;
}

.footer-trust-item {
  display: flex;
  align-items: center;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.95) !important;
  transition: all 0.3s ease;
  cursor: default;
}

.footer-trust-item:hover {
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.footer-trust-item i {
  color: var(--secondary-gold) !important;
  font-size: 16px;
  margin-right: 10px;
  text-shadow: 0 0 8px var(--secondary-gold);
}

/* 4. Clickable Service Areas */
.footer-areas-box {
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 14px !important;
  padding: 18px 24px !important;
  margin-bottom: 40px !important;
}

.footer-area-links-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.footer-area-link {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  transition: all 0.25s ease;
}

.footer-area-link:hover {
  color: var(--secondary-gold) !important;
  background: rgba(212, 175, 55, 0.08) !important;
  border-color: rgba(212, 175, 55, 0.2) !important;
  transform: translateY(-1px);
}

/* 5. Copyright & Bottom strip */
.footer-bottom-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding-top: 25px !important;
}

.footer-bottom-strip span,
.footer-bottom-strip p,
.footer-bottom-strip a {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 12.5px !important;
}

.footer-bottom-strip a {
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.footer-bottom-strip a:hover {
  color: var(--secondary-gold) !important;
}

/* 6. Responsive and Mobile Accordion mechanics */
@media (max-width: 991px) {
  .premium-luxury-footer {
    padding-top: 60px !important;
  }

  .footer-cta-strip {
    padding: 30px 20px !important;
    margin-bottom: 40px !important;
    text-align: center;
  }

  .footer-cta-strip .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .footer-cta-strip .btn:last-child {
    margin-bottom: 0;
  }

  /* Hide desktop column titles */
  .premium-luxury-footer h5.footer-column-title {
    display: none !important;
  }

  /* Show mobile headers */
  .footer-accordion-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none !important;
    border: none !important;
    outline: none !important;
    color: var(--secondary-gold) !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    text-align: left;
    cursor: pointer;
  }

  .footer-accordion-header i {
    font-size: 12px;
    color: var(--secondary-gold) !important;
    transition: transform 0.3s ease;
  }

  /* Body styling */
  .footer-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .footer-col-accordion.active .footer-accordion-body {
    max-height: 500px; /* expands to show elements */
    padding-top: 15px;
    padding-bottom: 10px;
  }

  .footer-col-accordion.active .footer-accordion-header i {
    transform: rotate(180deg);
  }

  .footer-col-accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .footer-col-accordion:last-child {
    border-bottom: none;
  }

  .footer-trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px !important;
  }

  .footer-trust-item {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .footer-accordion-header {
    display: none !important;
  }
  .footer-accordion-body {
    max-height: none !important;
    overflow: visible !important;
  }
}

/* ==========================================
   HERO BANNER LAYOUT SWAP & ATTRACTIONS
   ========================================== */

/* 1. Form Card pulsing glow attraction */
.luxury-quote-card {
  animation: luxuryGlowPulse 8s ease-in-out infinite;
}

@keyframes luxuryGlowPulse {
  0%,
  100% {
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.4),
      0 0 30px rgba(212, 175, 55, 0.05) !important;
  }
  50% {
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.4),
      0 0 45px rgba(212, 175, 55, 0.15) !important;
    border-color: rgba(212, 175, 55, 0.45) !important;
  }
}

/* 2. Text Content Hover & Micro-interactions */
.check-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.check-item:hover {
  transform: translateX(6px);
  color: var(--secondary-gold) !important;
}

.counter-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.counter-item:hover {
  transform: translateY(-4px);
}

.counter-item:hover .counter-num {
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* 3. Call and Whatsapp Button Attraction pulse keyframes */
.btn-whatsapp-gold {
  animation: whatsappGlowPulse 4s infinite;
}

@keyframes whatsappGlowPulse {
  0%,
  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25) !important;
  }
  50% {
    box-shadow: 0 4px 22px rgba(37, 211, 102, 0.55) !important;
  }
}

.btn-outline-gold {
  animation: goldGlowPulse 4s infinite;
  animation-delay: 2s;
}

@keyframes goldGlowPulse {
  0%,
  100% {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15) !important;
  }
  50% {
    box-shadow: 0 4px 22px rgba(212, 175, 55, 0.4) !important;
  }
}

/* 4. Hero Counter Section placed inline under content */
.hero-counter-section.inline {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  margin-top: 30px !important;
  width: 100%;
}

.hero-counter-section.inline .counter-item {
  padding: 12px 15px !important;
  min-width: 100px !important;
}

.hero-counter-section.inline .counter-num {
  font-size: 26px !important;
  margin-bottom: 2px !important;
}

.hero-counter-section.inline .counter-label {
  font-size: 11px !important;
  letter-spacing: 0.5px !important;
}

@media (max-width: 991px) {
  .hero-counter-section.inline {
    margin-top: 25px !important;
  }
  .hero-counter-section.inline .counter-item {
    border-left: none !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
    width: 100%;
    padding: 10px 0 !important;
  }
  .hero-counter-section.inline .counter-item:last-child {
    border-bottom: none !important;
  }
}

/* About Page Premium Components Styling */
.about-stat-card {
  background: #ffffff !important;
  border: 1px solid rgba(15, 30, 54, 0.08) !important;
  border-radius: 16px !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  box-shadow: 0 4px 15px rgba(15, 30, 54, 0.03) !important;
}

.about-stat-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 15px 30px rgba(15, 30, 54, 0.08) !important;
  border-color: var(--secondary-gold) !important;
}

.about-image-wrapper {
  position: relative;
  padding: 10px;
}

.about-image-wrapper::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 25px;
  right: -5px;
  bottom: -5px;
  border: 2px solid var(--secondary-gold);
  border-radius: 16px;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-image-wrapper img {
  position: relative;
  z-index: 2;
  border-radius: 16px !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-image-wrapper:hover::before {
  top: 15px;
  left: 15px;
  right: 5px;
  bottom: 5px;
  border-color: var(--primary-navy);
}

.about-image-wrapper:hover img {
  transform: translate(-6px, -6px);
  box-shadow: 0 20px 40px rgba(15, 30, 54, 0.25) !important;
}

@media (max-width: 991px) {
  .about-image-wrapper {
    padding: 0;
    margin-top: 30px;
  }
  .about-image-wrapper::before {
    display: none; /* Hide the decorative offset border on small screens to avoid horizontal layout offset */
  }
}

/* About Page - Mission & Vision Section Styling */
.elite-mv-section {
  background: radial-gradient(
    circle at 10% 20%,
    rgba(15, 30, 54, 0.02) 0%,
    rgba(255, 255, 255, 1) 90%
  ) !important;
  padding: 80px 0 !important;
}

.premium-mv-card {
  background: #ffffff !important;
  border: 1px solid rgba(15, 30, 54, 0.06) !important;
  border-radius: 24px !important;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.premium-mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--secondary-gold) 0%,
    var(--primary-navy) 100%
  );
  transition: width 0.3s ease;
}

.premium-mv-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(15, 30, 54, 0.08) !important;
  border-color: rgba(212, 175, 55, 0.3) !important;
}

.premium-mv-card:hover::before {
  width: 6px;
}

.premium-mv-card h3 {
  color: var(--primary-navy) !important;
  font-size: 24px !important;
}

.premium-mv-card p {
  color: #64748b !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.mv-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(212, 175, 55, 0.08) !important;
  border-radius: 18px !important;
  transition: all 0.3s ease;
}

.mv-icon-box i {
  font-size: 26px !important;
  color: var(--secondary-gold) !important;
}

.premium-mv-card:hover .mv-icon-box {
  background: var(--secondary-gold) !important;
}

.premium-mv-card:hover .mv-icon-box i {
  color: var(--primary-navy) !important;
}

/* About Page - Why Customers Trust Us Section Styling */
.elite-trust-section {
  background: #0a1426 !important; /* Premium dark navy background for layout contrast */
  padding: 80px 0 !important;
  border-top: 1px solid rgba(212, 175, 55, 0.1) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1) !important;
}

.premium-trust-card {
  background: rgba(255, 255, 255, 0.02) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(212, 175, 55, 0.12) !important;
  border-radius: 24px !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.premium-trust-card:hover {
  transform: translateY(-8px) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: var(--secondary-gold) !important;
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.4),
    var(--shadow-gold) !important;
}

.premium-trust-card p {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 14.5px !important;
  line-height: 1.65 !important;
}

.trust-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.12) !important;
  border-radius: 50% !important;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
}

.trust-icon-box i {
  font-size: 22px !important;
  color: var(--secondary-gold) !important;
}

.premium-trust-card:hover .trust-icon-box {
  background: var(--secondary-gold) !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4) !important;
}

.premium-trust-card:hover .trust-icon-box i {
  color: var(--primary-navy) !important;
}

/* CTA Banner Section - Button Text Color Visibility Fixes */
.cta-banner-section .btn-premium-gold {
  color: var(--primary-navy) !important;
  text-decoration: none !important;
}

.cta-banner-section .btn-premium-gold:hover {
  color: var(--secondary-gold) !important;
  text-decoration: none !important;
}

.cta-banner-section .btn-premium-navy {
  color: #ffffff !important;
  text-decoration: none !important;
  border-color: #ffffff !important;
}

.cta-banner-section .btn-premium-navy:hover {
  color: var(--primary-navy) !important;
  background-color: #ffffff !important;
  text-decoration: none !important;
}

/* About Page - Statistics Pill Cards */
.about-stat-pill-card {
  background: #ffffff !important;
  border: 1px solid rgba(15, 30, 54, 0.08) !important;
  border-radius: 16px !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  box-shadow: 0 4px 15px rgba(15, 30, 54, 0.02) !important;
}

.about-stat-pill-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 15px 30px rgba(15, 30, 54, 0.08) !important;
  border-color: var(--secondary-gold) !important;
}

.about-stat-pill-card h3 {
  font-size: 24px !important;
  color: var(--secondary-gold) !important;
}

.about-stat-pill-card span {
  font-size: 11px !important;
  letter-spacing: 0.5px;
}

/* About Page - Purpose Cards Styling */
.premium-purpose-card {
  background: #ffffff !important;
  border: 1px solid rgba(15, 30, 54, 0.08) !important;
  border-top: 4px solid var(--secondary-gold) !important;
  border-radius: 16px !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.premium-purpose-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(15, 30, 54, 0.08) !important;
  border-color: rgba(212, 175, 55, 0.25) !important;
}

.purpose-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.08) !important;
  border-radius: 50% !important;
  transition: all 0.3s ease;
}

.purpose-icon-box i {
  font-size: 24px !important;
  color: var(--secondary-gold) !important;
}

.premium-purpose-card:hover .purpose-icon-box {
  background: var(--secondary-gold) !important;
}

.premium-purpose-card:hover .purpose-icon-box i {
  color: var(--primary-navy) !important;
}

/* About Page - Journey Timeline Section Styling */
.journey-timeline-wrapper {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.journey-timeline-line {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary-gold) 0%,
    var(--primary-navy) 100%
  );
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 10px;
}

.journey-timeline-row {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}

.journey-timeline-col {
  flex: 1;
  position: relative;
}

/* 5 Columns layout for desktop */
@media (min-width: 992px) {
  .col-lg-2col {
    width: 20%;
    flex: 0 0 20%;
  }
}

.journey-timeline-card {
  background: #ffffff !important;
  border: 1px solid rgba(15, 30, 54, 0.08) !important;
  border-radius: 16px !important;
  padding: 25px 20px !important;
  margin: 0 10px;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.journey-timeline-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 15px 30px rgba(15, 30, 54, 0.08) !important;
  border-color: var(--secondary-gold) !important;
}

.journey-year {
  display: inline-block;
  background-color: var(--secondary-gold) !important;
  color: var(--primary-navy) !important;
  font-weight: 700 !important;
  padding: 4px 14px !important;
  border-radius: 30px !important;
  font-size: 13.5px !important;
  margin-bottom: 25px !important;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.25) !important;
}

.journey-node {
  width: 18px;
  height: 18px;
  background: var(--secondary-gold) !important;
  border: 4px solid #ffffff !important;
  border-radius: 50% !important;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.45) !important;
  transition: all 0.3s ease;
  display: none !important; /* Hide on desktop view */
}

.journey-timeline-card:hover + .journey-node,
.journey-timeline-card:hover ~ .journey-node,
.journey-timeline-card:hover .journey-node {
  transform: translate(-50%, -50%) scale(1.3) !important;
  background: var(--primary-navy) !important;
  border-color: var(--secondary-gold) !important;
}

/* Position timeline nodes relative to top/bottom */
@media (min-width: 992px) {
  .journey-timeline-col:nth-child(even) .journey-timeline-card {
    margin-top: 90px !important;
  }
  .journey-timeline-col:nth-child(odd) .journey-timeline-card {
    margin-bottom: 90px !important;
  }
  .journey-timeline-col:nth-child(even) .journey-year {
    margin-bottom: 0 !important;
    margin-top: 25px !important;
    order: 2;
  }
  .journey-timeline-col:nth-child(even) .journey-timeline-card {
    display: flex;
    flex-direction: column;
  }
  .journey-timeline-col:nth-child(even) .journey-node {
    top: 35px !important;
  }
  .journey-timeline-col:nth-child(odd) .journey-node {
    top: calc(100% - 35px) !important;
  }
}

/* Mobile layout for Journey Timeline */
@media (max-width: 991px) {
  .journey-timeline-wrapper {
    padding: 20px 0;
  }
  .journey-timeline-line {
    left: 25px !important;
    top: 0 !important;
    width: 4px !important;
    height: 100% !important;
    transform: none !important;
  }
  .journey-timeline-row {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .journey-timeline-col {
    width: 100% !important;
    padding-left: 55px !important;
    margin-bottom: 25px !important;
  }
  .journey-timeline-card {
    margin: 0 !important;
    text-align: left !important;
  }
  .journey-node {
    display: block !important; /* Show on mobile view */
    left: 27px !important;
    top: 30px !important;
    transform: translate(-50%, -50%) !important;
  }
  .journey-year {
    margin-bottom: 12px !important;
  }
}

/* About Page - Why Customers Trust Us Grid Cards Styling */
.trust-grid-card {
  background: #ffffff !important;
  border: 1px solid rgba(15, 30, 54, 0.08) !important;
  border-radius: 20px !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.trust-grid-card:hover {
  transform: translateY(-6px) !important;
  border-color: var(--secondary-gold) !important;
  box-shadow: 0 15px 35px rgba(15, 30, 54, 0.08) !important;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.08) !important;
  border-radius: 12px !important;
  transition: all 0.3s ease;
}

.trust-icon i {
  font-size: 20px !important;
  color: var(--secondary-gold) !important;
}

.trust-grid-card:hover .trust-icon {
  background: var(--secondary-gold) !important;
}

.trust-grid-card:hover .trust-icon i {
  color: var(--primary-navy) !important;
}

/* About Page - Professional Team Cards Styling */
.team-member-card {
  background: #ffffff !important;
  border: 1px solid rgba(15, 30, 54, 0.08) !important;
  border-radius: 24px !important;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.team-photo-container {
  overflow: hidden;
  position: relative;
  background: var(--bg-light) !important;
}

.team-photo-container img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.team-member-card:hover {
  transform: translateY(-8px) !important;
  border-color: var(--secondary-gold) !important;
  box-shadow: 0 15px 35px rgba(15, 30, 54, 0.1) !important;
}

.team-member-card:hover .team-photo-container img {
  transform: scale(1.06) !important;
}

/* About Page - Before & After Comparison Styling */
.showcase-comparison-card {
  border: 1px solid rgba(15, 30, 54, 0.08) !important;
  border-radius: 20px !important;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.showcase-comparison-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 15px 35px rgba(15, 30, 54, 0.08) !important;
  border-color: var(--secondary-gold) !important;
}

.showcase-comparison-split {
  display: flex;
  overflow: hidden;
  height: 220px;
  position: relative;
}

.showcase-split-side {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.showcase-split-side img {
  width: 200%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
}

.showcase-split-side.before img {
  left: 0;
}

.showcase-split-side.after img {
  right: 0;
}

/* CSS filters for Before photo state */
.before-filter {
  filter: contrast(0.85) brightness(0.68) sepia(0.28) saturate(1.1) blur(0.5px) !important;
}

.showcase-comparison-split .badge {
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 6px 12px !important;
  letter-spacing: 0.5px;
  border-radius: 4px !important;
  z-index: 10;
}

.top-2 {
  top: 15px !important;
}
.start-2 {
  left: 15px !important;
}
.end-2 {
  right: 15px !important;
}

/* About Page - Comparison Section Table Styling */
.comparison-table-wrapper {
  background: #ffffff !important;
  border: 1px solid rgba(15, 30, 54, 0.1) !important;
  border-radius: 20px !important;
}

.comparison-table-wrapper table {
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table-wrapper th,
.comparison-table-wrapper td {
  border-bottom: 1px solid rgba(15, 30, 54, 0.06) !important;
}

.comparison-table-wrapper tr:last-child td {
  border-bottom: none !important;
}

.bg-navy {
  background-color: var(--primary-navy) !important;
}

/* About Page - CTA Response Pulse Badge */
.bg-gold-trans {
  background-color: rgba(212, 175, 55, 0.15) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
}

.cta-response-badge {
  width: 8px;
  height: 8px;
  background-color: var(--secondary-gold) !important;
  border-radius: 50% !important;
  display: inline-block;
  animation: badge-pulse 1.8s infinite ease-in-out;
}

@keyframes badge-pulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

/* Premium WhatsApp Button CTA style */
.btn-premium-whatsapp {
  background-color: #25d366 !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 30px !important;
  border-radius: 4px !important;
  border: 2px solid #25d366 !important;
  transition: var(--transition-smooth);
}

.btn-premium-whatsapp:hover {
  background-color: transparent !important;
  color: #25d366 !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
}

/* ==========================================
   BEFORE & AFTER GALLERY PREMIUM REDESIGN
   ========================================== */

/* Sliders */
.before-after-slider-container {
  position: relative;
  width: 100%;
}

.before-after-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 30, 54, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.18);
  background-color: #0f1e36;
}

.before-after-slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.before-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid #d4af37;
}

.before-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}

/* Slider labels */
.main-contain .slider-label,
.slider-label {
  position: absolute;
  top: 15px;
  padding: 5px 12px;
  background: rgba(15, 30, 54, 0.85) !important;
  backdrop-filter: blur(4px) !important;
  color: #ffffff !important;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  z-index: 4;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  text-transform: uppercase;
}

.label-before {
  left: 15px;
  border-left: 3px solid #ff4d4d !important;
}

.label-after {
  right: 15px;
  border-right: 3px solid #25d366 !important;
}

/* Handle line and button overlay styling */
.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: #d4af37;
  z-index: 3;
  pointer-events: none;
  transform: translateX(-50%);
}

.slider-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  background: #0f1e36 !important;
  border: 2px solid #d4af37 !important;
  color: #d4af37 !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  box-shadow: 0 4px 12px rgba(15, 30, 54, 0.4);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-contain .slider-handle-button i {
  color: #d4af37 !important;
  font-size: 12px !important;
}

.before-after-slider:hover .slider-handle-button {
  background: #d4af37 !important;
  color: #0f1e36 !important;
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.main-contain .before-after-slider:hover .slider-handle-button i {
  color: #0f1e36 !important;
}

/* Native Input Range Overlay for Swiping/Dragging */
.slider-range-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  margin: 0;
}

/* Category Filters Styling */
.filter-tabs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-tab-btn {
  background: #ffffff !important;
  color: #0f1e36 !important;
  border: 1px solid rgba(15, 30, 54, 0.1) !important;
  padding: 8px 18px !important;
  border-radius: 30px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-tab-btn:hover {
  border-color: #d4af37 !important;
  color: #d4af37 !important;
  background: rgba(212, 175, 55, 0.05) !important;
  transform: translateY(-1px);
}

.filter-tab-btn.active {
  background: #0f1e36 !important;
  color: #ffffff !important;
  border-color: #0f1e36 !important;
  box-shadow: 0 4px 12px rgba(15, 30, 54, 0.15);
}

/* Gallery Grid Cards */
.gallery-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .gallery-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .gallery-results-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-slider-card {
  background: #ffffff !important;
  border: 1px solid rgba(15, 30, 54, 0.06) !important;
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 30, 54, 0.04) !important;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.gallery-slider-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.3) !important;
  box-shadow: 0 15px 35px rgba(15, 30, 54, 0.1), 0 0 15px rgba(212, 175, 55, 0.1) !important;
}

.gallery-card-content {
  padding: 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.gallery-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.gallery-card-badge {
  font-size: 11px;
  font-weight: 700;
  color: #d4af37 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gallery-card-location {
  font-size: 12px;
  color: #6b7280 !important;
  display: flex;
  align-items: center;
  gap: 4px;
}

.gallery-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f1e36 !important;
  margin-bottom: 8px;
}

.gallery-card-desc {
  font-size: 13.5px;
  color: #4b5563 !important;
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
}

/* Success Stories Section */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .stories-grid {
    grid-template-columns: 1fr;
  }
}

.story-card {
  background: #ffffff !important;
  border: 1px solid rgba(15, 30, 54, 0.08) !important;
  border-radius: 20px !important;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(15, 30, 54, 0.03) !important;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(15, 30, 54, 0.08) !important;
}

.story-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}

.story-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d4af37;
}

.story-client-info h5 {
  font-size: 15px;
  font-weight: 700;
  color: #0f1e36 !important;
  margin: 0;
}

.story-client-info span {
  font-size: 11px;
  color: #6b7280 !important;
}

.story-review-text {
  font-size: 13.5px;
  color: #4b5563 !important;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.story-thumbnail-container {
  margin-top: auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(15, 30, 54, 0.08);
  aspect-ratio: 16/9;
}

.story-thumbnail-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video Transformation Cards */
.video-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .video-card-grid {
    grid-template-columns: 1fr;
  }
}

.video-transform-card {
  background: #ffffff !important;
  border: 1px solid rgba(15, 30, 54, 0.06) !important;
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 30, 54, 0.04) !important;
  transition: all 0.3s ease;
}

.video-transform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(15, 30, 54, 0.08) !important;
}

.video-thumbnail-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000000;
  overflow: hidden;
}

.video-thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.4s ease;
}

.video-transform-card:hover .video-thumbnail-wrapper img {
  transform: scale(1.05);
}

.video-play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(15, 30, 54, 0.9);
  border: 2px solid #d4af37;
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.video-transform-card:hover .video-play-btn-overlay {
  background: #d4af37;
  color: #0f1e36;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
}

.video-duration-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}

.video-card-info {
  padding: 20px;
  background: #ffffff;
}

.video-card-info h5 {
  font-size: 16px;
  font-weight: 700;
  color: #0f1e36 !important;
  margin-bottom: 6px;
}

.video-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #6b7280 !important;
}

/* Achievements Stat Bar */
.results-stat-bar-section {
  background: linear-gradient(135deg, #0f1e36, #1b2f4a) !important;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

@media (max-width: 991px) {
  .stat-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .stat-bar-grid {
    grid-template-columns: 1fr;
  }
}

.stat-bar-number {
  font-size: 40px;
  font-weight: 800;
  color: #d4af37 !important;
  line-height: 1.1;
  margin-bottom: 6px;
  font-family: "Poppins", sans-serif;
}

.stat-bar-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Area pills styling */
.areas-grid-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.area-pill-card {
  background: #ffffff !important;
  border: 1px solid rgba(15, 30, 54, 0.08) !important;
  padding: 12px 24px !important;
  border-radius: 12px !important;
  color: #0f1e36 !important;
  font-weight: 700 !important;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(15, 30, 54, 0.02) !important;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.area-pill-card i {
  color: #d4af37 !important;
}

.area-pill-card:hover {
  border-color: #d4af37 !important;
  color: #d4af37 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15) !important;
}

/* Google Reviews slider and ratings */
.google-reviews-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.google-reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollReviews 35s linear infinite;
}

.google-reviews-track:hover {
  animation-play-state: paused;
}

@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

.google-review-card {
  width: 320px;
  background: #ffffff !important;
  border: 1px solid rgba(15, 30, 54, 0.06) !important;
  border-radius: 16px !important;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(15, 30, 54, 0.03) !important;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.google-review-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.google-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0f1e36;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.google-review-name h6 {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f1e36 !important;
  margin: 0;
}

.google-review-name span {
  font-size: 11px;
  color: #9ca3af !important;
}

.google-review-rating {
  color: #d4af37 !important;
  font-size: 11px;
  margin-bottom: 10px;
}

.google-review-text {
  font-size: 12.5px;
  color: #4b5563 !important;
  line-height: 1.5;
  margin: 0;
}

/* High specificity overrides for Before & After Results page visibility issues */
.main-contain .premium-cta-gradient h2,
.main-contain .premium-cta-gradient h2.cta-main-headline {
  color: #ffffff !important;
}

.main-contain .premium-cta-gradient p,
.main-contain .premium-cta-gradient p.cta-subheadline {
  color: rgba(255, 255, 255, 0.85) !important;
}

.main-contain .premium-cta-gradient .cta-floating-glass-badge {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
}

.main-contain .video-play-btn-overlay {
  color: #d4af37 !important;
}

.main-contain .video-play-btn-overlay i {
  color: #d4af37 !important;
}

.main-contain .video-transform-card:hover .video-play-btn-overlay i {
  color: #0f1e36 !important;
}

.main-contain .video-duration-tag {
  color: #ffffff !important;
}

/* ==========================================
   BLOG PAGE & DYNAMIC DETAILS PREMIUM REDESIGN
   ========================================== */

/* Featured Blog Post Card */
.blog-featured-card {
  background: #ffffff !important;
  border: 1px solid rgba(15, 30, 54, 0.08) !important;
  border-radius: 24px !important;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 30, 54, 0.05) !important;
  transition: all 0.3s ease;
}

.blog-featured-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.3) !important;
  box-shadow: 0 20px 40px rgba(15, 30, 54, 0.08), 0 0 15px rgba(212, 175, 55, 0.1) !important;
}

.blog-featured-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-featured-card:hover .blog-featured-image {
  transform: scale(1.03);
}

.blog-featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-badge {
  align-self: flex-start;
  background: rgba(212, 175, 55, 0.15) !important;
  color: #d4af37 !important;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.blog-featured-meta {
  display: flex;
  gap: 15px;
  font-size: 12.5px;
  color: #6b7280 !important;
  margin-bottom: 12px;
}

.blog-featured-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-featured-title {
  font-size: 26px;
  font-weight: 700;
  color: #0f1e36 !important;
  line-height: 1.3;
  margin-bottom: 15px;
}

.blog-featured-title a {
  color: #0f1e36 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-featured-title a:hover {
  color: #d4af37 !important;
}

.blog-featured-desc {
  font-size: 14.5px;
  color: #4b5563 !important;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Grid Cards */
.blog-grid-card {
  background: #ffffff !important;
  border: 1px solid rgba(15, 30, 54, 0.06) !important;
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 30, 54, 0.04) !important;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-grid-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.3) !important;
  box-shadow: 0 15px 35px rgba(15, 30, 54, 0.1), 0 0 15px rgba(212, 175, 55, 0.1) !important;
}

.blog-card-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0f1e36;
}

.blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-grid-card:hover .blog-card-image {
  transform: scale(1.05);
}

.blog-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(15, 30, 54, 0.85) !important;
  backdrop-filter: blur(4px);
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
}

.blog-card-content {
  padding: 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #6b7280 !important;
  margin-bottom: 12px;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f1e36 !important;
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card-title a {
  color: #0f1e36 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: #d4af37 !important;
}

.blog-card-excerpt {
  font-size: 13.5px;
  color: #4b5563 !important;
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
}

.blog-card-author {
  font-size: 12px;
  font-weight: 600;
  color: #0f1e36 !important;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card-author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

/* Most Read/Popular Articles Section */
.popular-article-item {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(15, 30, 54, 0.06);
  transition: all 0.2s ease;
}

.popular-article-item:last-child {
  border-bottom: none;
}

.popular-article-thumb {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.popular-article-info {
  flex-grow: 1;
}

.popular-article-category {
  font-size: 10px;
  font-weight: 700;
  color: #d4af37 !important;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.popular-article-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f1e36 !important;
  line-height: 1.3;
  margin: 0 0 4px 0;
}

.popular-article-title a {
  color: #0f1e36 !important;
  text-decoration: none;
}

.popular-article-title a:hover {
  color: #d4af37 !important;
}

.popular-article-meta {
  font-size: 11px;
  color: #9ca3af !important;
}

/* Blog Detail Page Container */
.blog-detail-container {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 40px;
  padding-top: 20px;
}

@media (max-width: 991px) {
  .blog-detail-container {
    grid-template-columns: 100%;
    gap: 30px;
  }
}

.blog-detail-article {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(15, 30, 54, 0.05);
  box-shadow: 0 10px 25px rgba(15, 30, 54, 0.02);
}

.blog-detail-featured-image {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.blog-detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13.5px;
  color: #6b7280 !important;
  border-bottom: 1px solid rgba(15, 30, 54, 0.08);
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.blog-detail-meta-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Blog Article Content Typography */
.blog-article-body {
  font-size: 15px;
  line-height: 1.75;
  color: #374151 !important;
}

.blog-article-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f1e36 !important;
  margin-top: 35px;
  margin-bottom: 15px;
}

.blog-article-body h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f1e36 !important;
  margin-top: 25px;
  margin-bottom: 10px;
}

.blog-article-body p {
  color: #374151 !important;
  margin-bottom: 20px;
}

.blog-article-body ul, 
.blog-article-body ol {
  margin-bottom: 25px;
  padding-left: 20px;
}

.blog-article-body li {
  color: #374151 !important;
  margin-bottom: 10px;
}

.blog-article-body blockquote {
  border-left: 4px solid #d4af37;
  padding: 15px 20px;
  background: #f9fafb;
  font-style: italic;
  border-radius: 0 8px 8px 0;
  margin: 30px 0;
  color: #4b5563 !important;
}

/* Sidebar Cards */
.blog-sidebar-card {
  background: #ffffff !important;
  border: 1px solid rgba(15, 30, 54, 0.06) !important;
  border-radius: 20px !important;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(15, 30, 54, 0.02) !important;
  margin-bottom: 30px;
}

.blog-sidebar-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f1e36 !important;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
  display: inline-block;
}

/* Service Promos in Sidebar */
.sidebar-service-promo {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  margin-bottom: 15px;
}

.sidebar-service-promo:last-child {
  margin-bottom: 0;
}

.sidebar-service-promo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: transform 0.3s ease;
}

.sidebar-service-promo:hover img {
  transform: scale(1.05);
}

.sidebar-service-promo-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: #ffffff !important;
}

.sidebar-service-promo-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 4px;
}

.sidebar-service-promo-link {
  font-size: 11px;
  font-weight: 700;
  color: #d4af37 !important;
  text-decoration: none;
  text-transform: uppercase;
}

/* ==========================================
   SERVICE PROCESS SECTION REDESIGN
   ========================================== */

.premium-process-section {
  position: relative;
  background-color: var(--bg-light) !important;
}

.process-small-label {
  display: block;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: var(--secondary-gold) !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.process-main-heading {
  font-size: 34px !important;
  font-weight: 800 !important;
  color: var(--primary-navy) !important;
  margin-bottom: 15px;
}

.process-sub-heading {
  font-size: 15.5px !important;
  color: var(--text-muted) !important;
  max-width: 650px;
  margin: 0 auto !important;
  line-height: 1.6;
}

.timeline-wrapper {
  position: relative;
  padding: 40px 0 20px;
  margin-top: 30px;
}

.timeline-connector-line {
  position: absolute;
  top: 52px;
  left: 8%;
  right: 8%;
  height: 4px;
  background: rgba(212, 175, 55, 0.15) !important;
  z-index: 1;
  border-radius: 2px;
}

.timeline-progress-line {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--secondary-gold), var(--accent-gold)) !important;
  transition: width 2.2s cubic-bezier(0.1, 1, 0.1, 1);
  position: relative;
}

.timeline-progress-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--accent-gold) !important;
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-gold), 0 0 20px var(--secondary-gold);
}

.process-steps-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.process-step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.1, 1, 0.1, 1), transform 0.8s cubic-bezier(0.1, 1, 0.1, 1);
}

.process-step-item.active-step {
  opacity: 1;
  transform: translateY(0);
}

.process-node {
  width: 24px;
  height: 24px;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 3px solid rgba(212, 175, 55, 0.3) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  z-index: 3;
  transition: var(--transition-smooth);
}

.process-node-dot {
  width: 8px;
  height: 8px;
  border-radius: 50% !important;
  background: rgba(212, 175, 55, 0.3) !important;
  transition: var(--transition-smooth);
}

.process-step-item.active-step .process-node {
  border-color: var(--secondary-gold) !important;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
}

.process-step-item.active-step .process-node-dot {
  background: var(--secondary-gold) !important;
  box-shadow: 0 0 6px var(--secondary-gold);
}

.process-card {
  background: var(--bg-white) !important;
  border: 1px solid rgba(15, 30, 54, 0.05) !important;
  border-top: 4px solid var(--secondary-gold) !important;
  border-radius: 20px !important;
  padding: 24px 20px !important;
  text-align: center;
  position: relative;
  width: 100%;
  box-shadow: 0 10px 25px rgba(15, 30, 54, 0.02) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 15px 35px rgba(15, 30, 54, 0.08), 0 0 20px rgba(212, 175, 55, 0.25) !important;
  border-color: rgba(212, 175, 55, 0.4) !important;
  border-top-color: var(--secondary-gold) !important;
}

.process-step-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px !important;
  font-weight: 800 !important;
  color: rgba(15, 30, 54, 0.05) !important;
  transition: var(--transition-smooth);
  font-family: "Poppins", sans-serif;
}

.process-card:hover .process-step-number {
  color: rgba(212, 175, 55, 0.15) !important;
  transform: scale(1.1);
}

.process-icon-wrapper {
  width: 55px;
  height: 55px;
  border-radius: 50% !important;
  background: rgba(15, 30, 54, 0.03) !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-navy) !important;
  transition: var(--transition-smooth);
}

.process-icon-wrapper i {
  font-size: 20px !important;
  color: var(--primary-navy) !important;
  transition: var(--transition-smooth);
}

.process-card:hover .process-icon-wrapper {
  background: var(--secondary-gold) !important;
  border-color: var(--secondary-gold) !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.process-card:hover .process-icon-wrapper i {
  color: #ffffff !important;
}

.process-step-title {
  font-size: 16.5px !important;
  font-weight: 700 !important;
  color: var(--primary-navy) !important;
  margin-bottom: 10px !important;
  line-height: 1.3 !important;
}

.process-step-desc {
  font-size: 12.5px !important;
  color: var(--text-muted) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.process-step-item:hover .process-node {
  transform: scale(1.25) !important;
  border-color: var(--secondary-gold) !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.8) !important;
}

.process-step-item:hover .process-node-dot {
  background: var(--accent-gold) !important;
  box-shadow: 0 0 6px var(--accent-gold);
}

/* ==========================================
   PREMIUM TRUST BAR SECTION
   ========================================== */

.premium-trust-bar-section {
  background-color: var(--primary-navy) !important;
  border-top: 1px solid rgba(212, 175, 55, 0.3) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3) !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.premium-trust-bar-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(212, 175, 55, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
}

.trust-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  background: rgba(212, 175, 55, 0.1) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.trust-icon-box i {
  font-size: 20px !important;
  color: var(--secondary-gold) !important;
  transition: var(--transition-smooth);
}

.trust-item:hover .trust-icon-box {
  background: var(--secondary-gold) !important;
  border-color: var(--secondary-gold) !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.trust-item:hover .trust-icon-box i {
  color: var(--primary-navy) !important;
}

.trust-content {
  text-align: center;
}

.trust-counter {
  font-size: 26px !important;
  font-weight: 800 !important;
  color: var(--secondary-gold) !important;
  margin-bottom: 2px !important;
  font-family: "Poppins", sans-serif;
  line-height: 1.2 !important;
}

.trust-item:hover .trust-counter {
  color: #ffffff !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.trust-label {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 !important;
}

/* ==========================================
   RESPONSIVE PROCESS LAYOUT
   ========================================== */

@media (max-width: 991px) {
  .timeline-connector-line {
    left: 42px;
    top: 25px;
    bottom: 25px;
    width: 4px;
    height: auto;
    right: auto;
  }

  .timeline-progress-line {
    height: 0%;
    width: 100%;
    transition: height 2.2s cubic-bezier(0.1, 1, 0.1, 1);
  }

  .timeline-progress-line::after {
    top: auto;
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translate(-50%, 50%);
  }

  .process-steps-container {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  .process-step-item {
    flex-direction: row;
    width: 100%;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    transform: translateX(-30px);
  }

  .process-step-item.active-step {
    opacity: 1;
    transform: translateX(0);
  }

  .process-node {
    margin-bottom: 0;
    margin-top: 15px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-width: 2px !important;
  }

  .process-node-dot {
    width: 6px;
    height: 6px;
  }

  .process-card {
    border-top: none !important;
    border-left: 4px solid var(--secondary-gold) !important;
    text-align: left;
    align-items: flex-start;
    padding: 20px 24px !important;
  }

  .process-icon-wrapper {
    margin-bottom: 12px;
  }

  .process-step-number {
    top: 15px;
    right: 20px;
    font-size: 24px !important;
  }
  
  .trust-item {
    margin-bottom: 15px;
  }
}




