/* ============================================
   CSS Variables & Base Styles
   ============================================ */

:root {
  --background: 249, 250, 251;
  --foreground: 31, 41, 55;
  --card: 255, 255, 255;
  --card-foreground: 31, 41, 55;
  --primary: 234, 88, 12;
  --primary-foreground: 255, 255, 255;
  --secondary: 243, 244, 246;
  --secondary-foreground: 31, 41, 55;
  --muted: 243, 244, 246;
  --muted-foreground: 107, 114, 128;
  --accent: 234, 88, 12;
  --accent-foreground: 255, 255, 255;
  --border: 229, 231, 235;
  --input: 229, 231, 235;
  --ring: 234, 88, 12;
  --radius: 0.5rem;
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --orange: #FF4D00;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: rgb(var(--background));
  color: rgb(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ============================================
   Navigation
   ============================================ */

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.main-nav.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-bottom-color: rgb(var(--border));
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: rgb(var(--foreground));
}

.logo-img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}

.logo-accent {
  color: rgb(var(--primary));
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.6rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgb(55, 65, 81);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: rgb(var(--primary));
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: rgb(var(--primary));
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.4rem;
  background-color: rgb(var(--primary));
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-nav:hover {
  background-color: rgba(var(--primary), 0.9);
  transform: scale(1.05);
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  color: rgb(var(--foreground));
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgb(var(--border));
  background-color: white;
}

.mobile-menu.active {
  display: flex;
}

.mobile-link {
  padding: 0.6rem 0.8rem;
  color: rgb(55, 65, 81);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.mobile-link:hover {
  color: rgb(var(--primary));
}

.btn-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 0.8rem;
  background-color: rgb(var(--primary));
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.4rem;
  text-decoration: none;
  margin-top: 0.4rem;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 2rem;
  background: linear-gradient(to bottom, rgb(249, 250, 251), white, rgb(249, 250, 251));
}

.construction-animation {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.animated-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(234, 88, 12, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 88, 12, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-flow 20s linear infinite;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

@keyframes grid-flow {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(50px);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0.5rem 0.8rem 1.5rem;
}

.hero-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.2rem;
  padding: 0.4rem 1.2rem;
  border-radius: 9999px;
  border: 1px solid rgba(var(--primary), 0.3);
  background-color: rgba(var(--primary), 0.05);
}

.hero-badge span {
  color: rgb(var(--primary));
  font-weight: 600;
  font-size: 0.7rem;
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
    line-height: 1.3;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.6rem;
    line-height: 1.3;
  }
}

.text-gray-900 {
  color: rgb(17, 24, 39);
}

.text-primary {
  color: rgb(var(--primary));
}

.hero-subtitle {
  font-size: 1rem;
  color: rgb(75, 85, 99);
  margin-bottom: 2.4rem;
  max-width: 33.6rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 1.6rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.3rem;
  background: linear-gradient(135deg, rgb(234, 88, 12) 0%, rgb(251, 146, 60) 50%, rgb(234, 88, 12) 100%);
  background-size: 200% 200%;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 0.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.3);
  animation: gradient-shift 3s ease infinite, glow-pulse 2s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(234, 88, 12, 0.3), 0 0 40px rgba(234, 88, 12, 0.15);
  }
  50% {
    box-shadow: 0 0 30px rgba(234, 88, 12, 0.5), 0 0 60px rgba(234, 88, 12, 0.25);
  }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.3rem;
  border: 2px solid rgb(209, 213, 219);
  color: rgb(17, 24, 39);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 0.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  border-color: rgb(var(--primary));
  background-color: rgba(var(--primary), 0.05);
  transform: scale(1.05);
}

.icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.icon-arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover .icon-arrow {
  transform: translateX(4px);
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, rgb(249, 250, 251), transparent);
}

/* Fade in animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-delay-1 {
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.1s forwards;
}

.fade-in-delay-2 {
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.2s forwards;
}

.fade-in-delay-3 {
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.4s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   Services Section
   ============================================ */

.services-section {
  position: relative;
  padding: 6.4rem 0;
  background-color: white;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 3.2rem;
}

.section-badge {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.4rem 1.2rem;
  border-radius: 9999px;
  border: 1px solid rgba(var(--primary), 0.3);
  background-color: rgba(var(--primary), 0.05);
}

