/* ═══════════════════════════════════════
   MAKENTRUST — Global Stylesheet
   ═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,300&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --navy:    #07142b;
  --navy2:   #0d2044;
  --blue:    #1657c5;
  --blue-lt: #3b82f6;
  --aqua:    #0ea5e9;
  --green:   #86c540;
  --green2:  #5a9e1a;
  --cream:   #f5f3ee;
  --white:   #ffffff;
  --slate:   #64748b;
  --muted:   #94a3b8;
  --border:  #e2e8f0;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --r: 14px;
  --r-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ─── TYPOGRAPHY ─── */
.display { font-family: var(--font-display); font-weight: 600; line-height: 1.1; }
.label-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600; line-height: 1.15;
  color: var(--navy);
}
.section-sub {
  font-size: 1.05rem; color: var(--slate);
  max-width: 520px; margin-top: 12px; line-height: 1.8;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.45s var(--ease);
}
.navbar::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(7,20,43,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.45s var(--ease);
  z-index: -1;
}
.navbar.light::before {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 1px 0 var(--border);
}
.navbar.scrolled { padding: 14px 32px; }

.nav-logo { display: flex; align-items: center; }
.nav-logo img {
  height: 48px; width: auto;
  mix-blend-mode: screen;
  transition: opacity 0.3s;
}
.navbar.light .nav-logo img {
  mix-blend-mode: normal;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.75);
  position: relative; transition: color 0.3s;
}
.navbar.light .nav-links a { color: var(--slate); }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.navbar.light .nav-links a:hover, .navbar.light .nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 2px; background: var(--green); border-radius: 2px;
}

.lang-pill {
  display: flex; gap: 2px;
  background: rgba(255,255,255,0.1); border-radius: 999px; padding: 3px;
}
.navbar.light .lang-pill { background: var(--border); }
.lang-pill button {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  padding: 4px 14px; border: none; border-radius: 999px;
  cursor: pointer; background: transparent; color: rgba(255,255,255,0.45);
  transition: all 0.3s;
}
.navbar.light .lang-pill button { color: var(--muted); }
.lang-pill button.active { background: rgba(255,255,255,0.18); color: #fff; }
.navbar.light .lang-pill button.active { background: #fff; color: var(--blue); }

.mobile-btn {
  display: none; background: none; border: none;
  font-size: 22px; cursor: pointer; color: #fff; padding: 4px;
  line-height: 1;
}
.navbar.light .mobile-btn { color: var(--navy); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r);
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  border: none; cursor: pointer; transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: #1248a8; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(22,87,197,0.3); }
.btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1.5px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); }
.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-green { background: var(--green2); color: #fff; }
.btn-green:hover { background: #4a8514; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(90,158,26,0.3); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1db355; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.btn-lg { padding: 16px 36px; font-size: 15px; }

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

/* ─── FOOTER ─── */
.footer {
  background: var(--navy); color: rgba(255,255,255,0.45);
  padding: 52px 32px 32px;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--green); }
.footer-nav { display: flex; align-items: center; gap: 24px; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.3s; }
.footer-nav a:hover { color: rgba(255,255,255,0.8); }
.footer-social { display: flex; align-items: center; gap: 14px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6);
  font-size: 15px; transition: background 0.3s, color 0.3s, transform 0.3s;
}
.footer-social a:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.footer-copy { max-width: 1160px; margin: 20px auto 0; font-size: 12px; text-align: center; }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.75s var(--ease), transform 0.75s var(--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; }

/* ─── RESPONSIVE SHARED ─── */
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(7,20,43,0.97);
    backdrop-filter: blur(20px);
    padding: 24px 28px; gap: 20px; z-index: 999;
  }
  .navbar.light .nav-links.open { background: rgba(255,255,255,0.98); }
  .nav-links.open a { color: rgba(255,255,255,0.85); font-size: 16px; }
  .navbar.light .nav-links.open a { color: var(--navy); }
  .mobile-btn { display: block; }
  .navbar, .navbar.scrolled { padding: 16px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-nav { flex-wrap: wrap; gap: 14px 20px; }
}

@media (max-width: 400px) {
  .navbar, .navbar.scrolled { padding: 14px 16px; }
}
