@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- PREMIUM LIGHT THEME VARIABLES --- */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  ----bg-light: #f1f1f1;

  --accent-red: #dc2626;
  /* Vibrant Brand Red */
  --accent-red-rgb: 220, 38, 38;
  --accent-red-hover: #b91c1c;

  --accent-blue: #0284c7;
  /* Brand Tech Blue */
  --accent-blue-rgb: 2, 132, 199;
  --accent-blue-hover: #0369a1;

  --text-primary: #111827;
  /* Deep Charcoal Typography */
  --text-secondary: #4b5563;
  /* Slate Grey Typography */
  --text-muted: #9ca3af;
  /* Soft Muted Grey */
  --text-white: #ffffff;
  /* White */

  --border-soft: rgba(17, 24, 39, 0.08);
  /* Minimalist border */
  --border-red: rgba(220, 38, 38, 0.18);
  --border-red-focus: rgba(220, 38, 38, 0.45);

  --glow-red: 0 10px 30px rgba(220, 38, 38, 0.06);
  --glow-red-strong: 0 15px 40px rgba(220, 38, 38, 0.14);
  --glow-blue: 0 10px 30px rgba(2, 132, 199, 0.08);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --transition-smooth: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

/* --- RESET & GLOBAL STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(----bg-light);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  line-height: 1.65;
  background-color: var(--bg-light);
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: rgba(220, 38, 38, 0.12);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* --- LIGHT AMBIENT GLOW BACKDROPS --- */
.ambient-glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.035) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.glow-top-right {
  top: -15vw;
  right: -15vw;
}

.glow-mid-left {
  top: 130vw;
  left: -25vw;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.025) 0%, rgba(255, 255, 255, 0) 70%);
}

.glow-bottom-right {
  bottom: 12vw;
  right: -15vw;
}

/* --- LIGHT GLASSMORPHISM CARDS --- */
.glass-panel {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: 0 10px 40px -10px rgba(17, 24, 39, 0.04);
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: rgba(220, 38, 38, 0.15);
  box-shadow: 0 20px 50px -10px rgba(17, 24, 39, 0.08);
  transform: translateY(-2px);
}

.glass-panel-gold {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-red);
  border-radius: 24px;
  box-shadow: var(--glow-red), 0 15px 45px -10px rgba(17, 24, 39, 0.06);
}

/* --- HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 7%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.05);
  transition: var(--transition-smooth);
}

header.scrolled {
  height: 75px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(17, 24, 39, 0.03);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Styled text mimicking the red & charcoal logo */
.logo span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.logo span .red-text {
  color: var(--accent-red);
}

.logo-badge {
  font-size: 0.6rem;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--accent-blue);
  color: var(--accent-blue);
  font-weight: 600;
  letter-spacing: 0.08em;
  background: rgba(2, 132, 199, 0.03);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

nav ul li a {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

nav ul li a:hover,
nav ul li.active a {
  color: var(--accent-red);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: var(--transition-smooth);
}

nav ul li a:hover::after,
nav ul li.active a::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* --- HAMBURGER MENU --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 0;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Scrim overlay for active mobile drawer */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(17, 24, 39, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1040;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

body.no-scroll {
  overflow: hidden !important;
}


.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.nav-phone:hover {
  color: var(--accent-red);
}

.nav-phone i {
  font-size: 0.95rem;
  color: var(--accent-red);
}

/* --- BUTTONS --- */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-gold {
  /* Rebranded to Brand Red Primary */
  background: linear-gradient(135deg, var(--accent-red) 0%, #991b1b 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.2);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--accent-red-hover) 0%, var(--accent-red) 100%);
  transform: translateY(-2px);
  box-shadow: var(--glow-red-strong);
}

.btn-outline {
  background: #ffffff;
  color: var(--text-primary);
  border: 1px solid rgba(17, 24, 39, 0.12);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.btn-outline:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
  transform: translateY(-2px);
}

.btn-outline-gold {
  /* Rebranded to Brand Red Outline */
  background: transparent;
  color: var(--accent-red);
  border: 1px solid var(--accent-red);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.03);
}

.btn-outline-gold:hover {
  background: var(--accent-red);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--glow-red-strong);
}

.btn-arrow {
  transition: var(--transition-fast);
}

.btn-premium:hover .btn-arrow {
  transform: translateX(4px);
}

/* --- MAIN SECTIONS CONTAINER --- */
main {
  padding-top: 85px;
}

.section-container {
  padding: 7% 7%;
  position: relative;
  z-index: 1;
}

.section-header {
  max-width: 750px;
  margin-bottom: 4.5rem;
  text-align: left;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-red);
  margin-bottom: 1rem;
  border: 1px solid rgba(220, 38, 38, 0.15);
  padding: 5px 14px;
  border-radius: 4px;
  background: rgba(220, 38, 38, 0.03);
}

