/* 
 * Vantage Builders & Estate - Master CSS Stylesheet
 * Architectural Luxury Aesthetic: Midnight Navy Blue, Royal Brushed Gold, Warm Champagne & Crisp Stone Accents
 */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,600;0,6..12,700;0,6..12,800;0,6..12,900;1,6..12,700&family=Outfit:wght@300;400;500;600;700;800;900&family=Noto+Nastaliq+Urdu:wght@400;700&display=swap');

:root {
  /* Color Palette - Vantage Royal Navy & Gold (Builderrin Geometry) */
  --bg-primary: #f8fafc;
  --bg-secondary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --bg-dark-section: #08162b;
  --bg-dark-card: #0d203d;
  --bg-white: #ffffff;
  
  /* Brand Accents - Metallic Warm Gold & Builderrin Yellow */
  --accent-orange: #C5A059;
  --accent-orange-hover: #AF8842;
  --accent-gold: #C5A059;
  --accent-gold-hover: #AF8842;
  --accent-gold-light: #E8C581;
  --accent-gold-bright: #FFA903;
  --accent-amber: #D4AF37;
  --accent-steel: #1d4ed8;
  --accent-cyan: #0284c7;

  /* Brand Navy Base */
  --brand-navy: #08162b;
  --brand-navy-deep: #002A5C;
  --brand-navy-light: #0d213f;
  --brand-navy-card: #0c1e38;

  --text-primary: #08162b;
  --text-secondary: #475569;
  --text-muted: #6E7A7A;
  --text-dark: #08162b;
  --text-light: #f8fafc;
  --text-gold: #C5A059;

  --border-subtle: #ECECEC;
  --border-strong: #cbd5e1;
  --border-accent: rgba(197, 160, 89, 0.4);
  --border-gold: #C5A059;

  --shadow-sm: 0 1px 3px rgba(8, 22, 43, 0.08), 0 1px 2px rgba(8, 22, 43, 0.04);
  --shadow-md: 0 4px 16px rgba(8, 22, 43, 0.08), 0 2px 6px rgba(8, 22, 43, 0.04);
  --shadow-lg: 0 12px 32px rgba(8, 22, 43, 0.12), 0 4px 10px rgba(8, 22, 43, 0.06);
  --shadow-glow: 0 10px 25px rgba(197, 160, 89, 0.25);
  --shadow-navy: 0 16px 36px rgba(8, 22, 43, 0.25);

  --font-heading: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-brand: 'Cinzel', 'Playfair Display', serif;
  --font-body: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Nunito Sans', monospace;
  --font-urdu: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

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

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-fluid {
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-title-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-orange);
  margin-bottom: 0.75rem;
  background: rgba(234, 88, 12, 0.08);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(234, 88, 12, 0.2);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: var(--text-primary);
}

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

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #DFB76C 0%, #C5A059 50%, #B08B46 100%);
  color: #08162b;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #C5A059 0%, #E8C581 50%, #C5A059 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.5);
  color: #08162b;
}

