@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;1,300&display=swap');

:root {
  --navy: #0D2137;
  --blue: #1E3A5F;
  --amber: #FF6B35;
  --amber-dark: #E05520;
  --mint: #4ECDC4;
  --bg: #F0F4F8;
  --white: #FFFFFF;
  --gray: #2D3E50;
  --gray-light: #8A9BB0;
  --card-bg: #FFFFFF;
  --section-alt: #E8EEF5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg);
  color: var(--gray);
  overflow-x: hidden;
}

/* CURSOR */
.cursor {
  width: 12px; height: 12px;
  background: var(--amber);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: multiply;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transition: transform 0.35s ease, opacity 0.3s;
  opacity: 0.5;
}


/* LOGO IMAGE STYLES */
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-comp-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
  filter: brightness(1.2);
}

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  background: rgba(13,33,55,0.0);
  backdrop-filter: blur(0px);
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(13,33,55,0.97);
  backdrop-filter: blur(20px);
  height: 60px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
nav.solid {
  background: rgba(13,33,55,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: var(--amber);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.nav-logo-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: var(--white); line-height: 1.1;
}
.nav-logo-sub {
  font-size: 0.65rem; color: var(--mint);
  font-weight: 400; letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 2rem;
  list-style: none; align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--amber); }
.nav-links a.active { color: var(--amber); }
.nav-cta {
  background: var(--amber) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(255,107,53,0.4) !important;
}
.nav-cta:hover {
  background: var(--amber-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.5) !important;
}
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px; z-index: 1001;
}
.hamburger span {
  display: block; width: 25px; height: 2px;
  background: white; border-radius: 2px;
  transition: all 0.3s;
}

/* BUTTONS */
.btn-primary {
  background: var(--amber);
  color: white;
  padding: 13px 32px;
  border-radius: 6px; border: none;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer; letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(255,107,53,0.35);
  text-decoration: none; display: inline-block;
}
.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255,107,53,0.55);
}
.btn-outline {
  background: transparent;
  color: white;
  padding: 12px 32px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.3);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem; font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none; display: inline-block;
}
.btn-outline:hover {
  border-color: var(--mint);
  color: var(--mint);
  transform: translateY(-3px);
}

/* SECTIONS */
.section { padding: 90px 5%; }
.section-alt { background: var(--section-alt); }
.section-dark { background: var(--navy); color: white; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block; width: 30px; height: 2px;
  background: var(--amber);
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem,2.8vw,2.2rem);
  font-weight: 800; line-height: 1.1;
  color: var(--navy);
}
.section-dark .section-title { color: white; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-light);
  line-height: 1.7;
  max-width: 600px;
  margin-top: 1rem;
  font-weight: 300;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

