/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --bg-primary: #080c14;
  --bg-secondary: #0d1527;
  --bg-card-dark: #121b2e;
  --bg-form-light: #ffffff;
  
  --text-light-primary: #f8fafc;
  --text-light-muted: #94a3b8;
  --text-dark-primary: #0f172a;
  --text-dark-muted: #475569;
  
  --accent-blue: #1b3b6f;
  --accent-blue-light: #3b82f6;
  --accent-gold: #f59e0b;
  --accent-gold-hover: #d97706;
  --accent-red: #ef4444;
  --accent-red-bg: rgba(239, 68, 68, 0.1);
  --accent-green: #10b981;
  --accent-green-bg: rgba(16, 185, 129, 0.1);
  
  --border-glass: rgba(255, 255, 255, 0.06);
  --border-light: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.1);
  
  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --max-width: 1280px;
  --header-height: 80px;
  --border-radius: 12px;
  --border-radius-sm: 6px;
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  
  /* Glassmorphism */
  --glass-bg: rgba(8, 12, 20, 0.8);
  --glass-blur: blur(12px);
  --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  --shadow-light: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
*, *::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-light-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

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

@media (min-width: 992px) {
  .grid-2 {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
}

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1),
              transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.badge-primary {
  background-color: var(--accent-blue);
  color: var(--accent-blue-light);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.badge-accent {
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text-light-primary);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-light-muted);
  font-weight: 400;
  margin-bottom: 2.5rem;
  max-width: 650px;
}

.text-center { text-align: center; }
.text-center-block { display: block; margin-left: auto; margin-right: auto; width: fit-content; }
.text-green { color: var(--accent-green) !important; }
.text-red { color: var(--accent-red) !important; }
.max-w-700 { max-w: 700px; margin-left: auto; margin-right: auto; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }

/* Icons */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  vertical-align: middle;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-normal);
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #000;
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--border-dark);
  color: var(--text-light-primary);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--text-light-primary);
}

.btn-secondary-dark {
  background-color: rgba(13, 21, 39, 0.5);
  border: 1px solid var(--border-dark);
  color: var(--text-light-primary);
}

.btn-secondary-dark:hover {
  background-color: rgba(13, 21, 39, 0.8);
  border-color: var(--accent-gold);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-blue-light), #1d4ed8);
  color: #fff;
}

.btn-accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ==========================================================================
   NAVBAR (HEADER)
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-glass);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
}

.main-header.scrolled {
  height: 70px;
  background-color: rgba(8, 12, 20, 0.95);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

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

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

.main-header.scrolled .logo-img {
  height: 44px;
}

.logo-box {
  background-color: #fff;
  color: #000;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.125rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius-sm);
  letter-spacing: -0.03em;
}

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

.logo-title {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.05em;
}

.logo-subtitle {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--text-light-muted);
  letter-spacing: 0.2em;
  margin-top: 0.15rem;
}

.nav-menu ul {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light-muted);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-normal);
}

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

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

.hotline-btn-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.hotline-btn-nav:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-gold);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: var(--transition-fast);
}

/* Responsive Nav Menu */
@media (max-width: 991px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-primary);
    padding: 3rem 2rem;
    transition: var(--transition-normal);
    border-top: 1px solid var(--border-glass);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    gap: 2rem;
  }
  
  .nav-link {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 5rem;
  background-image: url('./hero-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(13, 21, 39, 0.3) 0%, rgba(8, 12, 20, 0.95) 80%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero-content {
  max-width: 700px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 60%, var(--text-light-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-light-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

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

/* Glow Card Badge */
.hero-badge-card {
  position: relative;
  border-radius: var(--border-radius);
  background: linear-gradient(135deg, rgba(13, 21, 39, 0.7), rgba(8, 12, 20, 0.9));
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-premium);
  overflow: hidden;
}

.hero-badge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-blue-light), transparent);
}

