/* ==========================================================================
   FIXIN DIXON MOBILE RV LLC - IMPERIAL SAPPHIRE BLUE LUXURY DESIGN SYSTEM
   100% MOBILE PIXEL PERFECT RESPONSIVE SYSTEM | HIGHWAY ROAD HERO BACKDROPS
   ========================================================================== */

:root {
  /* Imperial Sapphire Blue Luxury Palette */
  --bg-dark: #f8fafc;           /* Pristine Porcelain Base */
  --bg-card: #ffffff;           /* Pure White Cards */
  --bg-surface: #f1f5f9;        /* Soft Luxury Surface Gray */
  
  --header-bg: rgba(255, 255, 255, 0.97);
  --header-text: #0f172a;       /* Deep Executive Navy Text */
  
  --brand-navy: #0f172a;        /* Deep Imperial Navy */
  --brand-navy-light: #1e293b;  /* Slate Navy */
  
  /* Imperial Blue Palette */
  --brand-blue-primary: #1d4ed8;/* Imperial Sapphire Blue */
  --brand-blue-bright: #2563eb; /* Bright Royal Blue */
  --brand-blue-light: #38bdf8;  /* Vivid Sky Sapphire */
  --brand-blue-dark: #1e40af;   /* Deep Executive Blue */
  --brand-blue-soft: #dbeafe;   /* Ice Blue Accent Background */
  --brand-blue-border: #93c5fd; /* Soft Blue Micro Border */
  --brand-blue-glow: rgba(37, 99, 235, 0.4);

  --text-primary: #0f172a;      /* High-contrast deep navy slate text */
  --text-secondary: #475569;    /* Refined slate subtext */
  --text-muted: #64748b;        /* Muted caption text */
  
  /* Borders & Micro-Details */
  --border-glass: #e2e8f0;
  --border-blue: rgba(37, 99, 235, 0.35);

  /* 3D Elevated Luxury Shadows */
  --shadow-sm: 0 4px 15px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 12px 35px rgba(15, 23, 42, 0.09);
  --shadow-lg: 0 25px 60px rgba(15, 23, 42, 0.14);
  --shadow-blue: 0 12px 30px rgba(37, 99, 235, 0.35);
  
  /* Typography & Radius */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Keyframe Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* Reset & Mobile Prevention of Horizontal Scroll */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

p, span, a, label, li {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  color: var(--brand-blue-dark);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--brand-blue-bright);
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-padding {
  padding: 6.5rem 0;
  position: relative;
  overflow: hidden;
}

.text-center { text-align: center; }
.text-gold, .text-blue { color: var(--brand-blue-bright) !important; }
.text-muted { color: var(--text-secondary); }

/* LUXURY SAPPHIRE BLUE BADGES */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1.3rem;
  background: var(--brand-blue-soft);
  border: 1px solid var(--brand-blue-border);
  color: var(--brand-blue-dark);
  border-radius: 50px;
  font-size: 0.825rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
  transition: var(--transition-smooth);
  max-width: 100%;
  white-space: normal;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
}

.badge-hero {
  background: rgba(15, 23, 42, 0.92);
  border: 1.5px solid var(--brand-blue-bright);
  color: #ffffff;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}

/* HIGH-GLOSS 3D SAPPHIRE BLUE LUXURY BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.05rem 2.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.98rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  max-width: 100%;
  text-align: center;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: 0.6s;
  z-index: 2;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
  color: #ffffff !important;
  box-shadow: var(--shadow-blue);
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.55);
  color: #ffffff !important;
}

.btn-gold {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
  border: 1.5px solid var(--brand-blue-bright);
}

.btn-gold:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.45);
  color: var(--brand-blue-light) !important;
}

/* HIGH-END EXPLORE SERVICES BUTTON */
.btn-outline {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff !important;
  border: 1.5px solid var(--brand-blue-bright);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.8rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.btn-outline i {
  color: var(--brand-blue-light);
  transition: transform 0.3s ease;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff !important;
  border-color: #3b82f6;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.45);
}

.btn-outline:hover i {
  transform: translateX(5px);
  color: #ffffff;
}

.btn-sm { padding: 0.7rem 1.5rem; font-size: 0.88rem; }
.btn-lg { padding: 1.15rem 2.2rem; font-size: 1rem; }

/* CLEAN CRISP WHITE HEADER NAVBAR & RESPONSIVE LOGO DISPLAY */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: 110px;
  z-index: 1000;
  transition: var(--transition-smooth);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  border-bottom: 3px solid var(--brand-blue-bright);
}

.header.scrolled {
  height: 85px;
  background: #ffffff;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  max-width: 75%;
}

/* HUGE HEADER LOGO DISPLAY */
.logo-badge-container {
  width: 110px;
  height: 70px;
  border-radius: 0;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 0;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.logo-badge-container:hover {
  transform: scale(1.05);
}

.logo-img-transparent {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.3);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.18));
}