/* SERVICE CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.service-card {
  background: var(--card-bg);
  border-radius: 20px; padding: 2rem;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
  border: 1px solid rgba(30,58,95,0.08);
  box-shadow: 0 4px 20px rgba(13,33,55,0.06);
  text-decoration: none; display: block; color: inherit;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(13,33,55,0.15);
  border-color: var(--amber);
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--mint));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(255,107,53,0.12), rgba(255,107,53,0.06));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 1.5rem;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  transform: rotate(-5deg) scale(1.1);
}
.service-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
}
.service-card .arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--amber); font-size: 0.85rem;
  font-weight: 600; margin-top: 1.2rem;
  opacity: 0; transform: translateX(-10px);
  transition: all 0.3s ease;
}
.service-card:hover .arrow { opacity: 1; transform: translateX(0); }

/* WHY US */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; margin-top: 2rem;
}
.why-visual { position: relative; height: 450px; }
.why-img-main {
  position: absolute; width: 70%; height: 80%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: 24px; top: 0; left: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
}
.why-img-secondary {
  position: absolute; width: 55%; height: 55%;
  background: linear-gradient(135deg, var(--amber), #FF8C5A);
  border-radius: 20px; bottom: 0; right: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  box-shadow: 0 20px 50px rgba(255,107,53,0.3);
}
.why-badge-float {
  position: absolute; top: 20%; right: -20px;
  background: white; border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  z-index: 3; text-align: center; min-width: 110px;
}
.why-badge-float .big-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem; font-weight: 800;
  color: var(--amber); display: block;
}
.why-badge-float .small-text {
  font-size: 0.7rem; color: var(--gray-light);
  text-transform: uppercase; letter-spacing: 1px;
}
.why-list { list-style: none; margin-top: 2rem; }
.why-list li {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(30,58,95,0.07);
  transition: all 0.3s;
}
.why-list li:hover { padding-left: 10px; }
.why-list .check {
  width: 32px; height: 32px; min-width: 32px;
  background: rgba(78,205,196,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--mint); font-size: 0.9rem;
  font-weight: 700; margin-top: 2px;
}
.why-list h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 3px;
}
.why-list p {
  font-size: 0.88rem;
  color: var(--gray-light); line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials-track {
  display: flex; gap: 1.5rem;
  margin-top: 3rem;
  overflow-x: auto; padding-bottom: 1rem;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 2rem;
  min-width: 300px; max-width: 340px;
  flex-shrink: 0; transition: all 0.3s;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}
.stars { color: var(--amber); font-size: 1rem; margin-bottom: 1rem; }
.testimonial-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem; line-height: 1.7;
  font-style: italic; margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--mint));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: white; font-size: 1rem;
}
.author-name { font-weight: 600; color: white; font-size: 0.9rem; }
.author-city { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* VALUE CARDS */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.value-card {
  background: var(--card-bg);
  border-radius: 18px; padding: 2rem;
  text-align: center;
  border: 1px solid rgba(30,58,95,0.07);
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(13,33,55,0.05);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13,33,55,0.12);
  border-color: var(--mint);
}
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.value-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.5rem;
}
.value-card p { font-size: 0.85rem; color: var(--gray-light); line-height: 1.6; }

/* ACCORDION */
.accordion { margin-top: 1.5rem; }
.accordion-item {
  border: 1px solid rgba(30,58,95,0.1);
  border-radius: 12px; margin-bottom: 0.75rem;
  overflow: hidden; transition: all 0.3s;
}
.accordion-item.open {
  border-color: var(--amber);
  box-shadow: 0 4px 20px rgba(255,107,53,0.1);
}
.accordion-header {
  padding: 1rem 1.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--card-bg);
  font-weight: 600; color: var(--navy);
  font-size: 0.95rem; transition: all 0.3s;
  user-select: none;
}
.accordion-header:hover { background: rgba(255,107,53,0.04); }
.accordion-item.open .accordion-header { color: var(--amber); background: rgba(255,107,53,0.04); }
.accordion-icon {
  width: 24px; height: 24px;
  background: rgba(30,58,95,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; transition: all 0.3s; flex-shrink: 0;
}
.accordion-item.open .accordion-icon {
  background: var(--amber); color: white; transform: rotate(180deg);
}
.accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: rgba(240,244,248,0.5);
  font-size: 0.9rem; color: var(--gray); line-height: 1.7;
}
.accordion-item.open .accordion-body {
  max-height: 200px; padding: 1rem 1.5rem;
}

