/* =========================
   FILE: styles.css
   Shared styles for VSI pages (index, about, policy, shipping-process)
   ========================= */

:root{
  --navy:#0a2a43;
  --ink:#222;
  --muted:#555;
  --bg:#ffffff;
  --soft:#fafafa;
  --border:#e5e5e5;
  --radius:10px;
}

/* Base */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
}
a{ color:inherit; }
img{ max-width:100%; height:auto; display:block; }

/* Layout helpers */
.wrap{
  max-width:1100px;
  margin:auto;
}
section{
  padding:20px 20px;
}
h1, h2, h3{ margin:0 0 10px 0; }
h2{ color:var(--navy); }
p{ margin:10px 0; }
.muted{ color:var(--muted); }

/* =========================
   Footer (Links + Contact)
   ========================= */
.site-footer{
  background:#071f33;
  color:#ffffff;
  padding:50px 20px 26px;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:28px;
  align-items: flex-start;
}

@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr; }
}

.footer-title{
  font-weight:900;
  font-size:1.1rem;
  margin-bottom:12px;
}

.footer-muted{
  color: rgba(255,255,255,0.78);
}

.footer-links{
  display:grid;
  gap:10px;
  margin-top:14px;
  text-align: left;
}

.footer-links a{
  color:#ffffff;
  text-decoration:none;
  font-weight:800;
}

.footer-links a:hover{
  text-decoration: underline;
}

/* Contact card inside footer */
.footer-contact-banner{
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding:18px;
}

.footer-contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

@media (max-width: 520px){
  .footer-contact-grid{ grid-template-columns:1fr; }
}

.footer-label{
  font-weight:900;
  margin-bottom:6px;
  color: rgba(255,255,255,0.9);
}

.footer-contact-banner a{
  color:#ffffff;
  font-weight:900;
  text-decoration:none;
}

.footer-contact-banner a:hover{ text-decoration: underline; }

.footer-cta{
  display:inline-block;
  background:#ffffff;
  color: var(--navy) !important;
  padding:10px 14px;
  border-radius:8px;
  font-weight:900;
  text-decoration:none;
}

.footer-cta:hover{ opacity:0.92; }

.footer-cta-outline{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.7);
  color:#ffffff !important;
}

.footer-cta-outline:hover{
  opacity:1;
  background: rgba(255,255,255,0.08);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.12);
  margin-top:26px;
  padding-top:18px;
}

/* =========================
   Section Separator
   ========================= */
.section-separator{
  display:flex;
  justify-content:center;
  padding: 10px 0;
}

.section-separator img{
  height:200px;
  width:100%;
  /* opacity:0.8; */
}

/* =========================
   Navigation (mobile-ready)
   ========================= */
nav{
  background:#ffffff;
  color:var(--navy);
  padding:15px 20px;
  position:sticky;
  top:0;
  z-index:1000;
  border-bottom:1px solid var(--border);
}

.nav-container{
  max-width:1100px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:relative;
}

.logo{
  font-weight:700;
  font-size:1.05rem;
  letter-spacing:.2px;
  color:var(--navy);
}

.nav-links{
  list-style:none;
  display:flex;
  gap:20px;
  margin:0;
  padding:0;
}

.nav-links a{
  color:var(--navy);
  text-decoration:none;
  font-weight:700;
  font-size:.95rem;
}

.nav-links a:hover{
  text-decoration:underline;
}

.menu-toggle{
  display:none;
  font-size:1.6rem;
  cursor:pointer;
  user-select:none;
  color:var(--navy);
}

/* Mobile Nav */
@media (max-width:768px){
  .menu-toggle{ display:block; }

  .nav-links{
    display:none;
    flex-direction:column;
    background:#ffffff;
    position:absolute;
    top:52px;
    left:0;
    width:100%;
    padding:18px 20px;
    gap:14px;
    border-top:1px solid var(--border);
  }

  .nav-links.active{ display:flex; }

  .nav-links a{
    color:var(--navy);
  }
}

/* =========================
   Header / Hero
   ========================= */
header{
  background:var(--navy);
  color:#fff;
  padding:60px 20px;
  text-align:left;
}
header.center{
  text-align:center;
}
header h1{
  font-size:2.2rem;
  line-height:1.2;
}
header p{
  max-width:900px;
  font-size:1.05rem;
  opacity:.95;
}