.btn-secondary {
  background: #ffffff;
  color: var(--brand-navy);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: #f8fafc;
  border-color: var(--accent-gold);
  color: var(--brand-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-orange, .btn-outline-gold {
  background: #ffffff;
  color: var(--accent-gold);
  border: 1.5px solid var(--accent-gold);
  box-shadow: var(--shadow-sm);
}

.btn-outline-orange:hover, .btn-outline-gold:hover {
  background: linear-gradient(135deg, #C5A059, #DFB76C);
  color: #08162b;
  font-weight: 700;
  transform: translateY(-2px);
}

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

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.05rem;
}

/* Header & Navigation */
.header-topbar {
  background: #08162b;
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
  padding: 0.6rem 0;
  font-size: 0.85rem;
  color: #cbd5e1;
}

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

.topbar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.topbar-info span, .topbar-info a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #cbd5e1;
  font-size: 0.85rem;
}

.topbar-info a:hover {
  color: #E8C581;
}

.topbar-info i {
  color: var(--accent-gold);
}

.topbar-badge-pk {
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.topbar-badge-ksa {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.topbar-badge-uk {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.topbar-socials a {
  color: #cbd5e1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.topbar-socials a:hover {
  color: #08162b;
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 16px rgba(8, 22, 43, 0.04);
  transition: var(--transition);
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(8, 22, 43, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

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

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

.brand-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #08162b 0%, #0e274d 100%);
  border: 1.5px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.25);
}

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

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

.brand-title span {
  color: var(--accent-gold);
  margin-left: 0.25rem;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after, .nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--accent-orange);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-color: #0f172a;
  color: #ffffff;
  overflow: hidden;
  padding: 5rem 0;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: contrast(1.1) brightness(0.85);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 75% 35%, rgba(37, 99, 235, 0.2) 0%, transparent 60%),
              linear-gradient(180deg, rgba(15, 23, 42, 0.65) 0%, rgba(15, 23, 42, 0.92) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(234, 88, 12, 0.2);
  border: 1px solid rgba(234, 88, 12, 0.4);
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  color: #ffedd5;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

.hero-badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--accent-orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-orange);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
  100% { transform: scale(0.9); opacity: 1; }
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero-lead {
  font-size: 1.2rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 620px;
}

.hero-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.hero-stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
}

.hero-stat-item {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 1rem;
}

.hero-stat-item:last-child {
  border-right: none;
  padding-right: 0;
}

.hero-stat-val {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.hero-stat-val span {
  color: var(--accent-orange);
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-top: 0.35rem;
}

/* Hero Interactive Quote Card (Light inside dark hero) */
.hero-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  color: var(--text-primary);
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-amber));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hero-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-card-title i {
  color: var(--accent-orange);
}

.hero-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.8rem;
}

/* Hero Embedded Video Showcase (Replacing RFP Bid form in banner) */
.hero-video-embed-card {
  background: linear-gradient(145deg, #0c1e38 0%, #08162b 100%);
  border: 1.5px solid rgba(197, 160, 89, 0.45);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: 0 20px 45px rgba(8, 22, 43, 0.65), 0 0 30px rgba(197, 160, 89, 0.18);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.hero-video-embed-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C5A059 0%, #E8C581 50%, #C5A059 100%);
}

.hero-video-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
}

.hero-video-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: #E8C581;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(197, 160, 89, 0.15);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.hero-video-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseDot 1.8s infinite;
}

.hero-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.35);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  background: #000000;
}

.hero-video-container iframe,
.hero-video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.hero-video-footer {
  margin-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #cbd5e1;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-video-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-video-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #94a3b8;
  font-size: 0.82rem;
}

.hero-video-meta span i {
  color: var(--accent-gold);
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-control, .form-select {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid var(--border-strong);
  color: var(--text-primary);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15);
  background: #ffffff;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Cards & Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Projects Card */
.project-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.project-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-thumb img {
  transform: scale(1.08);
}

.project-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-orange);
  border: 1px solid rgba(234, 88, 12, 0.3);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.project-status-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

.status-dot.in-progress {
  background: var(--accent-amber);
}

.project-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  color: var(--text-primary);
}

.project-title a:hover {
  color: var(--accent-orange);
}

.project-location {
  color: var(--text-secondary);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.project-location i {
  color: var(--accent-orange);
}

.project-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-progress-wrap {
  margin-top: auto;
  margin-bottom: 1.2rem;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.progress-bar-bg {
  width: 100%;
  height: 6px;
  background: #e2e8f0;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-amber));
  border-radius: var(--radius-full);
  transition: width 1s ease-in-out;
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.project-budget {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

/* Service Card */
.service-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
}

.service-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(234, 88, 12, 0.08);
  border: 1px solid rgba(234, 88, 12, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent-orange);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: var(--accent-orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.35);
}

.service-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features-list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features-list li i {
  color: var(--accent-orange);
  font-size: 0.8rem;
}

/* Video Reel & Drone Footage */
.video-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
}

.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}