.logo-text-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.logo-text-brand span {
  color: var(--brand-blue-dark);
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

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

.nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--brand-blue-bright);
  transition: var(--transition-smooth);
  border-radius: 4px;
}

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

.nav-link.active,
.nav-link:hover {
  color: var(--brand-blue-dark);
}

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

.phone-quick {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-blue-dark);
  font-weight: 800;
  font-size: 1.05rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
}

/* TOP NOTICE BAR */
.top-notice-bar {
  background: #0f172a;
  font-size: 0.825rem;
  padding: 0.45rem 0;
  color: #f1f5f9;
}

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

.notice-info {
  display: flex;
  gap: 1.8rem;
}

.notice-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* HERO SECTION - 100% RESPONSIVE & ZERO OVERFLOW */
.hero-video-section {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 80vh;
  padding-top: 130px;
  padding-bottom: 3.5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: none !important;
  opacity: 1 !important;
}

.hero-poster-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  display: none !important;
}

.hero-split-grid {
  display: block;
  z-index: 10;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
  width: 100%;
}

.hero-content {
  max-width: 860px;
  width: 100%;
}

.hero-title {
  font-size: clamp(1.8rem, 5.5vw, 4.4rem);
  line-height: 1.1;
  margin-bottom: 0.95rem;
  color: #ffffff !important;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0,0,0,0.98), 0 2px 6px #000000;
}

/* VIVID SKY SAPPHIRE BLUE TEXT HIGHLIGHT */
.hero-title span.text-gold-bright,
.hero-title span {
  color: #38bdf8 !important;
  background: none !important;
  -webkit-text-fill-color: #38bdf8 !important;
  text-shadow: 0 3px 14px rgba(0,0,0,0.98), 0 0 3px #000000;
  font-weight: 800;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(0.98rem, 2.5vw, 1.2rem);
  color: #ffffff !important;
  margin-bottom: 1.8rem;
  line-height: 1.6;
  font-weight: 600;
  text-shadow: 0 3px 16px rgba(0,0,0,0.98), 0 1px 4px #000000;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* INTERNAL PAGE HERO - NO BLUE SQUARE BOX, 100% VISIBLE TRANSPARENT BACKGROUND */
.page-hero {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  color: #ffffff;
  padding-top: 145px;
  padding-bottom: 4.5rem;
  border-bottom: 3px solid var(--brand-blue-bright);
}

/* REMOVED DARK BLUE SQUARE CONTAINER PER USER DIRECTIVE */
.hero-glass-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
  display: block;
  max-width: 860px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem) !important;
  color: #ffffff !important;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.98), 0 2px 8px #000000 !important;
  margin-bottom: 0.9rem;
}

.page-hero p {
  color: #ffffff !important;
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.98), 0 1px 6px #000000 !important;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 760px;
}

.page-hero-about {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.35) 100%), url('heroimage.png');
}

.page-hero-services {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.35) 100%), url('images/hvac_aircon.jpg');
}

.page-hero-contact {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.35) 100%), url('heroimage.png');
}

/* CLASSY TRUST BAR BELOW HERO (3D COLORFUL CLIPART BADGES) */
.trust-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-glass);
  padding: 2.5rem 0;
  position: relative;
  z-index: 15;
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: #ffffff;
  padding: 1.35rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
}

