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

/* ── CSS VARIABLES (UPDATED BRAND COLORS) ── */
:root {
--bg: #0b1a2e; /* Deep Navy */
--bg2: #12243b; /* Slightly Lighter Navy */
--bg3: #1a304a; /* Card Background Navy */
--gold: #D4AF37; /* Brand Gold */
--gold2: #eed27a; /* Lighter Gold */
--green: #6E8E5A; /* Brand Green */
--green2:#86a870; /* Lighter Green */
--white: #f4f7f5;
--muted: #94a3b8;
--border: rgba(212, 175, 55, 0.18);
--glow: rgba(212, 175, 55, 0.25);
--font-display: 'Syne', sans-serif;
--font-body: 'DM Sans', sans-serif;
--radius: 12px;
--transition: 0.25s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
background: var(--bg);
color: var(--white);
font-family: var(--font-body);
font-size: 16px;
line-height: 1.7;
overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================================
NAVIGATION
============================================================ */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 999;
display: flex; align-items: center; justify-content: space-between;
padding: 0 5%;
height: 70px;
background: rgba(11, 26, 46, 0.88);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
border-bottom: 1px solid var(--border);
transition: background var(--transition);
}
nav.scrolled { background: rgba(11, 26, 46, 0.98); }

.nav-logo {
display: flex; align-items: center; gap: 10px;
font-family: var(--font-display);
font-size: 1.25rem; font-weight: 800;
letter-spacing: 0.03em;
color: var(--white);
text-transform: uppercase;
}
.nav-logo .logo-icon {
width: 36px; height: 36px;
background: linear-gradient(135deg, var(--gold), var(--green));
border-radius: 8px;
display: flex; align-items: center; justify-content: center;
font-size: 1rem; color: var(--bg);
flex-shrink: 0;
}
.nav-logo .logo-accent { color: var(--gold); }

