/**
 * Parth Consultency - UAE Real Estate & Jobs Consultancy
 * Master Design System & Stylesheet
 */

:root {
  /* Brand Palette (as specified) */
  --primary-navy: #0B1F33;
  --navy-darker: #06121E;
  --navy-light: #15304B;
  --dark-text: #17202A;
  --gold-accent: #C9A45C;
  --gold-hover: #B58E45;
  --gold-dark: #9A7730;
  --light-gold: #F5EEDF;
  --gold-glow: rgba(201, 164, 92, 0.22);
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --light-gray: #EEF1F4;
  --border-color: #E2E8F0;
  --muted-text: #6B7280;
  --success-green: #198754;
  --whatsapp-green: #25D366;
  --whatsapp-hover: #1ebe5d;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Elevations */
  --shadow-sm: 0 2px 8px rgba(11, 31, 51, 0.04);
  --shadow-md: 0 8px 24px rgba(11, 31, 51, 0.08);
  --shadow-lg: 0 16px 40px rgba(11, 31, 51, 0.12);
  --shadow-hover: 0 20px 48px rgba(11, 31, 51, 0.16);

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Typography */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
  position: relative;
  margin: 0;
  padding: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--off-white);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-accent);
}

/* ==========================================================================
   Utility Classes & Buttons
   ========================================================================== */
.text-gold { color: var(--gold-accent) !important; }
.bg-navy { background-color: var(--primary-navy) !important; color: #fff; }
.bg-offwhite { background-color: var(--off-white) !important; }
.bg-light-gold { background-color: var(--light-gold) !important; }
.border-gold { border-color: var(--gold-accent) !important; }

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-accent);
  background: var(--light-gold);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-tag.tag-dark {
  background: rgba(201, 164, 92, 0.15);
  color: var(--gold-accent);
  border: 1px solid rgba(201, 164, 92, 0.3);
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

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

/* Luxury Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-accent) 0%, #D4AF37 100%);
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 15px var(--gold-glow);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-gold:hover, .btn-gold:focus {
  background: linear-gradient(135deg, #B58E45 0%, #C9A45C 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 164, 92, 0.4);
}

.btn-navy {
  background: var(--primary-navy);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 8px;
  border: 1px solid var(--primary-navy);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-navy:hover, .btn-navy:focus {
  background: var(--navy-light);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-navy {
  background: transparent;
  color: var(--primary-navy);
  border: 2px solid var(--primary-navy);
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.btn-outline-navy:hover {
  background: var(--primary-navy);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-accent);
  border: 2px solid var(--gold-accent);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
  background: var(--gold-accent);
  color: var(--primary-navy);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #ffffff !important;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   Header & Top Bar
   ========================================================================== */
.top-info-bar {
  background-color: var(--navy-darker);
  color: #E2E8F0;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-info-bar a {
  color: #CBD5E1;
}

.top-info-bar a:hover {
  color: var(--gold-accent);
}

.top-info-divider {
  display: inline-block;
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.2);
}

/* Sticky Main Navigation */
.main-navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(11, 31, 51, 0.08);
  box-shadow: 0 4px 20px rgba(11, 31, 51, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1030;
}

.main-navbar.navbar-scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 10px 30px rgba(11, 31, 51, 0.08);
  border-bottom-color: rgba(201, 164, 92, 0.2);
}

.main-navbar .container {
  position: relative;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-darker) 100%);
  border: 2px solid var(--gold-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(201, 164, 92, 0.25);
  transition: transform 0.3s ease;
}

.navbar-brand:hover .brand-icon {
  transform: rotate(-5deg) scale(1.04);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary-navy);
  letter-spacing: 0.06em;
}

.brand-subtitle {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold-accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.navbar-nav {
  gap: 4px;
}

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 0.94rem;
  color: #1E293B;
  padding: 9px 16px !important;
  border-radius: 8px;
  transition: all 0.25s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-navy);
  background: rgba(201, 164, 92, 0.08);
}

.navbar-nav .nav-link.active {
  color: var(--primary-navy);
  font-weight: 700;
  background: rgba(201, 164, 92, 0.14);
}

.nav-chevron {
  font-size: 0.72rem;
  transition: transform 0.25s ease;
  color: var(--gold-accent);
}

