/* ------------------------------------------------------------
   NODOSIT – Premium UI/UX Design System (Corporate SaaS Style)
   Colors:
     - Deep Dark (Backgrounds): #030712, #070d19, #0a1f44
     - Tech Blue (Accents): #3b82f6, #007bff
     - Accent Orange (CTA): #d97706, #ea580c
     - Neutral Gray: #9ca3af, #f3f4f6, #333333
   Fonts: Poppins (Headings) & Inter (Body)
   ------------------------------------------------------------ */

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --color-bg-deep: #030712;
  --color-bg-dark: #070d19;
  --color-bg-blue-dark: #0a1f44;
  --color-accent-blue: #3b82f6;
  --color-accent-orange: #d97706;
  --color-accent-orange-hover: #ea580c;
  
  --color-text-white: #ffffff;
  --color-text-gray: #9ca3af;
  --color-text-dark: #1f2937;
  --color-text-muted: #6b7280;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-deep);
  color: var(--color-text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography & Titles */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

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

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-gray);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.btn-icon {
  flex-shrink: 0;
}

.btn-acceder {
  background: linear-gradient(135deg, var(--color-accent-orange), var(--color-accent-orange-hover));
  color: var(--color-text-white);
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.35);
}

.btn-acceder:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.5);
  background: linear-gradient(135deg, var(--color-accent-orange-hover), #f97316);
}

.btn-cotizar {
  background: linear-gradient(135deg, #ea580c, #f97316);
  color: var(--color-text-white);
  padding: 0.85rem 1.75rem;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4);
}

.btn-cotizar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(234, 88, 12, 0.6);
  background: linear-gradient(135deg, #f97316, #fb923c);
}

.btn-whatsapp-hero {
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text-white);
  padding: 0.85rem 1.75rem;
}

.btn-whatsapp-hero:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--color-accent-blue);
  color: var(--color-accent-blue);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--color-accent-blue);
  color: var(--color-text-white);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* ------------------------------------------------------------
   Header
   ------------------------------------------------------------ */
.site-header {
  background-color: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.65rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s;
}

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

.logo img {
  height: 60px;
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.03);
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-menu a {
  color: var(--color-text-gray);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

.nav-menu a:hover {
  color: var(--color-text-white);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: var(--color-accent-blue);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

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

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.nav-menu.open {
  display: flex;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    align-items: center;
    justify-content: center;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .nav-menu a {
    font-size: 1.5rem;
  }
}

/* ------------------------------------------------------------
   Hero Section
   ------------------------------------------------------------ */
.hero-section {
  position: relative;
  padding: 7rem 0 0 0;
  background: radial-gradient(circle at 10% 20%, rgba(10, 31, 68, 0.45) 0%, rgba(3, 7, 18, 1) 90%);
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding-bottom: 6rem;
}

.hero-text {
  flex: 1;
  max-width: 620px;
  animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background-color: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.18);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  color: var(--color-text-white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background-color: var(--color-accent-orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-accent-orange);
}

.hero-text h1 {
  font-size: 3.3rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.gradient-text {
  background: linear-gradient(135deg, #818cf8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-gray);
  margin-bottom: 2.25rem;
  font-weight: 300;
  max-width: 540px;
}

/* Quick Services Row */
.hero-quick-services {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
}

.quick-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.qs-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.12);
  color: var(--color-accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  transition: all 0.3s ease;
}

.quick-service-item span {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--color-text-gray);
  line-height: 1.2;
}

.quick-service-item:hover .qs-icon {
  background-color: var(--color-accent-blue);
  color: var(--color-text-white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.quick-service-item:hover span {
  color: var(--color-text-white);
}

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

/* Laptop Graphic Mockup */
.hero-image-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 580px;
  animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-image-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.22) 0%, rgba(3, 7, 18, 0) 70%);
  z-index: 1;
  filter: blur(40px);
  pointer-events: none;
}

.hero-mockup-img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  border-radius: 8px;
  filter: drop-shadow(0 25px 40px rgba(0,0,0,0.6));
  transition: transform 0.5s ease;
}

.hero-mockup-img:hover {
  transform: translateY(-5px) scale(1.01);
}

/* Hero Bottom Bar */
.hero-bottom-bar {
  background-color: var(--color-bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
}

.bottom-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

.bar-badge span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-gray);
}

/* ------------------------------------------------------------
   Services Section (Clean White Design)
   ------------------------------------------------------------ */
.services-section {
  background-color: #ffffff;
  color: var(--color-text-dark);
  padding: 6rem 0;
  position: relative;
}

.services-section .section-title {
  color: var(--color-bg-deep);
}

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

.service-card {
  background-color: #f8fafc;
  border-radius: 12px;
  padding: 2.25rem 2rem;
  border: 1px solid #f1f5f9;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card:hover {
  transform: translateY(-5px);
  background-color: #ffffff;
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.08);
}