.video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(234, 88, 12, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 0 25px rgba(234, 88, 12, 0.5);
  transition: var(--transition);
}

.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--accent-orange);
}

.video-duration {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
}

.video-content {
  padding: 1.5rem;
}

.video-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  color: var(--text-primary);
}

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* Video Modal */
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.video-modal-overlay.active {
  display: flex;
}

.video-modal-container {
  width: 100%;
  max-width: 960px;
  background: #000;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.video-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Interactive Cost Calculator */
.calc-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
}

.calc-output-box {
  background: linear-gradient(145deg, #0f172a, #1e293b);
  border: 1px solid rgba(234, 88, 12, 0.3);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.calc-price-display {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: #fb923c;
  margin: 1rem 0;
}

.calc-timeline-display {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

/* Social Share Bar */
.social-share-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 1.2rem;
  background: #f1f5f9;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.social-share-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-right: 0.5rem;
  color: var(--text-primary);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  transition: var(--transition);
}

.share-btn.whatsapp { background: #25D366; }
.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #0f172a; }
.share-btn.linkedin { background: #0A66C2; }
.share-btn.copy { background: #475569; }

.share-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* Testimonial Card */
.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.test-quote-icon {
  font-size: 2rem;
  color: var(--accent-orange);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.test-content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.test-client {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.test-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.test-role {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.test-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

/* Footer */
.footer {
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 5rem;
  padding-bottom: 2rem;
  color: #94a3b8;
}

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

.footer-col-title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

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

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #cbd5e1;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-contact-item i {
  color: var(--accent-orange);
  margin-top: 0.3rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Flash Messages */
.flash-alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
}

.flash-alert.success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
}

.flash-alert.error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

.flash-alert.warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #b45309;
}

.flash-alert.info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
}

/* =============================================================
   BUILDERRIN CONSTRUCTION THEME SYSTEM COMPONENTS
   ============================================================= */

/* 1. Builderrin Subtitle Badge // SUBTITLE // */
.builderrin-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold-bright);
  margin-bottom: 0.85rem;
}

.builderrin-subtitle::before,
.builderrin-subtitle::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: var(--accent-gold-bright);
}

.builderrin-subtitle.on-dark {
  color: #E8C581;
}

.builderrin-subtitle.on-dark::before,
.builderrin-subtitle.on-dark::after {
  background-color: #E8C581;
}

/* 2. Builderrin Topbar */
.builderrin-topbar {
  background: #08162b;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  padding: 0.55rem 0;
  font-size: 0.82rem;
  color: #cbd5e1;
}

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

.topbar-social-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.topbar-social-label {
  font-weight: 700;
  color: #E8C581;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.topbar-social-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.topbar-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  font-size: 0.75rem;
  transition: var(--transition);
}

.topbar-social-links a:hover {
  background: var(--accent-gold);
  color: #08162b;
}

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

.topbar-info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: #cbd5e1;
}

.topbar-info-item i {
  color: var(--accent-gold-bright);
}

.topbar-info-item a {
  color: #cbd5e1;
  transition: color 0.2s;
}

.topbar-info-item a:hover {
  color: #ffffff;
}

/* 3. Builderrin Main Navigation Header */
.builderrin-header {
  background: #ffffff;
  border-bottom: 1px solid #ECECEC;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 42, 92, 0.06);
  transition: var(--transition);
}

.builderrin-nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 86px;
}

.builderrin-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 200px;
  height: 54px;
}

.builderrin-brand-logo img {
  height: 50px;
  max-height: 52px;
  width: auto;
  min-width: 180px;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

.builderrin-nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.builderrin-nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #475569;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.builderrin-nav-link:hover,
.builderrin-nav-link.active {
  color: var(--brand-navy-deep);
}

.builderrin-nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.builderrin-nav-link:hover::after,
.builderrin-nav-link.active::after {
  width: 100%;
}

.builderrin-header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.builderrin-quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFA903;
  color: #08162b;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.75rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(255, 169, 3, 0.3);
}

