:root {
  --bg-main: #060709;
  --bg-surface: #0D0F14;
  --bg-card: #12151C;
  --bg-card-hover: #191E28;
  
  --red-primary: #DC2626;
  --red-bright: #EF4444;
  --red-dark: #991B1B;
  --red-glow: rgba(220, 38, 38, 0.32);
  --red-subtle: rgba(220, 38, 38, 0.12);

  --emerald: #10B981;
  --text-main: #FFFFFF;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-red: rgba(220, 38, 38, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  padding-bottom: 70px;
  overflow-x: hidden;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

.container {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}

/* Minimal Navbar */
.navbar {
  background: rgba(13, 15, 20, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
  padding: 8px 0;
}

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

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.6));
  transition: transform 0.2s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link-simple {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-link-simple:hover {
  color: var(--red-bright);
}

@media (max-width: 500px) {
  .nav-link-simple {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-size: 0.92rem;
  transition: all 0.25s ease;
}

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

.btn-red {
  background: linear-gradient(135deg, var(--red-bright) 0%, var(--red-dark) 100%);
  color: #FFFFFF !important;
  box-shadow: 0 4px 16px var(--red-glow);
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(220, 38, 38, 0.5);
}

.btn-emerald {
  background: var(--emerald);
  color: #FFFFFF;
}

.btn-emerald:hover {
  background: #059669;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  padding: 14px;
}

.btn-chip {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-chip:hover {
  border-color: var(--red-bright);
  background: var(--bg-card);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 85px 0 65px;
  background: radial-gradient(circle at 85% 15%, rgba(220, 38, 38, 0.15), transparent 45%),
              radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.03), transparent 45%);
}

.hero-layout {
  max-width: 820px;
}

.badge-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.badge {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid transparent;
}

.badge-red {
  background: var(--red-subtle);
  color: var(--red-bright);
  border-color: rgba(220, 38, 38, 0.4);
}

.badge-surface {
  background: var(--bg-surface);
  color: var(--text-secondary);
  border-color: var(--border-color);
}

.badge-crimson {
  background: rgba(239, 68, 68, 0.16);
  color: #F87171;
  border-color: rgba(239, 68, 68, 0.4);
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.highlight-red {
  background: linear-gradient(110deg, #FFFFFF 20%, var(--red-bright) 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.trust-metrics {
  display: inline-flex;
  background: rgba(13, 15, 20, 0.75);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px 24px;
  gap: 24px;
  align-items: center;
}

.metric strong {
  display: block;
  font-size: 1.12rem;
  font-weight: 800;
}

.metric span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.metric-sep {
  width: 1px;
  height: 30px;
  background: var(--border-color);
}

/* Sections */
.section {
  padding: 75px 0;
}

.section-dark {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-header-center {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 48px;
}

.eyebrow {
  color: var(--red-bright);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 6px;
}

.section-header-flex h2,
.section-header-center h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.1rem;
  margin-bottom: 6px;
}

.sub-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Carousel */
.carousel-nav-buttons {
  display: flex;
  gap: 10px;
}

.carousel-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-arrow:hover {
  background: var(--red-primary);
  border-color: var(--red-primary);
  transform: scale(1.05);
}

.carousel-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 15px;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.carousel-container.active-drag {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 270px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

@media (max-width: 1024px) {
  .service-card {
    flex: 0 0 320px;
  }
}

@media (max-width: 600px) {
  .service-card {
    flex: 0 0 86%;
  }
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-red);
}

.service-card.featured {
  border-color: rgba(220, 38, 38, 0.45);
}

.service-img-wrap {
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #020408;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  pointer-events: none;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.04);
}

.service-body {
  padding: 22px;
}

.service-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background: var(--red-bright);
  width: 24px;
  border-radius: 4px;
}

/* Areas & Map Grid */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  margin-bottom: 12px;
}

.lead-text {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1rem;
}

.areas-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.area-item {
  background: var(--bg-card);
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.area-icon {
  color: var(--red-bright);
  display: flex;
  align-items: center;
}

.map-wrapper {
  width: 100%;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.google-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Quality Pillars Section */
.quality-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pillar-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-red);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--red-subtle);
  color: var(--red-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pillar-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pillar-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Grouped Form Layout */
.form-layout {
  max-width: 660px;
}

.estimate-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 36px 30px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
}

.form-intro {
  text-align: center;
  margin-bottom: 24px;
}

.form-intro h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.9rem;
  margin: 6px 0 8px;
}

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

.quick-contact {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.main-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-section-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-section-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red-bright);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.form-group-sub {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sub-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.form-chip-sm {
  flex: 1;
  min-width: 110px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.form-chip-sm:hover {
  border-color: var(--border-red);
  color: #FFFFFF;
}

.form-chip-sm.active {
  background: var(--red-subtle);
  border-color: var(--red-bright);
  color: #FFFFFF;
  box-shadow: 0 0 10px var(--red-glow);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 600px) {
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.form-control {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-control label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-control input,
.form-control select,
.form-control textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control select {
  cursor: pointer;
}

.form-control input:focus,
.form-control select:focus,
.form-control textarea:focus {
  outline: none;
  border-color: var(--red-bright);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.field-tip {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: -4px;
}

.form-status-msg {
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  margin-top: 10px;
  line-height: 1.4;
}

.form-status-msg.success { color: var(--emerald); }
.form-status-msg.error { color: #F87171; }

/* Compact High-Value Footer */
.footer-compact {
  background: #030406;
  border-top: 1px solid var(--border-color);
  padding: 28px 0 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 680px;
}

.footer-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.f-badge-dot {
  color: var(--border-color);
}

.footer-mission {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.icon-dock {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.dock-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.25s ease;
}

.dock-link:hover {
  transform: translateY(-2px) scale(1.06);
  color: #FFFFFF;
}

.dock-call:hover {
  background: #10B981;
  border-color: #10B981;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

.dock-mail:hover {
  background: var(--red-primary);
  border-color: var(--red-primary);
  box-shadow: 0 0 12px var(--red-glow);
}

.dock-tiktok:hover {
  background: #000000;
  border-color: #FE2C55;
  box-shadow: 0 0 12px rgba(254, 44, 85, 0.4);
}

.dock-insta:hover {
  background: #E1306C;
  border-color: #E1306C;
  box-shadow: 0 0 12px rgba(225, 48, 108, 0.4);
}

.dock-fb:hover {
  background: #1877F2;
  border-color: #1877F2;
  box-shadow: 0 0 12px rgba(24, 119, 242, 0.4);
}

.minimal-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Mobile Sticky Bar */
.mobile-sticky {
  display: none;
}

@media (max-width: 820px) {
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .map-wrapper {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .brand-logo {
    height: 46px;
  }
  .estimate-box {
    padding: 22px 16px;
  }
  .trust-metrics {
    width: 100%;
    justify-content: space-around;
    padding: 12px 14px;
    gap: 10px;
  }
  .mobile-sticky {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: rgba(13, 15, 20, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    z-index: 1000;
  }
  .mob-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #FFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
  }
  .mob-call { background: var(--emerald); }
  .mob-text { background: #334155; }
  .mob-estimate { background: var(--red-primary); }
}