.services-mega-dropdown.show .nav-chevron,
.services-mega-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.navbar-cta-btn {
  padding: 10px 22px !important;
  font-size: 0.9rem !important;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 8px;
  box-shadow: 0 4px 14px var(--gold-glow);
}

/* ==========================================================================
   Hero Section & Dual Search Panel
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, rgba(11, 31, 51, 0.78) 0%, rgba(6, 18, 30, 0.9) 100%),
              url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1920&q=85') center/cover no-repeat;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 160px;
  color: #ffffff;
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-headline {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-subheadline {
  font-size: 1.25rem;
  color: #E2E8F0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Floating Dual Search Panel */
.hero-search-wrapper {
  margin-top: -80px;
  position: relative;
  z-index: 20;
}

.search-panel-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  padding: 24px;
}

.search-nav-tabs {
  border-bottom: 2px solid var(--light-gray);
  margin-bottom: 20px;
  gap: 12px;
}

.search-nav-tabs .nav-link {
  border: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--muted-text);
  padding: 10px 24px !important;
  border-radius: 8px 8px 0 0;
  position: relative;
  background: transparent;
}

.search-nav-tabs .nav-link.active {
  color: var(--primary-navy);
  background: transparent;
}

.search-nav-tabs .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-accent);
  border-radius: 3px 3px 0 0;
}

/* Search Form Fields */
.search-form-control {
  height: 50px;
  border-radius: 8px;
  border: 1px solid #CBD5E1;
  font-size: 0.92rem;
  padding: 8px 14px;
  transition: var(--transition-smooth);
}

.search-form-control:focus {
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 3px var(--gold-glow);
  outline: none;
}

/* ==========================================================================
   Business Division Selector (Cards)
   ========================================================================== */
.division-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 340px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: #ffffff;
  text-decoration: none !important;
}

.division-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 1;
}

.division-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 31, 51, 0.2) 0%, rgba(11, 31, 51, 0.92) 85%);
  z-index: 2;
  transition: var(--transition-smooth);
}

.division-card-content {
  position: relative;
  z-index: 3;
}

.division-card:hover .division-card-bg {
  transform: scale(1.05);
}

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

.division-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(201, 164, 92, 0.2);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201, 164, 92, 0.4);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

/* ==========================================================================
   Property Cards & Catalog
   ========================================================================== */
.property-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201, 164, 92, 0.4);
}

.property-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.property-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.property-card:hover .property-img-wrap img {
  transform: scale(1.06);
}

.property-badge-featured {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--gold-accent), #B38E47);
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 2;
}

.property-badge-purpose {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(11, 31, 51, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  z-index: 2;
}

.property-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.property-type-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-accent);
  margin-bottom: 4px;
}

.property-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--primary-navy);
}

.property-title a {
  color: var(--primary-navy);
}

.property-title a:hover {
  color: var(--gold-accent);
}

.property-location {
  font-size: 0.88rem;
  color: var(--muted-text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.property-specs-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--dark-text);
}

.property-spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.property-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.property-price .price-period {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted-text);
}

/* Category Quick Cards */
.category-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition-smooth);
  display: block;
}

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

.category-icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--light-gold);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* ==========================================================================
   Job Cards & Catalog
   ========================================================================== */
.job-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.job-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 164, 92, 0.4);
  box-shadow: var(--shadow-hover);
}

.job-category-pill {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-accent);
  background: var(--light-gold);
  padding: 4px 10px;
  border-radius: 50px;
}

.job-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 10px 0 6px;
}

.job-company {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.job-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--muted-text);
  margin-bottom: 16px;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-salary-box {
  background: var(--off-white);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.service-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  height: 100%;
}

.service-box:hover {
  border-color: var(--gold-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--light-gold);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

/* ==========================================================================
   Statistics Section
   ========================================================================== */
.stats-section {
  background: linear-gradient(135deg, var(--navy-darker) 0%, var(--primary-navy) 100%);
  color: #ffffff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold-accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 1.05rem;
  color: #E2E8F0;
  font-weight: 600;
}

/* ==========================================================================
   Process / How It Works
   ========================================================================== */
.process-step-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 28px;
  position: relative;
  height: 100%;
  transition: var(--transition-smooth);
}