.card-glowing-inner {
  padding: 2.5rem;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  background-color: var(--accent-green-bg);
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
}

.status-dot.pulsing {
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.status-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-badge-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.hero-badge-card p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

/* ==========================================================================
   SERVICE GUARANTEE BANNER (IMAGE 3)
   ========================================================================== */
.guarantee-section {
  padding: 5rem 0;
  position: relative;
  z-index: 5;
}

.guarantee-card {
  position: relative;
  background: linear-gradient(135deg, #0a1426, #060a12);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 16px;
  padding: 3.5rem;
  box-shadow: var(--shadow-premium);
  overflow: hidden;
}

.watermark-bg {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%) rotate(15deg);
  width: 300px;
  height: 300px;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  transition: var(--transition-normal);
}

.guarantee-card:hover .watermark-bg {
  color: rgba(59, 130, 246, 0.035);
  transform: translateY(-50%) rotate(5deg) scale(1.05);
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(185, 28, 28, 0.15);
  color: #ef4444;
  border: 1px solid rgba(185, 28, 28, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.75rem;
}

.gold-sparkle {
  color: var(--accent-gold);
}

.guarantee-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.guarantee-description {
  color: var(--text-light-muted);
  font-size: 1.05rem;
  max-width: 850px;
  margin-bottom: 2.5rem;
}

.guarantee-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4rem;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent-green);
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  padding: 2px;
}

/* ==========================================================================
   COMMERCIAL SOLUTIONS & CALCULATOR (IMAGE 4)
   ========================================================================== */
.solutions-section {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
}

.steps-list {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  gap: 1.25rem;
}

.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--text-light-muted);
  font-size: 0.95rem;
}

.step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.step-content p {
  color: var(--text-light-muted);
  font-size: 0.925rem;
}

.solutions-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* Calculator CSS */
.calculator-card {
  background-color: #0b0f19;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: var(--shadow-premium);
}

.calc-header {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 2rem;
}

.calc-icon-box {
  width: 48px;
  height: 48px;
  background-color: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue-light);
}

.calc-icon-box svg {
  width: 24px;
  height: 24px;
}

.calc-header h3 {
  font-size: 1.35rem;
  color: #fff;
}

.calc-subtitle {
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

.slider-group {
  margin-bottom: 1.75rem;
}

.slider-label-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.slider-title {
  color: var(--text-light-muted);
  font-weight: 500;
}

.slider-value {
  color: #fff;
  font-weight: 700;
}

/* Styled HTML Sliders */
.custom-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #27354a;
  outline: none;
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-red);
  cursor: pointer;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
  transition: transform 0.1s ease;
}

.custom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.custom-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-red);
  cursor: pointer;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
  border: none;
  transition: transform 0.1s ease;
}

.custom-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
}

/* Output Cards Grid */
.calc-outputs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2.25rem 0;
}

@media (min-width: 480px) {
  .calc-outputs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.output-box {
  padding: 1.5rem;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  position: relative;
}

.cost-box {
  background-color: #121927;
  border: 1px solid var(--border-dark);
}

.savings-box {
  background-color: var(--accent-green-bg);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.output-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-light-muted);
  margin-bottom: 0.5rem;
}

.savings-box .output-label {
  color: var(--accent-green);
}

.output-value {
  font-size: 2rem;
  font-family: var(--font-headings);
  font-weight: 800;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.savings-box .output-value {
  color: var(--accent-green);
}

.output-detail {
  font-size: 0.77rem;
  color: var(--text-light-muted);
}

.calc-footer-note {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background-color: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--border-radius-sm);
}

.warning-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--accent-gold);
}

.calc-footer-note p {
  font-size: 0.75rem;
  color: var(--text-light-muted);
  line-height: 1.4;
}

/* ==========================================================================
   CLIENT TESTIMONIALS (IMAGE 5)
   ========================================================================== */
.testimonials-section {
  padding: 6rem 0;
  background-color: var(--bg-primary);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2.5rem 0;
}

