/* =========================
   GLOBAL
========================= */

body {
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background-color:#0b0f14;
  color:#ffffff;
}

/* =========================
   HEADER
========================= */

.site-header{
  background-color:#ffffff;
  padding:24px 20px;
  border-bottom:1px solid #dddddd;
}

.header-content{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:30px;
}

.header-left{
  display:flex;
  align-items:center;
}

.header-right{
  display:flex;
  align-items:center;
  justify-self:end;
}

/* LOGO */

.logo img{
  width:368px;
  max-width:100%;
  height:auto;
  display:block;
}

/* CLIENT PORTAL BUTTON */

.client-portal-btn{
  background-color:#c6a15b;
  color:#ffffff;
  padding:14px 28px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  transition:all .3s ease;
}

.client-portal-btn:hover{
  background-color:#b38d49;
  color:#ffffff;
  transform:translateY(-2px);
}

/* =========================
   HERO SECTION
========================= */

.hero-section{
  background-color:#142030;
  padding:50px 20px 70px;
}

.hero-buttons{

  display:flex;

  flex-wrap:wrap;

  justify-content:center;

  gap:10px;

  margin-bottom:50px;

}

.hero-section .btn{

  border-radius:40px;

  padding:10px 18px;

  font-weight:600;

  font-size:.95rem;

  white-space:nowrap;

  border:2px solid rgba(198,161,91,.9);

  color:#ffffff;

  transition:all .3s ease;

}

.hero-section .btn:hover{

  background:#c6a15b;

  border-color:#c6a15b;

  color:#ffffff;

  transform:translateY(-2px);

}

.hero-map-layout{
  margin-top:20px;
}

/* TEXT */

.ops-text h2{
  font-weight:700;
}

.hero-title{
  color:#c6a15b;

  font-weight:700;

  line-height:1.2;

  margin-bottom:14px;
}

.ops-text p{
  color:#cbd5e1;
  line-height:1.7;
}

.hero-subtitle{

  color:#cbd5e1;

  line-height:1.8;

  margin-bottom:25px;

  max-width:450px;
}

.hero-subtitle{
  color:#cbd5e1;

  font-size:1rem;

  margin-bottom:18px;

  font-weight:500;
}

/* =========================
   MAP
========================= */

#flight-map{
  width:100%;
  height:480px;

  border-radius:18px;

  overflow:hidden;

  border:1px solid rgba(59,130,246,.25);

  box-shadow:
  0 20px 50px rgba(0,0,0,.35);
}

.map-caption{

  text-align:center;

  color:#9fb0c4;

  font-size:.85rem;

  font-style:italic;

  margin-top:14px;

  line-height:1.6;

  opacity:.9;
}

/* MAP TUNING */

.leaflet-container{
  background:#070b14 !important;
}

.leaflet-tile-pane{
  filter:
  contrast(1.08)
  saturate(.85)
  brightness(.92);
}

.leaflet-pane{
  filter:hue-rotate(-5deg);
}

.leaflet-overlay-pane{
  mix-blend-mode:normal;
}

.leaflet-tile{
  transition:filter .25s ease;
}

/* =========================
   CLIENT ACCESS SECTION
========================= */

.client-access-section{
  background-color:#ffffff;
  padding:55px 20px;
}

/* CARD */

.client-card{
  border:none;
  border-radius:14px;
  overflow:hidden;
}

.card-img-top{
  height:260px;
  object-fit:cover;
}

.client-card-body{
  padding-top:22px;
  padding-bottom:22px;
}

.card-body{
  background-color:#edf2f7;
  color:#111111;
}

.card-title{
  font-weight:700;
}

/* CLIENT ACCESS BUTTON */

.client-access-btn{
  display:inline-block;

  margin-top:10px;

  background-color:#c6a15b;

  color:#ffffff;

  padding:12px 24px;

  border-radius:10px;

  text-decoration:none;

  font-weight:600;

  transition:all .3s ease;
}

.client-access-btn:hover{
  background-color:#b38d49;
  color:#ffffff;
  transform:translateY(-2px);
}

/* =========================
   SERVICES
========================= */

.services{
  background-color:#f4f6f8;
  color:#071426;
  padding-top:80px;
  padding-bottom:80px;
}

.service-card{
  background-color:#ffffff;

  border-top:4px solid #c6a15b;

  border-radius:14px;

  padding:30px;

  height:100%;

  box-shadow:
  0 8px 24px rgba(7,20,38,.08);

  transition:
  transform .3s ease,
  box-shadow .3s ease;
}

.service-card:hover{
  transform:translateY(-6px);

  box-shadow:
  0 18px 36px rgba(7,20,38,.12);
}

.service-card h4{
  margin-bottom:15px;
  font-weight:700;
  color:#071426;
}

.service-card p{
  color:#5b6675;
}

/* =========================
   FOOTER
========================= */

footer{
  background-color:#0b0f14;
  color:#999999;
  font-size:14px;
}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

.header-content{
  grid-template-columns:1fr;
  text-align:center;
  gap:18px;
}

.header-left,
.header-right{
  justify-self:center;
}

.logo img{
  width:220px;
}

.hero-section{
  padding:40px 15px 50px;
}

.hero-section .btn{
  width:100%;
  max-width:320px;
}

#flight-map{
  height:380px;
}
.trip-admin-card{
  grid-template-columns:1fr;
}

.trip-details-grid{
  grid-template-columns:1fr;
}

.trip-status-panel{
  border-left:none;
  border-top:1px solid #e5e7eb;
  padding-left:0;
  padding-top:16px;
}

}