.process-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-accent);
}

.process-step-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-accent);
  line-height: 1;
  margin-bottom: 12px;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.testimonial-quote {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #334155;
  font-style: italic;
  margin-bottom: 24px;
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-accent);
}

/* ==========================================================================
   Contact & Consultation Form
   ========================================================================== */
.contact-section {
  background: linear-gradient(180deg, var(--off-white) 0%, #ffffff 100%);
}

.contact-card-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.form-control, .form-select {
  border-radius: 8px;
  border: 1px solid #CBD5E1;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus, .form-select:focus {
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

/* ==========================================================================
   Floating WhatsApp & Sticky Mobile Action Bar
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp-green);
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 1050;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  padding: 10px 16px;
  z-index: 1040;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-main {
  background-color: var(--navy-darker);
  color: #94A3B8;
  padding: 80px 0 30px;
  font-size: 0.92rem;
}

.footer-main h5 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

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

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

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

.footer-links a {
  color: #94A3B8;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--gold-accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  margin-top: 50px;
  font-size: 0.85rem;
}

/* ==========================================================================
   Industrial Door Solutions - Design System & UI Components
   ========================================================================== */

/* ==========================================================================
   Services Mega Menu (Desktop)
   ========================================================================== */
@media (min-width: 992px) {
  .services-mega-dropdown {
    position: static !important;
  }

  .services-mega-menu {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 1140px;
    margin: 0 auto !important;
    background: #ffffff !important;
    border: 1px solid rgba(201, 164, 92, 0.25) !important;
    border-radius: 18px !important;
    box-shadow: 0 25px 60px rgba(11, 31, 51, 0.14) !important;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: block !important;
    z-index: 1050;
  }

  .services-mega-dropdown.show .services-mega-menu,
  .services-mega-dropdown:hover .services-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .services-mega-inner {
    padding: 28px !important;
    background: #ffffff;
  }

  .mega-menu-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
  }

  .mega-menu-card:hover {
    background: #ffffff;
    border-color: var(--gold-accent);
    box-shadow: 0 10px 25px rgba(11, 31, 51, 0.06);
    transform: translateY(-3px);
  }

  .mega-card-highlight {
    background: linear-gradient(180deg, #F8FAFC 0%, rgba(201, 164, 92, 0.05) 100%);
    border: 1.5px solid rgba(201, 164, 92, 0.35);
  }

  .mega-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .mega-col-title {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--primary-navy);
    letter-spacing: 0.02em;
  }

  .mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex-grow: 1;
  }

  .mega-menu-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
    padding: 7px 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
  }

  .mega-menu-list li a:hover {
    background: rgba(201, 164, 92, 0.12);
    color: var(--primary-navy);
    transform: translateX(5px);
    font-weight: 700;
  }

  .mega-col-footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--gold-dark);
    background: #ffffff;
    border: 1px solid rgba(201, 164, 92, 0.3);
    border-radius: 8px;
    padding: 8px 14px;
    margin-top: auto;
    transition: all 0.2s ease;
    text-decoration: none;
  }

  .mega-col-footer-btn:hover {
    background: var(--gold-accent);
    color: #ffffff;
    border-color: var(--gold-accent);
  }

  .services-mega-footer {
    background: #F1F5F9;
    border-top: 1px solid #E2E8F0;
    font-size: 0.86rem;
  }
}

/* Industrial Doors Hero Section */
.industrial-hero-section {
  background: linear-gradient(135deg, #0B1F33 0%, #06121E 60%, #15304B 100%);
  position: relative;
  padding: 95px 0 100px;
  color: #ffffff;
  overflow: hidden;
}

.industrial-hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(201, 164, 92, 0.08) 1px, transparent 1px), radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
  pointer-events: none;
  opacity: 0.6;
}

/* Door Solution Card */
.door-solution-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-smooth);
}

.door-solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-accent);
}

.door-card-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: var(--primary-navy);
}

.door-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.door-solution-card:hover .door-card-img-wrap img {
  transform: scale(1.06);
}

.door-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.door-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.door-spec-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary-navy);
  background: #F1F5F9;
  padding: 4px 10px;
  border-radius: 6px;
}

