:root{
  --primary:#0E4AA8;
  --primary-dark:#092f70;
  --accent:#F6A623;
  --accent-2:#ffcc7a;
  --text:#101828;
  --muted:#667085;
  --bg:#F7EFE8;
  --surface:#ffffff;
  --surface-soft:#fff7ef;
  --line:#e8d7c7;
  --shadow:0 15px 40px rgba(15, 43, 93, .10);
  --radius-xl:28px;
  --radius-lg:20px;
  --radius-md:14px;
  --container:1200px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Outfit", sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(246,166,35,.09), transparent 25%),
    linear-gradient(180deg, #fff 0%, #fbf4ee 45%, #f7efe8 100%);
}

img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input,textarea{font:inherit}
.container{width:min(var(--container), calc(100% - 32px));margin-inline:auto}

/* ===== Page ===== */
.pickup-page{overflow:hidden}
.section-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(246,166,35,.15);
  color:#c67600;
  border:1px solid rgba(246,166,35,.22);
  border-radius:999px;
  padding:7px 14px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.2px;
}
.section-head h2{
  margin:12px 0 10px;
  font-size:clamp(28px, 4vw, 40px);
  line-height:1.1;
}
.section-head p{
  margin:0;
  color:var(--muted);
  max-width:620px;
}
.section-head--center{text-align:center}
.section-head--center p{margin-inline:auto}

.pickup-hero{
  position:relative;
  padding:72px 0 42px;
  background:
    linear-gradient(120deg, rgba(14,74,168,.97), rgba(10,47,108,.92)),
    url("assets/images/footer-bg.png") center/cover;
  color:#fff;
}
.pickup-hero::after{
  content:"";
  position:absolute;
  inset:auto 0 -1px 0;
  height:95px;
  background:linear-gradient(to bottom right, transparent 48%, var(--bg) 49%);
}
.pickup-hero__grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:26px;
  align-items:center;
}
.pickup-hero__content h1{
  font-size:clamp(38px, 6vw, 66px);
  line-height:1.02;
  margin:18px 0 18px;
  max-width:720px;
}
.pickup-hero__content h1 span{color:var(--accent)}
.pickup-hero__content p{
  max-width:650px;
  color:rgba(255,255,255,.85);
  font-size:17px;
}
.hero-pills{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}
.hero-pills span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.15);
  backdrop-filter:blur(8px);
}
.pickup-hero__card{
  display:grid;
  gap:16px;
}
.mini-stat{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  border-radius:24px;
  padding:24px;
  backdrop-filter:blur(10px);
}
.mini-stat strong{
  display:block;
  font-size:32px;
  margin-bottom:8px;
}
.mini-stat span{color:rgba(255,255,255,.85)}
.mini-stat--accent{
  background:linear-gradient(135deg, rgba(246,166,35,.18), rgba(255,255,255,.1));
}

.pickup-layout{
  padding:40px 0 26px;
}
.pickup-layout__grid{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:24px;
  align-items:start;
}
.card-panel{
  background:rgba(255,255,255,.82);
  border:1px solid rgba(255,255,255,.85);
  box-shadow:var(--shadow);
  border-radius:var(--radius-xl);
  padding:28px;
  backdrop-filter:blur(16px);
}

.map-wrap{
  margin-top:24px;
  background:
    radial-gradient(circle at 10% 10%, rgba(246,166,35,.12), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #f2f8ff 42%, #fff6ec 100%);
  border-radius:26px;
  padding:22px;
  border:1px solid #dbe7fb;
}

.map-stage{
  position:relative;
  max-width:420px;
  margin:0 auto;
}

.sri-lanka-map-img{
  width:100%;
  height:auto;
  display:block;
  filter: drop-shadow(0 14px 28px rgba(14, 74, 168, 0.18));
}

.map-points{
  position:absolute;
  inset:0;
}

.map-pin{
  position:absolute;
  transform:translate(-50%, -50%);
  width:18px;
  height:18px;
  border-radius:50%;
  background:var(--accent);
  border:3px solid #fff;
  cursor:pointer;
  box-shadow:0 0 0 0 rgba(246,166,35,.35);
  transition:.25s ease;
}

.map-pin::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:30px;
  height:30px;
  transform:translate(-50%, -50%);
  border-radius:50%;
  border:1px solid rgba(246,166,35,.28);
  animation:pulse 2s infinite;
}