.section-badge span {
  color: rgb(var(--primary));
  font-weight: 600;
  font-size: 0.7rem;
}

.section-badge.dark {
  border-color: rgba(234, 88, 12, 0.3);
  background-color: rgba(234, 88, 12, 0.05);
}

.section-badge.dark span {
  color: rgb(var(--primary));
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: rgb(17, 24, 39);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.4rem;
  }
}

.section-title.white {
  color: rgb(17, 24, 39);
}

.section-description {
  font-size: 1rem;
  color: rgb(75, 85, 99);
  max-width: 33.6rem;
  margin: 0 auto;
}

.section-description.gray {
  color: rgb(75, 85, 99);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 3.2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  position: relative;
  padding: 1.6rem;
  border-radius: 0.8rem;
  background: linear-gradient(to bottom right, rgb(249, 250, 251), white);
  border: 1px solid rgb(var(--border));
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(var(--primary), 0.5);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background-color: rgba(var(--primary), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: rgb(var(--primary));
  transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: rgba(var(--primary), 0.2);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: rgb(17, 24, 39);
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: rgb(var(--primary));
}

.service-card p {
  color: rgb(75, 85, 99);
  line-height: 1.75;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: rgb(var(--primary));
  font-weight: 600;
  font-size: 0.7rem;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.service-card:hover .service-link {
  gap: 0.5rem;
}

.service-link svg {
  transition: transform 0.3s ease;
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

.services-cta {
  text-align: center;
  margin-top: 3.2rem;
}

.services-cta p {
  color: rgb(75, 85, 99);
  margin-bottom: 1rem;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgb(var(--primary));
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cta-link:hover {
  color: rgba(var(--primary), 0.8);
}

.arrow-animate {
  display: inline-block;
  animation: arrowMove 1.5s ease-in-out infinite;
}

@keyframes arrowMove {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

/* ============================================
   Process Section
   ============================================ */

.process-section {
  position: relative;
  padding: 6.4rem 0;
  background: linear-gradient(to bottom, white, rgb(249, 250, 251));
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle, rgb(234, 88, 12) 1px, transparent 1px);
  background-size: 50px 50px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-card {
  position: relative;
  padding: 1.6rem;
  border-radius: 0.8rem;
  background: linear-gradient(to bottom right, rgb(249, 250, 251), white);
  border: 1px solid rgb(var(--border));
  transition: all 0.5s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.process-card:hover {
  transform: scale(1.05);
  border-color: rgba(234, 88, 12, 0.5);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.process-number {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(234, 88, 12, 0.2);
  transition: color 0.3s ease;
}

.process-card:hover .process-number {
  color: rgba(234, 88, 12, 0.3);
}

.process-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.8rem;
  background-color: rgba(234, 88, 12, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: rgb(var(--primary));
  transition: background-color 0.3s ease;
}

.process-card:hover .process-icon {
  background-color: rgba(234, 88, 12, 0.2);
}

.process-step {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgb(var(--primary));
  margin-bottom: 0.6rem;
}

.process-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgb(17, 24, 39);
  margin-bottom: 0.8rem;
}

.process-card p {
  color: rgb(75, 85, 99);
  line-height: 1.75;
}

.process-cta {
  text-align: center;
  margin-top: 3.2rem;
}

.btn-process {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.6rem;
  background: linear-gradient(135deg, rgb(234, 88, 12) 0%, rgb(251, 146, 60) 50%, rgb(234, 88, 12) 100%);
  background-size: 200% 200%;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: gradient-shift 3s ease infinite, glow-pulse 2s ease-in-out infinite;
  box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.3);
}

.btn-process:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(234, 88, 12, 0.4);
}

.text-orange {
  color: rgb(var(--primary));
}

/* ============================================
   Projects Section
   ============================================ */

.projects-section {
  position: relative;
  padding: 6.4rem 0;
  background-color: white;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background-color: white;
  border: 1px solid rgb(var(--border));
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(234, 88, 12, 0.5);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.project-image {
  position: relative;
  height: 12.8rem;
  overflow: hidden;
  background-color: rgb(249, 250, 251);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgb(249, 250, 251), rgb(229, 231, 235));
  color: rgb(107, 114, 128);
  font-size: 1rem;
  font-weight: 500;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
  pointer-events: none;
}

.project-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 9999px;
  background-color: rgb(234, 88, 12);
  backdrop-filter: blur(4px);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 2;
  white-space: nowrap;
}

.project-badges {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  display: flex;
  gap: 0.4rem;
  z-index: 2;
  flex-wrap: wrap;
}

.project-badges .project-badge {
  position: static;
}

.project-badge.badge-primary {
  background-color: rgb(234, 88, 12);
  color: white;
}

.project-badge.badge-secondary {
  background-color: rgb(251, 146, 60);
  color: white;
}

.project-content {
  padding: 1.2rem;
}

.project-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: rgb(17, 24, 39);
  transition: color 0.3s ease;
}

.project-card:hover .project-content h3 {
  color: rgb(var(--primary));
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-section {
  position: relative;
  padding: 6.4rem 0;
  background: linear-gradient(to bottom, white, rgb(249, 250, 251));
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid rgb(var(--border));
  border-radius: 0.75rem;
  padding: 0 1.5rem;
  background-color: white;
  transition: border-color 0.3s ease;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(234, 88, 12, 0.5);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  background: none;
  border: none;
  color: rgb(17, 24, 39);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: rgb(var(--primary));
}

.faq-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 0 1.2rem 0;
  margin: 0;
  opacity: 1;
  visibility: visible;
}

.faq-answer p {
  color: rgb(75, 85, 99);
  line-height: 1.75;
  margin: 0;
}

.faq-cta {
  text-align: center;
  margin-top: 2.4rem;
}

.faq-cta p {
  color: rgb(75, 85, 99);
  margin-bottom: 1rem;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
  position: relative;
  padding: 6.4rem 0;
  background-color: white;
  overflow: hidden;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
}

.contact-card {
  padding: 1.2rem;
  border-radius: 0.8rem;
  background: linear-gradient(to bottom right, rgb(249, 250, 251), white);
  border: 1px solid rgb(var(--border));
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgb(17, 24, 39);
  margin-bottom: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.6rem;
  background-color: rgba(234, 88, 12, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgb(var(--primary));
  transition: background-color 0.3s ease;
}

.contact-item:hover .contact-icon {
  background-color: rgba(234, 88, 12, 0.2);
}

.contact-label {
  font-size: 0.875rem;
  color: rgb(107, 114, 128);
  margin-bottom: 0.25rem;
}

.contact-value {
  color: rgb(17, 24, 39);
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-item:hover .contact-value {
  color: rgb(var(--primary));
}

.contact-urgent {
  padding: 1.2rem;
  border-radius: 0.8rem;
  background: linear-gradient(to bottom right, rgba(234, 88, 12, 0.1), rgba(234, 88, 12, 0.05));
  border: 1px solid rgba(234, 88, 12, 0.3);
}

.contact-urgent h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgb(17, 24, 39);
  margin-bottom: 0.6rem;
}

.contact-urgent p {
  color: rgb(75, 85, 99);
  font-size: 0.7rem;
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #25D366;
  color: white;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
}

.contact-form-wrapper {
  padding: 1.6rem;
  border-radius: 0.8rem;
  background: linear-gradient(to bottom right, rgb(249, 250, 251), white);
  border: 1px solid rgb(var(--border));
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 3;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: rgb(17, 24, 39);
  font-weight: 500;
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgb(var(--border));
  background-color: white;
  color: rgb(17, 24, 39);
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

@media (min-width: 768px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.875rem;
  }
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgb(107, 114, 128);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgb(var(--primary));
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.form-group textarea {
  resize: none;
  min-height: 7.2rem;
}

.file-upload {
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  z-index: 4;
  pointer-events: auto;
}

.file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 2px dashed rgb(var(--border));
  background-color: rgb(249, 250, 251);
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgb(107, 114, 128);
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.file-label:hover {
  border-color: rgba(234, 88, 12, 0.5);
  background-color: white;
  color: rgb(17, 24, 39);
}

.file-text {
  font-size: 0.875rem;
}

.file-hint {
  font-size: 0.875rem;
  color: rgb(107, 114, 128);
  margin-top: 0.25rem;
}

.btn-submit {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(135deg, rgb(234, 88, 12) 0%, rgb(251, 146, 60) 50%, rgb(234, 88, 12) 100%);
  background-size: 200% 200%;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0.4rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: gradient-shift 3s ease infinite, glow-pulse 2s ease-in-out infinite;
  box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.3);
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.btn-submit:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(234, 88, 12, 0.4);
}

.form-note {
  font-size: 0.875rem;
  color: rgb(107, 114, 128);
  text-align: center;
}

/* ============================================
   Multi-Step Form
   ============================================ */

.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  flex: 1;
  max-width: 120px;
}

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgb(229, 231, 235);
  color: rgb(107, 114, 128);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.progress-step.active .step-number {
  background: linear-gradient(135deg, rgb(234, 88, 12), rgb(251, 146, 60));
  color: white;
  border-color: rgb(234, 88, 12);
  box-shadow: 0 4px 6px -1px rgba(234, 88, 12, 0.3);
}

.progress-step.completed .step-number {
  background-color: rgb(234, 88, 12);
  color: white;
}

.progress-step.completed .step-number::after {
  content: '✓';
  font-size: 1.2rem;
}

.step-label {
  font-size: 0.7rem;
  color: rgb(107, 114, 128);
  font-weight: 500;
  text-align: center;
}

.progress-step.active .step-label {
  color: rgb(234, 88, 12);
  font-weight: 600;
}

.progress-line {
  flex: 1;
  height: 2px;
  background-color: rgb(229, 231, 235);
  margin: 0 0.5rem;
  max-width: 60px;
}

.progress-line.completed {
  background-color: rgb(234, 88, 12);
}

.form-step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgb(17, 24, 39);
  margin-bottom: 0.5rem;
}

.step-description {
  color: rgb(75, 85, 99);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.error-message {
  color: rgb(239, 68, 68);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: rgb(239, 68, 68);
}

.form-group input.error + .error-message,
.form-group textarea.error + .error-message {
  display: block;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: flex-end;
}

.btn-prev,
.btn-next {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.btn-prev {
  background-color: rgb(249, 250, 251);
  color: rgb(75, 85, 99);
}

.btn-prev:hover {
  background-color: rgb(229, 231, 235);
}

.btn-next {
  background: linear-gradient(135deg, rgb(234, 88, 12), rgb(251, 146, 60));
  color: white;
}

.btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(234, 88, 12, 0.3);
}

.form-success {
  text-align: center;
  padding: 3rem 1rem;
  animation: fadeIn 0.5s ease;
}

.success-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(234, 88, 12), rgb(251, 146, 60));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  animation: checkmark 0.6s ease;
  box-shadow: 0 10px 25px -5px rgba(234, 88, 12, 0.4);
}

