/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: #0a0a0a;
  --foreground: #f2f2f2;
  --card: #121212;
  --card-foreground: #f2f2f2;
  --primary: #00d4aa;
  --primary-foreground: #050505;
  --secondary: #1f1f1f;
  --secondary-foreground: #f2f2f2;
  --muted: #1f1f1f;
  --muted-foreground: #999999;
  --border: #292929;
  --ring: #00d4aa;
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Oswald', sans-serif;
}
.ubicacion { 
	display: flex; 
	padding:0 15px; 
	align-items: center;
    justify-content: center;  
}
.ubicacion a img { 
	padding: 10px;  
}
.btn-whatsapp {
        display:block;
        width:70px;
        height:70px;
        color#fff;
        position: fixed;
        right:17px;
        bottom:17px;
        border-radius:50%;
        line-height:50px;
        text-align:center;
        z-index:999;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}
p { font-size: 16px; }
a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea {
  font-family: inherit;
}

/* Validacion */
.contact-form  #sendmessage {
  color: #14469d;
  border: 1px solid #14469d;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-form #sendmessage.show, .contact-form #errormessage.show, .contact-form .show {
  display: block;
}

.form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 16px;
}
/* Fin Validacion */

/* ===== TYPOGRAPHY ===== */
.font-heading {
  font-family: var(--font-heading);
}

.font-sans {
  font-family: var(--font-sans);
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(242, 242, 242, 0.8);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-cta {
  border: 1px solid var(--primary);
  background: rgba(0, 212, 170, 0.1);
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}

.mobile-menu.open {
  max-height: 400px;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px;
}

.mobile-menu-inner a {
  padding: 12px 0;
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(242, 242, 242, 0.8);
  border-bottom: 1px solid rgba(41, 41, 41, 0.5);
  transition: color 0.3s;
}

.mobile-menu-inner a:hover {
  color: var(--primary);
}

.mobile-menu-cta {
  margin-top: 12px;
  border: 1px solid var(--primary) !important;
  background: rgba(0, 212, 170, 0.1);
  text-align: center;
  padding: 12px 24px !important;
  color: var(--primary) !important;
  border-bottom: none !important;
  transition: all 0.3s;
}

.mobile-menu-cta:hover {
  background: var(--primary) !important;
  color: var(--primary-foreground) !important;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }
  .navbar-logo img {
    height: 36px;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.6), var(--background));
}

.hero-overlay-side {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.7), transparent, rgba(10, 10, 10, 0.7));
}

.hero-top-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 128px;
  background: linear-gradient(to bottom, transparent, rgba(0, 212, 170, 0.4));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1024px;
  margin: 0 auto;
  padding: 96px 24px 64px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(0, 212, 170, 0.3);
  background: rgba(0, 212, 170, 0.05);
  padding: 8px 20px;
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.hero-badge span:last-child {
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin-bottom: 24px;
}

.hero h1 .accent {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--muted-foreground);
  margin-bottom: 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-description {
  font-size: 16px;
  color: rgba(153, 153, 153, 0.8);
  margin-bottom: 40px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-foreground);
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  box-shadow: 0 4px 20px rgba(0, 212, 170, 0.25);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid rgba(242, 242, 242, 0.3);
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--foreground);
  transition: all 0.3s;
  background: transparent;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-tagline {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.hero-tagline-line {
  width: 48px;
  height: 1px;
  background: rgba(0, 212, 170, 0.4);
}

.hero-tagline span:nth-child(2) {
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(0, 212, 170, 0.6);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0, 212, 170, 0.6), transparent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-banner--primary {
  background: var(--primary);
}

.cta-banner--dark {
  background: var(--secondary);
}

.cta-banner-edge {
  position: absolute;
  top: 0;
  height: 100%;
  width: 3px;
}

.cta-banner--primary .cta-banner-edge {
  background: rgba(5, 5, 5, 0.2);
}

.cta-banner--dark .cta-banner-edge {
  background: rgba(0, 212, 170, 0.4);
}

.cta-banner-edge.left { left: 0; }
.cta-banner-edge.right { right: 0; }

.cta-banner-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 56px 24px;
  flex-wrap: wrap;
}

.cta-banner-text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-banner-line {
  display: none;
  width: 32px;
  height: 1px;
}

.cta-banner--primary .cta-banner-line {
  background: rgba(5, 5, 5, 0.4);
}

.cta-banner--dark .cta-banner-line {
  background: rgba(0, 212, 170, 0.4);
}

.cta-banner h3 {
  font-family: var(--font-heading);
  font-size: clamp(18px, 3vw, 24px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-banner--primary h3 {
  color: var(--primary-foreground);
}

.cta-banner--dark h3 {
  color: var(--foreground);
}

.cta-banner-btn {
  border: 1px solid;
  padding: 12px 32px;
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
}

.cta-banner--primary .cta-banner-btn {
  border-color: rgba(5, 5, 5, 0.4);
  color: var(--primary-foreground);
}

.cta-banner--primary .cta-banner-btn:hover {
  background: var(--primary-foreground);
  color: var(--primary);
}

.cta-banner--dark .cta-banner-btn {
  border-color: var(--primary);
  color: var(--primary);
}

.cta-banner--dark .cta-banner-btn:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

@media (min-width: 769px) {
  .cta-banner-line {
    display: block;
  }
  .cta-banner-inner {
    flex-wrap: nowrap;
  }
}

@media (max-width: 768px) {
  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }
  .cta-banner-btn {
    width: 100%;
  }
}

/* ===== SECTION COMMON ===== */
.section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 96px;
}

