/* ===================================
   CUANTA - CSS ACTUALIZADO 100% FIEL
   =================================== */

:root {
  /* Colors - Exactos del diseño */
  --bg-navy: #1e2540;
  --bg-darker: #14182b;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.65);
  --bg:#151c35;
  /* Accent Colors */
  --accent-purple: #8b7ab8;
  --accent-purple-dark: #7361a9;
  --accent-blue: #6ba3e8;
  --accent-light-blue: #7db4f0;
  --color_14: 38,113,147;
  /* UI Elements */
  --border: rgba(255, 255, 255, 0.1);
  --panel: rgba(139, 122, 184, 0.85);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  --radius: 12px;
  
  /* Layout */
  --max-width: 1280px;
  --max-header:980px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.85;
}

img {
  max-width: 100%;
  display: block;
}

/* ===================================
   Utility Classes
   =================================== */

.container {
  width: min(var(--max-header), calc(100% - 3rem));
  margin: 0 auto;
}

.header{
max-width: 100%;
  background-color: var(--bg);
  display: flex;
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 0;
  

}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus {
  left: 10px;
  z-index: 9999;
}

/* ===================================
   Header
   =================================== */

.site-headers {
  max-width: 100%;
  position: sticky !important;
  top: 0;
  height: 95px;
  z-index: 99;

}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 40px;
  width: auto;
}

/* ========== NAVIGATION ========== */
.site-nav{
  display:flex;
  gap: .9rem;
  align-items:center;
}

.site-nav > a{
  color: var(--text);
  opacity: .9;
  padding: .45rem .6rem;
  border-radius: 12px;
  transition: all 0.2s ease;
  position: relative;
}

.site-nav > a:hover{
  background: rgba(255,255,255,.06);
  text-decoration:none;
}

.site-nav > a.active {
  color: var(--accent);
  opacity: 1;
}

.active {
  color: rgb(var(--color_14)) !important;
  opacity: 1;
}

/* ========== HAMBURGER MENU ========== */
.nav-toggle{
  display:none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: 12px;
  padding: .55rem .6rem;
  color: var(--text);
  cursor: pointer;
}

.burger{
  display:block;
  width: 22px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: all 0.3s ease;
}

.burger::before, .burger::after{
  content:"";
  position:absolute;
  left:0;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

.burger::before{ top:-7px; }
.burger::after{ top:7px; }

/* Hamburger animation */
.nav-toggle[aria-expanded="true"] .burger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .burger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .burger::after {
  top: 0;
  transform: rotate(-45deg);
}

.sr-only{
  position:absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* ===================================
   Hero Section
   =================================== */

.hero {
  display: flex;
  flex-direction: column;  /* ← Apila verticalmente */
  align-items: center;
  min-height: auto;
  padding-bottom: 5rem;
}

/* Video Background - Cubre Hero + Servicios */
.hero-video-container {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%);
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(30, 37, 64, 0.92) 0%,
    rgba(30, 37, 64, 0.88) 50%,
    rgba(30, 37, 64, 0.82) 100%
  );
}

.hero .services-section .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);  /* 2 columnas */
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.hero {
  display: flex;
  flex-direction: column;
}

/* Grid 2x2 centrado */
.hero .services-section .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1280px;
  margin: 0 auto;
}

/* Card individual 50/50 */
.service-card {
  grid-template-columns: 1fr 1fr;
}

/* Responsive: 1 columna */
@media (max-width: 1024px) {
  .hero .services-section .container {
    grid-template-columns: 1fr;
  }
}

.hero-video {
  position: absolute;
  padding-top: 15rem;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(30, 37, 64, 0.92) 0%,
    rgba(30, 37, 64, 0.88) 50%,
    rgba(30, 37, 64, 0.82) 100%
  );
}

/* Wave Pattern - Actualizado */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 220px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.4;
}

.hero-wave::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.25) 1px, transparent 0);
  background-size: 24px 24px;
  mask-image: 
    linear-gradient(to top, rgba(0, 0, 0, 1) 0%, transparent 100%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 10px,
      rgba(0, 0, 0, 0.03) 10px,
      rgba(0, 0, 0, 0.03) 20px
    );
  mask-composite: intersect;
  -webkit-mask-image: 
    linear-gradient(to top, rgba(0, 0, 0, 1) 0%, transparent 100%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 10px,
      rgba(0, 0, 0, 0.03) 10px,
      rgba(0, 0, 0, 0.03) 20px
    );
  -webkit-mask-composite: source-in;
  animation: waveMove 20s linear infinite;
}

@keyframes waveMove {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(24px) translateY(0);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 4fr auto 1fr;
  gap: 3rem;
  align-items: start;
  padding: 9rem 3rem 14rem 5rem;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.hero-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 3vw, 4.5rem);
  line-height: 1.05;
  color: var(--text-primary);
  margin: 0;
}

.title-colon {
  color: var(--accent-purple-dark);
}

.hero-subtitle {
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  font-weight: normal;
  padding-top: 10px;

}

/* Hero Divider - LÍNEA VERTICAL */
.hero-divider {
  width: 3px;
  min-height: 180px;
  background: var(--accent-purple);
  border-radius: 2px;
  align-self: start;
  margin-top: 1rem;
}

/* Hero Aside */
.hero-aside {
  display: flex;
  flex-direction: column;  /* ← Apila verticalmente */
  gap: 0.5rem;            /* ← Espacio entre líneas */
  margin-top: 15px;
  width: 281px;

}

.hero-lead {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3em;
  /* ← Bold */
}
.hero-space {
  font-size: 24px;
  
}

