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

:root {
  --navy: #0f1f3d;
  --blue: #1a56a0;
  --blue-light: #2d74c7;
  --gold: #c49a3c;
  --gold-light: #e8c26a;
  --cream: #faf8f4;
  --cream-dark: #f2ede4;
  --text: #1a1a2e;
  --text-mid: #4a5568;
  --text-light: #8a9ab5;
  --white: #ffffff;
  --border: rgba(26,86,160,0.12);
  --shadow: 0 4px 30px rgba(15,31,61,0.10);
  --shadow-lg: 0 12px 50px rgba(15,31,61,0.15);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(196,154,60,0.25);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 72px;
}

.header-logo img {
  height: 60px;
  width: auto;
  display: block;
  /* background: transparent; */
  /* filter: brightness(0) invert(1); */
  /* mix-blend-mode: normal */
}

.header-text { 
  display: flex;
  flex-direction: column;
  justify-content: center;   /* vertical center */
  line-height: 1.2; }

.header-text .company-name {
  font-family: 'Crimson Pro', serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1.1;
  margin-bottom: 4px
}

.header-text .tagline {
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 300;
}

.header-right img {
  height: 30px;   /* slightly smaller than left */
  width: auto;
  display: block;
  margin: 0;
  background: transparent;
  filter: brightness(0) invert(1);
  mix-blend-mode: normal;
}

.main-nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.main-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.main-nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.main-nav a.active { color: var(--gold-light); background: rgba(196,154,60,0.12); }

/* ── SECTIONS ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

section { padding: 72px 0; }
section.alt { background: var(--white); }

.section-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Crimson Pro', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.7;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ── BUTTON ── */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,86,160,0.35); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,154,60,0.4); }