.map-pin:hover,
.map-pin.active{
  transform:translate(-50%, -50%) scale(1.15);
  box-shadow:0 0 0 8px rgba(246,166,35,.16);
}

.map-pin.active{
  background:var(--primary);
}

.pin-tooltip{
  position:absolute;
  left:50%;
  bottom:28px;
  transform:translateX(-50%);
  white-space:nowrap;
  background:#fff;
  color:#12233f;
  font-size:12px;
  font-weight:700;
  padding:7px 10px;
  border-radius:999px;
  box-shadow:0 12px 26px rgba(18,35,63,.12);
  opacity:0;
  pointer-events:none;
  transition:.2s ease;
}

.map-pin:hover .pin-tooltip,
.map-pin.active .pin-tooltip{
  opacity:1;
  bottom:34px;
}
.map-legend{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
  margin-top:18px;
  color:var(--muted);
  font-size:14px;
}
.legend-dot{
  display:inline-block;
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--accent);
  margin-right:8px;
}

.pickup-form{
  display:grid;
  gap:16px;
}
.input-group label{
  display:block;
  margin-bottom:8px;
  font-weight:600;
  color:#24364d;
}
.input-group input,
.input-group textarea{
  width:100%;
  border:1px solid #d8e1ef;
  background:#fff;
  padding:14px 16px;
  border-radius:16px;
  outline:none;
  transition:.2s ease;
}
.input-group input:focus,
.input-group textarea:focus{
  border-color:#8fb2ef;
  box-shadow:0 0 0 4px rgba(14,74,168,.08);
}
.selection-box{
  margin-top:6px;
  background:var(--surface-soft);
  border:1px solid #f2d9bb;
  border-radius:20px;
  padding:18px;
}
.selection-box__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:14px;
}
.selection-box__head h3{
  margin:0;
  font-size:18px;
}
.clear-btn{
  background:#fff;
  border:1px solid #f0c995;
  color:#b96c00;
  border-radius:999px;
  padding:8px 14px;
  font-weight:600;
}
.clear-btn:hover{background:#fff6eb}
.selected-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.selected-chip,.empty-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  padding:10px 14px;
  font-size:14px;
}
.selected-chip{
  background:#fff;
  border:1px solid #f1cfa6;
  color:#9a5b04;
  font-weight:600;
}
.selected-chip button{
  border:none;
  background:transparent;
  color:#d26d00;
  cursor:pointer;
  font-size:16px;
  line-height:1;
}
.empty-chip{
  color:#8c6b45;
  background:rgba(255,255,255,.8);
  border:1px dashed #e6c59f;
}
.whatsapp-btn{
  width:100%;
  justify-content:center;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:16px 18px;
  border-radius:18px;
  font-size:17px;
  font-weight:700;
  color:#fff;
  background:linear-gradient(135deg, #22c55e, #17a34a);
  box-shadow:0 14px 30px rgba(34,197,94,.22);
}

.pickup-cards-section{
  padding:28px 0 60px;
}
.pickup-cards{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}
.pickup-card{
  position:relative;
  background:#fff;
  border:1px solid #ede6de;
  border-radius:22px;
  padding:20px;
  box-shadow:0 12px 28px rgba(17,24,39,.05);
  transition:.25s ease;
  cursor:pointer;
  overflow:hidden;
}
.pickup-card::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg, var(--accent), var(--primary));
  opacity:0;
  transition:.25s ease;
}
.pickup-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 35px rgba(17,24,39,.09);
}
.pickup-card.active{
  border-color:#f2c17d;
  background:linear-gradient(180deg, #fffaf4 0%, #fff 100%);
}
.pickup-card.active::before{opacity:1}
.pickup-card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.pickup-card__icon{
  width:54px;
  height:54px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:#edf4ff;
  color:var(--primary);
  font-size:22px;
}
.pickup-card.active .pickup-card__icon{
  background:rgba(246,166,35,.15);
  color:#c67600;
}
.pickup-card h3{
  margin:14px 0 8px;
  font-size:20px;
}
.pickup-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}
.select-tag{
  margin-top:18px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 14px;
  border-radius:999px;
  background:#f6f8fc;
  color:#475467;
  font-weight:600;
  font-size:13px;
}
.pickup-card.active .select-tag{
  background:#fff0d8;
  color:#a55d00;
}