.tab-btn {
  padding: 0.5rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light-muted);
  transition: var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: var(--accent-gold);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

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

.testimonial-card {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(59, 130, 246, 0.05);
  border-radius: var(--border-radius);
  padding: 2.25rem;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.15);
  box-shadow: var(--shadow-premium);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.rating-stars {
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}

.card-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  color: var(--text-light-muted);
  border: 1px solid var(--border-dark);
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.card-divider {
  border: none;
  border-top: 1px solid var(--border-dark);
  margin-bottom: 1.5rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  background-color: #1b263b;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-blue-light);
}

.reviewer-name {
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}

.reviewer-role {
  font-size: 0.77rem;
  color: var(--text-light-muted);
}

/* Testimonial filtering display classes */
.testimonial-card.hidden {
  display: none;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
}

.faq-accordion {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  transition: var(--transition-fast);
}

.chevron-icon {
  width: 20px;
  height: 20px;
  color: var(--text-light-muted);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .chevron-icon {
  transform: rotate(180deg);
  color: var(--accent-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-light-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   FOOTER SECTION (IMAGE 1)
   ========================================================================== */
.main-footer {
  background-color: #05080f;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid var(--border-glass);
}

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

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

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  }
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.brand-desc {
  color: var(--text-light-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hotline-card-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background-color: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.15);
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius-sm);
  margin-bottom: 1.5rem;
}

.hotline-card-btn:hover {
  background-color: rgba(59, 130, 246, 0.08);
  border-color: var(--accent-gold);
}

.hotline-icon {
  color: var(--accent-blue-light);
  width: 24px;
  height: 24px;
}

.hotline-number {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
}

.hours-card {
  display: flex;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.clock-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--text-light-muted);
}

.hours-title {
  display: block;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.hours-days {
  display: block;
  color: var(--text-light-muted);
}

.hours-sunday {
  display: block;
  color: #ef4444;
  font-weight: 500;
  margin-top: 0.15rem;
}

.footer-title {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #ef4444;
  margin-bottom: 1.75rem;
  border-left: 2px solid #ef4444;
  padding-left: 0.5rem;
}

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

.footer-links a, .link-button {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  text-align: left;
}

.footer-links a:hover, .link-button:hover {
  color: #fff;
  padding-left: 4px;
}

.link-button {
  font-weight: inherit;
}

/* Service Area Badges */
.area-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius-sm);
  font-size: 0.77rem;
  color: var(--text-light-muted);
  transition: var(--transition-fast);
}

.area-tag:hover {
  background-color: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.25);
  color: #fff;
}

.marker-icon {
  width: 12px;
  height: 12px;
  color: var(--accent-red);
}

/* Consultation Form */
.consultation-desc {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.consultation-form {
  position: relative;
  display: flex;
  margin-bottom: 1.5rem;
  background-color: rgba(255,255,255,0.02);
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius-sm);
  padding: 3px;
}

.consultation-form:focus-within {
  border-color: var(--accent-blue-light);
}

.consultation-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  outline: none;
}

.consultation-form input::placeholder {
  color: #475569;
}

.consultation-form button {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-muted);
  transition: var(--transition-fast);
}

.consultation-form button:hover {
  background-color: var(--accent-blue-light);
  color: #fff;
  border-color: var(--accent-blue-light);
}

.google-reviews {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--border-glass);
  margin: 3.5rem 0 2rem 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-certifications {
  display: flex;
  gap: 1.5rem;
}

.footer-certifications span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cert-icon {
  width: 16px;
  height: 16px;
  color: var(--accent-blue-light);
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 46px;
  height: 46px;
  background-color: var(--accent-blue);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition-normal);
  z-index: 90;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--accent-blue-light);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* ==========================================================================
   MODAL - DIAGNOSTICS & BOOKING FORM (IMAGE 2)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 8, 15, 0.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-wrapper {
  position: relative;
  background-color: var(--bg-secondary);
  width: 100%;
  max-width: 1050px;
  max-height: 90vh;
  border-radius: 16px;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-premium);
  display: grid;
  grid-template-columns: 1fr;
  overflow-y: auto;
  transform: scale(0.95) translateY(15px);
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media (min-width: 768px) {
  .modal-wrapper {
    grid-template-columns: 0.35fr 0.65fr;
    overflow-y: hidden;
  }
}

