@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

/* ==========================================
   LUXURY DESIGN TOKENS & VARIABLES
   ========================================== */
:root {
  --primary: #070B13; /* Deep Obsidian Black */
  --primary-rgb: 7, 11, 19;
  --secondary: #C5A880; /* Refined Champagne Gold */
  --secondary-rgb: 197, 168, 128;
  --accent: #E2BA83; /* Lighter Glow Gold */
  --accent-rgb: 226, 186, 131;
  --highlight-blue: #0EA5E9; /* Subtle Tech Blue */
  --bg-light: #FAF9F6; /* Luxury Warm Alabaster/White */
  --bg-dark-card: #0F1522; /* Rich Midnight Glass */
  --text-dark: #1C1917; /* Soft Obsidian/Charcoal Text */
  --text-muted: #78716C; /* Warm Gray/Stone Text */
  --text-light: #F5F5F4; /* Soft White */
  --font-family: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(197, 168, 128, 0.18); /* Thin Gold tinted border */
  --glass-shadow: 0 10px 40px -10px rgba(7, 11, 19, 0.05);
  --luxury-shadow: 0 30px 60px -15px rgba(7, 11, 19, 0.1);
}

/* ==========================================
   GLOBAL STYLES & RESET
   ========================================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* Ensures anchor links don't hide headers behind navbar */
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.serif-title {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.01em;
}

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

/* ==========================================
   LUXURY UTILITIES & DECORATIVE CLASSES
   ========================================== */
.bg-primary-dark {
  background-color: var(--primary) !important;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #F5E3C6 0%, #C5A880 50%, #A37F55 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-hero {
  background: linear-gradient(135deg, #FFFFFF 20%, #F5E3C6 60%, #C5A880 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Luxury Glass Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 168, 128, 0.4);
  box-shadow: 0 20px 50px -10px rgba(197, 168, 128, 0.15);
}

/* Subtle Grid/Dot Background */
.luxury-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(197, 168, 128, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: -1;
  pointer-events: none;
}

/* Floating Radial Glow */
.gold-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, rgba(197, 168, 128, 0) 70%);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, var(--secondary), var(--accent));
  width: 0%;
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* Luxury Button System */
.btn-premium {
  position: relative;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  transition: var(--transition-smooth);
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
}

.btn-premium-primary {
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  color: #070B13;
  border: none;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
  font-weight: 700;
}

.btn-premium-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  color: #070B13;
}

.btn-premium-secondary {
  background: transparent;
  color: var(--secondary);
  border: 1px solid rgba(197, 168, 128, 0.4);
}

.btn-premium-secondary:hover {
  background: rgba(197, 168, 128, 0.08);
  border-color: var(--secondary);
  transform: translateY(-3px);
  color: var(--secondary);
}

.btn-premium-accent {
  background: var(--primary);
  color: var(--secondary);
  border: 1px solid var(--secondary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-premium-accent:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(197, 168, 128, 0.25);
}

/* ==========================================
   1. PREMIUM FULL-WIDTH NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(7, 11, 19, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197, 168, 128, 0.12);
  padding: 0.9rem 0;
  transition: var(--transition-smooth);
  z-index: 1030;
}

.navbar.scrolled {
  background: rgba(7, 11, 19, 0.95);
  border-bottom-color: rgba(197, 168, 128, 0.25);
  padding: 0.6rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  color: #fff !important;
}

.navbar-brand i {
  color: var(--secondary);
}

.brand-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
  display: block;
}

/* Compact header button padding */
.navbar .btn-premium {
  padding: 0.55rem 1.25rem;
  font-size: 0.8rem;
}

/* Shrink logo slightly on scrolled navbar */
.navbar.scrolled .brand-logo {
  height: 56px;
}

/* Offcanvas Menu Logo */
.brand-logo.logo-offcanvas {
  height: 44px;
}

/* Footer Logo */
.brand-logo.logo-footer {
  height: 64px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75) !important;
  padding: 0.5rem 0.75rem !important; /* Reduced horizontal padding */
  border-radius: 99px;
  margin: 0 0.05rem; /* Reduced margins */
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary) !important;
  background: rgba(197, 168, 128, 0.15);
}

.navbar-toggler {
  border: none;
  color: var(--secondary);
  padding: 0.5rem 1rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 168, 128, 0.15);
  transition: var(--transition-smooth);
}

.navbar-toggler:hover {
  background: rgba(197, 168, 128, 0.08);
}

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

