/* ==========================================================================
   MAIN ZONE — Mainland & Free Zone Business Solutions
   Global Stylesheet & Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@500;600;700;800;900&display=swap');

:root {
  /* Brand Color Tokens */
  --gold: #A9812E;
  --gold-dark: #8A6A22;
  --gold-light: #D4AF63;
  --gold-subtle: rgba(169, 129, 46, 0.08);
  --gold-glow: rgba(169, 129, 46, 0.25);
  
  --black: #141414;
  --charcoal: #252523;
  --dark-surface: #1E1E1C;
  
  --off-white: #FAFAF8;
  --white: #FFFFFF;
  --text-main: #20201E;
  --text-body: #4A4A46;
  --text-muted: #666662;
  --text-light: #A3A39E;
  
  --success: #1D9E75;
  --success-light: rgba(29, 158, 117, 0.1);
  --border: #E5E3DC;
  --border-dark: #3A3A37;
  
  /* Typography Tokens - Premium Geometric UAE Corporate Aesthetic */
  --font-heading: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Outfit', 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Elevation & Transitions */
  --shadow-sm: 0 2px 8px rgba(20, 20, 20, 0.04);
  --shadow-md: 0 6px 20px rgba(20, 20, 20, 0.07);
  --shadow-lg: 0 12px 36px rgba(20, 20, 20, 0.1);
  --shadow-gold: 0 8px 24px rgba(169, 129, 46, 0.22);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Resets & Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--off-white);
  line-height: 1.72;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--black);
  line-height: 1.28;
  letter-spacing: -0.025em;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--gold-dark);
}

/* Eyebrow Label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

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

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 2px;
  background: currentColor;
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.btn-gold {
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold);
  box-shadow: 0 4px 12px var(--gold-glow);
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-gold:hover, .btn-gold:focus {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(169, 129, 46, 0.35);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gold);
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-outline-gold:hover, .btn-outline-gold:focus {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-light-custom {
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-outline-light-custom:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm-custom {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-lg-custom {
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   Header & Sticky Navigation
   ========================================================================== */
.site-header,
.main-header,
header.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1040;
  background-color: #FFFFFF !important;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all var(--transition-normal);
}

.site-header.scrolled,
.main-header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: #FFFFFF !important;
}

.navbar-brand img {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.navbar-brand:hover img {
  transform: scale(1.02);
}

.nav-link-custom {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal) !important;
  padding: 0.6rem 1rem !important;
  position: relative;
  transition: color var(--transition-fast);
}

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

/* Active page underline in Gold */
.nav-link-custom.active {
  color: var(--gold) !important;
}

.nav-link-custom.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2.5px;
  background-color: var(--gold);
  border-radius: 2px;
}

/* Header Top Bar */
.header-top-bar {
  background-color: var(--black);
  color: var(--off-white);
  font-size: 0.82rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-dark);
}

.header-top-bar a {
  color: #CCCAC2;
}

.header-top-bar a:hover {
  color: var(--gold-light);
}

/* Mobile Offcanvas Drawer */
.offcanvas-custom {
  background-color: var(--black);
  color: var(--white);
  max-width: 320px;
}

.offcanvas-custom .btn-close {
  filter: invert(1) grayscale(100%);
}

.offcanvas-custom .nav-link-custom {
  color: var(--off-white) !important;
  font-size: 1.1rem;
  padding: 0.85rem 0 !important;
  border-bottom: 1px solid var(--border-dark);
}

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

.offcanvas-custom .nav-link-custom.active::after {
  display: none;
}

/* ==========================================================================
   Hero Section with Dynamic Background Image Scroll & Ken-Burns Animation
   ========================================================================== */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 5.5rem;
  background-color: var(--black);
  color: var(--white);
  min-height: 640px;
  display: flex;
  align-items: center;
}

/* Background Image Slideshow Container */
.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.8s ease-in-out, transform 8s ease-out;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.08);
}

/* Luxury Multi-layer Gradient Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(135deg, rgba(14, 14, 14, 0.94) 0%, rgba(20, 20, 20, 0.82) 45%, rgba(14, 14, 14, 0.92) 100%),
              radial-gradient(circle at 85% 20%, rgba(169, 129, 46, 0.22) 0%, transparent 60%);
  pointer-events: none;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
}

.hero-title {
  color: var(--white);
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 1.16;
  margin-bottom: 1.35rem;
  letter-spacing: -0.03em;
}

.hero-title .text-gold {
  color: var(--gold-light) !important;
  background: linear-gradient(135deg, #FFFFFF 0%, #D4AF63 60%, #A9812E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  color: #E2E1DC;
  font-weight: 400;
  max-width: 580px;
  margin-bottom: 2.2rem;
  line-height: 1.75;
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.star-rating {
  color: #F5B041;
  font-size: 1rem;
}

/* Glassmorphic Visual Card in Hero */
.hero-card-visual {
  background: rgba(26, 26, 26, 0.78);
  border: 1px solid rgba(212, 175, 99, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 20px rgba(169, 129, 46, 0.12);
  position: relative;
}

.hero-card-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25px;
  right: 25px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
  border-radius: 3px;
}

