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

/* ==========================================================================
   EXECUTIVE LIGHT LUXURY DESIGN SYSTEM
   Royal Sapphire & Champagne Amber Light Theme
   ========================================================================== */
:root {
  /* Brand Tokens - Light Theme Palette */
  --primary: #ffffff;
  --primary-indigo: #f8fafc;
  --primary-light: #f1f5f9;
  --primary-dark: #e2e8f0;
  
  /* Royal Sapphire & Electric Blue Accents */
  --indigo: #2563eb;
  --indigo-light: #3b82f6;
  --indigo-dark: #1d4ed8;
  --indigo-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
  --indigo-glow: rgba(37, 99, 235, 0.25);

  /* Champagne Amber & Gold Accents */
  --amber: #d97706;
  --amber-light: #f59e0b;
  --amber-dark: #b45309;
  --gold-gradient: linear-gradient(135deg, #fef3c7 0%, #f59e0b 50%, #d97706 100%);
  --gold-glow: rgba(217, 119, 6, 0.2);

  /* High Contrast Slate Typography & Neutrals */
  --text: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --bg: #f8fafc;
  --bg-alt: #ffffff;
  --bg-dark: #f1f5f9;
  --border: #e2e8f0;
  --border-gold: rgba(217, 119, 6, 0.3);
  --border-blue: rgba(37, 99, 235, 0.3);
  
  /* Radii & App Elevation */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.1);
  --shadow-gold: 0 8px 24px rgba(217, 119, 6, 0.25);
  --shadow-blue: 0 8px 24px rgba(37, 99, 235, 0.25);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1240px;
}

/* Global Reset & Responsive Overflow Controls */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

html {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
  position: relative;
}

.page-wrapper {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: 90px 0; }

@media (max-width: 768px) {
  .section-padding { padding: 50px 0; }
  .container { padding: 0 16px; }
}

/* Typography & Section Labels */
.section-label {
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--indigo-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  background: #eff6ff;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-blue);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-subtitle { margin: 0 auto; }

.gradient-text {
  background: var(--indigo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--indigo-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(37, 99, 235, 0.4);
  color: #ffffff;
}

.btn-white {
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: #f8fafc;
  color: var(--indigo);
  border-color: var(--indigo);
}

/* Page Loader */
.page-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  animation: hideLoaderFallback 0.4s ease 1.2s forwards;
  pointer-events: none;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes hideLoaderFallback {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(37, 99, 235, 0.15);
  border-top-color: var(--indigo);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   TOP CONTACT BAR & MAIN HEADER
   ========================================================================== */
.top-contact-bar {
  background: #ffffff;
  color: var(--text-muted);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.top-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-contact-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-contact-info span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.top-contact-info i { color: var(--indigo); }

.top-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.top-social a:hover {
  background: var(--indigo-gradient);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.top-social a.disabled { opacity: 0.35; pointer-events: none; }

/* MAIN HEADER */
.site-header {
  background: #ffffff;
  padding: 16px 0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  position: sticky;
  top: 0;
  z-index: 100000;
  border-bottom: 1px solid #f1f5f9;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-logo {
  height: 54px;
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.header-brand { display: flex; flex-direction: column; }

.header-firm-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.header-firm-sub {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--indigo);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* NAVIGATION MENU BAR */
.site-nav {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 3px solid var(--indigo);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link i.dropdown-icon {
  font-size: 11px;
  color: var(--indigo);
  transition: transform 0.25s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--indigo);
  background: #eff6ff;
}

.nav-item:hover .nav-link i.dropdown-icon {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--indigo);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 10px;
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-dropdown a:hover {
  color: var(--indigo);
  background: #eff6ff;
  padding-left: 20px;
}

/* Mobile Toggle Button */
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  z-index: 1000000;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  pointer-events: none;
}

.mobile-toggle:hover, .mobile-toggle.active {
  background: #eff6ff;
  border-color: var(--indigo);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 992px) {
  .top-contact-bar { display: none !important; }
  .site-nav { display: none !important; }
  .mobile-toggle { display: flex !important; }
}

/* Mobile Off-Canvas Drawer (Zero-overflow layout) */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 999999;
  padding: 70px 20px 30px;
  overflow-y: auto;
  border-left: 3px solid var(--indigo);
  box-shadow: -10px 0 40px rgba(15, 23, 42, 0.25);
  visibility: hidden;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.mobile-menu.open {
  right: 0 !important;
  visibility: visible !important;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999990;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.menu-backdrop.active {
  opacity: 1 !important;
  visibility: visible !important;
}


.mobile-menu .nav-item { border-bottom: 1px solid #f1f5f9; }
.mobile-menu .nav-link {
  padding: 14px 0;
  font-size: 15px;
  justify-content: space-between;
  color: var(--text);
}
.mobile-menu .nav-dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: none;
  background: #f8fafc;
  display: none;
  padding: 6px 12px;
  margin-bottom: 10px;
}
.mobile-menu .nav-item.open .nav-dropdown { display: block; }

/* Mobile Bottom Quick Action Bar */
.mobile-bottom-actions {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 20px rgba(15, 23, 42, 0.08);
  z-index: 999;
  padding: 8px 12px;
}

@media (max-width: 768px) {
  .mobile-bottom-actions {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  body { padding-bottom: 60px; }
}

.mobile-bottom-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-bottom-action-item i {
  font-size: 18px;
  color: var(--indigo);
}

.mobile-bottom-action-item:hover, .mobile-bottom-action-item.highlight {
  color: var(--indigo);
  background: #eff6ff;
}

/* ==========================================================================
   HERO / BANNER SECTION
   ========================================================================== */
.banner-section {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 40%, #eff6ff 100%);
  overflow: hidden;
}

.banner-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.92);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.88) 60%, rgba(255, 255, 255, 0.65) 100%);
}

.banner-content {
  position: relative;
  z-index: 10;
  max-width: 780px;
  color: var(--text);
  padding: 60px 0;
}

.banner-badge {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--indigo-dark);
  background: #dbeafe;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 18px;
  border: 1px solid #bfdbfe;
}

.banner-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.16;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: var(--text);
}

.banner-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  background: var(--indigo-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-blue);
}