.trust-item:hover {
  background: #ffffff;
  border-color: var(--brand-blue-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* VIBRANT 3D COLORFUL TRUST ICONS */
.trust-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: #ffffff !important;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.trust-item:hover .trust-icon {
  transform: scale(1.1) rotate(4deg);
}

.trust-icon-home { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.trust-icon-fee { background: linear-gradient(135deg, #10b981, #059669); }
.trust-icon-bbb { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.trust-icon-emergency { background: linear-gradient(135deg, #ef4444, #dc2626); }

.trust-text h4 { font-size: 1.05rem; margin-bottom: 0.15rem; color: var(--text-primary); }
.trust-text p { font-size: 0.85rem; color: var(--text-secondary); }

/* SECTION HEADERS */
.section-header { margin-bottom: 3.5rem; }
.section-title { font-size: clamp(1.8rem, 4.2vw, 3.4rem); margin-bottom: 0.85rem; color: var(--text-primary); }
.section-subtitle { font-size: 1.05rem; color: var(--text-secondary); max-width: 680px; margin: 0 auto; }

/* SERVICES GRID & CRISP BRIGHT CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.2rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 2.2rem;
  transition: var(--transition-smooth);
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

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

.card-thumb-wrap {
  position: relative;
  width: 100%;
  height: 190px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid #cbd5e1;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

/* VIBRANT 3D COLORFUL EXECUTIVE CARE OVERLAY ICONS */
.card-icon-overlay {
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: var(--transition-smooth);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.card:hover .card-icon-overlay {
  transform: scale(1.12) rotate(-5deg);
}

.card-icon-electrical { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); }
.card-icon-hvac { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }
.card-icon-plumbing { background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%); }
.card-icon-slideout { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
.card-icon-roof { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.card-icon-appliances { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }

.card-title { font-size: 1.38rem; margin-bottom: 0.75rem; color: var(--text-primary); }
.card-desc { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1.4rem; line-height: 1.6; }

/* HIGHLY HIGHLIGHTED KEY PARTS TAGS */
.parts-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.part-tag {
  background: var(--brand-blue-soft);
  border: 1px solid var(--brand-blue-border);
  color: var(--brand-blue-dark);
  padding: 0.38rem 0.9rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card-list { list-style: none; margin-bottom: 1.8rem; margin-top: auto; }
.card-list li { font-size: 0.9rem; color: var(--text-secondary); padding: 0.35rem 0; display: flex; align-items: center; gap: 0.6rem; }
.card-list li::before { content: '✓'; color: var(--brand-blue-primary); font-weight: 800; font-size: 1rem; }

/* WHY CHOOSE US SECTION - ZERO-GAP ALIGNMENT */
.features-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
}

.feature-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid #cbd5e1;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 400px;
  display: flex;
}

.feature-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-badge-floating {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: #0f172a;
  color: #ffffff;
  border: 1.5px solid var(--brand-blue-bright);
  padding: 1.1rem 1.6rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

.feature-list { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 1.8rem; }

.feature-item {
  display: flex;
  gap: 1.1rem;
  background: #ffffff;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.feature-item:hover {
  transform: translateX(6px);
  border-color: var(--brand-blue-bright);
}

.feature-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* PRICING & ESTIMATOR */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem;
}

.price-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 2.8rem 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.price-card.popular {
  border-color: var(--brand-blue-bright);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  color: #ffffff;
  padding: 0.35rem 1.4rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-amount {
  font-size: 3.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--brand-blue-dark);
  margin: 1rem 0;
}

.price-unit { font-size: 0.92rem; color: var(--text-secondary); font-weight: 400; }

.estimator-card {
  background: #ffffff;
  border: 2px solid var(--brand-blue-bright);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  margin-top: 3.5rem;
}

.estimator-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
  margin-bottom: 2rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }

.form-control {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: var(--text-primary);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
  width: 100%;
}

.form-control:focus {
  border-color: var(--brand-blue-bright);
  box-shadow: 0 0 14px var(--brand-blue-glow);
}

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

/* GLOSSY 3D SAPPHIRE ESTIMATOR OUTPUT BANNER */
.estimator-output {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1d4ed8 100%);
  color: #ffffff;
  padding: 1.8rem 2rem;
  border-radius: var(--radius-md);
  border: 2px solid #38bdf8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.estimator-total {
  font-size: 2.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: #38bdf8;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* TESTIMONIALS & REAL CUSTOMER HEADSHOTS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 2.4rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

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

.star-rating { color: #f59e0b; font-size: 1.2rem; margin-bottom: 1rem; }
.testimonial-quote { font-style: italic; color: var(--text-secondary); margin-bottom: 1.6rem; font-size: 0.98rem; line-height: 1.6; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }

.author-avatar-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-blue-bright);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.cta-banner {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner h2,
.cta-banner p { color: #ffffff !important; }

/* FOOTER SECTION */
.footer {
  background: #0f172a;
  border-top: 3px solid var(--brand-blue-bright);
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
  margin-top: auto;
  color: #cbd5e1;
}

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

.footer .logo-badge-container {
  width: 120px;
  height: 65px;
  border-radius: 0;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 0;
}

.footer .logo-img-transparent {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.3);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.footer-desc { color: #94a3b8; margin-bottom: 1.6rem; font-size: 0.9rem; }

/* OFFICIAL COLORFUL SOCIAL LOGOS IN FOOTER */
.social-icons-colorful { display: flex; gap: 0.9rem; }

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff !important;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
}

.social-btn.facebook { background: #1877F2 !important; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important; }
.social-btn.linkedin { background: #0A66C2 !important; }

.social-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 22px rgba(0,0,0,0.7);
}

.footer-title { font-size: 1.1rem; margin-bottom: 1.6rem; color: #ffffff; position: relative; padding-bottom: 0.5rem; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--brand-blue-light); }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: #94a3b8; font-size: 0.9rem; }
.footer-links a:hover { color: var(--brand-blue-light); padding-left: 5px; }

/* VIBRANT COLORFUL CONTACT ICONS IN FOOTER */
.footer-contact-list { display: flex; flex-direction: column; gap: 1.1rem; }
.footer-contact-item { display: flex; align-items: center; gap: 0.85rem; }

.contact-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.45);
}

.contact-icon-phone { background: linear-gradient(135deg, #10b981, #059669); }
.contact-icon-email { background: linear-gradient(135deg, #0284c7, #0369a1); }
.contact-icon-location { background: linear-gradient(135deg, #ef4444, #dc2626); }
.contact-icon-hours { background: linear-gradient(135deg, #2563eb, #1d4ed8); }

.footer-contact-text { font-size: 0.9rem; color: #cbd5e1; }
.footer-contact-text strong { color: #ffffff; display: block; font-size: 0.85rem; }

.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;
}

/* FLOATING ACTION WIDGET REMOVED PER USER DIRECTIVE */
.floating-action-widget {
  display: none !important;
}

/* STICKY MOBILE BOTTOM BAR */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: 65px;
  background: #0f172a;
  border-top: 2.5px solid var(--brand-blue-bright);
  z-index: 1001;
  padding: 0.5rem 0.85rem;
  box-shadow: 0 -6px 25px rgba(0,0,0,0.4);
}

.mobile-bottom-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  height: 100%;
  align-items: center;
  width: 100%;
}

.mobile-bottom-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  white-space: nowrap;
}

/* FILTER TABS (Services Page) */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.tab-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: var(--text-primary);
  padding: 0.65rem 1.35rem;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover,
.tab-btn.active {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  border-color: var(--brand-blue-bright);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* ==========================================================================
   MOBILE PIXEL PERFECT MEDIA QUERIES (PREVENTS ALL OVERFLOWS & CUTOFFS)
   ========================================================================== */

@media (max-width: 1024px) {
  .features-split {
    grid-template-columns: 1fr;
  }
  .feature-img-wrapper {
    min-height: 360px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 65px;
  }

  .mobile-bottom-bar {
    display: block;
  }

  .header {
    height: 95px;
  }
  
  .header.scrolled {
    height: 80px;
  }

  .logo-badge-container {
    width: 85px;
    height: 55px;
  }

  .logo-text-brand {
    font-size: 1.25rem;
  }

  .logo-text-brand span {
    font-size: 0.78rem;
    letter-spacing: 1.2px;
  }

  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 95px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 95px);
    background: #ffffff;
    border-top: 2px solid var(--brand-blue-bright);
    flex-direction: column;
    padding: 2.5rem 1.8rem;
    gap: 1.8rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .header-cta .btn {
    display: none;
  }

  .floating-action-widget {
    display: none !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .top-notice-bar {
    display: none;
  }

  .hero-video-section {
    padding-top: 115px;
    min-height: 70vh;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

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

  .logo-badge-container {
    width: 75px;
    height: 48px;
  }

  .logo-text-brand {
    font-size: 1.1rem;
  }

  .logo-text-brand span {
    font-size: 0.72rem;
    letter-spacing: 1px;
  }

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

  .btn-lg {
    padding: 1rem 1.5rem;
    font-size: 0.92rem;
    width: 100%;
  }

  .estimator-output {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .estimator-total {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   OUTREACH REDESIGN LEAD FUNNEL POPUP & MODAL SYSTEM
   ========================================================================== */

.outreach-floating-bar {
  position: fixed !important;
  bottom: 1.5rem !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(180%);
  width: calc(100% - 2.5rem);
  max-width: 900px;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  padding: 0.95rem 1.4rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.outreach-floating-bar.active {
  transform: translateX(-50%) translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.outreach-floating-bar.hidden {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(300%) !important;
}



.outreach-bar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.outreach-bar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.outreach-pill {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(13, 148, 136, 0.3);
}

.outreach-bar-text {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
}

.outreach-bar-btn {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  border: none;
  padding: 0.85rem 1.6rem;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.5);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.outreach-bar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.6);
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}


.outreach-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1rem;
}

.outreach-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.outreach-modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  padding: 2.2rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.outreach-modal-overlay.open .outreach-modal-card {
  transform: scale(1);
}

.outreach-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: #f1f5f9;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outreach-modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.outreach-step {
  display: none;
}

.outreach-step.active {
  display: block;
}

.outreach-modal-header {
  margin-bottom: 1.5rem;
}

.outreach-modal-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.outreach-modal-header p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
}

.outreach-form .form-group {
  margin-bottom: 1.1rem;
}

.outreach-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.4rem;
}

.outreach-form input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s ease;
}

.outreach-form input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.btn-outreach-submit {
  width: 100%;
  background: #0f172a;
  color: #ffffff;
  border: none;
  padding: 0.95rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
}

.btn-outreach-submit:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.outreach-success-icon {
  width: 64px;
  height: 64px;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
}

.outreach-thankyou-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  text-align: center;
  margin-bottom: 0.3rem;
}

.outreach-thankyou-subtitle {
  font-size: 0.9rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 1.5rem;
}

.outreach-pricing-card {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.outreach-pricing-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.4rem;
}

.outreach-price-tag {
  font-size: 0.8rem;
  font-weight: 800;
  color: #64748b;
  margin-bottom: 0.8rem;
}

.outreach-price-tag .price-val {
  font-size: 1.8rem;
  font-weight: 900;
  color: #0d9488;
  display: block;
}

.outreach-onetime-badge {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.15);
}


.outreach-pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.outreach-pricing-list li {
  font-size: 0.84rem;
  color: #475569;
  padding: 0.3rem 0;
  font-weight: 600;
}

.outreach-cta-grid {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.btn-outreach-calendly {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  text-decoration: none;
  padding: 0.85rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  transition: all 0.2s ease;
}

.btn-outreach-calendly:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  color: #ffffff;
}

.btn-outreach-whatsapp {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  text-decoration: none;
  padding: 0.85rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
  transition: all 0.2s ease;
}

.btn-outreach-whatsapp:hover {
  background: linear-gradient(135deg, #059669, #047857);
  color: #ffffff;
}

@media (max-width: 640px) {
  .outreach-bar-content {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  .outreach-bar-left {
    justify-content: center;
  }
  .outreach-bar-btn {
    width: 100%;
    justify-content: center;
  }
  .outreach-modal-card {
    width: 95%;
    padding: 1.6rem 1.2rem;
    max-height: 85vh;
  }
  .outreach-modal-header h3 {
    font-size: 1.25rem;
  }
  .outreach-form input {
    font-size: 0.95rem;
    padding: 0.75rem 0.9rem;
  }
}