.modal-backdrop.active .modal-wrapper {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background-color: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-muted);
  transition: var(--transition-fast);
  z-index: 10;
}

.modal-close-btn:hover {
  background-color: var(--accent-red-bg);
  border-color: var(--accent-red);
  color: var(--accent-red);
}

/* Modal Sidebar */
.modal-sidebar {
  background-color: #071527;
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border-glass);
}

@media (min-width: 768px) {
  .modal-sidebar {
    border-bottom: none;
    border-right: 1px solid var(--border-glass);
    height: 100%;
    overflow-y: auto;
  }
}

.sidebar-icon-box {
  width: 44px;
  height: 44px;
  background-color: var(--accent-red-bg);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--accent-red);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.sidebar-icon-box svg {
  width: 22px;
  height: 22px;
}

.modal-sidebar h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.modal-sidebar p {
  color: var(--text-light-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.sidebar-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.sidebar-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.bullet-check {
  width: 18px;
  height: 18px;
  color: var(--accent-green);
  flex-shrink: 0;
}

.sidebar-footer {
  margin-top: auto;
}

.sb-hotline-lbl {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-light-muted);
  margin-bottom: 0.25rem;
}

.sb-hotline-num {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  transition: var(--transition-fast);
}

.sb-hotline-num:hover {
  color: var(--accent-gold);
}

/* Modal Main Form */
.modal-content-panel {
  background-color: var(--bg-form-light);
  color: var(--text-dark-primary);
  padding: 3rem 2.25rem;
}

@media (min-width: 768px) {
  .modal-content-panel {
    height: 100%;
    overflow-y: auto;
  }
}

.modal-form-header {
  margin-bottom: 2.25rem;
}

.form-header-icon-title {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.calendar-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-blue);
}

.modal-form-header h3 {
  font-size: 1.5rem;
}

.modal-form-header p {
  color: var(--text-dark-muted);
  font-size: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark-primary);
}

.form-group .required {
  color: var(--accent-red);
}

.form-group .optional {
  font-weight: 400;
  color: var(--text-dark-muted);
}

.form-group input, .form-group textarea, .form-group select {
  padding: 0.75rem 1rem;
  background-color: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  color: var(--text-dark-primary);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  width: 100%;
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: #3b82f6;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
  outline: none;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '▼';
  font-size: 0.65rem;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dark-muted);
  pointer-events: none;
}

.form-group select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

/* Urgency Checkboxes Styled */
.urgency-section {
  margin: 1.75rem 0;
}

.urgency-section .section-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark-primary);
  margin-bottom: 0.75rem;
}

.urgency-radio-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 576px) {
  .urgency-radio-group {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

.urgency-option {
  position: relative;
  background-color: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  padding: 1rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: var(--transition-fast);
}

.urgency-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.urgency-option.active {
  background-color: #eff6ff;
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px #3b82f6;
}

.urgency-option:hover:not(.active) {
  background-color: #f1f5f9;
}

.urgency-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.urgency-sub {
  font-size: 0.7rem;
  color: var(--text-dark-muted);
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  background-color: var(--accent-blue);
  color: #fff;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-normal);
  margin-top: 1.75rem;
}

.submit-btn:hover {
  background-color: #0b1527;
  transform: translateY(-1px);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--text-dark-muted);
  margin-top: 1.25rem;
}

.secure-icon {
  width: 14px;
  height: 14px;
  color: var(--accent-green);
}

/* Specific area tags highlighting (primarily South Florida) */
.area-tag.primary-area {
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--accent-gold);
  background-color: rgba(245, 158, 11, 0.03);
}

