/* ============================================
   landing.css — Landing Page Styles
   ============================================ */

/* ── STICKY HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 5%;
  border-bottom: 1px solid var(--border);
}
.site-header img { height: 42px; }
.header-right { display: flex; align-items: center; gap: 24px; }
.header-phone {
  color: var(--gold-lt); font-family: 'Sora', sans-serif;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.header-phone::before {
  content: '';
  display: inline-block; width: 8px; height: 8px;
  background: #4ade80; border-radius: 50%;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}
.header-cta-btn {
  background: var(--orange); color: #fff;
  padding: 9px 22px; border-radius: 6px; border: none;
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 0.88rem; cursor: pointer; letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.header-cta-btn:hover { background: var(--orange-h); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(200,150,62,0.08) 0%, transparent 70%),
    url('../assets/images/bg-hero.webp') center/cover no-repeat;
  background-blend-mode: normal, multiply;
  padding: 64px 5% 72px;
  display: flex; flex-wrap: wrap;
  align-items: flex-start; gap: 40px;
}
.hero-left { flex: 1; min-width: 300px; padding-top: 8px; }
.aeo-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,150,62,0.15);
  border: 1px solid var(--border);
  color: var(--gold-lt); font-size: 0.78rem;
  font-family: 'Sora', sans-serif; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 4px; margin-bottom: 22px;
}
.aeo-badge span { color: var(--gold); }
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); line-height: 1.18;
  font-weight: 800; margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: var(--gold-lt); }
.hero-sub {
  color: rgba(255,255,255,0.72); font-size: 1.05rem;
  line-height: 1.65; margin-bottom: 32px; max-width: 520px;
}
.hero-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hero-bullets li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.88); font-size: 0.97rem;
}
.hero-bullets li::before {
  content: '';
  width: 20px; height: 20px; flex-shrink: 0;
  background: rgba(74,222,128,0.15);
  border: 1.5px solid #4ade80; border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%234ade80' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 12px;
}

/* ── FORM ── */
.hero-form-wrap {
  flex: 0 0 360px;
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(200,150,62,0.15);
  overflow: hidden;
}
.form-header {
  background: var(--navy2); padding: 20px 28px 18px;
  border-bottom: 2px solid var(--gold);
}
.form-header h3 { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.form-header p { color: var(--muted); font-size: 0.82rem; display: flex; align-items: center; gap: 6px; }
.form-header p::before { content: '⚡'; font-size: 0.9em; }
.form-body { padding: 24px 28px 28px; }
.form-row { margin-bottom: 14px; }
.form-row label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: #6b7280; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 5px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #e5e7eb; border-radius: 7px;
  font-size: 0.95rem; color: var(--navy); background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,62,0.12);
  background: #fff;
}
.form-row textarea { resize: vertical; min-height: 72px; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--orange); color: #fff; border: none; border-radius: 8px;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1rem;
  cursor: pointer; letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(232,98,10,0.35);
}
.form-submit:hover {
  background: var(--orange-h); transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232,98,10,0.40);
}
.form-assurance {
  text-align: center; margin-top: 12px; font-size: 0.78rem; color: #9ca3af;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.form-assurance::before { content: '🔒'; font-size: 0.85em; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white); border-bottom: 1px solid #e9ecef;
  display: flex; justify-content: center; flex-wrap: wrap;
}
.trust-item {
  flex: 1; min-width: 140px; padding: 24px 20px;
  text-align: center; border-right: 1px solid #f0f0f0;
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: 1.75rem; color: var(--navy); display: block;
}
.trust-num span { color: var(--gold); }
.trust-label { font-size: 0.82rem; color: var(--muted); margin-top: 3px; }

