/* === BRAND: Navy #1a2d5a | Orange #f5a623 | White dominant === */
:root {
  --navy:       #1a2d5a;
  --navy-dark:  #111e3d;
  --navy-light: #eef1f8;
  --orange:     #f5a623;
  --orange-dark:#d4891a;
  --orange-light:#fff8ec;
  --white:      #ffffff;
  --off-white:  #f8f9fc;
  --gray:       #6b7280;
  --border:     #e5e7eb;
  --text:       #1a2d5a;
  --text-light: #4b5563;
}
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { font-family:'Inter',system-ui,sans-serif; background:var(--white); color:var(--text); line-height:1.65; }
a { color:var(--navy); text-decoration:none; }
img { max-width:100%; }

/* NAV */
nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(255,255,255,0.97);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  display:flex; justify-content:space-between; align-items:center;
  padding:0 6%; height:68px;
  box-shadow:0 1px 12px rgba(26,45,90,0.06);
}
.nav-logo img { height:46px; object-fit:contain; }
.nav-links { display:flex; gap:28px; list-style:none; }
.nav-links a {
  color:var(--text-light); font-size:14px; font-weight:500;
  padding:4px 0; border-bottom:2px solid transparent; transition:all .2s;
}
.nav-links a:hover { color:var(--navy); border-bottom-color:var(--orange); }
.nav-cta {
  background:var(--navy); color:var(--white);
  padding:10px 24px; border-radius:6px;
  font-weight:700; font-size:13.5px; transition:all .2s;
}
.nav-cta:hover { background:var(--navy-dark); }

/* HERO */
.hero {
  min-height:100vh; padding-top:68px;
  background:var(--white);
  display:grid; grid-template-columns:1fr 1fr; align-items:center;
}
.hero-left { padding:72px 5% 72px 8%; }
.hero-tag {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--orange-light);
  border:1px solid rgba(245,166,35,0.35);
  color:var(--orange-dark);
  padding:6px 14px; border-radius:20px;
  font-size:12px; font-weight:700; letter-spacing:1px;
  text-transform:uppercase; margin-bottom:24px;
}
.hero h1 {
  font-family:'Playfair Display',serif;
  font-size:clamp(2.2rem,3.8vw,3.6rem);
  font-weight:900; line-height:1.1;
  color:var(--navy); margin-bottom:20px;
}
.hero h1 span { color:var(--orange); }
.hero-desc {
  font-size:16.5px; color:var(--text-light); line-height:1.75;
  margin-bottom:36px; max-width:480px;
}
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:44px; }
.btn-primary {
  background:var(--navy); color:var(--white);
  padding:13px 30px; border-radius:7px;
  font-weight:700; font-size:14px; transition:all .2s;
  display:inline-flex; align-items:center; gap:8px;
}
.btn-primary:hover { background:var(--navy-dark); transform:translateY(-1px); }
.btn-secondary {
  background:transparent; color:var(--navy);
  border:2px solid var(--navy); padding:11px 28px;
  border-radius:7px; font-weight:600; font-size:14px; transition:all .2s;
}
.btn-secondary:hover { background:var(--navy-light); }
.hero-stats {
  display:flex; gap:36px; padding-top:28px;
  border-top:1px solid var(--border);
}
.stat-num {
  font-family:'Playfair Display',serif;
  font-size:1.9rem; font-weight:900; color:var(--navy); line-height:1;
}
.stat-label { font-size:11.5px; color:var(--gray); margin-top:4px; }
.hero-right { position:relative; height:100vh; overflow:hidden; }
.hero-right img { width:100%; height:100%; object-fit:cover; filter:brightness(0.88) saturate(0.9); }
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to right,rgba(255,255,255,0.12) 0%,transparent 55%);
}
.hero-badge {
  position:absolute; bottom:44px; left:-18px;
  background:var(--white); border-radius:12px;
  padding:15px 20px; display:flex; align-items:center; gap:14px;
  box-shadow:0 12px 40px rgba(26,45,90,0.14);
  border:1px solid var(--border);
}
.badge-icon {
  width:42px; height:42px; background:var(--orange-light);
  border-radius:10px; display:flex; align-items:center;
  justify-content:center; font-size:20px;
}
.badge-t { font-size:13px; font-weight:700; color:var(--navy); }
.badge-s { font-size:11px; color:var(--gray); margin-top:1px; }