.section-title {
  font-size: 2.85rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- 1. HERO SECTION WITH LEAD FORM --- */
.hero {
  position: relative;
  min-height: calc(92vh - 85px);
  display: flex;
  align-items: center;
  padding: 0 7%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Premium light overlay with a clean fade-out */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 6%;
  align-items: center;
}

.hero-text {
  max-width: 780px;
}

.hero-badge-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-red);
  border: 1px solid rgba(220, 38, 38, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(220, 38, 38, 0.04);
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.hero-title span {
  color: var(--accent-red);
  position: relative;
}

.hero-subtitle {
  font-size: 1.18rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.75;
  max-width: 650px;
}

.hero-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  padding-top: 1rem;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-trust-val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-red);
}

.hero-trust-label {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- HERO GLASS FORM --- */
.lead-form-container {
  z-index: 2;
  position: relative;
}

.lead-form {
  padding: 40px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(220, 38, 38, 0.15);
}

.lead-form-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.lead-form-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.8rem;
  line-height: 1.5;
}

.form-group {
  position: relative;
  margin-bottom: 1.4rem;
}

.form-input {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--accent-red);
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.08);
  outline: none;
}

.form-label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 0.9rem;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.form-input:focus~.form-label,
.form-input:not(:placeholder-shown)~.form-label {
  top: 0;
  font-size: 0.72rem;
  color: var(--accent-red);
  background: #ffffff;
  padding: 0 6px;
  border-radius: 4px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  font-size: 0.98rem;
  margin-top: 0.8rem;
}

/* --- 2. SERVICE CATEGORIES / OFFERINGS --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  box-shadow: 0 8px 30px -10px rgba(17, 24, 39, 0.05);
  border: 1px solid rgba(17, 24, 39, 0.05);
}

.service-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Premium light gradient scrim */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 1;
}

.service-card:hover .service-img {
  transform: scale(1.06);
}

.service-content {
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.service-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.342);
  border: 1px solid rgba(220, 38, 38, 0.534);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-white);
}

.service-desc {
  color: var(--text-white);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-red);
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* --- 3. TRUST & GUARANTEE CARDS --- */
.trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.trust-card {
  padding: 45px 40px;
  border-radius: 24px;
  text-align: left;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 10px 30px -10px rgba(17, 24, 39, 0.03);
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-red);
}

.trust-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.04);
  border: 1px solid rgba(220, 38, 38, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent-red);
  margin-bottom: 2rem;
}

.trust-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.trust-card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.trust-card-metric {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--accent-blue);
  /* Tech Blue */
  display: flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  padding-top: 1.2rem;
  margin-top: auto;
}

/* --- 4. TECHNOLOGY / QUALITY ASSURANCE SECTION --- */
#tech-section {
  padding-top: 3.5% !important;
}

@media (max-width: 992px) {
  #tech-section {
    padding-top: 4% !important;
  }
}

.tech-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 7%;
  align-items: center;
}

.tech-visual-hub {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 520px;
  box-shadow: 0 15px 45px rgba(17, 24, 39, 0.08);
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.tech-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95);
}

.tech-overlay-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  padding: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 24, 39, 0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tech-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--accent-red);
}

.tech-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-blue);
  animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(2, 132, 199, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(2, 132, 199, 0);
  }
}