.door-benefit-pill {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  background: var(--light-gold);
  color: var(--gold-dark);
  padding: 3px 8px;
  border-radius: 4px;
  margin-right: 4px;
  margin-bottom: 4px;
}

/* Door Mini Card (Homepage Section 19) */
.door-mini-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 20px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.door-mini-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-md);
}

.door-mini-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(201, 164, 92, 0.12);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

/* Industry Applications */
.industry-app-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
}

.industry-app-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-md);
}

.industry-app-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(11, 31, 51, 0.05);
  color: var(--primary-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 14px;
  transition: var(--transition-smooth);
}

.industry-app-card:hover .industry-app-icon {
  background: var(--gold-accent);
  color: #ffffff;
}

/* Why Choose Us Door Cards */
.door-why-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 24px;
  transition: var(--transition-smooth);
  height: 100%;
}

.door-why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-accent);
}

/* Process Pathway Box */
.process-step-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
  position: relative;
  height: 100%;
  transition: var(--transition-smooth);
}

.process-step-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-accent);
}

.process-step-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-navy);
  color: var(--gold-accent);
  font-weight: 800;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 2px solid var(--gold-accent);
}

/* Door Detail Page Components */
.door-detail-main-img-wrap {
  position: relative;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--primary-navy);
  box-shadow: var(--shadow-md);
}

.door-detail-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.door-gallery-thumb-item {
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  opacity: 0.7;
}

.door-gallery-thumb-item:hover,
.door-gallery-thumb-item.active {
  opacity: 1;
  border-color: var(--gold-accent);
  transform: scale(1.03);
}

.door-gallery-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.door-sticky-rfp-card {
  position: sticky;
  top: 100px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  padding: 28px;
}

.tech-spec-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #F1F5F9;
}

.tech-spec-item:last-child {
  border-bottom: none;
}

.tech-spec-label {
  font-size: 0.86rem;
  color: var(--muted-text);
  font-weight: 600;
}

.tech-spec-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-navy);
  text-align: right;
  max-width: 60%;
}

/* Universal Door Quote Modal */
.modal-door-header {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-darker) 100%);
  color: #ffffff;
  padding: 20px 24px;
  border-bottom: 2px solid var(--gold-accent);
}

.file-drop-zone {
  border: 2px dashed #CBD5E1;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  background: #F8FAFC;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.file-drop-zone:hover,
.file-drop-zone:focus {
  border-color: var(--gold-accent);
  background: rgba(201, 164, 92, 0.04);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive Design System
   ========================================================================== */

/* Tablets & Small Desktops (<= 991.98px) */
@media (max-width: 991.98px) {
  /* Mobile Navigation Drawer */
  .navbar-collapse {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 16px;
    margin-top: 14px;
    border: 1px solid rgba(201, 164, 92, 0.3);
    box-shadow: 0 16px 40px rgba(11, 31, 51, 0.15);
    max-height: 82vh;
    overflow-y: auto;
  }

  .navbar-nav .nav-link {
    font-size: 0.98rem;
    font-weight: 700;
    padding: 12px 16px !important;
    border-radius: 10px;
    margin-bottom: 6px;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: rgba(201, 164, 92, 0.14);
    border-color: var(--gold-accent);
    color: var(--gold-dark);
  }

  .services-mega-dropdown {
    width: 100%;
    margin-bottom: 6px;
  }

  .services-mega-dropdown .nav-link {
    cursor: pointer;
  }

  .services-mega-menu {
    display: none !important;
    position: static !important;
    transform: none !important;
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 6px 0 0 !important;
  }

  .services-mega-dropdown.show > .services-mega-menu {
    display: block !important;
  }

  .services-mega-inner {
    padding: 0 !important;
  }

  .mega-menu-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
  }

  .mega-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
  }

  .mega-col-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary-navy);
  }

  .mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mega-menu-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    border-bottom: 1px solid #F1F5F9;
    text-decoration: none;
  }

  .mega-menu-list li:last-child a {
    border-bottom: none;
  }

  .mega-menu-list li a:hover {
    background: rgba(201, 164, 92, 0.08);
    color: var(--primary-navy);
  }

  .mega-col-footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-dark);
    background: #F8FAFC;
    border: 1px solid rgba(201, 164, 92, 0.3);
    border-radius: 8px;
    padding: 9px 12px;
    margin-top: 10px;
    text-decoration: none;
  }

  .services-mega-footer {
    display: none !important;
  }

  .hero-headline {
    font-size: 2.6rem;
  }

  .hero-search-wrapper {
    margin-top: -50px;
  }

  .section-title {
    font-size: 2rem;
  }

  .division-card {
    height: 300px;
  }

  .stat-number {
    font-size: 2.8rem;
  }
}