.banner-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(37, 99, 235, 0.4);
  color: #ffffff;
}

/* Marquee Ticker Bar */
.marquee-bar {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

/* Inner Page Header */
.page-header {
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
  padding: 60px 0;
  color: var(--text);
  border-bottom: 3px solid var(--indigo);
  position: relative;
  overflow: hidden;
}

.page-header-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}

.page-breadcrumb {
  font-size: 14px;
  color: var(--text-muted);
}

.page-breadcrumb a {
  color: var(--indigo);
  font-weight: 600;
}

/* ==========================================================================
   ABOUT & SERVICES SECTIONS
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.about-image-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.about-experience {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  border: 1px solid var(--border-blue);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--text);
  box-shadow: var(--shadow-md);
}

.about-experience .number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--indigo);
  line-height: 1;
  display: block;
}

.about-experience .label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
}

.about-feature .icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* SERVICES GRID */
.services-section { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 44px;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--indigo);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12);
}

.service-icon-floating {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: #eff6ff;
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon-floating {
  background: var(--indigo-gradient);
  color: #ffffff;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--indigo);
}

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

/* STATS SECTION */
.stats-section {
  background: #ffffff;
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

.stat-item { color: var(--text); }
.stat-icon { font-size: 28px; color: var(--amber); margin-bottom: 10px; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--indigo);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  font-weight: 600;
}

/* WHY CHOOSE US GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.why-card {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.why-card:hover {
  border-color: var(--indigo);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.why-card p { color: var(--text-muted); font-size: 14px; }

/* NEWS & NOTIFICATION PANELS */
.updates-section { background: var(--bg); }
.updates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 44px;
}

@media (max-width: 768px) {
  .updates-grid { grid-template-columns: 1fr; }
}

.update-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.update-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f1f5f9;
}

.update-header i { font-size: 22px; color: var(--indigo); }
.update-header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.update-date {
  font-size: 12px;
  font-weight: 700;
  color: var(--indigo-dark);
  background: #eff6ff;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  margin-top: 10px;
}

.update-link {
  display: block;
  font-size: 14.5px;
  color: var(--text);
  font-weight: 600;
  margin: 6px 0 12px;
  transition: var(--transition);
}

.update-link:hover { color: var(--indigo); }

/* CTA BANNER */
.cta-section {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  padding: 70px 0;
  color: var(--text);
  text-align: center;
  border-top: 3px solid var(--indigo);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}

.cta-text {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* ==========================================================================
   LUXURY LIGHT FOOTER DESIGN SYSTEM
   ========================================================================== */
.footer-cta-section {
  background: var(--bg);
  padding: 60px 0 0;
  position: relative;
  z-index: 15;
}

.footer-cta-box {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.08);
  color: var(--text);
}

@media (max-width: 992px) {
  .footer-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
}

.footer-cta-badge {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--indigo-dark);
  background: #eff6ff;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 12px;
  border: 1px solid var(--border-blue);
}

.footer-cta-text h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

.footer-cta-text p {
  font-size: 15px;
  color: var(--text-muted);
}

.footer-cta-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.site-footer {
  background: #f8fafc !important;
  color: var(--text-muted) !important;
  padding-top: 60px;
  margin-top: 50px;
  border-top: 3px solid var(--indigo);
  position: relative;
}