.tech-checklist {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.tech-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.tech-bullet {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(220, 38, 38, 0.2);
  background: rgba(220, 38, 38, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.tech-item-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.tech-item-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* --- 5. COST ESTIMATOR & INVESTMENT CALCULATOR CTA --- */
.calc-cta-section {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 6%;
  align-items: stretch;
}

.calc-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calc-interactive-card {
  padding: 40px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(220, 38, 38, 0.15);
  box-shadow: var(--glow-red), 0 10px 40px -10px rgba(0, 0, 0, 0.04);
}

.calc-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-tertiary);
  padding: 5px;
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  margin-bottom: 2.5rem;
}

.calc-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.calc-tab-btn.active {
  background: #ffffff;
  color: var(--accent-red);
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.03);
}

.calc-control {
  margin-bottom: 2rem;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.calc-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.calc-val {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--accent-red);
}

.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 3px;
  background: var(--bg-tertiary);
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-red);
  cursor: pointer;
  box-shadow: var(--glow-red-strong);
  transition: var(--transition-fast);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 2.5rem;
}

.calc-option-btn {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.1);
  padding: 12px 6px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-smooth);
}

.calc-option-btn.active {
  border-color: var(--accent-red);
  color: var(--accent-red);
  background: rgba(220, 38, 38, 0.03);
}

.calc-results-box {
  background: rgba(220, 38, 38, 0.03);
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: 16px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
  align-items: center;
}

.calc-result-title {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.calc-result-val {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-red);
  line-height: 1;
}

/* --- 6. PROPERTY PACKAGES / CATEGORIES --- */
.packages-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  padding-bottom: 1.5rem;
}

.filter-tabs {
  display: flex;
  gap: 12px;
}

.filter-tab-btn {
  background: transparent;
  border: 1px solid rgba(17, 24, 39, 0.08);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 26px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-tab-btn.active {
  border-color: var(--accent-red);
  color: var(--accent-red);
  background: rgba(220, 38, 38, 0.04);
}

.search-filter-box {
  display: flex;
  gap: 12px;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.prop-card {
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 8px 30px -10px rgba(17, 24, 39, 0.04);
}

.prop-img-box {
  position: relative;
  height: 255px;
  overflow: hidden;
}

.prop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.prop-card:hover .prop-img {
  transform: scale(1.05);
}

.prop-status-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--accent-red);
  color: var(--accent-red);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.prop-apprec-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--accent-blue);
  /* Rebranded to tech blue */
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
}

.prop-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.prop-meta-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  align-items: center;
}

.prop-locality {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.prop-locality i {
  color: var(--accent-red);
}

.prop-title {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.prop-specs-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 1.5rem;
  border-top: 1px solid rgba(17, 24, 39, 0.05);
  border-bottom: 1px solid rgba(17, 24, 39, 0.05);
  padding: 1.2rem 0;
}

.prop-spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.prop-spec-item i {
  color: var(--accent-red);
}

.prop-trust-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.8rem;
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(17, 24, 39, 0.04);
}

.prop-trust-score {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.prop-trust-score i {
  color: var(--accent-blue);
}

.score-badge {
  background: rgba(2, 132, 199, 0.06);
  color: var(--accent-blue);
  border: 1px solid rgba(2, 132, 199, 0.2);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.prop-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.prop-price-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.prop-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-red);
}

/* --- 7. PREMIUM OFFERINGS SHOWCASE --- */
.premium-showcase-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7%;
  align-items: center;
}

.showcase-slider-wrapper {
  position: relative;
}

.showcase-slider {
  border-radius: 24px;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 15px 40px rgba(17, 24, 39, 0.08);
  border: 1px solid rgba(17, 24, 39, 0.05);
}

.showcase-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.showcase-feature-item {
  display: flex;
  gap: 20px;
}

.showcase-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 1px solid rgba(220, 38, 38, 0.2);
  background: rgba(220, 38, 38, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.showcase-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.showcase-feature-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* --- 8. CLIENT TESTIMONIALS --- */
.testimonial-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testi-card {
  padding: 45px 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.03);
}