.nav-links {
display: flex; align-items: center; gap: 1.8rem;
}
.nav-links a {
color: var(--muted);
font-size: 0.88rem; font-weight: 500;
letter-spacing: 0.02em;
transition: color var(--transition);
position: relative;
}
.nav-links a::after {
content: '';
position: absolute; bottom: -4px; left: 0; right: 0;
height: 2px; background: var(--gold);
transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-right {
display: flex; align-items: center; gap: 0.8rem;
}
/* --- NEW LOGO IMAGE STYLES --- */
.brand-logo {
  height: 100px; /* Adjust this number to make the header logo bigger or smaller */
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-logo-footer {
  height: 100px; /* Adjust this number to make the footer logo bigger or smaller */
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 0.5rem;
}
.lang-select {
background: rgba(212, 175, 55, 0.07);
border: 1px solid var(--border);
color: var(--white);
padding: 6px 10px;
border-radius: 6px;
font-family: var(--font-body);
font-size: 0.82rem;
cursor: pointer;
outline: none;
transition: border-color var(--transition);
}
.lang-select:hover, .lang-select:focus { border-color: var(--gold); }
.lang-select option { background: var(--bg3); color: var(--white); }

.btn-nav {
background: var(--gold);
color: var(--bg);
border: none;
padding: 9px 20px;
border-radius: 6px;
font-family: var(--font-body);
font-weight: 700;
font-size: 0.85rem;
cursor: pointer;
transition: background var(--transition), transform 0.15s;
white-space: nowrap;
}
.btn-nav:hover { background: var(--gold2); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
display: none; flex-direction: column; gap: 5px;
cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
display: block; width: 24px; height: 2px;
background: var(--white); border-radius: 2px;
transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
SHARED BUTTONS
============================================================ */
.btn-primary {
background: linear-gradient(135deg, var(--gold), var(--gold2));
color: var(--bg);
padding: 14px 28px;
border-radius: 8px;
font-family: var(--font-body); font-weight: 700; font-size: 0.93rem;
border: none; cursor: pointer;
display: inline-flex; align-items: center; gap: 8px;
transition: transform 0.2s, box-shadow 0.2s;
box-shadow: 0 4px 24px rgba(212, 175, 55, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4); }

.btn-outline {
background: transparent;
color: var(--white);
padding: 14px 26px;
border-radius: 8px;
font-family: var(--font-body); font-weight: 600; font-size: 0.93rem;
border: 1px solid rgba(255,255,255,0.25);
cursor: pointer;
display: inline-flex; align-items: center; gap: 8px;
transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover { border-color: var(--gold); background: rgba(212, 175, 55, 0.08); }

.btn-green {
background: linear-gradient(135deg, var(--green), var(--green2));
color: var(--bg);
padding: 14px 28px;
border-radius: 8px;
font-family: var(--font-body); font-weight: 700; font-size: 0.93rem;
border: none; cursor: pointer;
display: inline-flex; align-items: center; gap: 8px;
transition: transform 0.2s, box-shadow 0.2s;
box-shadow: 0 4px 24px rgba(110, 142, 90, 0.28);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(110, 142, 90, 0.42); }

/* ============================================================
SHARED SECTION TYPOGRAPHY
============================================================ */
.section-tag {
display: inline-block;
font-size: 0.75rem; font-weight: 700;
letter-spacing: 0.12em; text-transform: uppercase;
color: var(--gold); margin-bottom: 0.7rem;
}
.section-title {
font-family: var(--font-display);
font-size: clamp(1.8rem, 3.5vw, 2.7rem);
font-weight: 800; line-height: 1.12; letter-spacing: -0.025em;
margin-bottom: 1rem;
}
.section-desc {
color: var(--muted); font-size: 1rem;
max-width: 560px; font-weight: 400; line-height: 1.75;
}
.divider {
width: 44px; height: 3px;
background: linear-gradient(90deg, var(--gold), transparent);
margin: 0.8rem 0 1.8rem; border-radius: 2px;
}

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

/* ============================================================
PILLS / TAGS
============================================================ */
.pill {
background: rgba(212, 175, 55, 0.08);
border: 1px solid rgba(212, 175, 55, 0.2);
color: var(--gold);
padding: 5px 13px; border-radius: 40px;
font-size: 0.78rem; font-weight: 600;
}
.pill-green {
background: rgba(110, 142, 90, 0.1);
border: 1px solid rgba(110, 142, 90, 0.25);
color: var(--green);
}

/* ============================================================
FOOTER
============================================================ */
footer {
background: var(--bg3);
border-top: 1px solid var(--border);
padding: 60px 5% 28px;
}
.footer-grid {
display: grid;
grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
gap: 3rem;
max-width: 1200px; margin: 0 auto;
padding-bottom: 3rem;
border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand .f-logo {
font-family: var(--font-display);
font-size: 1.15rem; font-weight: 800;
margin-bottom: 0.8rem;
display: flex; align-items: center; gap: 8px;
}
.footer-brand .f-logo .logo-icon {
width: 30px; height: 30px; font-size: 0.8rem;
background: linear-gradient(135deg, var(--gold), var(--green));
border-radius: 7px;
display: flex; align-items: center; justify-content: center;
color: var(--bg);
}
.footer-brand p { color: var(--muted); font-size: 0.87rem; max-width: 280px; line-height: 1.7; margin-bottom: 1.2rem; }
.social-links { display: flex; gap: 0.5rem; }
.social-btn {
width: 34px; height: 34px;
background: rgba(255,255,255,0.05);
border-radius: 8px;
display: flex; align-items: center; justify-content: center;
color: var(--muted); font-size: 0.85rem;
transition: background var(--transition), color var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--bg); }
.footer-col h4 {
font-family: var(--font-display);
font-size: 0.82rem; font-weight: 700;
letter-spacing: 0.08em; text-transform: uppercase;
margin-bottom: 1.1rem;
}
.footer-col ul li { margin-bottom: 0.45rem; }
.footer-col ul a { color: var(--muted); font-size: 0.87rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.contact-item {
display: flex; align-items: flex-start; gap: 8px;
color: var(--muted); font-size: 0.84rem; margin-bottom: 0.6rem;
}
.contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: 0.85rem; }
.footer-bottom {
max-width: 1200px; margin: 2rem auto 0;
display: flex; justify-content: space-between; align-items: center;
flex-wrap: wrap; gap: 0.8rem;
}
.footer-bottom p { color: var(--muted); font-size: 0.8rem; }
.footer-bottom a { color: var(--muted); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
TRANSLATE TOAST
============================================================ */
#translate-toast {
position: fixed; bottom: 24px; right: 24px;
background: var(--bg3);
border: 1px solid var(--border);
border-radius: 12px;
padding: 1rem 2.5rem 1rem 1.2rem;
z-index: 9998;
font-size: 0.86rem; color: var(--muted);
max-width: 280px;
box-shadow: 0 8px 32px rgba(0,0,0,0.45);
opacity: 0; transform: translateY(12px);
transition: opacity 0.3s, transform 0.3s;
pointer-events: none;
}
#translate-toast.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
#translate-toast strong { color: var(--gold); display: block; margin-bottom: 0.2rem; font-size: 0.9rem; }
#translate-toast .toast-close {
position: absolute; top: 8px; right: 10px;
background: none; border: none; color: var(--muted);
cursor: pointer; font-size: 1rem; line-height: 1;
}

/* ============================================================
RESPONSIVE BREAKPOINTS (shared)
============================================================ */
@media (max-width: 1024px) {
.footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
.nav-links {
display: none;
position: fixed;
top: 70px; left: 0; right: 0;
background: rgba(11, 26, 46, 0.98);
flex-direction: column; align-items: flex-start;
padding: 1.5rem 5%; gap: 1rem;
border-bottom: 1px solid var(--border);
z-index: 998;
backdrop-filter: blur(16px);
}
.nav-links.open { display: flex; }
.nav-links a { font-size: 1rem; padding: 0.3rem 0; }
.hamburger { display: flex; }
.btn-nav { display: none; }
.footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
}

@media (max-width: 480px) {
.section-title { font-size: 1.7rem; }
.footer-bottom { flex-direction: column; text-align: center; }
}