/* PROCESS */
.process-section { background: var(--section-alt); padding: 80px 5%; }
.process-steps {
  display: flex; gap: 0; margin-top: 3rem;
  position: relative; flex-wrap: wrap;
}
.process-steps::before {
  content: '';
  position: absolute; top: 32px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--mint));
  z-index: 0;
}
.process-step {
  flex: 1; min-width: 140px;
  text-align: center; padding: 0 0.5rem;
  position: relative; z-index: 1;
}
.step-num {
  width: 64px; height: 64px;
  background: white; border: 3px solid var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem; font-weight: 800; color: var(--amber);
  margin: 0 auto 1rem;
  box-shadow: 0 4px 20px rgba(255,107,53,0.2);
  transition: all 0.3s;
}
.process-step:hover .step-num {
  background: var(--amber); color: white; transform: scale(1.1);
}
.step-label { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.step-desc { font-size: 0.78rem; color: var(--gray-light); line-height: 1.5; }

/* FEATURES / MATERIALS */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.feature-item {
  background: rgba(78,205,196,0.07);
  border: 1px solid rgba(78,205,196,0.2);
  border-radius: 12px; padding: 1.2rem;
  text-align: center; transition: all 0.3s;
}
.feature-item:hover {
  background: rgba(78,205,196,0.12); transform: scale(1.03);
}
.feature-item .fi { font-size: 1.8rem; margin-bottom: 0.5rem; display: block; }
.feature-item span { font-size: 0.82rem; color: var(--navy); font-weight: 500; }

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.material-card {
  background: var(--card-bg); border-radius: 14px;
  padding: 1.2rem; text-align: center;
  border: 1px solid rgba(30,58,95,0.07);
  transition: all 0.3s; cursor: pointer;
}
.material-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255,107,53,0.12);
}
.material-card .mi { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.material-card span { font-size: 0.8rem; color: var(--gray); font-weight: 500; }

/* SERVICE DETAIL */
.service-detail {
  padding: 80px 5%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-visual {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 24px; height: 400px;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem; position: relative; overflow: hidden;
}
.service-detail-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,107,53,0.15), transparent);
}
.service-detail-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem,3vw,2.5rem);
  font-weight: 800; color: var(--navy); margin-bottom: 1rem;
}
.service-detail-content p {
  color: var(--gray); line-height: 1.8;
  margin-bottom: 1.5rem; font-size: 0.98rem;
}

/* CONTACT */
.contact-form-wrapper {
  background: var(--card-bg); border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(13,33,55,0.08);
  border: 1px solid rgba(30,58,95,0.07);
}
.contact-form-wrapper h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.7rem; font-weight: 800;
  color: var(--navy); margin-bottom: 0.5rem;
}
.contact-form-wrapper > p {
  color: var(--gray-light); margin-bottom: 2rem; font-size: 0.9rem;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 1rem;
}
.form-group {
  display: flex; flex-direction: column; margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.82rem; font-weight: 600;
  color: var(--navy); margin-bottom: 6px; letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 2px solid rgba(30,58,95,0.1);
  border-radius: 12px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.92rem; color: var(--gray);
  background: var(--bg); transition: all 0.3s; outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber); background: white;
  box-shadow: 0 0 0 4px rgba(255,107,53,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  background: var(--card-bg); border-radius: 18px;
  padding: 1.8rem;
  box-shadow: 0 4px 20px rgba(13,33,55,0.06);
  border: 1px solid rgba(30,58,95,0.07);
}
.contact-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 1.2rem;
}
.contact-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid rgba(30,58,95,0.06);
  text-decoration: none; color: var(--gray); transition: color 0.2s;
}
.contact-item:last-child { border-bottom: none; }
.contact-item:hover { color: var(--amber); }
.contact-item-icon {
  width: 38px; height: 38px; min-width: 38px;
  background: rgba(255,107,53,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: all 0.3s;
}
.contact-item:hover .contact-item-icon { background: var(--amber); }
.contact-info-text strong {
  display: block; font-size: 0.85rem;
  font-weight: 600; color: var(--navy);
}
.contact-info-text span { font-size: 0.8rem; color: var(--gray-light); }
.whatsapp-card {
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 18px; padding: 1.8rem;
  text-align: center; color: white;
  cursor: pointer; transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(37,211,102,0.3);
  text-decoration: none; display: block;
}
.whatsapp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(37,211,102,0.4);
}
.whatsapp-card .wa-icon { font-size: 2.5rem; margin-bottom: 0.8rem; display: block; }
.whatsapp-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.4rem; }
.whatsapp-card p { font-size: 0.85rem; opacity: 0.85; margin-bottom: 1rem; }
.success-msg {
  display: none;
  background: rgba(78,205,196,0.1);
  border: 2px solid var(--mint);
  border-radius: 14px; padding: 1.5rem;
  text-align: center; color: var(--navy); margin-top: 1rem;
}
.success-msg.show { display: block; }