/* Images */
.hero-image,
.section-image{
  width:100%;
  border-radius:var(--radius);
  margin:18px 0 0 0;
}
.hero-image.on-dark{
  border:1px solid rgba(255,255,255,.15);
}
.section-image.on-light{
  border:1px solid var(--border);
}
.card img{
  width:100%;
  border-radius:8px;
  margin-bottom:15px;
}
.image-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap:20px;
  margin-top:20px;
}

/* =========================
   Hero Background Header
   ========================= */
.hero{
  position: relative;
  min-height: 72vh;
  background-image: url("images/shipping.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* Dark overlay for readability */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.35);
}

.hero-overlay{
  position: relative;
  width: 100%;
  padding: 0 20px;
}

/* Left aligned within wrap */
.hero .wrap{
  width:100%;
}

.hero-card{
  max-width: 720px;
  background: var(--navy);
  color: #ffffff;
  padding: 38px 34px;
  border-radius: var(--radius);

  /* Animation on load */
  animation: heroCardIn 650ms ease-out both;
}

@keyframes heroCardIn{
  from{
    opacity: 0;
    transform: translateY(14px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-card h1{
  margin: 0 0 12px 0;
  font-size: 2.35rem;
  line-height: 1.15;
}

.hero-card p{
  margin: 0 0 18px 0;
  font-size: 1.05rem;
  opacity: 0.95;
}

/* CTA Button inside hero card */
.hero-cta{
  display: inline-block;
  background: #ffffff;
  color: var(--navy);
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.hero-cta:hover{
  opacity: 0.92;
}

/* Mobile */
@media (max-width: 768px){
  .hero{
    min-height: 62vh;
  }
  .hero-card{
    padding: 28px 22px;
  }
  .hero-card h1{
    font-size: 1.85rem;
  }
}


/* =========================
   Grids / Cards / Lists
   ========================= */
.grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:start;
}
@media (max-width:900px){
  .grid{ grid-template-columns:1fr; }
}

.services{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap:30px;
  margin-top:18px;
}
.card{
  background:var(--soft);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
  margin:25px;
}
ul{ padding-left:20px; }
ol{ padding-left:20px; }

/* =========================
   Service cards  (Index Page)
   ========================= */
.service-card {
  background:var(--navy) !important;
  color:#ffffff !important;
  border-radius:var(--radius) !important;
  padding:32px 28px;
  margin-top:24px;
}

.service-card h3{
  margin:0 0 6px 0;
  font-size:1.05rem;
  color:#ffffff;
}

.service-card p{
  margin:0;
  font-size:1rem;
}

/* =========================
   Customer Reviews
   ========================= */
   /* =========================
   Reviews Section (Navy BG)
   ========================= */
.reviews-section{
  background: var(--navy);
  color: #ffffff;
}

.reviews-section h2{
  color: #ffffff;
}

.reviews-section .muted{
  color: rgba(255,255,255,0.8);
}

.reviews-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:24px;
  margin-top:20px;
}

.review-card{
  background: #ffffff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 22px;
  border: none; /* remove light border on dark bg */
}


.review-stars{
  color:#f4b400; /* Google-style gold */
  font-size:1.2rem;
  margin-bottom:10px;
}

.review-text{
  margin:0 0 12px 0;
  font-style:italic;
}

.review-author{
  font-weight:800;
  color:var(--navy);
  font-size:0.95rem;
}

.reviews-cta{
  margin-top:24px;
  text-align:center;
}

.reviews-section .reviews-cta .cta{
  background:#ffffff;
  color: var(--navy);
  font-weight:900;
}


/* =========================
   Contact Banner (Index Page)
   ========================= */
.contact-banner{
  background:var(--navy) !important;
  color:#ffffff !important;
  border-radius:var(--radius) !important;
  padding:32px 28px;
  margin-top:24px;
}

.contact-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:24px;
  align-items:start;
}

.contact-banner h3{
  margin:0 0 6px 0;
  font-size:1.05rem;
  color:#ffffff;
}

.contact-banner p{
  margin:0;
  font-size:1rem;
}

.contact-banner a{
  color:#ffffff;
  text-decoration:none;
  font-weight:700;
}

.contact-banner a:hover{
  text-decoration:underline;
}

/* Mobile layout */
@media (max-width:768px){
  .contact-grid{
    grid-template-columns:1fr;
    gap:18px;
  }
}

/* Pills / KPI blocks (About page) */
.kpi{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:14px;
}
@media (max-width:520px){
  .kpi{ grid-template-columns:1fr; }
}
.pill{
  background:#fff;
  border:1px solid var(--border);
  border-radius:999px;
  padding:10px 12px;
  font-weight:700;
  color:var(--navy);
  font-size:.95rem;
}

/* Timelines (About page) */
.timeline{
  list-style:none;
  padding:0;
  margin:18px 0 0 0;
}
.timeline li{
  padding:14px 0;
  border-top:1px solid var(--border);
}
.timeline li:first-child{ border-top:none; }
.timeline .year{
  font-weight:800;
  color:var(--navy);
}

/* Steps (Shipping process page) */
.steps{
  margin:18px 0 0 0;
  padding:0;
  list-style:none;
}
.steps li{
  border-top:1px solid var(--border);
  padding:16px 0;
}
.steps li:first-child{ border-top:none; }
.step-title{
  font-weight:800;
  color:var(--navy);
  margin-bottom:4px;
}

/* Policy list columns */
.prohibited{
  columns:2;
  column-gap:28px;
  margin:10px 0 0 18px;
}
@media (max-width:700px){
  .prohibited{ columns:1; }
}

/* =========================
   FAQ Section
   ========================= */
.faq-list{
  margin-top:24px;
  max-width:900px;
}

.faq-item{
  border-bottom:1px solid var(--border);
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  padding:18px 0;
  text-align:left;
  font-size:1.05rem;
  font-weight:800;
  color:var(--navy);
  cursor:pointer;
}

.faq-question::after{
  content:"+";
  float:right;
  font-size:1.3rem;
}

.faq-item.active .faq-question::after{
  content:"–";
}

.faq-answer{
  display:none;
  padding-bottom:18px;
}

.faq-item.active .faq-answer{
  display:block;
}

.faq-answer p,
.faq-answer ul{
  margin:8px 0;
}

/* Kreyòl subtext styling */
.kreyol{
  margin-top:10px;
  padding-top:10px;
  border-top:1px dashed var(--border);
  color:var(--muted);
  font-style:italic;
}

/* FAQ Section */
.faq-list{
  margin-top:24px;
  max-width:900px;
}

.faq-item{
  border-bottom:1px solid var(--border);
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  padding:18px 0;
  text-align:left;
  font-size:1.05rem;
  font-weight:800;
  color:var(--navy);
  cursor:pointer;
}

.faq-question::after{
  content:"+";
  float:right;
  font-size:1.3rem;
}

.faq-item.active .faq-question::after{
  content:"–";
}

.faq-answer{
  display:none;
  padding-bottom:18px;
}

.faq-item.active .faq-answer{
  display:block;
}

.faq-answer p,
.faq-answer ul{
  margin:8px 0;
}

/* =========================
   Buttons / CTAs
   ========================= */
.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
}
.cta{
  display:inline-block;
  padding:12px 18px;
  background:var(--navy);
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  font-weight:800;
}
.cta.secondary{ background:#444; }

/* =========================
   Forms (Container request)
   ========================= */
form{
  max-width:600px;
  margin-top:24px;
}
form label{
  display:block;
  margin-top:14px;
  font-weight:700;
}
form input,
form select,
form textarea{
  width:100%;
  padding:10px;
  margin-top:6px;
  border-radius:6px;
  border:1px solid #ccc;
  background:#fff;
  color:var(--ink);
}
form button{
  margin-top:18px;
  padding:12px;
  width:100%;
  background:var(--navy);
  color:#fff;
  border:none;
  border-radius:6px;
  font-size:1rem;
  font-weight:800;
  cursor:pointer;
}

/* =========================
   Footer
   ========================= */
footer{
  background:#f4f4f4;
  text-align:center;
  padding:28px 20px;
  font-size:.9rem;
  color:#333;
  margin-top:40px;
}