/* Offcanvas custom styling */
.offcanvas {
  background: var(--primary);
  border-left: 1px solid rgba(197, 168, 128, 0.15);
}

.offcanvas-header {
  border-bottom: 1px solid rgba(197, 168, 128, 0.1);
  padding: 1.25rem 1.5rem;
}

.offcanvas-title {
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
}

.btn-close-white {
  filter: invert(1) grayscale(1) brightness(1.5);
  padding: 1rem; /* Large touch target */
}

.offcanvas .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1rem;
  padding: 1rem 1.25rem !important; /* Highly responsive touch target */
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link.active {
  color: var(--secondary) !important;
  background: rgba(197, 168, 128, 0.05);
  border-radius: 8px;
}

/* ==========================================
   2. HERO SECTION
   ========================================== */
.hero-section {
  position: relative;
  background: var(--primary);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(197, 168, 128, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(197, 168, 128, 0.05) 0%, transparent 45%);
  padding: 135px 0 95px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 168, 128, 0.05);
  border: 1px solid rgba(197, 168, 128, 0.15);
  padding: 6px 18px;
  border-radius: 999px;
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.hero-badge i {
  color: var(--secondary);
}

.hero-title {
  color: #fff;
  font-size: 3.8rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.8rem;
}

.hero-subtitle {
  color: rgba(245, 245, 244, 0.75);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 2.8rem;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 30px;
  border: 1px solid rgba(197, 168, 128, 0.15);
  filter: drop-shadow(0 25px 60px rgba(0,0,0,0.5));
  animation: floatMainImage 6s ease-in-out infinite;
}

/* Floating Glass Cards */
.floating-card {
  position: absolute;
  background: rgba(15, 21, 34, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 14px;
  padding: 12px 20px;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  animation: floatCards 5s ease-in-out infinite;
}

.floating-card i {
  color: var(--secondary);
  font-size: 1.05rem;
}

.floating-card-1 { top: 8%; left: -6%; animation-delay: 0s; }
.floating-card-2 { top: 38%; right: -10%; animation-delay: 1.2s; }
.floating-card-3 { bottom: 14%; left: -10%; animation-delay: 2.4s; }
.floating-card-4 { bottom: -5%; right: 4%; animation-delay: 3.6s; }

@keyframes floatMainImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes floatCards {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.015); }
}

/* ==========================================
   3. TRUST STATISTICS SECTION
   ========================================== */
.stats-section {
  position: relative;
  margin-top: -70px;
  z-index: 10;
}

.stats-card {
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(197, 168, 128, 0.22);
  box-shadow: var(--luxury-shadow);
  border-radius: 24px;
}

