.how-mobile-swiper {
  display: none;
}
.how-desktop-grid {
  display: grid;
}

/* Force the desktop grid to hide on mobile to avoid duplicates */
@media (max-width: 767px) {
  .how-mobile-swiper {
    display: block !important;
  }
  .how-desktop-grid {
    display: none !important;
  }
  .howSwiper {
    padding-bottom: 2rem;
  }
}

/* Ensure desktop grid shows on larger screens, swiper hidden */
@media (min-width: 768px) {
  .how-mobile-swiper {
    display: none !important;
  }
  .how-desktop-grid {
    display: grid !important;
  }
}
:root {
  --primary-color: #b80000;
  --primary-dark: #930001;
  --secondary-color: #eb222d;
  --accent-color: #b80000;
  --black: #000000;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  z-index: 1000;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  height: 35px;
  width: auto;
}

@media (min-width: 768px) {
  .logo {
    height: 40px;
  }
}

.nav-center {
  display: none;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: center;
}

@media (min-width: 1024px) {
  .nav-center {
    display: flex;
  }
}

.social-proof-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-700);
}

.trust-indicator {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--gray-600);
  font-weight: 600;
}

.trust-indicator i {
  color: var(--secondary-color);
  font-size: 0.875rem;
}

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

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

@media (max-width: 1023px) {
  .social-links {
    display: none;
  }

  .nav-center {
    display: none;
  }
}

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

@media (min-width: 768px) {
  .nav-actions {
    gap: 1rem;
  }
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
}

.phone-link i {
  font-size: 1.25rem;
  width: 32px;
  height: 32px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.phone-link:hover i {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.phone-text {
  display: none;
}

@media (min-width: 768px) {
  .phone-link {
    font-size: 1rem;
  }

  .phone-link i {
    font-size: 1rem;
    width: auto;
    height: auto;
    background: none;
    color: var(--primary-color);
    border-radius: 0;
    box-shadow: none;
  }

  .phone-link:hover i {
    background: none;
    color: var(--primary-dark);
    transform: none;
  }

  .phone-text {
    display: inline;
  }
}

.cta-btn {
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2f2d30 0%, #2f2d30 100%);
  color: white;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

/* Mobile hero text centering */
@media (max-width: 1023px) {
  .hero-text {
    text-align: center;
    padding-top: 1rem;
  }

  .hero-stats {
    justify-content: center;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://orilla.co.za/wp-content/uploads/2022/03/map1.png')
    center/cover;
  opacity: 0.15;
  z-index: 1;
}

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

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-text h1 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 3.25rem;
    margin-bottom: 1.5rem;
  }
}

.highlight {
  color: var(--secondary-color);
}

.hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--gray-200);
  font-weight: 500;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

.hero-text p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--gray-300);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-text p {
    font-size: 1.125rem;
  }
}

.business-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(4, auto);
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-stats {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
}

.stat {
  text-align: center;
}

@media (max-width: 767px) {
  .stat {
    padding: 0.5rem;
  }
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary-color);
  display: block;
}

@media (max-width: 767px) {
  .stat-number {
    font-size: 1.5rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-300);
}

@media (max-width: 767px) {
  .stat-label {
    font-size: 0.75rem;
  }
}