.license-preview-badge {
  background: rgba(36, 36, 34, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  margin-bottom: 1rem;
  transition: all var(--transition-fast);
}

.license-preview-badge:hover {
  transform: translateX(5px);
  border-color: var(--gold);
  background: rgba(45, 45, 42, 0.95);
  box-shadow: 0 4px 16px rgba(169, 129, 46, 0.2);
}

/* ==========================================================================
   Partner Logo Marquee Ticker
   ========================================================================== */
.partner-marquee-section {
  background-color: var(--black);
  border-bottom: 1px solid var(--border-dark);
  padding: 1.25rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #CCCAC2;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-item i {
  color: var(--gold-light);
  font-size: 1.1rem;
}

/* Button Shimmer Effect */
.btn-gold {
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: rotate(30deg);
  transition: none;
}

.btn-gold:hover::after {
  left: 130%;
  transition: all 0.75s ease-in-out;
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */
.trust-bar {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
  box-shadow: var(--shadow-sm);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0.5rem 0.75rem;
}

.trust-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--gold-subtle);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.trust-item h6 {
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}

.trust-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   Section Headers & Components
   ========================================================================== */
.section-padding {
  padding: 5rem 0;
}

.section-padding-sm {
  padding: 3.5rem 0;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.85rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
}

.bg-off-white {
  background-color: var(--off-white);
}

.bg-white {
  background-color: var(--white);
}

.bg-dark-custom {
  background-color: var(--black);
  color: var(--white);
}

/* Card Styling */
.custom-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.row > [class*='col'] > .custom-card:only-child {
  height: 100%;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(169, 129, 46, 0.4);
}

.card-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--gold-subtle);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.35rem;
  transition: all var(--transition-fast);
}

.custom-card:hover .card-icon-wrap {
  background: var(--gold);
  color: var(--white);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.card-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.card-link:hover {
  color: var(--gold-dark);
  gap: 10px;
}

/* ==========================================================================
   Pricing Cards
   ========================================================================== */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
}

.pricing-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.pricing-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  vertical-align: super;
}

.pricing-amount {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 0.92rem;
  color: var(--charcoal);
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li i {
  /* color: var(--success); */
  color: var(--gold);
  font-size: 1.05rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ==========================================================================
   4-Step Timeline Process
   ========================================================================== */
.process-timeline {
  position: relative;
  padding: 2rem 0;
}

.process-track {
  position: absolute;
  top: 52px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--border);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 10px;
}

.process-node {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 8px var(--off-white);
  transition: all var(--transition-fast);
}

.process-step:hover .process-node {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 0 0 8px var(--gold-subtle);
  transform: scale(1.08);
}

.process-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Testimonial Carousel
   ========================================================================== */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.testimonial-quote-icon {
  font-size: 2.5rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.15rem;
  color: var(--charcoal);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid var(--gold);
}

.carousel-indicators [data-bs-target] {
  background-color: var(--gold);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(40%) sepia(80%) saturate(400%) hue-rotate(5deg);
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(169, 129, 46, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--white);
}

/* ==========================================================================
   Interactive Cost Calculator
   ========================================================================== */
.calculator-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.calculator-summary-box {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.calculator-price-tag {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

/* ==========================================================================
   FAQ Accordion Custom
   ========================================================================== */
.accordion-custom .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--white);
}

.accordion-custom .accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--black);
  background-color: var(--white);
  padding: 1.2rem 1.5rem;
  box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed) {
  color: var(--gold-dark);
  background-color: var(--gold-subtle);
  border-bottom: 1px solid var(--border);
}

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

.accordion-custom .accordion-body {
  padding: 1.25rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* ==========================================================================
   Floating Action Buttons (WhatsApp & Call)
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-normal);
  position: relative;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-3px);
  color: var(--white);
}

.floating-btn-whatsapp {
  background-color: #25D366;
}

.floating-btn-whatsapp:hover {
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.floating-btn-call {
  background-color: var(--gold);
}

.floating-btn-call:hover {
  background-color: var(--gold-dark);
  box-shadow: 0 8px 24px rgba(169, 129, 46, 0.45);
}

.floating-btn .tooltip-label {
  position: absolute;
  right: 64px;
  background: var(--black);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.floating-btn:hover .tooltip-label {
  opacity: 1;
}

/* ==========================================================================
   Scroll to Top Button (Fixed Bottom Left)
   ========================================================================== */
.scroll-top-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--charcoal);
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(169, 129, 46, 0.45);
}

/* ==========================================================================
   Footer Component
   ========================================================================== */
.site-footer {
  background-color: var(--black);
  color: #CCCAC2;
  padding: 4.5rem 0 0;
  border-top: 1px solid var(--border-dark);
  font-size: 0.92rem;
}

