/* ==========================================================================
   MAHENDRA SINGH ENTERPRISE — Master Design System & Styles
   Aesthetic: ₹50 Lakh Industrial Luxury (Deep Charcoal/Black + Metallic Gold)
   ========================================================================== */

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

:root {
  /* Brand Core Colors */
  --bg-primary: #0a0a0a;
  --bg-surface: #111111;
  --bg-surface-elevated: #181818;
  --bg-card: rgba(24, 24, 24, 0.85);
  --bg-card-hover: rgba(32, 32, 32, 0.95);
  --bg-glass: rgba(18, 18, 18, 0.85);

  /* Gold & Metallic Accents */
  --gold-primary: #d4af37;
  --gold-light: #f5e6a8;
  --gold-vibrant: #e8b931;
  --gold-deep: #a87919;
  --gold-dark: #6e4e08;
  --gold-gradient: linear-gradient(135deg, #fff3b0 0%, #e6ba36 35%, #bf8a19 70%, #f7e7a7 100%);
  --gold-gradient-hover: linear-gradient(135deg, #ffffff 0%, #fbd868 30%, #d49a1d 75%, #fff0b3 100%);
  --gold-border: rgba(212, 175, 55, 0.25);
  --gold-border-bright: rgba(212, 175, 55, 0.65);
  --gold-glow: 0 0 25px rgba(212, 175, 55, 0.22);
  --gold-glow-strong: 0 0 35px rgba(232, 185, 49, 0.45);

  /* Typography & Neutrals */
  --text-primary: #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --text-inverse: #09090b;

  /* Borders & Shadows */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(212, 175, 55, 0.15);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.85);
  --shadow-gold: 0 12px 30px rgba(212, 175, 55, 0.18);

  /* Spacing & Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Container & Header Dimensions */
  --container-max: 1320px;
  --header-height: 86px;
  --header-height-shrunk: 68px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Elements */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-lg {
  padding: 7.5rem 0;
}

.section-darker {
  background-color: #060606;
}

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

.section-pattern {
  background-image: 
    radial-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px, 20px 20px;
  background-position: 0 0, 20px 20px;
}

/* Section Header Typography */
.section-header {
  margin-bottom: 3.25rem;
}

.section-header.text-center {
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
}

.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.075rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.65;
}

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.825rem 1.65rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0b0b0b;
  border-color: #ffd866;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--gold-glow-strong);
  color: #000000;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-border-bright);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
}

.btn-outline-gold:hover {
  background: var(--gold-gradient);
  color: #000000;
  border-color: #ffd866;
  box-shadow: var(--shadow-gold);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.78rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 0.925rem;
}

.btn-icon {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   HEADER & NAVIGATION SYSTEM
   -------------------------------------------------------------------------- */
.header-topbar {
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.45rem 0;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.topbar-item:hover {
  color: var(--gold-light);
}

.topbar-item svg {
  width: 13px;
  height: 13px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.topbar-badge {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* Sticky Main Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

.site-header.shrunk {
  background: rgba(7, 7, 7, 0.98);
  border-bottom-color: var(--gold-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1.5rem;
  transition: height var(--transition-normal);
}

.site-header.shrunk .header-inner {
  height: var(--header-height-shrunk);
}

/* Brand Logo (Crisp & High-Res) */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-badge {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1f1a0e, #0e0e0e);
  border: 1px solid var(--gold-border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-logo-badge {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.brand-emblem-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.brand-logo-details {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ffd700;
  line-height: 1.1;
  white-space: nowrap;
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.35));
}

.brand-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #ffffff;
  line-height: 1.1;
  margin-top: 2px;
  white-space: nowrap;
}

.brand-sub-bars {
  color: var(--gold-primary);
  letter-spacing: 0.1em;
  font-size: 0.65rem;
}

.brand-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #a1a1aa;
  margin-top: 2px;
  white-space: nowrap;
}

/* Social Media Pill Buttons */
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--gold-gradient);
  border-color: #ffd866;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.social-btn svg {
  flex-shrink: 0;
}

/* Main Navigation Links (No Wrap & Luxury Dropdowns) */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d4d4d8;
  padding: 0.55rem 0.5rem;
  position: relative;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

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

.nav-chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
  color: var(--gold-primary);
}

.nav-item:hover .nav-chevron {
  transform: rotate(180deg);
}

/* Nav Dropdown Menu */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: rgba(14, 14, 14, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-border-bright);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 100;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  flex-direction: column;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.dropdown-link:hover {
  background: rgba(212, 175, 55, 0.1);
}

.dropdown-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.825rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dropdown-link:hover .dropdown-title {
  color: var(--gold-light);
}

.dropdown-sub {
  font-size: 0.725rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Header Action Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  white-space: nowrap;
  transition: var(--transition-fast);
}

.btn-header-call:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-border-bright);
  color: var(--gold-light);
}

.btn-header-call svg {
  width: 14px;
  height: 14px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #ffffff;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  transition: all var(--transition-fast);
}

