@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Syne:wght@700;800&family=Oswald:wght@700&display=swap');

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

:root {
  --navy:       #061a35;
  --blue:       #0d4a8f;
  --sky:        #1a6fd4;
  --ice:        #e4eff9;
  --red:        #d93025;
  --white:      #ffffff;
  --off-white:  #f4f8fd;
  --gray:       #5a6a7e;
  --border:     #cdd9ee;
  --font-head:  'Syne', sans-serif;
  --font-logo:  'Oswald', sans-serif;
  --font-body:  'DM Sans', sans-serif;
  --shadow-sm:  0 2px 12px rgba(6,26,53,.08);
  --shadow-md:  0 6px 30px rgba(6,26,53,.14);
  --radius:     14px;
  --transition: .22s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--navy); background: var(--white); }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy); padding: .55rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.topbar a, .topbar span { color: rgba(255,255,255,.75); font-size: .82rem; text-decoration: none; display: flex; align-items: center; gap: .35rem; transition: color var(--transition); }
.topbar a:hover { color: #fff; }
.topbar .social-links { display: flex; gap: .75rem; }
.topbar .social-links a { width: 28px; height: 28px; background: rgba(255,255,255,.1); border-radius: 6px; display: grid; place-items: center; font-size: .85rem; }
.topbar .social-links a:hover { background: var(--blue); }

/* ── NAVBAR ── */
nav {
  background: var(--white); padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 160px; position: sticky; top: 0; z-index: 200;
  border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.nav-logo { display: flex; align-items: center; gap: .9rem; text-decoration: none; }
.nav-logo img { width: 150px; height: 150px; object-fit: contain; flex-shrink: 0; }
.logo-text {
  font-size: 0;
  line-height: 0;
}
.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.4;
}

.nav-links { display: flex; list-style: none; gap: .25rem; }
.nav-links a { padding: .65rem 1.1rem; border-radius: 8px; color: var(--gray); text-decoration: none; font-size: 1.05rem; font-weight: 500; transition: all var(--transition); white-space: nowrap; }
.nav-links a:hover { color: var(--blue); background: var(--ice); }
.nav-links a.active { color: var(--blue); background: var(--ice); font-weight: 600; }
.nav-cta { background: var(--red) !important; color: #fff !important; padding: .5rem 1.1rem !important; border-radius: 8px !important; }
.nav-cta:hover { background: #b3261e !important; color: #fff !important; }

.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 12px; min-width: 48px; min-height: 48px; -webkit-tap-highlight-color: transparent; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .topbar { display: none; }
  .hamburger { display: flex; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: .5rem .75rem 1rem; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); gap: .25rem; max-height: calc(100vh - 100%); overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: flex; align-items: center; width: 100%; min-height: 54px; padding: .95rem 1.1rem; border-radius: 10px; font-size: 1.05rem; font-weight: 600; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links a.nav-cta { justify-content: center; margin-top: .5rem; border-bottom: none; }
}

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, #061a35 0%, #0d3060 55%, #0d4a8f 100%); padding: 3.5rem 2.5rem 3rem; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M38 16v8h-8v4h8v8h4v-8h8v-4h-8v-8z'/%3E%3C/g%3E%3C/svg%3E"); }
.page-hero-inner { position: relative; max-width: 760px; }
.breadcrumb { font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: .8rem; }
.breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(1.8rem,4vw,2.8rem); color: #fff; margin-bottom: .8rem; line-height: 1.15; }
.page-hero p { color: rgba(255,255,255,.78); font-size: 1rem; max-width: 580px; line-height: 1.65; }

/* ── SECTIONS ── */
.section { padding: 4rem 2.5rem; }
.section-alt { background: var(--off-white); }
.container { max-width: 1100px; margin: 0 auto; }
.section-tag { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--sky); margin-bottom: .5rem; display: block; }
.section-title { font-family: var(--font-head); font-size: clamp(1.6rem,3vw,2.2rem); color: var(--navy); margin-bottom: .75rem; line-height: 1.2; }
.section-sub { color: var(--gray); font-size: .97rem; line-height: 1.65; max-width: 600px; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.5rem; border-radius: 10px; font-family: var(--font-body); font-size: .92rem; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: all var(--transition); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 4px 16px rgba(13,74,143,.3); }
.btn-primary:hover { background: var(--navy); transform: translateY(-1px); }
.btn-danger { background: var(--red); color: #fff; box-shadow: 0 4px 16px rgba(217,48,37,.3); }
.btn-danger:hover { background: #b3261e; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }

/* ── CARDS ── */
.card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden; transition: all var(--transition); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ── FORMS ── */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--navy); margin-bottom: .4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: 10px; font-family: var(--font-body); font-size: .95rem; color: var(--navy); background: var(--off-white); transition: border var(--transition), box-shadow var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sky); background: var(--white); box-shadow: 0 0 0 3px rgba(26,111,212,.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,.65); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding: 3.5rem 2.5rem 2.5rem; max-width: 1100px; margin: 0 auto; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text small { color: rgba(255,255,255,.5); }
.footer-brand p { font-size: .88rem; line-height: 1.65; margin-top: 1rem; }
.footer-col h4 { font-family: var(--font-head); font-size: .95rem; color: #fff; margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem 2.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .8rem; }

/* ── CONTACT BOX ── */
.contact-box { background: var(--ice); border-radius: var(--radius); border: 1px solid var(--border); padding: 1.75rem; }
.contact-item { display: flex; align-items: flex-start; gap: .9rem; padding: .85rem 0; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: none; }
.ci-icon { width: 38px; height: 38px; flex-shrink: 0; background: var(--white); border-radius: 9px; display: grid; place-items: center; font-size: 1.05rem; box-shadow: var(--shadow-sm); }
.ci-label { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--sky); display: block; margin-bottom: .15rem; }
.ci-value { font-size: .93rem; font-weight: 600; color: var(--navy); }
.ci-value a { color: var(--navy); text-decoration: none; }
.ci-value a:hover { color: var(--blue); }

/* ── SUCCESS MSG ── */
.success-msg { display: none; background: #e8f5e9; border: 1.5px solid #81c784; border-radius: 10px; padding: 1.1rem 1.3rem; color: #2e7d32; font-weight: 600; font-size: .95rem; text-align: center; margin-top: 1rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .5s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
@media (max-width: 860px) { .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr 1fr; } .section { padding: 3rem 1.5rem; } }
@media (max-width: 560px) { .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; } nav { padding: 0 1.25rem; } }

/* ── CAROUSEL ── */
.carousel-wrap { position: relative; overflow: hidden; border-radius: var(--radius); }
.carousel-track { display: flex; transition: transform .5s ease; }
.carousel-track img { min-width: 100%; height: 420px; object-fit: cover; flex-shrink: 0; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(6,26,53,.65); color: #fff; border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: grid; place-items: center; transition: background var(--transition); z-index: 10; }
.carousel-btn:hover { background: rgba(6,26,53,.9); }
.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }
.carousel-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1rem; }
.carousel-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background var(--transition); }
.carousel-dots span.active { background: var(--blue); }