.footer-brand img {
  height: 48px;
  width: auto;
  max-width: 200px;
  /* margin-bottom: 1.2rem; */
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #A3A39E;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  color: #CCCAC2;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 1.15rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-social-links {
  display: flex;
  gap: 10px;
  margin-top: 1.25rem;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark-surface);
  border: 1px solid var(--border-dark);
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom-bar {
  border-top: 1px solid var(--border-dark);
  padding: 1.75rem 0;
  margin-top: 3.5rem;
  font-size: 0.85rem;
  color: #8E8E89;
}

.footer-legal-link {
  color: #A3A39E;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer-legal-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.footer-payment-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-fast);
}

.payment-badge:hover {
  transform: translateY(-2px);
}

.payment-badge svg {
  display: block;
}

/* ==========================================================================
   Dynamic Page Headers with CSS Variable & Data-Attribute Support
   ========================================================================== */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  border-bottom: 1px solid rgba(169, 129, 46, 0.4);
  /* Supports dynamic background injection via CSS custom property --hero-bg or data-bg */
  background-image: linear-gradient(135deg, rgba(14, 14, 14, 0.92) 0%, rgba(20, 20, 20, 0.84) 50%, rgba(14, 14, 14, 0.94) 100%),
                    var(--hero-bg, url('../assets/images/services-hero.jpg'));
  transition: background-image 0.6s ease-in-out;
}

/* Page Specific Hero Background Defaults */
.page-hero-services {
  --hero-bg: url('../assets/images/services-hero.jpg');
}

.page-hero-about {
  --hero-bg: url('../assets/images/about-hero.jpg');
}

.page-hero-pricing {
  --hero-bg: url('../assets/images/pricing-hero.jpg');
}

.page-hero-news {
  --hero-bg: url('../assets/images/hero-bg-2.jpg');
}

.page-hero-contact {
  --hero-bg: url('../assets/images/contact-hero.jpg');
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

/* In-Page Content Visuals */
.content-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid var(--border);
}

.content-img-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.content-img-card:hover img {
  transform: scale(1.04);
}

.breadcrumb-custom {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.breadcrumb-custom a {
  color: #CCCAC2;
}

.breadcrumb-custom .active {
  color: var(--gold-light);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #6B6B66;
}

/* News & Blog Cards */
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(169, 129, 46, 0.3);
}

.news-card-img {
  height: 200px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
}

.news-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* Filter Buttons */
.filter-btn {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ==========================================================================
   Online Services Dynamic Catalog & Tabs
   ========================================================================== */
.online-tab-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 0.85rem;
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.online-tab-btn i {
  font-size: 1.6rem;
  color: var(--gold);
  transition: all var(--transition-fast);
}

.online-tab-btn span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.2;
}

.online-tab-btn small {
  font-size: 0.75rem;
}

.online-tab-btn:hover,
.online-tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(169, 129, 46, 0.28);
}

.online-tab-btn:hover i,
.online-tab-btn.active i,
.online-tab-btn:hover span,
.online-tab-btn.active span,
.online-tab-btn:hover small,
.online-tab-btn.active small {
  color: var(--white) !important;
}

.online-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-normal);
}

.online-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--gold);
}

.service-icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(169, 129, 46, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

/* ==========================================================================
   CTA Banner Component
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, #161616 0%, #242422 50%, #1A1A18 100%);
  border: 1px solid rgba(169, 129, 46, 0.25);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(169, 129, 46, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner .btn,
.btn-lg-custom {
  white-space: nowrap !important;
}

/* ==========================================================================
   Process Steps & Timeline Section
   ========================================================================== */
.process-timeline {
  position: relative;
  margin-top: 1.5rem;
}



.process-step {
  
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.25rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-normal);
  height: 100%;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--gold);
}

.process-node {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 14px rgba(169, 129, 46, 0.18);
  transition: all var(--transition-fast);
}

.process-step:hover .process-node {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.08);
}

.process-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 0.65rem;
}

.process-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==========================================================================
   Luxury Testimonial Carousel & Cards
   ========================================================================== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  padding: 3.5rem 3rem;
  position: relative;
  transition: all var(--transition-normal);
}

.testimonial-quote-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(169, 129, 46, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.testimonial-author .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.carousel-btn-circle {
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: var(--white);
  padding: 0;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-btn-circle:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(169, 129, 46, 0.28);
}

#testimonialCarousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gold-light);
  border: none;
  opacity: 0.4;
  margin: 0 4px;
  transition: all var(--transition-fast);
}

#testimonialCarousel .carousel-indicators button.active {
  width: 26px;
  border-radius: 6px;
  background-color: var(--gold);
  opacity: 1;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .process-track {
    display: none;
  }
  .process-step {
    margin-bottom: 2rem;
  }
  .cta-banner {
    padding: 2.5rem 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-lead {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .pricing-amount {
    font-size: 2.2rem;
  }
  .floating-actions {
    bottom: 18px;
    right: 18px;
  }
  .floating-btn {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }
}