.builderrin-quote-btn:hover {
  background: #e69800;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 169, 3, 0.4);
}

/* 4. Builderrin About Section (2-Column Asymmetric Stack) */
.about-stack-wrap {
  position: relative;
  padding-right: 2rem;
  padding-bottom: 2rem;
}

.about-img-main {
  width: 90%;
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(0, 42, 92, 0.12);
  display: block;
}

.about-img-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border: 6px solid #ffffff;
  border-radius: 6px;
  box-shadow: 0 20px 48px rgba(0, 42, 92, 0.16);
}

.about-exp-float {
  position: absolute;
  top: 15%;
  left: -20px;
  background: #FFA903;
  color: #08162b;
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(255, 169, 3, 0.35);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 2;
}

.about-exp-float .exp-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.about-exp-float .exp-label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.25;
}

/* Side-by-Side Fancy Feature Boxes in About Section */
.fancy-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.8rem 0;
}

.fancy-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #F2F7F7;
  border-radius: 6px;
  border-left: 3px solid #FFA903;
}

.fancy-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: #ffffff;
  color: #002A5C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.fancy-feature-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: #002A5C;
  margin-bottom: 0.25rem;
}

.fancy-feature-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* CEO Attribution Card */
.about-ceo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid #ECECEC;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.about-ceo-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-ceo-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFA903;
}

.about-ceo-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #002A5C;
  margin-bottom: 0.2rem;
}

.about-ceo-role {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* 5. Builderrin Service Cards */
.builderrin-service-card {
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 42, 92, 0.06);
  border: 1px solid #ECECEC;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.builderrin-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 42, 92, 0.12);
  border-bottom: 3px solid #FFA903;
}

.service-card-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.builderrin-service-card:hover .service-card-thumb img {
  transform: scale(1.08);
}

.service-card-floating-icon {
  position: absolute;
  bottom: -22px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 6px;
  background: #FFA903;
  color: #08162b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 14px rgba(255, 169, 3, 0.4);
  z-index: 2;
  transition: var(--transition);
}

.builderrin-service-card:hover .service-card-floating-icon {
  background: #002A5C;
  color: #ffffff;
}

.service-card-body {
  padding: 2rem 1.6rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-cat {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FFA903;
  margin-bottom: 0.4rem;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #002A5C;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.service-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.service-card-title a:hover {
  color: #FFA903;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #002A5C;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}

.service-card-btn:hover {
  color: #FFA903;
  gap: 0.85rem;
}

/* 6. Builderrin 5-Step Process */
.process-step-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-top: 2rem;
}

.process-step-item {
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #ECECEC;
  padding: 2rem 1.25rem;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.process-step-item:hover {
  transform: translateY(-6px);
  border-color: #FFA903;
  box-shadow: 0 12px 30px rgba(0, 42, 92, 0.08);
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(255, 169, 3, 0.35);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.process-step-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #F2F7F7;
  color: #002A5C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}

.process-step-item:hover .process-step-icon {
  background: #FFA903;
  color: #08162b;
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #002A5C;
  margin-bottom: 0.5rem;
}

.process-step-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* 7. Builderrin Experience & Counter Stats Banner */
.builderrin-counter-banner {
  background: #002A5C;
  color: #ffffff;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.builderrin-counter-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255, 169, 3, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.counter-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.builderrin-counter-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.builderrin-counter-item:last-child {
  border-right: none;
}

.counter-item-icon {
  font-size: 2.5rem;
  color: #FFA903;
}

.counter-item-val {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.counter-item-label {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #cbd5e1;
}

/* 8. Builderrin Floating Callout Strip (CTA Strip) */
.builderrin-cta-strip {
  background: #FFA903;
  color: #08162b;
  border-radius: 6px;
  padding: 2.5rem 3rem;
  box-shadow: 0 16px 40px rgba(255, 169, 3, 0.35);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  margin-bottom: -3.5rem;
  position: relative;
  z-index: 10;
}

.cta-strip-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cta-phone-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  background: #002A5C;
  color: #FFA903;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.cta-strip-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: #002A5C;
  line-height: 1.25;
  margin-bottom: 0.2rem;
}

.cta-strip-desc {
  font-size: 0.95rem;
  font-weight: 600;
  color: #08162b;
  margin: 0;
}

.cta-strip-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-strip-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #002A5C;
  color: #ffffff;
  padding: 0.85rem 1.6rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}

.cta-strip-btn-dark:hover {
  background: #08162b;
  color: #FFA903;
  transform: translateY(-2px);
}

.cta-strip-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 42, 92, 0.12);
  color: #002A5C;
  border: 2px solid #002A5C;
  padding: 0.75rem 1.4rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}