/* INFO CARDS (NOSOTROS) */
.info-card {
  background: var(--card-bg); border-radius: 18px;
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 30px rgba(13,33,55,0.1);
  display: flex; align-items: center; gap: 1.5rem;
  transition: all 0.3s;
  border: 1px solid rgba(30,58,95,0.06);
  margin-bottom: 1rem;
}
.info-card:hover { transform: translateX(10px); box-shadow: 0 12px 40px rgba(13,33,55,0.15); }
.info-card-icon { font-size: 2.2rem; width: 54px; min-width: 54px; text-align: center; }
.info-card-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem; font-weight: 800; color: var(--amber); line-height: 1;
}
.info-card-label { font-size: 0.85rem; color: var(--gray-light); margin-top: 3px; }

/* TIMELINE */
.timeline { position: relative; margin-top: 3rem; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--amber), var(--mint));
  border-radius: 1px;
}
.timeline-item { position: relative; padding: 0 0 2.5rem 2.5rem; }
.timeline-item::before {
  content: ''; position: absolute;
  left: -5px; top: 4px; width: 12px; height: 12px;
  background: var(--amber); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,107,53,0.2);
}
.timeline-year {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.8rem;
  font-weight: 700; color: var(--mint);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px;
}
.timeline-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem;
  font-weight: 700; color: white; margin-bottom: 6px;
}
.timeline-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed; bottom: 30px; right: 30px;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  z-index: 999; cursor: pointer; text-decoration: none;
  transition: all 0.3s; animation: pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 10px 35px rgba(37,211,102,0.6); }
@keyframes pulse {
  0%,100% { box-shadow: 0 6px 25px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 25px rgba(37,211,102,0.5), 0 0 0 15px rgba(37,211,102,0); }
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* FOOTER */
footer {
  background: #070F1A;
  color: rgba(255,255,255,0.6);
  padding: 60px 5% 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.88rem; line-height: 1.7;
  margin: 1rem 0; max-width: 280px;
}
.footer-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600; color: white;
  font-size: 0.88rem; margin-bottom: 1.2rem;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none; font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0 2rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.footer-bottom a {
  color: var(--mint);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom a:hover { color: var(--amber); }
.footer-badges {
  display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center;
  margin-top: 0.5rem;
}
.footer-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; padding: 5px 14px;
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
}

/* PAGE HERO (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 130px 5% 80px;
  position: relative; overflow: hidden;
  text-align: left;
}
.page-hero.center { text-align: center; }
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(78,205,196,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,107,53,0.08) 0%, transparent 40%);
}
.page-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 800; color: white;
  position: relative; z-index: 1; max-width: 700px;
}
.page-hero.center h1 { margin: 0 auto; }
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem; max-width: 560px;
  margin-top: 1rem; line-height: 1.7;
  font-weight: 300; position: relative; z-index: 1;
}
.page-hero.center p { margin: 1rem auto 0; }

/* CTA BAND */
.cta-band {
  background: var(--amber);
  padding: 60px 5%;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
}
.cta-band h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem,3vw,2.2rem);
  font-weight: 800; color: white; margin-bottom: 0.5rem;
}
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; direction: ltr; }
  .service-detail.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: rgba(13,33,55,0.98);
    z-index: 1000;
    align-items: center; justify-content: center;
    gap: 2.5rem; font-size: 1.4rem;
  }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 2rem 1.5rem; }
  .section { padding: 60px 5%; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .cursor, .cursor-follower { display: none; }
  .why-visual { height: 280px; }
  .why-badge-float { right: 0; }
  .cta-band { text-align: center; justify-content: center; }
}
