/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

/* ---------- Base / Tokens ---------- */
:root{
  --accent: #F04A23;

  --bg1: #0E3A5D;
  --bg2: #123F63;
  --bg3: #071F33;

  --glass: rgba(14, 58, 93, 0.75);
  --glass-strong: rgba(14, 58, 93, 0.85);
  --border: rgba(255,255,255,0.16);

  --text: #ffffff;
  --muted: rgba(255,255,255,0.85);

  --shadow: 0 10px 30px rgba(0,0,0,0.25);
  --shadow-soft: 0 8px 20px rgba(0,0,0,0.18);

  --radius: 16px;
  --radius-sm: 12px;

  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--bg1), var(--bg2), var(--bg3));
  background-size: 400% 400%;
  animation: waveBackground 15s ease infinite;
  color: var(--text);
  line-height: 1.6;
}

@keyframes waveBackground {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Focus */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ---------- Layout ---------- */
.container{
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section{
  padding: 3rem 0;
}

.section-title{
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.section-subtitle{
  color: var(--muted);
  max-width: 850px;
  margin: 0 auto 1.25rem;
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  min-height: 90px;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Logo */
header .logo {
  max-height: 90px;
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.7))
          drop-shadow(0 0 22px rgba(240, 74, 35, 0.6));
  cursor: pointer;
  animation: floatLogo 3s ease-in-out infinite;
}

header .logo:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.9))
          drop-shadow(0 0 28px rgba(240, 74, 35, 0.85));
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.brand{
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-title{
  font-weight: 800;
  letter-spacing: 0.6px;
  line-height: 1.1;
  font-size: clamp(1.05rem, 2.2vw, 1.7rem);
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff, #F04A23, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-tagline{
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  color: var(--muted);
}

/* ---------- Navigation ---------- */
header nav ul {
  list-style: none;
  display: flex;
  gap: 0.6rem;
  background: rgba(0,0,0,0.28);
  padding: 0.5rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
  flex-wrap: wrap;
  justify-content: center;
}

header nav ul li a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: all 0.25s ease;
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
}

header nav ul li a:hover,
header nav ul li a.active {
  background: rgba(255, 255, 255, 0.14);
  color: var(--accent);
}

/* ---------- Hero ---------- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  display: block;
}

.hero-text {
  width: min(900px, calc(100% - 2rem));
  margin: 2rem auto 0;
  padding: 1.25rem 1.25rem 2.25rem;
  background: rgba(0,0,0,0.22);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.hero-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 0.65rem;
  color: var(--accent);
}

/* ---------- Cards ---------- */
.card{
  background: rgba(0,0,0,0.22);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease;
}

.card:hover{
  transform: translateY(-3px);
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  padding: 0.75rem 1.1rem;
  border-radius: 14px;
  border: none;
  background: var(--bg2);
  color: var(--text);
  transition: all 0.3s ease;
}

.btn:hover{
  background: var(--bg1);
  transform: translateY(-2px);
}

.btn-primary{
  background: var(--accent);
}

.btn-primary:hover{
  background: #d63f1c;
}

.badge{
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(240, 74, 35, 0.15);
  border: 1px solid rgba(240, 74, 35, 0.35);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ---------- Footer ---------- */
footer {
  background: var(--bg1);
  color: var(--text);
  padding: 2rem 1.5rem 1rem;
  margin-top: 2rem;
  font-size: 0.95rem;
  border-top: 3px solid var(--accent);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.footer-content strong {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  color: var(--accent);
}

.footer-content a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #bbb;
}