/* =====================================================
   Vivid Cargo 'tech_futuristic' Style – style.css
   ===================================================== */
/* === RESET & BASE === */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #e6fff5;
  background: linear-gradient(135deg, #121d1a 0%, #206C54 90%);
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #F1C05C;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #ffffff;
  outline: none;
  text-shadow: 0 0 2px #fff6b0, 0 0 7px #F1C05C;
}
ul, ol {
  margin: 16px 0 16px 24px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
h1 {
  font-size: 2.375rem;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px #206C5480, 0 0 32px #4fe3c269;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: #F1C05C;
  text-shadow: 0 0 6px #2ada8a2e;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
p, span, dl, dt, dd {
  line-height: 1.6;
  margin-bottom: 12px;
}
strong, b {
  color: #2fffb3;
  font-weight: bold;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===============
   NAVIGATION BAR
   =============== */
header {
  background: #191d22;
  box-shadow: 0 2px 20px rgba(32,108,84,0.12);
  position: relative;
  z-index: 40;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  justify-content: flex-start;
  padding: 14px 0;
}
.main-nav > a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: #b2ffda;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, box-shadow .2s;
  position: relative;
  z-index: 1;
}
.main-nav > a:not(.cta-primary):hover,
.main-nav > a:not(.cta-primary):focus {
  background: #1c4536;
  color: #fff;
  box-shadow: 0 0 4px #2fffc6;
}
.main-nav img {
  height: 46px;
  margin-right: 8px;
}
.cta-primary {
  color: #222;
  background: linear-gradient(92deg, #F1C05C 60%, #ffe7a6 100%);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  padding: 10px 28px;
  font-size: 1.07rem;
  border-radius: 25px;
  box-shadow: 0 2px 16px #206C5450;
  cursor: pointer;
  transition: background .23s, color .23s, box-shadow .23s, transform .22s;
  text-shadow: none;
  outline: none;
  margin-left: auto;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(91deg, #ffe388 30%, #ffd035 100%);
  color: #072218;
  box-shadow: 0 0 6px #ffe27c, 0 4px 32px #fae25657;
  transform: scale(1.045);
}

/* === HAMBURGER MENU === */
.mobile-menu-toggle {
  display: none;
  background: #206C54;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  border-radius: 7px;
  padding: 6px 16px;
  margin-left: auto;
  cursor: pointer;
  transition: background .22s, color .22s;
  z-index: 60;
}
.mobile-menu-toggle:focus {
  outline: 3px solid #F1C05C;
}
/* Show hamburger on mobile */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20, 30, 30, 0.96);
  z-index: 90;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .37s cubic-bezier(.86,.01,.38,.99);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  border: none;
  color: #F1C05C;
  margin: 22px 18px 0 0;
  cursor: pointer;
  z-index: 101;
  transition: color .22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #ffffff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 20px;
  padding: 64px 0 0;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: #c4fff0;
  padding: 10px 20px;
  border-radius: 10px;
  width: 85vw;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background .2s, color .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #206C54;
  color: #F1C05C;
  text-shadow: 0 0 8px #ffe388;
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(120deg, #172e23 0%, #206C54 70%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 6px 40px #206C5430;
  margin-bottom: 40px;
}
.hero .container {
  padding-top: 42px;
  padding-bottom: 42px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}
.hero h1 {
  color: #08ffb988;
  text-shadow: 0 4px 26px #08ffc04d, 0 0 20px #206C54;
  background: linear-gradient(92deg, #2fffb3 60%, #fffbe1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero p {
  color: #F1C05C;
  font-size: 1.13rem;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.1px;
}

/* === SECTIONS, LAYOUT & SPACING === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 20px;
  background: rgba(27,36,42, 0.96);
  box-shadow: 0 2px 24px #206C542a;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 10px;
    margin-bottom: 36px;
    border-radius: 14px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #1d242a;
  border-radius: 15px;
  box-shadow: 0 3px 16px #1bf6ff1d, 0 2px 12px #206C5420;
  margin-bottom: 20px;
  position: relative;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  flex: 1 1 270px;
  transition: box-shadow .23s, transform .23s;
}
.card:hover {
  box-shadow: 0 8px 40px #1bf6ff48, 0 2px 32px #F1C05C26;
  transform: translateY(-2px) scale(1.03);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ============
   TABLES & DL
   ============ */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  background: #181e23;
  border-radius: 16px;
  overflow: hidden;
  margin: 20px 0;
  box-shadow: 0 2px 16px #0ff8a410;
}
th, td {
  padding: 13px 10px;
  text-align: left;
}
th {
  color: #2fffb3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  background: #206C54;
  border-bottom: 2px solid #F1C05C;
}
td {
  border-bottom: 1px solid #283940;
  color: #e0fffb;
}
tr:last-of-type td {
  border-bottom: none;
}
dl {
  margin-bottom: 18px;
}
dt {
  font-weight: bold;
  color: #ffe388;
}
dd {
  margin-bottom: 12px;
  margin-left: 0;
  color: #e0fff3;
}

/* ============
   TESTIMONIALS
   ============ */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fffbe1;
  color: #222;
  border-radius: 16px;
  box-shadow: 0 2px 18px #F1C05C25;
  position: relative;
  min-width: 220px;
  font-size: 1rem;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #206C54;
  font-size: 1.07rem;
}
.testimonial-card span {
  color: #F1C05C;
  font-size: 0.98rem;
  margin-left: auto;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card p {
  margin-bottom: 0;
  color: #222;
}
@media (max-width: 680px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.98rem;
  }
}

/* =============
   BUTTONS & CTA
   ============= */
button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 22px;
  padding: 10px 26px;
  font-size: 1.05rem;
  background: linear-gradient(85deg, #206C54 70%, #2fffb3 140%);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px #206C5435;
  transition: background .21s, color .21s, box-shadow .18s, transform .19s;
  letter-spacing: 0.25px;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: linear-gradient(91deg, #2fffb3 30%, #206C54 100%);
  color: #F1C05C;
  box-shadow: 0 0 8px #2fffb3ad, 0 2px 28px #F1C05C40;
  transform: scale(1.045);
}

/* ============
   FOOTER
   ============ */
footer {
  background: #14221a;
  color: #95bbaa;
  font-size: 0.97rem;
  margin-top: 56px;
  border-top: 3px solid #206C54;
  box-shadow: 0 -3px 30px #206C5422;
}
footer .container {
  padding: 24px 20px 12px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #F1C05C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color .2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #2fffb3;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: #afdac8;
  font-size: 0.98rem;
}
footer img {
  height: 32px;
}
@media (max-width: 860px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-contact {
    align-items: flex-start;
  }
}

/* ============
   RESPONSIVE
   ============ */
@media (max-width: 1024px) {
  .container {
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .card-container, .content-grid {
    flex-direction: column !important;
    gap: 14px;
  }
}

/* PADDING, MARGINS, GAPS: General spacing consistency */
.card, .testimonial-card, .feature-item, .content-wrapper, .section {
  margin-bottom: 20px;
}

/* ==============
   COOKIE BANNER
   ============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(26,29,32, 0.96);
  border-top: 3px solid #F1C05C;
  box-shadow: 0 -2px 14px #206C5433;
  color: #ffe388;
  padding: 20px 16px 16px 16px;
  z-index: 9999;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: cookie-fadein .77s cubic-bezier(.39,.63,.49,.97);
  font-size: 1.01rem;
}
@keyframes cookie-fadein {
  from {opacity:0; transform:translateY(64px);}
  to {opacity:1; transform:translateY(0);}
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner button {
  background: #F1C05C;
  color: #072218;
  border: none;
  border-radius: 14px;
  font-size: 1.03rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 22px;
  cursor: pointer;
  transition: background .19s, color .13s, box-shadow .23s;
  box-shadow: 0 1px 8px #F1C05C28;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #206C54;
  color: #fff;
  box-shadow: 0 0 10px #2fffb375;
}

/* =============
   COOKIE MODAL
   ============= */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(22,30,32,0.88);
  z-index: 10010;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fadein .27s;
}
@keyframes cookie-modal-fadein {
  from {opacity:0;}
  to {opacity:1;}
}
.cookie-modal {
  background: #1a2420;
  border-radius: 20px;
  box-shadow: 0 6px 32px #206C5444;
  padding: 40px 30px 26px 30px;
  min-width: 280px;
  max-width: 95vw;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.01rem;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.28rem;
  color: #2fffb3;
  margin-bottom: 10px;
}
.cookie-category {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-modal .cta-btns {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal button {
  border-radius: 12px;
  padding: 9px 18px;
  font-size: 0.99rem;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.4rem;
  background: none;
  border: none;
  color: #F1C05C;
  cursor: pointer;
  transition: color .15s;
}
.cookie-modal .modal-close:hover{
  color: #fff;
}

/* ================
   MISCELLANEOUS
   ================ */
::-webkit-scrollbar {
  width: 10px;
  background: #206C541b;
}
::-webkit-scrollbar-thumb {
  background: #206C54;
  border-radius: 20px;
}

hr {
  border: 0;
  border-top: 1px solid #2fffb3;
  margin: 28px 0;
}

/* ===============
   TYPOGRAPHY SCALE
   =============== */
@media (max-width: 768px) {
  h1 {
    font-size: 1.70rem;
  }
  h2 {
    font-size: 1.20rem;
  }
  h3 {
    font-size: 1.04rem;
  }
  .testimonial-card {
    font-size: 0.975rem;
  }
  .cta-primary, .button, button {
    font-size: 1rem;
    padding: 9px 15px;
  }
}

/* =============
   FORMS (if any later)
   ============= */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border: 1.5px solid #206C54;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 16px;
  background: #181e23;
  color: #fff;
  font-size: 1rem;
  transition: border .18s, box-shadow .18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #2fffb3;
  box-shadow: 0 0 0 2px #F1C05C55;
  outline: none;
}

/* ===============
   TRANSITIONS
   =============== */
.section, .card, .testimonial-card, .feature-item, .cta-primary, .button, button, .main-nav > a {
  transition: box-shadow .22s, transform .22s, background .2s, color .2s;
}

/* ===============
   UTILITY CLASSES
   =============== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-4 { margin-top: 4px !important; }
.mt-12 { margin-top: 12px !important; }
.mt-20 { margin-top: 20px !important; }
.mb-12 { margin-bottom: 12px !important; }
.mb-20 { margin-bottom: 20px !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-accent { color: #F1C05C !important; }

/* [END of style.css for Vivid Cargo, tech_futuristic aesthetic] */