/* ── SHARED SECTION HELPERS ── */
.section-tag {
  display: inline-block; font-family: 'Sora', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--border); padding: 5px 12px;
  border-radius: 3px; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; color: var(--navy); margin-bottom: 12px;
}
.section-sub { color: #6b7280; font-size: 1rem; max-width: 540px; margin: 0 auto; }

/* ── SERVICES ── */
.services-section {
  padding: 72px 5%; background: var(--offwhite); text-align: center;
}
.service-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 20px; margin-top: 44px;
}
.service-card {
  background: var(--white); border-radius: 12px; padding: 32px 26px;
  text-align: left; border: 1px solid #e9ecef;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--navy); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #d1d5db; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.service-card p  { font-size: 0.88rem; color: #6b7280; line-height: 1.6; }

/* ── WHY US ── */
.why-section {
  padding: 72px 5%; background: var(--navy);
  position: relative; overflow: hidden;
}
.why-section::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,150,62,0.12), transparent 70%);
  pointer-events: none;
}
.why-inner { display: flex; flex-wrap: wrap; gap: 48px; align-items: center; }
.why-text { flex: 1; min-width: 280px; }
.why-text .section-tag  { color: var(--gold-lt); border-color: var(--border); }
.why-text .section-title { color: var(--white); text-align: left; }
.why-text .section-sub   { color: rgba(255,255,255,0.6); text-align: left; }
.why-grid { flex: 1; min-width: 280px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(200,150,62,0.2);
  border-radius: 10px; padding: 20px;
}
.why-card-icon { font-size: 1.6rem; margin-bottom: 10px; }
.why-card h4 { font-size: 0.9rem; color: var(--gold-lt); margin-bottom: 6px; }
.why-card p  { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 72px 5%; background: var(--offwhite); text-align: center; }
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 20px; margin-top: 44px;
}
.testi-card {
  background: var(--white); border-radius: 12px; padding: 28px;
  text-align: left; border: 1px solid #e9ecef;
  box-shadow: 0 4px 16px rgba(10,22,40,0.05);
}
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; }
.testi-text  { font-size: 0.9rem; color: #374151; line-height: 1.65; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  color: var(--gold-lt); font-family: 'Sora', sans-serif;
  font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.testi-co   { font-size: 0.78rem; color: var(--muted); }

/* ── FAQ ── */
.faq-section { padding: 72px 5%; background: var(--white); }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-inner .section-title { text-align: center; }
.faq-inner .section-sub   { text-align: center; margin: 0 auto 44px; }
.faq-item { border-bottom: 1px solid #e9ecef; padding: 20px 0; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: 'Sora', sans-serif;
  font-weight: 600; font-size: 0.97rem; color: var(--navy); user-select: none;
}
.faq-q .icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--offwhite); border: 1px solid #e0e0e0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  transition: transform 0.25s, background 0.2s, color 0.2s;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--navy); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 0.9rem; color: #6b7280; line-height: 1.7;
  transition: max-height 0.35s ease, padding 0.25s;
}
.faq-item.open .faq-a { max-height: 200px; padding-top: 14px; }

/* ── CTA FOOTER ── */
.cta-footer {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3560 100%);
  padding: 72px 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-footer::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(200,150,62,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-footer h2 { font-size: clamp(1.5rem,3vw,2.2rem); color: var(--white); margin-bottom: 14px; }
.cta-footer p  { color: rgba(255,255,255,0.65); margin-bottom: 32px; font-size: 1rem; }
.cta-footer-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange); color: #fff;
  padding: 14px 36px; border-radius: 8px; border: none;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.97rem;
  cursor: pointer; letter-spacing: 0.04em;
  box-shadow: 0 6px 20px rgba(232,98,10,0.4);
  transition: background 0.2s, transform 0.15s; text-decoration: none;
}
.btn-primary:hover  { background: var(--orange-h); transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--gold-lt);
  padding: 14px 32px; border-radius: 8px;
  border: 1.5px solid rgba(200,150,62,0.5);
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.97rem;
  cursor: pointer; transition: border-color 0.2s, background 0.2s; text-decoration: none;
}
.btn-secondary:hover { border-color: var(--gold-lt); background: rgba(200,150,62,0.08); }

/* ── FOOTER META ── */
.site-footer-meta {
  background: #060e1c; color: rgba(255,255,255,0.35);
  text-align: center; padding: 20px 5%; font-size: 0.78rem;
}
.site-footer-meta a { color: rgba(255,255,255,0.45); text-decoration: none; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; text-decoration: none;
  animation: wa-bounce 3s ease-in-out infinite;
}
.wa-float svg { width: 28px; height: 28px; fill: white; }
@keyframes wa-bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ── SCROLL ANIMATION BASE ── */
.animate-on-scroll {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  .hero { flex-direction: column; }
  .hero-form-wrap { flex: 1 0 auto; width: 100%; max-width: 480px; align-self: center; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { min-width: 120px; padding: 18px 12px; }
  .trust-num  { font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .hero { padding: 40px 4% 48px; }
  .hero h1 { font-size: 1.75rem; }
  .why-grid { grid-template-columns: 1fr; }
  .header-cta-btn { display: none; }
}