.footer-top {
  background: #f8fafc !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-logo-wrap img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-title-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--text) !important;
  line-height: 1.1;
}

.footer-sub-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--indigo);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-about-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted) !important;
  margin-bottom: 22px;
}

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

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--indigo-gradient);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.footer-social a.disabled { opacity: 0.35; pointer-events: none; }

.footer-heading {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--text) !important;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--indigo-gradient);
  border-radius: 2px;
}

.footer-nav-list li {
  margin-bottom: 10px;
}

.footer-nav-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #334155 !important;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.footer-nav-list a i {
  font-size: 10px;
  color: var(--indigo);
  transition: transform 0.3s ease;
}

.footer-nav-list a:hover {
  color: var(--indigo) !important;
  transform: translateX(5px);
}

.footer-nav-list a:hover i {
  transform: translateX(3px);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  border: 1px solid var(--border-blue);
}

.contact-lbl {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 1px;
}

.contact-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--text) !important;
  transition: var(--transition);
}

.contact-val:hover {
  color: var(--indigo) !important;
}

.contact-val-text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-bottom-bar {
  background: #ffffff !important;
  padding: 22px 0;
  margin-top: 50px;
  border-top: 1px solid var(--border);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-hit-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  color: var(--indigo-dark);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--border-blue);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--indigo-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-blue);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: none;
}

.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); }

/* SIDEBAR & INNER PAGES STYLING */
.sidebar-widget, .right-sidebar-box, .left-sidebar-box {
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--indigo);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget h4, .right-sidebar-box h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f1f5f9;
}

/* TABLES & FORMS */
.table, table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.table th, table th {
  background: #f1f5f9;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 16px;
  border-bottom: 2px solid var(--indigo);
}

.table td, table td {
  padding: 12px 16px;
  color: var(--text-muted);
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.form-control, input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-control:focus, input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* SCROLL REVEALS */
.reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-stagger {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.94); }

.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible, .reveal-stagger.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* ==========================================================================
   ENHANCED SUBPAGE LUXURY DESIGN SYSTEM
   ========================================================================== */
.subpage-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 40%, #eff6ff 100%);
  padding: 50px 0;
  border-bottom: 3px solid var(--indigo);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 16px;
  background: #eff6ff;
  color: var(--indigo-dark);
  font-weight: 700;
  font-size: 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-blue);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-header-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.page-desc {
  font-size: 15.5px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
}

/* Main Layout Grid */
.main-layout {
  display: grid;
  grid-template-columns: 2.8fr 1fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 992px) {
  .main-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Content Cards */
.content-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.content-card h1, .content-card h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
}

.content-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Subpage Grid Items & Glass Cards */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 992px) {
  .about-intro-grid { grid-template-columns: 1fr; }
}

.intro-image-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.intro-image-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.intro-experience-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid var(--border-blue);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.intro-exp-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--indigo);
  line-height: 1;
  display: block;
}

.intro-exp-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
  background: #f8fafc;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

@media (max-width: 576px) {
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
}

.about-stat-num {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--indigo);
  display: block;
  line-height: 1.1;
}

.about-stat-lbl {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .mv-grid { grid-template-columns: 1fr; }
}

.mv-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--indigo);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mv-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.mv-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.mv-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.team-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--indigo);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 16px;
  object-fit: cover;
  border: 3px solid #eff6ff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15);
}

.team-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  font-weight: 700;
  color: var(--indigo);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Clients Grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.client-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.client-card:hover {
  transform: translateY(-4px);
  border-color: var(--indigo);
  box-shadow: var(--shadow-md);
}

.client-card img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

/* Iframe Container Wrappers (Forms, Keydates, Useful links) */
.iframe-container {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: #ffffff;
}

.iframe-container iframe {
  width: 100%;
  min-height: 850px;
  border: none;
  display: block;
}

/* Form Customizations */
.premium-form .form-group {
  margin-bottom: 20px;
}

.premium-form label {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.premium-form .form-control {
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  border: 1px solid #cbd5e1;
  font-size: 14.5px;
}

.premium-form .form-control:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Small Mobile Responsiveness & Zero Horizontal Scroll */
@media (max-width: 576px) {
  html, body, .page-wrapper {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  .header-firm-name {
    font-size: 17px !important;
  }
  .header-firm-sub {
    font-size: 9.5px !important;
  }
  .header-logo {
    height: 40px !important;
  }
  .footer-cta-box {
    padding: 24px 16px !important;
  }
  .content-card {
    padding: 20px 14px !important;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .stat-number {
    font-size: 32px !important;
  }
  .about-stats-row {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 14px !important;
    gap: 12px !important;
  }
}