.section--secondary {
  background: var(--secondary);
}

.section--background {
  background: var(--background);
}

.section-top-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 96px;
  background: linear-gradient(to bottom, rgba(0, 212, 170, 0.3), transparent);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
}

.section-label-line {
  width: 48px;
  height: 1px;
  background: rgba(0, 212, 170, 0.6);
}

.section-label span {
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin-bottom: 32px;
}

.section-heading .accent {
  color: var(--primary);
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 80px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: 24px;
}

.about-highlight {
  margin-top: 32px;
}

.about-highlight p:first-child {
  font-family: var(--font-heading);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--foreground) !important;
  margin-bottom: 4px !important;
}

.about-highlight p:last-child {
  font-size: 16px;
  color: var(--muted-foreground) !important;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-image-border {
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 212, 170, 0.2);
  z-index: -1;
}

/* Why We Exist */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 80px;
}

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

.why-card {
  border-left: 2px solid rgba(0, 212, 170, 0.4);
  padding: 8px 0 8px 24px;
  transition: border-color 0.3s;
}

.why-card:hover {
  border-left-color: var(--primary);
}

.why-card p {
  font-size: 16px !important;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* Values */
.values-heading {
  font-family: var(--font-heading);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--foreground);
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.value-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 24px;
  transition: border-color 0.3s;
}

.value-card:hover {
  border-color: rgba(0, 212, 170, 0.4);
}

.value-card-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 30px;
  color: rgba(0, 212, 170, 0.2);
  margin-bottom: 16px;
  transition: color 0.3s;
}

.value-card:hover .value-card-number {
  color: rgba(0, 212, 170, 0.5);
}

.value-card-label {
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--foreground);
}

/* ===== SERVICES SECTION ===== */
.services-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 64px;
  align-items: end;
}

@media (min-width: 1024px) {
  .services-header {
    grid-template-columns: 1fr 1fr;
  }
}

.services-header p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.services-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  margin-bottom: 64px;
}

.services-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.6), transparent, rgba(10, 10, 10, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-banner-overlay p {
  max-width: 480px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 20px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--foreground);
  padding: 0 24px;
}

.services-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  margin-bottom: 80px;
}

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

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

.service-card {
  background: var(--card);
  padding: 32px;
  transition: background 0.3s;
}

.service-card:hover {
  background: rgba(18, 18, 18, 0.8);
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.service-card-number {
  font-family: var(--font-heading);
  font-size: 30px;
  color: rgba(0, 212, 170, 0.2);
  transition: color 0.3s;
}

.service-card:hover .service-card-number {
  color: rgba(0, 212, 170, 0.5);
}

.service-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--foreground);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* Why Choose */
.why-choose {
  text-align: center;
}

.why-choose h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--foreground);
  margin-bottom: 40px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 768px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-choose-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
}

.why-choose-diamond {
  width: 8px;
  height: 8px;
  background: var(--primary);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.why-choose-item span:last-child {
  font-size: 16px;
  color: var(--muted-foreground);
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: 24px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 20px;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(0, 212, 170, 0.1);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  stroke: var(--primary);
  fill: none;
}

.contact-info-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 16px;
  color: var(--foreground);
}

.contact-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 32px;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), transparent);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 12px 16px;
  font-size: 16px;
  color: var(--foreground);
  transition: border-color 0.3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(153, 153, 153, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  background: var(--primary);
  padding: 16px;
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-foreground);
  transition: all 0.3s;
  border: none;
}

.form-submit:hover {
  background: rgba(0, 212, 170, 0.9);
}

.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  border: 1px solid var(--primary);
  background: rgba(0, 212, 170, 0.1);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-success.show {
  display: block;
}

/* ===== FOOTER ===== */
.footer-cta {
  border-bottom: 1px solid var(--border);
  background: var(--card);
}

.footer-cta-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.footer-cta-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
  margin-bottom: 24px;
}

.footer-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin-bottom: 24px;
}

.footer-cta h2 .accent {
  color: var(--primary);
}

.footer-cta p {
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.footer-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer Content */
.footer-content {
  background: var(--card);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

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

.footer-info p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: 24px;
  max-width: 400px;
}

.footer-info img {
  height: 40px;
  width: auto;
  margin-bottom: 24px;
}

.footer-detail {
  font-size: 16px;
  color: var(--muted-foreground);
  margin-bottom: 8px;
}

.footer-detail-label {
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(242, 242, 242, 0.4);
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--foreground);
  margin-bottom: 24px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 16px;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  background: var(--card);
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p,
.footer-bottom span {
  font-size: 16px;
  color: var(--muted-foreground);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.reveal.delay-1 { transition-delay: 0.2s; }
.reveal.delay-2 { transition-delay: 0.4s; }
.reveal.delay-3 { transition-delay: 0.6s; }
.reveal.delay-4 { transition-delay: 0.8s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  
  .hero-scroll {
    display: none;
  }

  .services-banner {
    aspect-ratio: 16 / 9;
  }
}