/* TICKER */
.ticker {
  background:var(--navy); padding:12px 0;
  overflow:hidden; white-space:nowrap;
}
.ticker-inner { display:inline-block; animation:scrollx 35s linear infinite; }
.ticker-inner span {
  color:rgba(255,255,255,0.82); font-size:13px; font-weight:500; padding:0 36px;
}
.ticker-inner span::before { content:"◆ "; color:var(--orange); font-size:8px; vertical-align:middle; }
@keyframes scrollx { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* SECTIONS */
section { padding:88px 8%; }
.section-tag {
  display:flex; align-items:center; gap:10px;
  font-size:11px; font-weight:800; letter-spacing:2px;
  text-transform:uppercase; color:var(--orange-dark); margin-bottom:14px;
}
.section-tag::before { content:''; width:24px; height:2px; background:var(--orange); }
.section-title {
  font-family:'Playfair Display',serif;
  font-size:clamp(1.7rem,3vw,2.6rem);
  font-weight:900; color:var(--navy); line-height:1.15; margin-bottom:14px;
}
.section-sub { font-size:15.5px; color:var(--text-light); line-height:1.75; max-width:560px; }

/* ABOUT */
.about { background:var(--white); }
.about-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:68px;
  align-items:center; margin-top:52px;
}
.about-imgs { position:relative; }
.about-img-main { width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:16px; display:block; }
.about-img-badge {
  position:absolute; bottom:-22px; right:-22px;
  width:44%; aspect-ratio:1; object-fit:cover;
  border-radius:12px; border:5px solid var(--white);
  box-shadow:0 8px 32px rgba(26,45,90,0.13);
}
.mission-box {
  background:var(--navy); color:var(--white);
  border-radius:12px; padding:22px 24px;
  margin:24px 0; border-left:4px solid var(--orange);
}
.mission-box p { font-size:14.5px; line-height:1.75; color:rgba(255,255,255,0.88); font-style:italic; }
.about-body { font-size:15px; color:var(--text-light); line-height:1.75; margin-bottom:14px; }
.reg-note {
  margin-top:22px; padding:13px 16px;
  background:var(--orange-light); border-radius:8px;
  font-size:12.5px; color:var(--text-light);
  border-left:3px solid var(--orange);
}
.reg-note strong { color:var(--navy); }

/* SERVICES */
.services { background:var(--off-white); }
.services-header {
  display:grid; grid-template-columns:1fr 1fr; gap:40px;
  align-items:end; margin-bottom:48px;
}
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.service-card {
  background:var(--white); border-radius:14px; padding:28px 24px;
  border:1px solid var(--border);
  box-shadow:0 1px 4px rgba(0,0,0,0.04);
  transition:all .25s;
}
.service-card:hover {
  border-color:var(--orange); transform:translateY(-4px);
  box-shadow:0 10px 32px rgba(245,166,35,0.1);
}
.service-icon {
  width:50px; height:50px; border-radius:12px;
  background:var(--orange-light);
  display:flex; align-items:center; justify-content:center;
  font-size:23px; margin-bottom:16px;
}
.service-card h3 { font-size:15px; font-weight:700; color:var(--navy); margin-bottom:10px; }
.service-card p  { font-size:13px; color:var(--text-light); line-height:1.7; }

/* CBST */
.cbst { background:var(--white); }
.cbst-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:56px;
  align-items:start; margin-top:48px;
}
.cbst-banner {
  background:var(--navy); border-radius:14px; padding:30px;
  color:var(--white); margin-bottom:24px;
}
.cbst-banner .stripe { width:36px; height:3px; background:var(--orange); border-radius:2px; margin-bottom:14px; }
.cbst-banner h3 {
  font-family:'Playfair Display',serif; font-size:1.35rem;
  font-weight:900; color:var(--white); margin-bottom:10px;
}
.cbst-banner p { font-size:13.5px; color:rgba(255,255,255,0.72); line-height:1.7; }
.challenges-title {
  font-size:11px; font-weight:800; text-transform:uppercase;
  letter-spacing:1.5px; color:var(--gray); margin-bottom:14px;
}
.challenge {
  display:flex; gap:13px; padding:11px 0;
  border-bottom:1px solid var(--border);
}
.challenge:last-child { border-bottom:none; }
.c-num {
  font-size:10.5px; font-weight:800; color:var(--orange);
  background:var(--orange-light); width:22px; height:22px;
  border-radius:50%; display:flex; align-items:center;
  justify-content:center; flex-shrink:0; margin-top:2px;
}
.c-text { font-size:13px; color:var(--text-light); line-height:1.6; }
.cbst-features { display:flex; flex-direction:column; gap:14px; }
.cbst-feat {
  background:var(--off-white); border-radius:12px;
  padding:18px 20px; border:1px solid var(--border);
  display:flex; gap:15px; align-items:flex-start;
  transition:border-color .2s;
}
.cbst-feat:hover { border-color:var(--orange); }
.feat-icon {
  width:40px; height:40px; background:var(--white);
  border:1.5px solid rgba(245,166,35,0.3); border-radius:9px;
  display:flex; align-items:center; justify-content:center;
  font-size:19px; flex-shrink:0;
}
.cbst-feat h4 { font-size:13.5px; font-weight:700; color:var(--navy); margin-bottom:3px; }
.cbst-feat p  { font-size:12.5px; color:var(--text-light); line-height:1.6; }