.how-it-works{
  padding:0 0 80px;
}
.how-it-works__wrap{
  background:linear-gradient(180deg, #fff8ef 0%, #ffffff 100%);
}
.steps-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:24px;
}
.step-card{
  background:#fff;
  border-radius:22px;
  border:1px solid #f0e4d6;
  padding:22px;
}
.step-icon{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:#eef5ff;
  color:var(--primary);
  font-size:26px;
}
.step-card h3{
  margin:16px 0 10px;
  font-size:20px;
}
.step-card p{
  margin:0;
  color:var(--muted);
}

/* ===== Footer ===== */
.footer{
  color:#fff;
  background-color:#082555;
  background-size:cover;
  background-position:center;
  padding:54px 0 0;
}
.footer__header,.footer__columns{
  width:min(1200px, calc(100% - 32px));
  margin:auto;
}
.footer__header{
  justify-content:space-between;
  padding-bottom:26px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.footer__logo img{width:130px}
.social__icons{gap:12px}
.social__icons a{
  width:44px;height:44px;border-radius:50%;
  display:grid;place-items:center;
  background:rgba(255,255,255,.08);
}
.social__icons i{color:#fff}
.footer__columns{
  align-items:flex-start;
  gap:34px;
  padding:36px 0;
}
.footer__col{flex:1}
.footer__col-head{
  margin:0 0 18px;
  font-size:18px;
}
.footer__col ul{list-style:none;padding:0;margin:0;display:grid;gap:12px}
.footer__col a,.contact__info p,.checkbox label{
  color:rgba(255,255,255,.82);
  font-size:14px;
}
.newsletter__box form{
  display:flex;
  margin-top:14px;
  background:#fff;
  padding:8px;
  border-radius:999px;
}
.newsletter__box input{
  flex:1;border:none;outline:none;background:transparent;padding:10px 14px;
}
.newsletter__box button{
  width:42px;height:42px;border-radius:50%;
  border:none;background:var(--accent);color:#fff;cursor:pointer;
}
.checkbox{margin-top:14px}
.footer__bottom{
  text-align:center;
  padding:20px 16px;
  border-top:1px solid rgba(255,255,255,.1);
  color:rgba(255,255,255,.76);
  font-size:14px;
}

/* ===== Sidebar ===== */
.sidebar{
  position:fixed;
  top:0;
  right:-320px;
  width:320px;
  height:100vh;
  background:#fff;
  box-shadow:-10px 0 30px rgba(0,0,0,.08);
  z-index:1200;
  transition:.3s ease;
  padding:18px;
}
.sidebar.active{right:0}
.slidbar__header,.sidebar__socials{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.sidebar__list{
  list-style:none;
  padding:28px 0;
  margin:0;
  display:grid;
  gap:10px;
}
.sidebar__link{
  display:block;
  padding:12px 14px;
  border-radius:14px;
  color:#173154;
  background:#f8fbff;
}
.sidebar__socials{justify-content:flex-start;gap:14px}
.sidebar__socials a{
  width:44px;height:44px;border-radius:50%;
  background:#f3f7ff;display:grid;place-items:center;
}

@keyframes pulse{
  0%{transform:scale(.7);opacity:.8}
  70%{transform:scale(1.25);opacity:0}
  100%{opacity:0}
}

/* ===== Responsive ===== */
@media (max-width: 1100px){
  .pickup-layout__grid,
  .pickup-hero__grid{
    grid-template-columns:1fr;
  }
  .pickup-cards{grid-template-columns:repeat(3, minmax(0, 1fr))}
  .steps-grid{grid-template-columns:1fr}
}

@media (max-width: 920px){
  .top__bar,
  .nav__list,
  .right-content{
    display:none;
  }
  .menu-icon,.close-icon{display:block}
  .main__nav{justify-content:flex-end}
  .header__wrapper{padding:12px 0}
  .pickup-cards{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .footer__columns{flex-direction:column}
}

@media (max-width: 640px){
  .pickup-hero{padding:54px 0 36px}
  .pickup-hero__content h1{font-size:38px}
  .card-panel{padding:20px}
  .map-wrap{padding:14px}
  .map-stage{min-height:520px}
  .pickup-cards{grid-template-columns:1fr}
  .selection-box__head{flex-direction:column;align-items:flex-start}
  .footer__header{flex-direction:column;align-items:flex-start;gap:16px}
  .phone{padding:9px 12px}
}