@keyframes checkmark {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-icon svg {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: drawCheck 0.6s ease 0.3s forwards;
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.success-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: rgb(17, 24, 39);
  margin-bottom: 0.75rem;
}

.success-message {
  color: rgb(75, 85, 99);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.btn-reset {
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, rgb(234, 88, 12), rgb(251, 146, 60));
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-reset:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(234, 88, 12, 0.3);
}

.file-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.file-preview-item {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgb(var(--border));
}

.file-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-preview-item .remove-file {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background-color: rgb(249, 250, 251);
  color: rgb(75, 85, 99);
  padding: 2rem 0 1.2rem;
  border-top: 1px solid rgb(var(--border));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: rgb(17, 24, 39);
  margin-bottom: 0.6rem;
}

.footer-accent {
  color: rgb(var(--primary));
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: rgb(17, 24, 39);
  margin-bottom: 0.6rem;
}

.footer-col p {
  color: rgb(75, 85, 99);
  line-height: 1.5;
  margin-bottom: 0;
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.social-link {
  color: rgb(107, 114, 128);
  transition: color 0.3s ease;
}

.social-link:hover {
  color: rgb(var(--primary));
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.2rem;
}

.footer-col ul li a {
  color: rgb(107, 114, 128);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.8rem;
}

.footer-col ul li a:hover {
  color: rgb(var(--primary));
}

.footer-contact {
  list-style: none;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
}

.footer-contact li a {
  color: rgb(107, 114, 128);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: rgb(var(--primary));
}

.footer-bottom {
  border-top: 1px solid rgb(var(--border));
  padding-top: 1.2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgb(107, 114, 128);
  font-size: 0.75rem;
  margin: 0;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgb(107, 114, 128);
}

.footer-credit a {
  color: #F57224;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: #E06420;
}

/* ============================================
   WhatsApp Float Button
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 9999;
  width: 3.2rem;
  height: 3.2rem;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
  pointer-events: auto;
  cursor: pointer;
}

.whatsapp-float:hover {
  background-color: #20BA5A;
  transform: scale(1.1);
}

.whatsapp-float:active {
  transform: scale(0.9);
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: whatsappPulse 2s ease-out infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ============================================
   Scroll to Top Button
   ============================================ */

.scroll-top {
  position: fixed;
  bottom: 1.6rem;
  left: 1.6rem;
  z-index: 50;
  width: 2.4rem;
  height: 2.4rem;
  background-color: rgb(var(--primary));
  color: white;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.scroll-top.visible {
  display: flex;
}

.scroll-top:hover {
  background-color: rgba(var(--primary), 0.9);
  transform: translateY(-4px);
}

/* ============================================
   Utility Classes
   ============================================ */

.opacity-20 {
  opacity: 0.2;
}

.opacity-30 {
  opacity: 0.3;
}

.text-center {
  text-align: center;
}

/* ============================================
   Construction Animation Styles
   ============================================ */

.construction-animation::before {
  content: '';
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 8rem;
  height: 8rem;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='40' y='120' width='80' height='40' fill='%23EA580C' rx='4'/%3E%3Crect x='50' y='140' width='20' height='10' fill='%23C2410C'/%3E%3Crect x='90' y='140' width='20' height='10' fill='%23C2410C'/%3E%3Crect x='60' y='90' width='50' height='30' fill='%23EA580C' rx='3'/%3E%3Crect x='65' y='95' width='15' height='15' fill='%23FED7AA' opacity='0.8'/%3E%3Crect x='100' y='105' width='60' height='8' fill='%23C2410C' rx='2'/%3E%3Crect x='150' y='100' width='40' height='6' fill='%23C2410C' rx='2'/%3E%3Cpath d='M 185 95 L 195 95 L 200 105 L 185 105 Z' fill='%2378716C'/%3E%3Cellipse cx='55' cy='165' rx='15' ry='8' fill='%2344403C'/%3E%3Cellipse cx='95' cy='165' rx='15' ry='8' fill='%2344403C'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  animation: excavatorDig 4s ease-in-out infinite;
}

@keyframes excavatorDig {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(3deg);
  }
}

.construction-animation::after {
  content: '';
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='60' y='130' width='70' height='30' fill='%23EA580C' rx='3'/%3E%3Crect x='90' y='105' width='35' height='25' fill='%23EA580C' rx='2'/%3E%3Crect x='95' y='110' width='12' height='12' fill='%23FED7AA' opacity='0.8'/%3E%3Crect x='25' y='120' width='35' height='40' fill='%2378716C' rx='2'/%3E%3Crect x='55' y='155' width='80' height='12' fill='%2344403C' rx='6'/%3E%3Cellipse cx='70' cy='161' rx='8' ry='6' fill='%2357534E'/%3E%3Cellipse cx='100' cy='161' rx='8' ry='6' fill='%2357534E'/%3E%3Cellipse cx='120' cy='161' rx='8' ry='6' fill='%2357534E'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  animation: bulldozerPush 3s ease-in-out infinite;
}

@keyframes bulldozerPush {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
}

/* ============================================
   Service Pages Styles
   ============================================ */

.service-hero {
  position: relative;
  padding: 6.4rem 0 4rem;
  background: linear-gradient(to bottom, white, rgb(249, 250, 251));
  overflow: hidden;
}

.service-hero-content {
  max-width: 64rem;
  margin: 0 auto;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgb(107, 114, 128);
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.back-home:hover {
  color: rgb(var(--primary));
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-icon-large {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgb(234, 88, 12), rgb(251, 146, 60));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.3);
}

.service-badge {
  padding: 0.4rem 1.2rem;
  border-radius: 9999px;
  border: 1px solid rgba(234, 88, 12, 0.3);
  background-color: rgba(234, 88, 12, 0.1);
}

.service-badge span {
  color: rgb(var(--primary));
  font-weight: 600;
  font-size: 0.7rem;
}

.service-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  color: rgb(17, 24, 39);
}

@media (min-width: 768px) {
  .service-title {
    font-size: 3rem;
  }
}

.service-description {
  font-size: 1rem;
  color: rgb(75, 85, 99);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.service-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

@media (min-width: 640px) {
  .service-cta-buttons {
    flex-direction: row;
  }
}

.service-content {
  padding: 4rem 0;
  background-color: white;
}

.service-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .service-content-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.service-main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.content-block {
  padding: 0;
}

.content-block h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: rgb(17, 24, 39);
}

@media (min-width: 768px) {
  .content-block h2 {
    font-size: 2.25rem;
  }
}

.content-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-text p {
  color: rgb(75, 85, 99);
  line-height: 1.75;
  font-size: 0.9375rem;
}

.content-block.highlight {
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, rgba(234, 88, 12, 0.1), rgba(234, 88, 12, 0.05));
  border: 1px solid rgba(234, 88, 12, 0.2);
}