.btn-outline {
  border: 1.5px solid var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

.btn-wa {
  background: #25d366;
  color: var(--white);
}
.btn-wa:hover { background: #1fba58; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

/* ── GRID ── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }

/* ── FEATURE CHIP ── */
.feature-chip {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--navy);
  font-size: 14px;
}
.feature-chip .icon { font-size: 22px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 36px 24px;
  font-size: 13.5px;
  border-top: 1px solid rgba(196,154,60,0.2);
}
.site-footer .footer-brand {
  font-family: 'Crimson Pro', serif;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 6px;
}
.site-footer .footer-faith {
  font-size: 12px;
  color: var(--gold-light);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer a { color: rgba(255,255,255,0.65); text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 999;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

/* ── DIVIDER ── */
.gold-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ── FADE IN ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }

/* ── DROPDOWN NAV ── */
.nav-item { position: relative; }

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-item > a::after {
  content: '▾';
  font-size: 10px;
  opacity: 0.7;
  transition: transform 0.2s;
}
.nav-item:hover > a::after { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(15,31,61,0.18);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  transform: translateX(-50%) translateY(-6px);
  z-index: 200;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}
.dropdown a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  color: var(--text) !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  text-decoration: none;
  transition: background 0.15s !important;
  white-space: nowrap;
  background: transparent !important;
}
.dropdown a:hover {
  background: var(--cream) !important;
  color: var(--navy) !important;
}
.dropdown a.dd-active {
  background: rgba(196,154,60,0.08) !important;
  color: var(--navy) !important;
}
.dropdown a .dd-icon { font-size: 18px; flex-shrink: 0; }
.dropdown a .dd-text { flex: 1; }
.dropdown a .dd-text strong { display: block; font-size: 13.5px; color: var(--navy); font-weight: 600; }
.dropdown a .dd-text span { display: block; font-size: 11.5px; color: var(--text-light); margin-top: 1px; }
.dropdown a .dd-badge {
  font-size: 9.5px; padding: 2px 8px; border-radius: 20px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  flex-shrink: 0;
}
.dd-live { background: rgba(34,197,94,0.12); color: #16a34a; }
.dd-soon { background: rgba(196,154,60,0.12); color: var(--gold); }
.dropdown .dd-divider {
  height: 1px; background: var(--border);
  margin: 6px 8px;
}

/* ── PAGE HERO SHARED ── */
.page-hero {
  padding: 64px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-family: 'Crimson Pro', serif;
  font-size: 44px; font-weight: 600;
  line-height: 1.2; margin-bottom: 14px;
}
.page-hero p {
  font-size: 17px;
  max-width: 580px; margin: 0 auto;
  line-height: 1.65;
}

/* SHARED PRODUCT CARD */
.prod-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.prod-card .prod-top { padding: 28px; }
.prod-card .prod-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.prod-card h3 { font-size: 19px; font-weight: 600; color: var(--navy); margin-bottom: 8px; font-family: 'Crimson Pro', serif; }
.prod-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
.prod-card .prod-bottom {
  padding: 14px 28px;
  border-top: 1px solid var(--border);
  background: rgba(248,250,252,0.7);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.prod-plats { display: flex; gap: 6px; flex-wrap: wrap; }
.prod-plat {
  font-size: 10.5px; padding: 3px 9px; border-radius: 6px;
  background: rgba(26,86,160,0.08); color: var(--blue); font-weight: 600;
}
.prod-plat.soon { background: rgba(196,154,60,0.08); color: var(--gold); }
.prod-status {
  font-size: 11px; padding: 4px 12px; border-radius: 20px; font-weight: 600;
}
.ps-live { background: rgba(34,197,94,0.1); color: #16a34a; }
.ps-soon { background: rgba(196,154,60,0.1); color: var(--gold); }
.ps-dev  { background: rgba(26,86,160,0.08); color: var(--blue); }
.prod-card.is-featured { border: 2px solid var(--gold); }
.prod-ribbon {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: white;
  font-size: 9.5px; padding: 3px 10px; border-radius: 20px;
  font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
}

/* ── HAMBURGER BUTTON ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
  margin-left: auto;
}
.hamburger:hover { background: rgba(255,255,255,0.14); }
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.25s;
}
.mobile-menu.is-open { opacity: 1; }

.mobile-menu-panel {
  position: absolute;
  top: 0; right: 0;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: var(--navy);
  border-left: 1px solid rgba(196,154,60,0.2);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-menu.is-open .mobile-menu-panel { transform: translateX(0); }

.mm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mm-header .mm-title {
  font-family: 'Crimson Pro', serif;
  font-size: 17px; color: white; font-weight: 600;
}
.mm-close {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.08);
  border: none; border-radius: 6px;
  color: white; font-size: 18px;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background 0.2s;
}
.mm-close:hover { background: rgba(255,255,255,0.15); }

.mm-links {
  flex: 1;
  padding: 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mm-links a {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.mm-links a:hover { background: rgba(255,255,255,0.08); color: white; }
.mm-links a.mm-active { color: var(--gold-light); background: rgba(196,154,60,0.10); }

.mm-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 8px 0;
}

.mm-section-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  padding: 8px 16px 4px;
}

.mm-links .mm-sub {
  padding: 10px 16px 10px 28px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mm-links .mm-sub .ms-icon { font-size: 16px; flex-shrink: 0; }
.mm-links .mm-sub .ms-text { flex: 1; }
.mm-links .mm-sub .ms-badge {
  font-size: 9px; padding: 2px 7px;
  border-radius: 20px; font-weight: 700;
  text-transform: uppercase;
}
.ms-live { background: rgba(34,197,94,0.15); color: #4ade80; }
.ms-soon { background: rgba(196,154,60,0.15); color: var(--gold-light); }

.mm-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mm-footer a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: #25d366;
  border-radius: 8px;
  color: white; text-decoration: none;
  font-size: 14px; font-weight: 600;
  justify-content: center;
  transition: background 0.2s;
}
.mm-footer a:hover { background: #1fba58; }

/* ── TABLET ── */
@media (max-width: 1024px) {
  .header-text .tagline { font-size: 10px; letter-spacing: 0.3px; }
  .main-nav a { font-size: 12.5px; padding: 5px 10px; }
  .header-text .company-name { font-size: 18px; }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav */
  .hamburger { display: flex; }
  .main-nav { display: none; }
  .header-right { display: none; }

  /* Compact header row */
  .header-inner {
    height: 60px;
    padding: 0 14px;
    gap: 12px;
  }
  .header-logo img { height: 36px; }
  .header-text .company-name { font-size: 15px; }
  .header-text .tagline { display: none; }

  /* Show mobile menu */
  /* .mobile-menu { display: block; } */
  .mobile-menu {
  display: none;
}

  /* Dropdown — desktop only, hide on mobile */
  .dropdown { display: none !important; }

  /* Sections */
  .section-title { font-size: 26px; }
  section { padding: 48px 0; }
  .container { padding: 0 16px; }
}

/* ── SMALL PHONE ── */
@media (max-width: 400px) {
  .header-inner { padding: 0 12px; }
  .header-text .company-name { font-size: 13.5px; }
  .header-logo img { height: 30px; }
}
.mobile-menu-panel {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.mm-links {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 80px; /* space for WhatsApp button */
}
.hamburger { display: flex; }
.main-nav { display: none; }
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
  }

  .main-nav {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .hamburger {
    display: none !important;
  }

  .main-nav {
    display: flex !important;
  }
}