/* BORDERS */
.borders { background:var(--navy); }
.borders .section-tag  { color:var(--orange); }
.borders .section-tag::before { background:var(--orange); }
.borders .section-title { color:var(--white); }
.borders .section-sub   { color:rgba(255,255,255,0.58); }
.borders-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:1px; margin-top:44px;
  background:rgba(255,255,255,0.07);
  border-radius:14px; overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
}
.border-item {
  background:var(--navy); padding:22px 18px;
  transition:background .2s; display:flex; align-items:center; gap:13px;
}
.border-item:hover { background:rgba(245,166,35,0.1); }
.b-num {
  font-family:'Playfair Display',serif; font-size:1.4rem;
  font-weight:900; color:var(--orange); line-height:1; min-width:30px;
}
.b-name { font-size:13.5px; font-weight:600; color:var(--white); }
.b-sub  { font-size:11px; color:rgba(255,255,255,0.4); margin-top:2px; }
.b-primary { background:rgba(245,166,35,0.08) !important; }
.b-primary .b-name::after { content:" ★"; color:var(--orange); font-size:11px; }

/* GALLERY */
.gallery { background:var(--off-white); }
.gallery-grid {
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  grid-template-rows:230px 230px;
  gap:12px; margin-top:44px;
  border-radius:14px; overflow:hidden;
}
.gallery-grid .g0 { grid-row:span 2; }
.gallery-grid div { overflow:hidden; }
.gallery-grid img {
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform .4s;
}
.gallery-grid div:hover img { transform:scale(1.05); }

/* CONTACT */
.contact { background:var(--white); }
.contact-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:56px; margin-top:44px; align-items:start;
}
.contact-items { display:flex; flex-direction:column; gap:14px; }
.contact-item {
  display:flex; gap:15px; align-items:flex-start;
  padding:18px; background:var(--off-white);
  border-radius:12px; border:1px solid var(--border);
}
.c-icon {
  width:42px; height:42px; background:var(--orange-light);
  border-radius:10px; display:flex; align-items:center;
  justify-content:center; font-size:19px; flex-shrink:0;
}
.contact-item h4 { font-size:12.5px; font-weight:700; color:var(--navy); margin-bottom:3px; }
.contact-item p, .contact-item a { font-size:13.5px; color:var(--text-light); }
.contact-item a { color:var(--navy); font-weight:600; }
.contact-form {
  background:var(--off-white); border-radius:14px;
  padding:32px 28px; border:1px solid var(--border);
}
.contact-form h3 {
  font-family:'Playfair Display',serif;
  font-size:1.35rem; font-weight:900; color:var(--navy); margin-bottom:22px;
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:12px; }
.form-group { margin-bottom:12px; }
.form-group label {
  display:block; font-size:11px; font-weight:700;
  color:var(--navy); margin-bottom:5px; text-transform:uppercase; letter-spacing:.5px;
}
.form-group input, .form-group textarea, .form-group select {
  width:100%; padding:10px 13px;
  border:1.5px solid var(--border); border-radius:7px;
  font-size:13.5px; font-family:inherit; color:var(--text);
  background:var(--white); outline:none; transition:border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color:var(--orange);
}
.form-group textarea { height:90px; resize:vertical; }
.form-submit {
  width:100%; padding:13px; background:var(--navy); color:var(--white);
  border:none; border-radius:7px; font-size:14px; font-weight:700;
  cursor:pointer; font-family:inherit; transition:background .2s;
}
.form-submit:hover { background:var(--navy-dark); }

/* FOOTER */
footer {
  background:var(--navy-dark); color:rgba(255,255,255,0.58);
  padding:52px 8% 26px;
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:48px; margin-bottom:36px; }
.footer-logo img { height:44px; filter:brightness(0) invert(1) opacity(0.85); margin-bottom:14px; display:block; }
.footer-brand { font-size:13px; line-height:1.75; color:rgba(255,255,255,0.5); }
.footer-col h4 {
  font-size:10.5px; font-weight:800; color:var(--white);
  letter-spacing:1.5px; text-transform:uppercase; margin-bottom:16px;
}
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.footer-col ul a { color:rgba(255,255,255,0.48); font-size:13px; transition:color .2s; }
.footer-col ul a:hover { color:var(--orange); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.07);
  padding-top:22px; display:flex; justify-content:space-between;
  align-items:center; font-size:12px; flex-wrap:wrap; gap:8px;
}
.footer-bottom a { color:var(--orange); }

/* RESPONSIVE */
@media(max-width:960px) {
  .hero, .about-grid, .cbst-grid, .contact-grid, .footer-grid,
  .services-header { grid-template-columns:1fr; gap:36px; }
  .hero-right { height:50vh; }
  .services-grid { grid-template-columns:1fr 1fr; }
  .borders-grid { grid-template-columns:1fr 1fr; }
  .nav-links { display:none; }
  .gallery-grid { grid-template-columns:1fr 1fr; grid-template-rows:auto; }
  .gallery-grid .g0 { grid-row:auto; }
  .about-img-badge { display:none; }
  .form-row { grid-template-columns:1fr; }
}
@media(max-width:580px) {
  section { padding:60px 5%; }
  .services-grid { grid-template-columns:1fr; }
  .borders-grid { grid-template-columns:1fr 1fr; }
  .hero-stats { flex-wrap:wrap; gap:20px; }
}
@media print { nav,footer { display:none; } }