.stat-box {
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ==========================================
   4. ABOUT SECTION (COMPANY PROFILE)
   ========================================== */
.section-padding {
  padding: 120px 0;
  transition: var(--transition-smooth);
}

.section-badge {
  display: inline-block;
  background: rgba(197, 168, 128, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.2);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 16px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  line-height: 1.25;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

/* Custom Profile Accordions/Tabs */
.mvv-tabs {
  border: none;
  background: rgba(197, 168, 128, 0.04);
  padding: 6px;
  border-radius: 999px;
  margin-bottom: 1.8rem;
  border: 1px solid rgba(197, 168, 128, 0.1);
  display: flex;
  flex-wrap: nowrap; /* Forces layout stability on small widths */
  overflow-x: auto; /* Handles tab overflow smoothly */
  -webkit-overflow-scrolling: touch;
}

.mvv-tabs::-webkit-scrollbar {
  display: none; /* Hides scrollbar for clean luxury design */
}

.mvv-tabs .nav-link {
  border: none;
  background: transparent;
  color: var(--text-muted);
  border-radius: 999px;
  font-weight: 600;
  padding: 10px 24px !important; /* Responsive touch targets */
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.mvv-tabs .nav-link.active {
  background: var(--primary);
  color: var(--secondary) !important;
}

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

.mvv-content {
  min-height: 120px;
}

/* Growth Timeline */
.about-timeline {
  position: relative;
  padding-left: 35px;
  border-left: 1px solid rgba(197, 168, 128, 0.2);
}

.about-timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.about-timeline-item:last-child {
  margin-bottom: 0;
}

.about-timeline-dot {
  position: absolute;
  left: -44.5px;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--secondary);
  box-shadow: 0 0 12px rgba(197, 168, 128, 0.3);
}

.about-timeline-year {
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.about-timeline-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}

.about-timeline-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================
   5. SERVICES SECTION (LUXURY TILES)
   ========================================== */
.services-section {
  background-color: #FAF8F5;
  position: relative;
  overflow: hidden;
}

.service-card {
  height: 100%;
  padding: 2.8rem 2.2rem;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(197, 168, 128, 0.12);
  box-shadow: 0 10px 30px rgba(7, 11, 19, 0.015);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--luxury-shadow);
  border-color: rgba(197, 168, 128, 0.45);
}

.service-icon-box {
  width: 56px;
  height: 56px;
  background: rgba(197, 168, 128, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(197, 168, 128, 0.15);
}

.service-icon-box i {
  font-size: 1.4rem;
  color: var(--secondary);
}

.service-card:hover .service-icon-box {
  background: var(--primary);
  border-color: var(--secondary);
}

.service-card:hover .service-icon-box i {
  color: var(--secondary);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.service-learn-more {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 0; /* Touch friendly */
}

.service-learn-more i {
  font-size: 0.75rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-learn-more i {
  transform: translateX(5px);
}

/* ==========================================
   6. COMPANY STRENGTHS (STRETCHED CARD GRID)
   ========================================== */
.strengths-section {
  position: relative;
}

.strength-card {
  padding: 2.2rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(197, 168, 128, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
  height: 100%;
}

.strength-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: 0 15px 40px rgba(197, 168, 128, 0.1);
}

.strength-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(197, 168, 128, 0.06);
  border: 1px solid rgba(197, 168, 128, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: var(--secondary);
  transition: var(--transition-smooth);
}

.strength-card:hover .strength-icon {
  background: var(--primary);
  color: var(--secondary);
}

/* ==========================================
   7. SECURITY TIMELINE PROCESS
   ========================================== */
.process-section {
  background: var(--primary);
  color: #fff;
  overflow: hidden;
  position: relative;
  background-image: radial-gradient(circle at 50% 50%, rgba(197, 168, 128, 0.08) 0%, transparent 65%);
}

.process-section .section-title {
  color: #fff;
}

.process-timeline-wrapper {
  position: relative;
  padding: 40px 0;
}

.process-line {
  position: absolute;
  top: 75px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(197, 168, 128, 0.15);
  z-index: 1;
}

.process-line-active {
  position: absolute;
  top: 75px;
  left: 0;
  width: 0%;
  height: 1px;
  background: linear-gradient(to right, var(--secondary), var(--accent));
  z-index: 2;
  transition: width 2.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.process-step-num {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #0D121F;
  border: 2px solid rgba(197, 168, 128, 0.25);
  color: var(--secondary);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 0 0 8px rgba(13, 18, 31, 0.6);
  transition: var(--transition-smooth);
}

.process-step:hover .process-step-num {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  box-shadow: 0 0 25px rgba(197, 168, 128, 0.4);
  transform: scale(1.05);
}

.process-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.process-step-desc {
  font-size: 0.85rem;
  color: rgba(245, 245, 244, 0.7);
  line-height: 1.6;
  max-width: 190px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .process-line {
    display: none;
  }
  .process-step {
    margin-bottom: 3.5rem;
  }
  .process-step:last-child {
    margin-bottom: 0;
  }
}

/* ==========================================
   8. INDUSTRIES WE SERVE
   ========================================== */
.industry-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 190px;
  z-index: 1;
  border: 1px solid rgba(197, 168, 128, 0.12);
  transition: var(--transition-smooth);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.industry-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 11, 19, 0.1) 0%, rgba(7, 11, 19, 0.95) 100%);
  z-index: 2;
  transition: var(--transition-smooth);
}

.industry-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  z-index: 3;
  transition: var(--transition-smooth);
}

.industry-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(197, 168, 128, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(197, 168, 128, 0.2);
}

.industry-card:hover .industry-card-icon {
  background: var(--secondary);
  color: var(--primary);
  transform: rotate(-8deg);
}

.industry-card h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.industry-card:hover .industry-card-overlay {
  background: linear-gradient(180deg, rgba(197, 168, 128, 0.2) 0%, rgba(7, 11, 19, 0.98) 100%);
}

.industry-card:hover {
  transform: scale(1.025);
  border-color: var(--secondary);
  box-shadow: 0 15px 35px rgba(197, 168, 128, 0.15);
}

/* ==========================================
   9. TESTIMONIALS SECTION & NAV ARROWS
   ========================================== */
.testimonials-section {
  background: var(--bg-light);
  position: relative;
}

.testimonial-card {
  padding: 3rem 2.5rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(197, 168, 128, 0.1);
  box-shadow: 0 10px 40px rgba(7, 11, 19, 0.01);
  margin: 15px 5px;
}

.testimonial-rating {
  color: #D4AF37;
  margin-bottom: 1.4rem;
  font-size: 0.85rem;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.8rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1rem;
  border: 1.5px solid var(--secondary);
}

.testimonial-user-name {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.testimonial-user-title {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Custom Swiper Buttons styling */
.swiper-button-next, .swiper-button-prev {
  color: var(--secondary) !important;
  width: 46px;
  height: 46px;
  background: rgba(7, 11, 19, 0.85);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 1.1rem !important;
  font-weight: 900;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  background: var(--secondary);
  color: var(--primary) !important;
  border-color: var(--secondary);
}

.swiper-pagination-bullet-active {
  background: var(--secondary) !important;
  width: 24px !important;
  border-radius: 6px !important;
}

/* ==========================================
   10. COVERAGE AREA SECTION
   ========================================== */
.coverage-section {
  background: #fff;
  position: relative;
}

.coverage-layout {
  border-radius: 28px;
  padding: 3.5rem;
  background: var(--primary);
  color: #fff;
  border: 1px solid rgba(197, 168, 128, 0.15);
  background-image: 
    radial-gradient(circle at 100% 0%, rgba(197, 168, 128, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(197, 168, 128, 0.08) 0%, transparent 45%);
}

.district-chip {
  padding: 14px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.district-chip:hover,
.district-chip.active {
  background: rgba(197, 168, 128, 0.08);
  border-color: var(--secondary);
  box-shadow: 0 0 20px rgba(197, 168, 128, 0.15);
  transform: translateY(-2px);
  color: var(--secondary);
}

.district-chip i {
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition-smooth);
}

.district-chip:hover i,
.district-chip.active i {
  color: var(--secondary);
  transform: translateX(3px);
}

.coverage-details-card {
  padding: 2.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
}

.coverage-details-title {
  font-weight: 700;
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
}

.coverage-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(197, 168, 128, 0.1);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 6px;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.8rem;
}

.coverage-metric-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.coverage-metric-label {
  color: rgba(245, 245, 244, 0.6);
}

.coverage-metric-val {
  font-weight: 700;
  color: #fff;
}

/* ==========================================
   11. CTA SECTION (GRADIENT LUXURY)
   ========================================== */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, #070B13 0%, #151C2D 100%);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(197, 168, 128, 0.15);
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.1) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-phone-card {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 14px 28px;
  border-radius: 99px;
  background: rgba(197, 168, 128, 0.05);
  border: 1px solid rgba(197, 168, 128, 0.25);
  color: var(--secondary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 1rem;
  transition: var(--transition-smooth);
}

.cta-phone-card:hover {
  background: rgba(197, 168, 128, 0.12);
  border-color: var(--secondary);
  transform: scale(1.03);
}

.cta-phone-card i {
  color: var(--secondary);
}

/* ==========================================
   12. CONTACT SECTION
   ========================================== */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 20px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(197, 168, 128, 0.06);
  border: 1px solid rgba(197, 168, 128, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.contact-info-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.form-floating > .form-control {
  border-radius: 14px;
  border: 1px solid rgba(197, 168, 128, 0.2);
  background-color: #fff;
  font-size: 0.95rem;
}

.form-floating > .form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.1);
}

.form-floating > select.form-select {
  border-radius: 14px;
  border: 1px solid rgba(197, 168, 128, 0.2);
}

.form-floating > select.form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.1);
}