/* Mobile Devices (<= 767.98px) */
@media (max-width: 767.98px) {
  /* Layout Spacing & Zero Overflow Guarantee */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
  }

  .container, .container-fluid {
    padding-left: 14px;
    padding-right: 14px;
    max-width: 100%;
  }

  .row {
    margin-left: -7px;
    margin-right: -7px;
  }

  .row > * {
    padding-left: 7px;
    padding-right: 7px;
  }

  /* Top Utility Bar */
  .top-info-bar {
    padding: 6px 0;
    width: 100%;
    overflow: hidden;
  }

  .top-info-bar .desktop-only {
    display: none !important;
  }

  .top-info-bar .d-flex {
    justify-content: center !important;
    text-align: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.82rem;
  }

  /* Brand Header */
  .brand-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    border-radius: 8px;
  }

  .brand-title {
    font-size: 1.05rem;
    letter-spacing: 0.03em;
  }

  .brand-subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  /* Hero Section */
  .hero-section {
    padding: 72px 0 95px;
    min-height: auto;
    overflow: hidden;
  }

  .hero-headline {
    font-size: 1.95rem;
    line-height: 1.22;
    margin-bottom: 1rem;
  }

  .hero-subheadline {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: #F1F5F9 !important;
    margin-bottom: 1.5rem;
    padding: 0 4px;
  }

  .hero-content .d-flex.flex-wrap {
    flex-direction: column;
    gap: 10px !important;
    width: 100%;
  }

  .hero-content .btn {
    width: 100%;
    padding: 13px 18px;
    font-size: 0.95rem;
    font-weight: 700;
  }

  /* Hero Dual Search Panel */
  .hero-search-wrapper {
    margin-top: -36px;
    padding: 0 4px;
    width: 100%;
  }

  .search-panel-card {
    padding: 18px 14px;
    border-radius: 14px;
  }

  .search-nav-tabs {
    display: flex;
    width: 100%;
    margin-bottom: 16px;
    gap: 6px;
  }

  .search-nav-tabs .nav-item {
    flex: 1;
  }

  .search-nav-tabs .nav-link {
    width: 100%;
    font-size: 0.88rem;
    padding: 10px 6px !important;
    text-align: center;
    white-space: nowrap;
    border-radius: 8px 8px 0 0;
  }

  .search-form-control {
    height: 48px;
    font-size: 0.92rem;
    border-radius: 8px;
  }

  /* Section Typography & Badges */
  .section-tag {
    font-size: 0.75rem !important;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    font-weight: 800;
  }

  .section-title {
    font-size: 1.65rem;
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }

  .d-flex.justify-content-between.align-items-center.mb-4 {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  /* Division Cards */
  .division-card {
    height: 250px;
    padding: 22px 18px;
    border-radius: 14px;
  }

  .division-card h3 {
    font-size: 1.35rem !important;
  }

  .division-card p {
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .division-icon {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .division-card .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  /* Categories Grid */
  .category-card {
    padding: 15px 10px;
    border-radius: 12px;
  }

  .category-icon-wrap {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

  .category-card h6 {
    font-size: 0.84rem !important;
    font-weight: 700;
  }

  .category-card small {
    font-size: 0.74rem !important;
    line-height: 1.35;
    display: block;
  }

  /* Property Cards */
  .property-img-wrap {
    height: 200px;
  }

  .property-card-body {
    padding: 16px;
  }

  .property-type-tag {
    font-size: 0.78rem !important;
    font-weight: 700;
    letter-spacing: 0.06em;
  }

  .property-title {
    font-size: 1.08rem;
    font-weight: 700;
  }

  .property-location {
    font-size: 0.86rem !important;
  }

  .property-specs-bar {
    gap: 6px;
    justify-content: space-between;
    font-size: 0.82rem;
    padding: 10px 0;
  }

  .property-spec-item {
    gap: 4px;
  }

  .property-price {
    font-size: 1.25rem;
    font-weight: 800;
  }

  /* Job Cards & Responsive Button Layout */
  .job-card {
    padding: 18px 16px;
  }

  .job-category-pill {
    font-size: 0.74rem !important;
    font-weight: 700;
  }

  .job-title {
    font-size: 1.12rem;
    margin: 8px 0 4px;
  }

  .job-company {
    font-size: 0.86rem !important;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .job-meta-list {
    gap: 8px;
    margin-bottom: 12px;
  }

  .job-meta-item {
    font-size: 0.84rem !important;
  }

  .job-salary-box {
    font-size: 0.9rem !important;
    font-weight: 700;
    padding: 8px 12px;
    margin-bottom: 12px;
  }

  /* Job Card Action Buttons: clean responsive grid */
  .job-card .d-flex.gap-2.mt-auto {
    display: grid !important;
    grid-template-columns: 1fr 1fr auto;
    gap: 6px !important;
    width: 100%;
  }

  .job-card .d-flex.gap-2.mt-auto .btn {
    padding: 9px 8px;
    font-size: 0.86rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
  }

  .job-card .d-flex.gap-2.mt-auto .btn-whatsapp {
    width: 42px;
    padding: 9px 0;
    justify-content: center;
  }

  /* Services Navigation Pills */
  #servicesPills {
    gap: 6px;
    width: 100%;
  }

  #servicesPills .nav-link {
    font-size: 0.86rem;
    padding: 9px 14px !important;
    flex: 1;
    text-align: center;
  }

  .service-box {
    padding: 20px 16px;
  }

  .service-icon-box {
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
    margin-bottom: 14px;
  }

  /* Stats Section */
  .stats-section {
    padding: 50px 0;
    overflow: hidden;
  }

  .stat-item {
    padding: 12px 6px;
  }

  .stat-number {
    font-size: 2.4rem;
    font-weight: 900;
  }

  .stat-label {
    font-size: 0.84rem !important;
  }

  /* Process / How It Works */
  .process-step-card {
    padding: 20px 16px;
  }

  .process-step-num {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 22px 18px;
  }

  .testimonial-quote {
    font-size: 0.94rem !important;
    line-height: 1.6 !important;
    margin-bottom: 18px;
  }

  .testimonial-avatar {
    width: 46px;
    height: 46px;
  }

  /* Small text across the whole document */
  .text-muted.small, small.text-muted, .small {
    font-size: 0.84rem !important;
    line-height: 1.45;
  }

  /* Contact Box */
  .contact-card-box {
    padding: 22px 16px;
    border-radius: 14px;
  }

  .form-control, .form-select {
    padding: 11px 14px;
    font-size: 0.92rem;
  }

  /* Footer */
  .footer-main {
    padding: 50px 0 20px;
    overflow: hidden;
  }

  .footer-links li a {
    font-size: 0.9rem !important;
    display: inline-block;
    padding: 3px 0;
  }

  .footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
  }

  .footer-bottom .d-flex.gap-4 {
    flex-wrap: wrap;
    justify-content: center !important;
    gap: 12px 18px !important;
  }

  /* Floating WhatsApp (hidden on mobile in favor of bottom bar) */
  .floating-whatsapp {
    display: none;
  }

  /* Sticky Bottom Mobile Bar with Safe-Area Insets */
  .mobile-action-bar {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(11, 31, 51, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 9px 14px;
    padding-bottom: calc(9px + env(safe-area-inset-bottom, 0px));
    z-index: 1040;
  }

  .mobile-action-bar .btn {
    font-size: 0.86rem;
    font-weight: 700;
    padding: 10px 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
}

/* Extra Small Phones (<= 420px) */
@media (max-width: 420px) {
  .hero-headline {
    font-size: 1.75rem;
  }

  .search-nav-tabs .nav-link {
    font-size: 0.8rem;
    padding: 8px 4px !important;
  }

  .property-img-wrap {
    height: 180px;
  }

  .property-price {
    font-size: 1.15rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .mobile-action-bar .btn {
    font-size: 0.8rem;
    padding: 8px 4px;
  }
}