.service-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media (min-width: 768px) {
  .service-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-item {
  padding: 1.5rem;
  border-radius: 0.8rem;
  background: linear-gradient(to bottom right, rgb(249, 250, 251), white);
  border: 1px solid rgb(var(--border));
  transition: all 0.3s ease;
}

.service-item:hover {
  border-color: rgba(234, 88, 12, 0.5);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-item-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.6rem;
  background-color: rgba(234, 88, 12, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: rgb(var(--primary));
}

.service-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: rgb(17, 24, 39);
}

.service-item p {
  color: rgb(75, 85, 99);
  font-size: 0.875rem;
  line-height: 1.75;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-item {
  display: flex;
  gap: 1.5rem;
}

.process-step-number {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgb(234, 88, 12), rgb(251, 146, 60));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.3);
  transition: transform 0.3s ease;
}

.process-step-item:hover .process-step-number {
  transform: scale(1.1);
}

.process-step-content {
  flex: 1;
  padding-top: 0.5rem;
}

.process-step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: rgb(17, 24, 39);
}

.process-step-content p {
  color: rgb(75, 85, 99);
  line-height: 1.75;
  font-size: 0.9375rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: rgb(var(--primary));
}

.feature-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: rgb(17, 24, 39);
}

.feature-item p {
  color: rgb(75, 85, 99);
  font-size: 0.875rem;
  line-height: 1.75;
}