/* Form Card */
.form-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-2xl);
  color: var(--gray-800);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.form-header p {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.progress-bar {
  margin-bottom: 2rem;
  position: relative;
}

.progress-bar-track {
  background: var(--gray-200);
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  height: 100%;
  width: 25%;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.progress-steps {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10px;
  z-index: 2;
}

.progress-step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-step .step-number {
  width: 25px !important;
  height: 25px !important;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--gray-300);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}

.progress-step.active .step-number {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: white !important;
  transform: scale(1.3) !important;
  width: 26px !important;
  height: 26px !important;
}

.progress-step.completed .step-number {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: white !important;
}

.step-label {
  position: absolute;
  top: 29px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: var(--gray-500);
  white-space: nowrap;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 50px;
  z-index: 1;
}

.progress-step.active .step-label {
  color: var(--primary-color);
  font-weight: 600;
}

.progress-step.completed .step-label {
  color: var(--secondary-color);
  font-weight: 600;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-control {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  background: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(47, 74, 161, 0.1);
}

/* Dropdown specific styling */
select.form-control {
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 3rem;
  cursor: pointer;
}

select.form-control:focus {
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%232f4aa1" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
}

select.form-control option {
  padding: 0.5rem;
  font-size: 1rem;
  background: white;
  color: var(--gray-800);
}

.form-control.error {
  border-color: #ef4444;
}

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

@media (min-width: 768px) {
  .checkbox-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkbox-item:hover {
  border-color: var(--primary-color);
  background: rgba(47, 74, 161, 0.05);
}

.checkbox-item input {
  margin: 0;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.btn-secondary {
  background: var(--gray-200);
  color: var(--gray-700);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--gray-300);
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  padding: 0.9rem 2rem; /* slightly taller for long labels */
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap; /* prevent wrapping "Get My Free Consultation" */
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:disabled {
  background: var(--gray-400);
  cursor: not-allowed;
  transform: none;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--gray-600);
  font-weight: 600;
}

.trust-badge i {
  color: var(--secondary-color) !important;
  font-size: 0.875rem;
}

.ssl-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--secondary-color) !important;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
}

@media (max-width: 767px) {
  .trust-badges {
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .trust-badge {
    font-size: 0.7rem;
  }
}

/* Trust Indicators */
.trust-indicators {
  background: var(--gray-50);
  padding: 3rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.trust-text h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.trust-text p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* About Us Section */
.about-us {
  padding: 4rem 0;
  background: white;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .about-content {
    flex-direction: row;
    gap: 4rem;
  }
}

.about-header {
  text-align: left;
  margin-bottom: 2rem;
}

.about-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.about-video {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 900px) {
  .about-text,
  .about-video {
    flex: 1;
    width: auto;
  }
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 480px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 768px) {
  .about-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  min-height: 160px;
}

/* About Stats List */
.about-stats-list {
  margin-bottom: 3rem;
}

.stats-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-bullet {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--gray-700);
}

.stat-bullet i {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.stat-bullet strong {
  color: var(--primary-color);
  font-weight: 700;
}

@media (min-width: 768px) {
  .stats-bullets {
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
  }

  .stat-bullet {
    font-size: 1.125rem;
    padding: 1.25rem 0;
  }
}

.stat-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.stat-content p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.4;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .mission-vision {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.mission,
.smart-goals {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  background: var(--gray-50);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.mission,
.smart-goals,
.stat-item {
  min-width: 0;
}

.mission-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.mission-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.mission-content p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

.cta-section {
  text-align: left;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 280px;
  max-height: 640px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin: 0 auto;
  aspect-ratio: 9/16;
}

.about-video .video-container,
.about-video iframe,
.about-video video {
  display: block;
  max-width: 100%;
}

.video-container iframe,
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-caption {
  margin-top: 1.5rem;
  text-align: center;
}

.video-caption h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.video-caption p {
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* USP Section */
.usp-section {
  padding: 4rem 0;
  background: var(--gray-50);
}

/* Mobile Swiper for USP Cards */
.usp-mobile-swiper {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

@media (min-width: 769px) {
  .usp-mobile-swiper {
    display: none !important;
  }
}

.uspSwiper {
  position: relative;
  width: 100%;
  overflow: visible;
  padding-bottom: 2rem;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
  padding-left: 1rem;
  padding-right: 1rem;
}

.uspSwiper .swiper-slide {
  width: auto;
  height: auto;
  will-change: transform;
  padding: 0 0.5rem;
}

.uspSwiper .swiper-pagination {
  position: relative;
  bottom: auto;
  margin-top: 1rem;
  text-align: center;
}

.uspSwiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--gray-300);
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 4px;
}

.uspSwiper .swiper-pagination-bullet-active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Desktop Grid */
.usp-desktop-grid {
  display: none !important;
}

@media (min-width: 769px) {
  .usp-desktop-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .usp-desktop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.usp-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* Mobile specific styling */
@media (max-width: 768px) {
  .uspSwiper .usp-card {
    min-width: 280px;
    max-width: 300px;
    margin: 0 auto;
    min-height: 300px;
    padding: 1.5rem;
  }
}

.usp-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.usp-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.usp-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  text-align: center;
  padding: 2rem 1rem;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-xl);
  animation: pulse 2s infinite;
  text-decoration: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Footer */
.footer {
  background: #2f2d30 !important;
  color: white;
  padding: 3rem 0 2rem;
}

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

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.footer-section p,
.footer-section li {
  color: var(--gray-300);
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 2rem;
  text-align: center;
  color: var(--gray-400);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Responsive Design */
@media (max-width: 767px) {
  .hero-text h1 {
    font-size: 2rem;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .form-card {
    padding: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .container {
    padding: 0 1rem;
  }

  /* Better mobile spacing */
  .hero {
    padding: 6rem 0 3rem;
  }

  .hero-text {
    padding-top: 1.5rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .hero-content {
    gap: 2rem;
  }

  /* Mobile typography improvements */
  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .section-header p {
    font-size: 1rem;
  }

  /* Mobile form improvements */
  .form-header h3 {
    font-size: 1.25rem;
  }

  .form-header p {
    font-size: 0.875rem;
  }

  /* Mobile stats improvements */
  .hero-stats {
    margin-top: 1.5rem;
  }

  /* Mobile business badge */
  .business-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  /* Better mobile touch targets */
  .cta-btn {
    font-size: 1rem;
    min-height: 48px;
  }

  /* Improved mobile form */
  .form-control {
    padding: 1rem;
    font-size: 16px; /* Prevents zoom on iOS */
    min-height: 48px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 1rem 1.5rem;
    min-height: 48px;
    font-size: 1rem;
  }

  /* Mobile progress steps */
  .progress-step .step-number {
    width: 20px !important;
    height: 20px !important;
    font-size: 0.6rem !important;
    border-width: 1px !important;
  }

  .progress-step.active .step-number {
    width: 18px !important;
    height: 18px !important;
  }

  .step-label {
    font-size: 0.7rem;
    top: 20px;
    min-width: 45px;
    max-width: 60px;
  }

  .progress-bar {
    margin-bottom: 2.5rem;
  }

  /* Mobile dropdown improvements */
  select.form-control {
    background-size: 16px;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
  }

  /* Better mobile spacing for sections */
  .usp-section,
  .about-us {
    padding: 3rem 0;
  }

  /* Mobile-optimized trust indicators */
  .trust-grid {
    gap: 1.5rem;
  }

  .trust-item {
    gap: 0.75rem;
  }

  .trust-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* WhatsApp button mobile positioning */
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 55px;
    height: 55px;
    font-size: 1.25rem;
  }

  .usp-mobile-swiper {
    display: block !important;
  }

  .usp-desktop-grid {
    display: none !important;
  }
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Trusted Clients */
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (min-width: 480px) {
  .clients-grid {
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .clients-grid {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .clients-grid {
    gap: 2rem;
  }
}

.client-logo {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
}

.client-logo img {
  max-height: 60px;
  max-width: 170px;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%);
}

/* Testimonials Carousel */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

/* How It Works - mobile cards */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.step {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.testimonialsSwiper {
  padding-bottom: 3rem;
}

.testimonialsSwiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

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

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.testimonial-rating .stars {
  color: #ffc107;
  font-size: 1.25rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--gray-700);
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.testimonial-author span {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.testimonialsSwiper .swiper-pagination {
  bottom: 0;
}

.testimonialsSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--gray-300);
  opacity: 1;
  margin: 0 4px;
}

.testimonialsSwiper .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/* FAQ */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  background: var(--gray-50);
  padding: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--gray-100);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--gray-700);
  line-height: 1.6;
  border-top: 1px solid var(--gray-200);
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr !important;
    align-items: start;
    gap: 2rem !important;
  }
  .faq-media {
    display: flex !important;
  }
}

/* Smooth Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile/Desktop Text Visibility */
.mobile-text {
  display: inline;
}

.desktop-text {
  display: none;
}

@media (min-width: 768px) {
  .mobile-text {
    display: none;
  }

  .desktop-text {
    display: inline;
  }
}

/* CTA Section */
.cta-section .cta-btn:hover {
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.95) !important;
}

/* Multi-step form spacing tweaks */
.form-card .progress-bar {
  margin-bottom: 3.5rem; /* more breathing room between steps and fields */
}

.form-card .progress-steps {
  gap: 0.75rem; /* ensure step number + label have space if grid/flex supports gap */
}

.form-card .progress-steps .step-label {
  display: block;
  margin-top: 0.25rem;
}

/* Ensure a consistent top offset for the first field row */
.form-card .form-step .form-group:first-of-type {
  margin-top: 0.25rem;
}

/* Footer Social Links */
.footer-social-links {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

.footer-social-icon {
  color: var(--gray-600);
  font-size: 1.25rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social-icon:hover {
  color: var(--primary-color);
}

@media (max-width: 767px) {
  .footer-social-links {
    justify-content: center;
  }
}

/* Footer Contact Links */
.footer-section a {
  color: inherit;
  text-decoration: none;
}

.footer-section a:hover {
  color: inherit;
  text-decoration: none;
}

/* Footer Titles */
.footer-section h4 {
  color: white !important;
}

/* Interactive Elements */
.interactive-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.interactive-card:active {
  transform: translateY(-2px);
}

/* Services Layout */
.services-mobile-swiper {
  display: block;
  margin-top: 2rem;
}

.services-desktop-grid {
  display: none;
}

@media (min-width: 768px) {
  .services-mobile-swiper {
    display: none;
  }

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

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  /* cursor: pointer; */
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

/* Pulse Animation for Interactive Elements */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 74, 161, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(47, 74, 161, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(47, 74, 161, 0);
  }
}

.interactive-card.pulse {
  animation: pulse 2s infinite;
}