.testi-quote {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  position: relative;
}

.testi-quote::before {
  content: '“';
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 4.5rem;
  color: rgba(220, 38, 38, 0.06);
  font-family: serif;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(17, 24, 39, 0.05);
  padding-top: 1.5rem;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-red);
}

.testi-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.testi-role {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.testi-stars {
  color: var(--accent-red);
  font-size: 0.78rem;
  display: flex;
  gap: 2px;
  margin-top: 4px;
}

/* --- 9. FEATURED BANGALORE PROJECTS (LOCALITY HUB) --- */
.localities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.locality-card {
  padding: 40px 35px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 10px 35px -10px rgba(17, 24, 39, 0.03);
}

.locality-card-top {
  margin-bottom: 2.5rem;
}

.locality-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.locality-card-tag {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-red);
  border: 1px solid rgba(220, 38, 38, 0.18);
  padding: 2px 10px;
  border-radius: 4px;
  background: rgba(220, 38, 38, 0.03);
}

.locality-card-title {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-primary);
}

.locality-card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.locality-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(17, 24, 39, 0.05);
  border-bottom: 1px solid rgba(17, 24, 39, 0.05);
  padding: 1.5rem 0;
  margin-bottom: 1.8rem;
}

.locality-stat-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.locality-stat-val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-red);
}

.locality-stat-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
}

.locality-card-verdict {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-style: italic;
  border-left: 2px solid var(--accent-red);
  padding-left: 10px;
}

/* --- 10. STEP-BY-STEP PROCESS SECTION --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-card {
  padding: 45px 30px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.02);
}

.process-step-num {
  position: absolute;
  top: 25px;
  right: 30px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(220, 38, 38, 0.06);
  line-height: 1;
}

.process-icon-box {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.04);
  border: 1px solid rgba(220, 38, 38, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  font-size: 1.4rem;
  margin: 0 auto 2rem auto;
}

.process-card-title {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.process-card-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* --- 11. FINAL STRONG CTA --- */
.final-cta {
  padding: 6% 0;
}

.cta-banner {
  padding: 85px;
  border-radius: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(220, 38, 38, 0.2);
  box-shadow: var(--glow-red), 0 20px 50px -10px rgba(17, 24, 39, 0.06);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(220, 38, 38, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.cta-title {
  font-size: 3.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  max-width: 850px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.cta-desc {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 2.8rem;
  max-width: 650px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* --- 12. FOOTER --- */
footer {
  background: #f8fafc;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  padding: 90px 7% 50px 7%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 1.25fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(17, 24, 39, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  background: #ffffff;
}

.social-icon:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
  background: rgba(220, 38, 38, 0.03);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-links li a:hover {
  color: var(--accent-red);
  padding-left: 4px;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-newsletter p {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 30px;
  padding: 12px 20px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  flex-grow: 1;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent-red);
}

.newsletter-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--accent-red);
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.newsletter-btn:hover {
  background: var(--accent-red-hover);
  box-shadow: var(--glow-red-strong);
}

.footer-bottom {
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
}

.footer-bottom-links a:hover {
  color: var(--accent-red);
}

/* --- LEAD MODAL WINDOW --- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.45);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: 90%;
  max-width: 550px;
  position: relative;
  transform: scale(0.92);
  transition: var(--transition-smooth);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
}

.modal-close:hover {
  color: var(--accent-red);
}

/* --- MULTI-STEP LEAD WIZARD --- */
.wizard-steps-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.2rem;
  position: relative;
}

.wizard-steps-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--bg-tertiary);
  z-index: 1;
}