.related-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .related-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

.related-service-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, rgb(249, 250, 251), white);
  border: 1px solid rgb(var(--border));
  text-decoration: none;
  color: rgb(17, 24, 39);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.related-service-link:hover {
  border-color: rgba(234, 88, 12, 0.5);
  color: rgb(var(--primary));
  transform: translateX(4px);
}

.related-service-link svg {
  color: rgb(var(--primary));
  transition: transform 0.3s ease;
}

.related-service-link:hover svg {
  transform: translateX(4px);
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .service-sidebar {
    position: sticky;
    top: 6rem;
    height: fit-content;
  }
}

.sidebar-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, rgb(249, 250, 251), white);
  border: 1px solid rgb(var(--border));
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.sidebar-card.cta-card {
  background: linear-gradient(135deg, rgb(234, 88, 12), rgb(251, 146, 60));
  color: white;
  border: none;
}

.sidebar-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.sidebar-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: rgb(17, 24, 39);
}

.sidebar-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.btn-sidebar-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1.3rem;
  background-color: white;
  color: rgb(var(--primary));
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.btn-sidebar-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.02);
}

.btn-sidebar-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  text-decoration: none;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.btn-sidebar-secondary:hover {
  background-color: white;
  color: rgb(var(--primary));
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-links a {
  color: rgb(107, 114, 128);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.sidebar-links a:hover {
  color: rgb(var(--primary));
}

.sidebar-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgb(75, 85, 99);
  font-size: 0.875rem;
}

.sidebar-feature svg {
  color: rgb(var(--primary));
  flex-shrink: 0;
}