.map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--luxury-shadow);
  border: 1px solid rgba(197, 168, 128, 0.15);
}

/* ==========================================
   13. FOOTER
   ========================================== */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  border-top: 1px solid rgba(197, 168, 128, 0.15);
}

.footer h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
  position: relative;
  padding-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 2px;
  background: var(--secondary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition-smooth);
}

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

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 1.8rem;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-smooth);
}

.footer-social-icon:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-4px);
}

.newsletter-form {
  position: relative;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  border-radius: 99px !important;
  padding: 0.8rem 1.6rem !important;
  padding-right: 55px !important;
}

.newsletter-input:focus {
  border-color: var(--secondary) !important;
  box-shadow: none !important;
}

.newsletter-btn {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.newsletter-btn:hover {
  background: #fff;
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* ==========================================
   FLOATING LUXURY CONTACT SHORTCUTS
   ========================================== */
.floating-contact-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.floating-btn:hover {
  transform: translateY(-6px) scale(1.08);
  color: #fff;
}

.btn-whatsapp {
  background: #25D366;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-call {
  background: var(--secondary);
  color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-call:hover {
  color: var(--primary);
}

/* Toast Message */
.toast {
  border-radius: 16px;
  border: 1px solid rgba(197, 168, 128, 0.25);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  background: #fff;
}
.toast-header {
  border-bottom: 1px solid rgba(0,0,0,0.03);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

/* ==========================================
   RESPONSIVE DESIGN SYSTEM OVERRIDES
   ========================================== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.2rem;
  }
}

@media (max-width: 991px) {
  .brand-logo {
    height: 52px; /* Responsive logo height adjustment */
  }
  .section-padding {
    padding: 80px 0; /* Reduced padding on small screens for better flow */
  }
  .hero-section {
    padding: 110px 0 60px 0;
    text-align: center;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-image-wrapper {
    margin-top: 4rem;
  }
  .floating-card-1 { left: 0; }
  .floating-card-2 { right: 0; }
  .floating-card-3 { left: 0; }
  .floating-card-4 { right: 0; }
  .stats-section {
    margin-top: 0;
    padding: 60px 0;
  }
  .swiper-button-next, .swiper-button-prev {
    display: none !important; /* Hide arrows on tablets/mobiles to prioritize touch swipe */
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .section-title {
    font-size: 2.1rem;
  }
  .stats-card {
    border-radius: 18px;
  }
  .stat-box {
    padding: 1.8rem 1rem;
  }
  .stat-number {
    font-size: 2.2rem;
  }
  .coverage-layout {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .floating-card {
    padding: 10px 14px;
    font-size: 0.8rem;
  }
  .btn-premium {
    padding: 0.8rem 1.6rem;
    font-size: 0.8rem;
    width: 100%; /* Full width buttons on tiny screens for accessibility */
    text-align: center;
  }
  .floating-contact-container {
    bottom: 20px;
    right: 20px;
  }
}

/* ==========================================
   TEAM GALLERY CUSTOM STYLING (TRUST BUILDER)
   ========================================== */
.team-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(197, 168, 128, 0.15);
  background: rgba(7, 11, 19, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-gallery-card:hover {
  transform: translateY(-8px);
  border-color: var(--secondary);
  box-shadow: 0 20px 40px rgba(197, 168, 128, 0.1);
}

.team-gallery-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.team-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-gallery-card:hover .team-gallery-img {
  transform: scale(1.06);
}

.team-gallery-info {
  padding: 1.25rem 1.5rem 1.5rem 1.5rem;
  background: rgba(7, 11, 19, 0.85);
  border-top: 1px solid rgba(197, 168, 128, 0.1);
}

.team-gallery-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--secondary);
  background: rgba(197, 168, 128, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(197, 168, 128, 0.2);
}

.team-gallery-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.team-gallery-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ==========================================
   PREMIUM DROPDOWN MENUS (HEADER & MOBILE)
   ========================================== */
.navbar .dropdown-menu {
  background: rgba(7, 11, 19, 0.95);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  min-width: 320px; /* Generous width for long service names */
}

.navbar .dropdown-item {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.75rem 1.5rem;
  transition: var(--transition-smooth);
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: rgba(197, 168, 128, 0.15);
  color: var(--secondary) !important;
}

/* Desktop Hover Interaction */
@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s ease;
  }
  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }
}

/* Mobile Offcanvas Submenu Sizing & Alignment */
@media (max-width: 991px) {
  .offcanvas .dropdown-menu {
    background: #121824 !important; /* Solid lighter midnight blue for clear contrast */
    border: 1px solid rgba(197, 168, 128, 0.25) !important;
    border-left: 3px solid var(--secondary) !important;
    border-radius: 8px !important;
    padding: 0.5rem 1rem !important;
    margin: 0.5rem 0 !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    display: none;
    min-width: auto !important; /* Reset desktop width on mobile */
    width: 100% !important; /* Full width inside offcanvas */
  }
  
  /* Ensure bootstrap show state overrides display none */
  .offcanvas .dropdown-menu.show {
    display: block !important;
  }
  
  .offcanvas .dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.65rem 0 !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .offcanvas .dropdown-item:last-child {
    border-bottom: none;
  }

  .offcanvas .dropdown-item:hover,
  .offcanvas .dropdown-item:focus {
    color: var(--secondary) !important;
    background: transparent !important;
  }
}