.indicator-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(17, 24, 39, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.indicator-step.active {
  border-color: var(--accent-red);
  color: var(--accent-red);
  box-shadow: var(--glow-red);
  background: rgba(220, 38, 38, 0.03);
}

.indicator-step.completed {
  border-color: var(--accent-blue);
  background: var(--accent-blue);
  color: #ffffff;
}

.wizard-panel {
  display: none;
}

.wizard-panel.active {
  display: block;
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wizard-option-card {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: #ffffff;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.wizard-option-card:hover {
  border-color: rgba(220, 38, 38, 0.25);
  background: rgba(220, 38, 38, 0.01);
}

.wizard-option-card.selected {
  border-color: var(--accent-red);
  background: rgba(220, 38, 38, 0.03);
  box-shadow: var(--glow-red);
}

.wizard-option-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
}

.wizard-option-card.selected .wizard-option-icon {
  background: var(--accent-red);
  color: #ffffff;
}

.wizard-option-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.wizard-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 15px;
}

.wizard-navigation button {
  flex-grow: 1;
}

/* --- SUCCESS STATE WIDGET --- */
.success-screen {
  text-align: center;
  padding: 20px 0;
}

.success-icon-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(2, 132, 199, 0.06);
  border: 1.5px solid var(--accent-blue);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 2rem auto;
  box-shadow: var(--glow-blue);
  animation: scaleUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes scaleUp {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* --- DYNAMIC CUSTOM VIEWS FOR THE APP --- */
.view-panel {
  display: none;
}

.view-panel.active {
  display: block;
  animation: fadeInView 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInView {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4%;
  }
}

@media (max-width: 992px) {
  header {
    padding: 0 4% !important;
    height: 75px !important;
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    justify-content: stretch !important;
  }

  header.scrolled {
    height: 70px !important;
  }

  .logo {
    grid-column: 1 !important;
    justify-self: start !important;
    display: flex !important;
    align-items: center !important;
  }

  .logo img {
    height: 42px !important; /* Slightly smaller logo for cleaner mobile layout */
    width: auto !important;
  }

  .nav-cta {
    grid-column: 2 !important;
    justify-self: center !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  .nav-phone {
    display: none !important; /* Always hide phone link on tablet/mobile navbar */
  }

  .hamburger {
    display: flex !important;
    grid-column: 3 !important;
    justify-self: end !important;
  }

  /* Hamburger Slide-In Drawer */
  header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -10px 0 40px rgba(17, 24, 39, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 40px;
    transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1050;
  }

  header nav.active {
    right: 0;
  }

  header nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }

  header nav ul li a {
    font-size: 1.15rem;
    font-weight: 600;
    display: block;
    padding: 8px 0;
    width: 100%;
  }

  header nav ul li a::after {
    display: none; /* Hide standard underline on mobile menu */
  }

  .section-container {
    padding: 8% 4%;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-text {
    text-align: center;
    margin: 0 auto;
    max-width: 650px;
  }

  .hero-badge-container {
    justify-content: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  /* Keep trust badges in one single horizontal line with native touch scrolling */
  .hero-trust-badges {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 30px !important;
    padding: 1.25rem 0 !important;
    border-top: 1px solid rgba(17, 24, 39, 0.06);
    width: 100%;
    justify-content: flex-start !important;
    scrollbar-width: none; /* Firefox */
  }

  .hero-trust-badges::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
  }

  .hero-trust-item {
    flex: 0 0 auto !important;
    scroll-snap-align: start;
    min-width: 160px;
    text-align: left !important;
  }

  .services-grid,
  .trust-cards-grid,
  .properties-grid,
  .testimonial-carousel,
  .localities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .tech-container,
  .calc-cta-section,
  .premium-showcase-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .logo span {
    font-size: 1.15rem;
  }

  .btn-premium {
    padding: 11px 22px;
    font-size: 0.85rem;
  }

  /* Bleed metrics list off screen for nice thumb swiping feel */
  .hero-trust-badges {
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-left: -4% !important;
    margin-right: -4% !important;
    width: calc(100% + 8%) !important;
  }

  .services-grid,
  .trust-cards-grid,
  .properties-grid,
  .testimonial-carousel,
  .localities-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .cta-banner {
    padding: 40px 20px;
  }

  .cta-title {
    font-size: 2.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .cta-buttons button,
  .cta-buttons a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .packages-filter-bar {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  .search-filter-box input {
    width: 100% !important;
  }
  
  .lead-form {
    padding: 30px 20px;
  }
}