.mobile-toggle:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-border);
  color: var(--gold-light);
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* Mobile Slide-in Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: #0d0d0d;
  border-left: 1px solid var(--gold-border-bright);
  box-shadow: -15px 0 40px rgba(0,0,0,0.9);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.25rem 0;
}

.mobile-nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #e4e4e7;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
  border-left-color: var(--gold-primary);
}

.mobile-drawer-footer {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Breadcrumb & Inner Hero Banner */
.page-hero {
  position: relative;
  padding: 6.5rem 0 4rem;
  background-color: #0d0d0d;
  background-image: 
    linear-gradient(to bottom, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.98)),
    url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--gold-border);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--text-secondary);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb-separator {
  color: var(--gold-primary);
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 0.85rem;
}

.page-hero-desc {
  font-size: 1.075rem;
  color: #cbd5e1;
  max-width: 760px;
  line-height: 1.7;
}

/* Glass Card Component */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 60%);
  pointer-events: none;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.glass-card:hover {
  border-color: var(--gold-border-bright);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.glass-card:hover::before {
  opacity: 1;
}

/* Badge System */
.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

/* Verified Credentials Strip */
.credentials-strip {
  background: linear-gradient(90deg, #0e0e0e 0%, #151515 50%, #0e0e0e 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 1.5rem 0;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  align-items: center;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
}

.credential-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.credential-meta h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.credential-meta p {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* Verified Clients Logo Strip */
.client-strip {
  padding: 3.5rem 0;
  background: #080808;
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.client-strip-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2rem;
}

.client-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.client-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  padding: 1.15rem 2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition-fast);
}

.client-box:hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: var(--gold-border-bright);
  transform: translateY(-3px);
}

.client-box-icon {
  width: 30px;
  height: 30px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.client-box-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: 0.02em;
}

.client-box-tag {
  font-size: 0.725rem;
  color: var(--gold-primary);
  font-weight: 600;
}

/* High Impact CTA Banner */
.cta-banner {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(12, 12, 12, 0.95), rgba(18, 18, 18, 0.92)),
              url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=1920&q=80') center/cover;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1.15rem;
  line-height: 1.2;
}

.cta-desc {
  font-size: 1.1rem;
  color: #d1d5db;
  margin-bottom: 2.25rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Master Footer */
.site-footer {
  background: #050505;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-desc {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.35rem;
  position: relative;
  padding-bottom: 0.65rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link {
  color: #9ca3af;
  font-size: 0.885rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.885rem;
  color: #d1d5db;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}

.footer-bottom-links a:hover {
  color: var(--gold-light);
}

/* Responsive Utility Classes */
.responsive-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.responsive-grid-2-asym {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.responsive-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (DESKTOP, TABLET, ANDROID & IOS FRIENDLY)
   ========================================================================== */
@media (max-width: 1200px) {
  .main-nav {
    display: none;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-actions .btn-header-call {
    display: none;
  }
}

@media (max-width: 992px) {
  .topbar-left {
    display: none;
  }
  .topbar-content {
    justify-content: center;
  }
  .responsive-grid-2,
  .responsive-grid-2-asym {
    grid-template-columns: 1fr !important;
    gap: 2.25rem !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .header-topbar {
    padding: 0.35rem 0;
  }

  .topbar-right {
    gap: 0.65rem;
    justify-content: center;
    font-size: 0.72rem;
    width: 100%;
    flex-wrap: wrap;
  }

  /* Hide long email on small screens to keep topbar single line without overflow */
  .topbar-right a[href^="mailto:"] {
    display: none;
  }

  .site-header {
    height: auto;
  }

  .header-inner {
    height: 64px;
    gap: 0.5rem;
  }

  .site-header.shrunk .header-inner {
    height: 56px;
  }

  .brand-logo {
    gap: 0.5rem;
  }

  .brand-logo-badge {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }

  .brand-emblem-img {
    width: 24px;
    height: 24px;
  }

  .brand-title {
    font-size: 0.88rem;
    letter-spacing: 0.04em;
  }

  .brand-sub {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    margin-top: 1px;
  }

  .brand-sub-bars {
    display: none;
  }

  .brand-tagline {
    display: none;
  }

  .header-actions {
    gap: 0.5rem;
  }

  /* Hide header get a quote button on mobile so hamburger is never pushed offscreen */
  .header-actions .btn-primary {
    display: none;
  }

  .mobile-toggle {
    padding: 0.45rem;
    width: 40px;
    height: 40px;
  }

  .mobile-toggle svg {
    width: 22px;
    height: 22px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-lg {
    padding: 4rem 0;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    word-break: break-word;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .page-hero {
    padding: 4.5rem 0 2.5rem;
  }

  .page-hero-title {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem);
    line-height: 1.25;
    word-break: break-word;
  }

  .page-hero-desc {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .breadcrumb {
    font-size: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .credential-item {
    padding: 0.9rem 1.15rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .brand-title {
    font-size: 0.82rem;
  }
  .brand-sub {
    font-size: 0.6rem;
  }
  .topbar-right {
    font-size: 0.68rem;
    gap: 0.5rem;
  }
}