.hero-lead-subtitle { 
  font-size: 24px;
  line-height: 1.3em;
  letter-spacing: 0.02em;
}
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent-blue);
  color: var(--text-primary);
  border-color: var(--accent-blue);
}

.btn-primary:hover {
  background: var(--accent-light-blue);
  border-color: var(--accent-light-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 163, 232, 0.3);
  opacity: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

/* ===================================
   Footer
   =================================== */

.site-footer {
  position: relative;
  padding: 4rem 0 2rem;
  background: var(--bg-darker);
  overflow: hidden;
}

/* Footer Video Background */
.footer-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.footer-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.footer-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 24, 43, 0.92);
}

/* Footer Content */
.footer-content {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

/* Footer Column */
.footer-col {
  display: flex;
  flex-direction: column;
}

/* Footer Links */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav > a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

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

/* Footer Submenu */
.footer-submenu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-left: 1.5rem;
  margin-top: 0.5rem;
}

.footer-submenu-item {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-submenu-item:hover {
  color: var(--text-secondary);
}

/* Footer Info */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin: 0;
}

/* Footer Address */
.footer-address {
  display: flex;
  gap: 0.75rem;
  align-items: start;
}

.footer-address div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-address p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Footer Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-contact-item a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: var(--text-primary);
}

.footer-icon {
  color: var(--accent-blue);
  flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
}


.site-nav > a:hover,
.nav-dropdown-toggle:hover {
  color: var(--text-primary);
  opacity: 1;
}

/* Dropdown Navigation */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: rgba(20, 24, 43, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%) translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: background 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: transparent;
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text-primary);
}

.burger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  position: relative;
  transition: all 0.3s ease;
}

.burger::before,
.burger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.burger::before {
  top: -8px;
}

.burger::after {
  top: 8px;
}
/* ===================================
   Service Cards - Dentro de Hero Section
   =================================== */

/* Container de las cards dentro de hero */
.hero .services-section,
.hero > .container:last-child {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
}

.hero .services-section .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 0 1.5rem;
}

/* Service Cards */
.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
  background: rgba(20, 24, 43, 0.4);
}

.service-card-reverse {
  grid-template-columns: 1fr 1fr;
}

.service-card-reverse .service-image {
  order: 2;
}

.service-card-reverse .service-content {
  order: 1;
}

/* Service Image */
.service-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1f3a 0%, #2a3050 100%);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
  opacity: 1;
}

/* Service Content */
.service-content {
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.service-title {
  position: absolute;
  top: 0.5rem;
  left: 0;
  right: 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin: 0;
  padding: 0 2rem;
  z-index: 3;
}

.service-panel {
  background: var(--panel);
  backdrop-filter: blur(10px);
  padding: 1rem 1rem 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.service-panel p {
  font-size: 15px;
  color: var(--text-primary);
  margin: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-top: auto;
  padding-top: 1rem;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 0.75rem;
  opacity: 1;
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ===================================
   Sections
   =================================== */

.section {
  padding: 5rem 0;
  position: relative;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  border-top: 1px solid var(--border);
}

h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}

.subhead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0 0 3rem;
  max-width: 65ch;
}

/* ===================================
   Two Column Layout
   =================================== */

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.checklist {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 2rem;
  margin: 0.75rem 0;
  color: var(--text-secondary);
  font-size: 1rem;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-blue);
  font-weight: 700;
  font-size: 1.25rem;
}

.media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  min-height: 300px;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

/* ===================================
   Contact Section
   =================================== */

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--accent-blue);
}

.contact-card p {
  margin: 0.25rem 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* Form */
.form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: grid;
  gap: 1.25rem;
}

label {
  display: grid;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.9375rem;
}

input,
textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(107, 163, 232, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin: 0;
  min-height: 1.5rem;
  color: var(--accent-blue);
  font-size: 0.875rem;
}


/* ===================================
   Footer
   =================================== */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  background: var(--bg-darker);
}

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

.footer-row p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-row a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ===================================
   Responsive Design
   =================================== */

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

  .hero-divider {
    display: none;
  }

  .hero-aside {
    max-width: 100%;
    padding-top: 0;
  }

  .services-section .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-card,
  .service-card-reverse {
    grid-template-columns: 1fr;
  }

  .service-card-reverse .service-image {
    order: 1;
  }

  .service-card-reverse .service-content {
    order: 2;
  }

  .service-title {
    position: relative;
    top: 0;
    padding: 1.5rem 2rem 0;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: calc(100% - 2rem);
  }

  /* Mobile Menu */
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: min(320px, 100%);
    height: calc(100vh - var(--header-height));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(30, 37, 64, 0.98);
    backdrop-filter: blur(10px);
    border-left: 1px solid var(--border);
    padding: 1.5rem;
    transition: right 0.3s ease;
  }

  .site-nav.is-open {
    right: 0;
  }

  .site-nav a {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }

  /* Hero */
  .hero {
    min-height: calc(100vh - var(--header-height));
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-divider {
    display: none;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  /* Service Cards */
  .services-section .container {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 350px;
  }

  .service-image {
    min-height: 250px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-lead {
    font-size: 0.9375rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .subhead {
    font-size: 1rem;
  }

  .service-panel {
    padding: 2rem 1.5rem 1.5rem;
  }
}

/* ===================================
   Animations
   =================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.service-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

/* ===================================
   Print Styles
   =================================== */

@media print {
  .site-header,
  .hero-video-container,
  .hero-wave,
  .nav-toggle,
  .site-footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}