.cta-strip-btn-outline:hover {
  background: #002A5C;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 1200px) {
  .process-step-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .counter-banner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .builderrin-counter-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 992px) {
  .hero-grid, .calc-grid, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

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

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

  .builderrin-nav-menu {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
    gap: 1.2rem;
  }

  .builderrin-nav-menu.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .about-stack-wrap {
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 2.5rem;
  }

  .process-step-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .builderrin-cta-strip {
    margin-bottom: 2rem;
    padding: 2rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .builderrin-topbar-flex {
    justify-content: center;
    text-align: center;
  }

  .fancy-feature-grid {
    grid-template-columns: 1fr;
  }

  .process-step-grid {
    grid-template-columns: 1fr;
  }

  .counter-banner-grid {
    grid-template-columns: 1fr;
  }

  .builderrin-counter-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .builderrin-cta-strip {
    flex-direction: column;
    text-align: center;
  }

  .cta-strip-left {
    flex-direction: column;
  }
}

/* ==============================================================
   BUILDERRIN HERO BANNER & DECORATIVE GRAPHICS (REFERENCE MATCH)
   ============================================================== */
.builderrin-hero {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 4.5rem 0 5rem;
}

.builderrin-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 42, 92, 0.93) 0%, rgba(6, 17, 34, 0.84) 50%, rgba(6, 17, 34, 0.68) 100%),
              radial-gradient(circle at 65% 50%, rgba(255, 169, 3, 0.15) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}

/* Top-Left Diagonal Orange/Yellow Slices */
.hero-decor-stripes-top {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #FFA903 0%, #E69500 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(255, 169, 3, 0.3);
}

.hero-decor-stripes-top::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 170px;
  width: 14px;
  height: 140px;
  background: #FFA903;
  transform: rotate(-45deg);
  opacity: 0.9;
}

/* Bottom-Left Diagonal Slice */
.hero-decor-stripes-bottom {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 150px;
  height: 150px;
  background: linear-gradient(315deg, #FFA903 0%, #FFB834 100%);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 -10px 30px rgba(255, 169, 3, 0.25);
}

/* Right Side Dot Matrix Grid */
.hero-decor-dots {
  position: absolute;
  right: 2.5%;
  top: 12%;
  width: 130px;
  height: 320px;
  background-image: radial-gradient(#FFA903 2.5px, transparent 3px);
  background-size: 18px 18px;
  opacity: 0.45;
  z-index: 2;
  pointer-events: none;
}

/* Call Us Anytime Eyebrow */
.hero-call-anytime {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: #e2e8f0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.hero-call-anytime i {
  color: #FFA903;
}

.hero-phone-highlight {
  color: #FFA903;
  font-weight: 900;
  letter-spacing: 0.05em;
}

/* Reference Style Subtitle Box with Orange Bar */
.hero-lead-box {
  border-left: 3.5px solid #FFA903;
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}

.hero-lead-box .hero-lead {
  margin-bottom: 0 !important;
  color: #cbd5e1;
  font-size: 1.08rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .hero-decor-dots {
    display: none;
  }
}


