@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy: #0B1F3A;
  --navy-light: #132d54;
  --gold: #D4AF37;
  --gold-light: #f0d060;
  --white: #ffffff;
  --grey-50: #F8F9FC;
  --grey-100: #F2F4F8;
  --grey-200: #E4E8F0;
  --grey-300: #C8CDD8;
  --text-primary: #0D1B2A;
  --text-muted: #6B7A99;
  --text-light: #9AA5BC;
  --success: #22C55E;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(11,31,58,0.08);
  --shadow-md: 0 8px 32px rgba(11,31,58,0.12);
  --shadow-lg: 0 20px 60px rgba(11,31,58,0.16);
  --shadow-gold: 0 8px 32px rgba(212,175,55,0.25);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text-primary); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* TYPOGRAPHY */
h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { line-height: 1.7; color: var(--text-muted); }

/* LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-alt { background: var(--grey-50); }
.section-navy { background: var(--navy); }
.section-label { font-family: 'Poppins',sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.section-title { margin-bottom: 16px; color: var(--navy); }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-sm); font-family: 'Poppins',sans-serif; font-size: 0.95rem; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-wa { background: #25D366; color: var(--white); }
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* NAVBAR */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 0; transition: var(--transition); }
#navbar.scrolled { background: rgba(11,31,58,0.97); backdrop-filter: blur(20px); padding: 14px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.2); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: 'Poppins',sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--navy); }
.nav-logo-text { font-family: 'Poppins',sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--white); }
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 8px 14px; border-radius: var(--radius-sm); font-family: 'Poppins',sans-serif; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.85); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 24px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Poppins',sans-serif; font-size: 1.3rem; font-weight: 600; color: var(--white); padding: 12px 24px; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; cursor: pointer; color: var(--white); font-size: 1.8rem; }

/* NAV DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 5px; cursor: pointer; user-select: none; }
.dropdown-caret { font-size: 0.7rem; transition: transform 0.25s ease; display: inline-block; }
.nav-dropdown:hover .dropdown-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%);
  width: 320px; background: var(--white); border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(11,31,58,0.18); border: 1px solid var(--grey-200);
  padding: 12px; opacity: 0; visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  transform: translateX(-50%) translateY(-8px); z-index: 999;
}
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px; background: var(--white); border-left: 1px solid var(--grey-200);
  border-top: 1px solid var(--grey-200); rotate: 45deg;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px;
  border-radius: var(--radius-sm); transition: var(--transition); text-decoration: none;
  color: var(--text-primary); border-bottom: 1px solid var(--grey-100); margin-bottom: 4px;
}
.nav-dropdown-item:last-of-type { border-bottom: none; margin-bottom: 0; }
.nav-dropdown-item:hover { background: var(--grey-50); }
.nav-dropdown-item:hover .nav-dd-title { color: var(--gold); }
.nav-dd-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.nav-dd-title { font-family: 'Poppins',sans-serif; font-weight: 600; font-size: 0.875rem; color: var(--navy); margin-bottom: 3px; }
.nav-dd-desc { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }
.nav-dd-cta { padding: 12px 4px 4px; border-top: 1px solid var(--grey-200); margin-top: 8px; }

/* CARDS */
.card { background: var(--white); border-radius: var(--radius-md); padding: 32px; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--grey-200); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.card-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.06)); }
.card-title { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.card-desc { font-size: 0.9rem; line-height: 1.6; }

/* GLASS CARD */
.glass-card { background: rgba(255,255,255,0.08); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-md); }

/* BADGE */
.badge { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; font-family: 'Poppins',sans-serif; }
.badge-gold { background: rgba(212,175,55,0.15); color: var(--gold); }
.badge-green { background: rgba(34,197,94,0.12); color: #16a34a; }
.badge-navy { background: rgba(11,31,58,0.1); color: var(--navy); }

/* STAR RATING */
.stars { color: #FFC107; font-size: 1rem; letter-spacing: 2px; }

/* DIVIDER */
.divider { width: 60px; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin: 16px 0 24px; }
.center .divider { margin: 16px auto 24px; }

/* GRID HELPERS */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* FLOATING WA BUTTON */
#wa-float { position: fixed; bottom: 30px; right: 30px; z-index: 900; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,0.4); transition: var(--transition); cursor: pointer; }
#wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.5); }
#wa-float svg { width: 30px; height: 30px; fill: white; }
#wa-float::before { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%; background: #25D366; animation: wa-pulse 2s infinite; opacity: 0.6; }
@keyframes wa-pulse { 0%,100%{transform:scale(1);opacity:.6} 50%{transform:scale(1.4);opacity:0} }

/* SCROLL TO TOP */
#scroll-top { position: fixed; bottom: 100px; right: 32px; z-index: 900; width: 44px; height: 44px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-md); transition: var(--transition); opacity: 0; pointer-events: none; }
#scroll-top.show { opacity: 1; pointer-events: all; }
#scroll-top:hover { background: var(--navy-light); transform: translateY(-3px); }
#scroll-top svg { width: 18px; height: 18px; stroke: white; fill: none; }

/* FOOTER */
footer { background: #060F1D; color: rgba(255,255,255,0.7); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 48px; padding-bottom: 56px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin: 16px 0 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: var(--transition); color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { font-family: 'Poppins',sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.875rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 0.875rem; }
.footer-contact-item .icon { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.825rem; }

/* PAGE HERO (inner pages) */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%); padding: 140px 0 80px; color: var(--white); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb-sep { opacity: 0.4; }

/* FORM */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--text-primary); margin-bottom: 6px; font-family: 'Poppins',sans-serif; }
.form-control { width: 100%; padding: 13px 16px; border: 1.5px solid var(--grey-200); border-radius: var(--radius-sm); font-size: 0.9rem; font-family: 'Inter',sans-serif; color: var(--text-primary); background: var(--white); transition: var(--transition); outline: none; }
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.12); }
.form-control::placeholder { color: var(--text-light); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }

/* TAG */
.tag { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 500; background: var(--grey-100); color: var(--text-muted); }

/* Responsive rules are in css/responsive.css */