.service-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: rgba(59, 130, 246, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-card:hover .icon {
  background-color: var(--color-accent-blue);
  color: #ffffff;
}

.service-card:hover .icon svg {
  stroke: #ffffff;
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--color-bg-deep);
  font-weight: 600;
}

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

.services-cta {
  text-align: center;
}

/* ------------------------------------------------------------
   Why Choose Section (Dark Blue Minimalist)
   ------------------------------------------------------------ */
.why-section {
  background-color: var(--color-bg-blue-dark);
  color: var(--color-text-white);
  padding: 6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.why-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.why-card:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(59, 130, 246, 0.25);
  transform: translateY(-4px);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  color: var(--color-accent-blue);
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  background-color: var(--color-accent-blue);
  color: var(--color-text-white);
}

.why-card:hover .why-icon svg {
  stroke: #ffffff;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--color-text-gray);
  line-height: 1.4;
}

/* ------------------------------------------------------------
   About Section
   ------------------------------------------------------------ */
.about-section {
  background-color: #f8fafc;
  color: var(--color-text-dark);
  padding: 6rem 0;
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-text {
  flex: 1;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

/* Metrics Row */
.metrics {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin-top: 2.25rem;
}

.metrics li {
  flex: 1;
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  border: 1px solid #f1f5f9;
  text-align: center;
}

.metric-num {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-accent-blue);
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, var(--color-accent-blue), #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* ------------------------------------------------------------
   Contact Section
   ------------------------------------------------------------ */
.contact-section {
  background-color: var(--color-bg-deep);
  color: var(--color-text-white);
  padding: 6.5rem 0;
  position: relative;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}

.contact-intro {
  font-size: 1.1rem;
  color: var(--color-text-gray);
  margin: 1rem 0 2.5rem 0;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
}

.btn-whatsapp-direct {
  background-color: #25d366;
  color: var(--color-text-white);
  padding: 0.85rem 1.75rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-direct:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* Form Card */
.contact-card {
  background-color: var(--color-bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.contact-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--color-text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent-blue);
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.15);
}

.btn-submit {
  width: 100%;
  background-color: var(--color-accent-blue);
  color: var(--color-text-white);
  padding: 1rem;
  font-size: 1rem;
}

.btn-submit:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.form-message {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  display: none;
}

.form-message.success {
  display: block;
  background-color: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
}

.form-message.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.site-footer {
  background-color: var(--color-bg-dark);
  color: var(--color-text-gray);
  padding: 4rem 0 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 42px;
}

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

.footer-nav a {
  color: var(--color-text-gray);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--color-text-white);
}

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

.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  color: var(--color-text-white);
}

.footer-copyright {
  font-size: 0.85rem;
}

/* ------------------------------------------------------------
   Animations
   ------------------------------------------------------------ */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* ------------------------------------------------------------
   Clientes Satisfechos (Infinite Logo Slider)
   ------------------------------------------------------------ */
.clientes-section {
  background-color: #ffffff;
  padding: 4.5rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
  position: relative;
}

.clientes-title {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  text-align: center;
  color: var(--color-text-dark);
  margin-bottom: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  opacity: 0.95;
}

.clientes-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
}

/* Fading edge gradients for premium finish */
.clientes-slider-container::before,
.clientes-slider-container::after {
  content: "";
  height: 100%;
  width: 150px;
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.clientes-slider-container::before {
  left: 0;
  top: 0;
  background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0));
}

.clientes-slider-container::after {
  right: 0;
  top: 0;
  background: linear-gradient(to left, #ffffff 10%, rgba(255, 255, 255, 0));
}

.clientes-track {
  display: flex;
  width: max-content;
  animation: scrollLeftToRight 30s linear infinite;
}

.clientes-group {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding-right: 5rem;
}

.cliente-logo-wrapper {
  width: 172px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.cliente-logo-wrapper img {
  width: 172px;
  height: 70px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cliente-logo-wrapper:hover {
  transform: scale(1.08);
}

.cliente-logo-wrapper:hover img {
  filter: grayscale(0%) opacity(1);
}

@keyframes scrollLeftToRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* Pause animation on hover for user interaction */
.clientes-track:hover {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .clientes-section {
    padding: 3rem 0;
  }
  .clientes-title {
    font-size: 1.2rem;
    margin-bottom: 1.75rem;
  }
  .clientes-slider-container::before,
  .clientes-slider-container::after {
    width: 60px;
  }
  .clientes-group {
    gap: 3rem;
    padding-right: 3rem;
  }
  .cliente-logo-wrapper {
    width: 120px;
    height: 50px;
  }
  .cliente-logo-wrapper img {
    width: 120px;
    height: 50px;
  }
}

/* ------------------------------------------------------------
   Responsive Adjustments (Mobile First)
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .bottom-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-inner {
    flex-direction: column;
    gap: 3rem;
  }
  
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero-text h1 {
    font-size: 2.4rem;
  }
  
  .hero-image-wrapper {
    display: none;
  }
  
  .hero-quick-services {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bottom-bar-inner {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-quick-services {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .metrics {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Scroll Reveal classes */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