.area-tag.primary-area:hover {
  border-color: var(--accent-gold);
  background-color: rgba(245, 158, 11, 0.08);
  color: #fff;
}

/* Hiring banner / badge enhancements */
.status-indicator.hiring-indicator {
  background-color: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.status-dot.pulsing.gold {
  background-color: var(--accent-gold);
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
  animation: pulse-gold 1.8s infinite;
}

.text-gold {
  color: var(--accent-gold) !important;
}

@keyframes pulse-gold {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(245, 158, 11, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

/* Hero announcement badge */
.hero-announcement-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(74, 79, 87, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(74, 79, 87, 0.5);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  color: #fff;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-red);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
  animation: pulse-red 1.8s infinite;
}

@keyframes pulse-red {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

/* Gradient Text for Headlines */
.gradient-text {
  background: linear-gradient(90deg, #ef4444 0%, #ffffff 50%, #d1d5db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

/* Testimonial Social Proof Banner */
.social-proof-banner {
  margin-top: 4rem;
  background: linear-gradient(135deg, rgba(27, 59, 111, 0.15) 0%, rgba(13, 21, 39, 0.4) 50%, rgba(70, 8, 9, 0.1) 100%);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

@media (min-width: 992px) {
  .social-proof-banner {
    flex-direction: row;
    padding: 2.25rem 3rem;
  }
}

.sp-left {
  flex-grow: 1;
  text-align: center;
}

@media (min-width: 992px) {
  .sp-left {
    text-align: left;
  }
}

.sp-left h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 992px) {
  .sp-left h4 {
    justify-content: flex-start;
  }
}

.sp-star-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.sp-left p {
  color: var(--text-light-muted);
  font-size: 0.875rem;
  max-width: 700px;
  line-height: 1.5;
}

.sp-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid rgba(59, 130, 246, 0.15);
  padding-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

@media (min-width: 992px) {
  .sp-right {
    border-top: none;
    padding-top: 0;
    width: auto;
    border-left: 1px solid rgba(59, 130, 246, 0.15);
    padding-left: 3rem;
  }
}

.sp-stat {
  text-align: center;
}

.sp-num {
  font-family: var(--font-headings);
  font-size: 1.85rem;
  font-weight: 800;
  display: block;
  line-height: 1.1;
}

.sp-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 0.25rem;
}

/* In-Page Contact Card Container */
.contact-card-container {
  display: grid;
  grid-template-columns: 1fr;
  background-color: var(--bg-secondary);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-premium);
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-card-container {
    grid-template-columns: 0.35fr 0.65fr;
  }
}

.contact-sidebar {
  background-color: #071527;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.contact-sidebar .alert-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-red);
}

.contact-sidebar h2 {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 800;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.contact-sidebar p {
  color: var(--text-light-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.contact-form-panel {
  background-color: var(--bg-form-light);
  color: var(--text-dark-primary);
  padding: 3rem 2.25rem;
}

/* Mobile Sticky Call Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0c182c;
  border-top: 1px solid rgba(59, 130, 246, 0.25);
  padding: 0.85rem 1.25rem;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-normal);
  transform: translateY(100%);
}

@media (max-width: 767px) {
  .mobile-sticky-bar {
    display: flex;
    transform: translateY(0);
  }
  
  body {
    padding-bottom: 70px; /* Make space for sticky bar */
  }
}

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

.ms-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light-muted);
  letter-spacing: 0.05em;
}

.ms-title {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-top: 0.15rem;
}

.ms-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent-red);
  color: #fff;
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.6rem 1.15rem;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.ms-btn svg {
  width: 14px;
  height: 14px;
}

/* Animations pulse slow */
.animate-pulse-slow {
  animation: pulse-slow 2.5s infinite ease-in-out;
}

@keyframes pulse-slow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(0.98);
  }
}
