
    :root{
      --bg: #0b1220;
      --panel: #0f172a; /* slate-900 */
      --muted: #94a3b8; /* slate-400 */
      --text: #e2e8f0; /* slate-200 */
      --brand: #22d3ee; /* cyan-400 */
      --brand-600: #0891b2; /* cyan-700 */
      --accent: #34d399; /* emerald-400 */
      --ring: rgba(34, 211, 238, 0.45);
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
        padding-top: 70px; /* header height  */
      margin:0; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif; color:var(--text);
      background: radial-gradient(1200px 800px at 85% -10%, rgba(34,211,238,.08), transparent 60%),
                  radial-gradient(1000px 600px at -10% 10%, rgba(52,211,153,.10), transparent 60%),
                  var(--bg);
      line-height:1.6;
    }
    a{color:inherit; text-decoration:none}

    /* Layout helpers */
    .container{max-width:1200px; margin:0 auto; padding:0 1.25rem}
    .btn{display:inline-flex; align-items:center; gap:.5rem; padding:.8rem 1.1rem; border-radius:.8rem; font-weight:600; letter-spacing:.2px; border:1px solid transparent; transition:.2s ease}
    .btn-primary{background:linear-gradient(180deg, var(--brand), var(--brand-600)); color:#001019;}
    .btn-primary:hover{filter:brightness(1.05)}
    .btn-secondary{background:transparent; border-color:#334155; color:var(--text)}
    .btn-secondary:hover{background:#0b1220; border-color:#475569}
    .tag{display:inline-block; font-size:.8rem; color:#0d2a2a; background:#a7f3d0; padding:.25rem .6rem; border-radius:999px; font-weight:700}

    /* Header */
    header{position:fixed; top:0; left:0; right:0; z-index:1000; backdrop-filter:saturate(140%) blur(8px); background:rgba(11,18,32,.85); border-bottom:1px solid rgba(148,163,184,.1)}
    .nav{display:flex; align-items:center; justify-content:space-between; padding:.9rem 0}
    .brand{display:flex; align-items:center; gap:.7rem}
    .logo{width:40px;height:40px;border-radius:11px;background:conic-gradient(from 180deg at 50% 50%, var(--brand), var(--accent), #60a5fa, var(--brand)); box-shadow:0 0 40px rgba(34,211,238,.35) inset}
    .brand h1{font-size:1.1rem; margin:0}
    .menu{display:flex; gap:1rem; align-items:center}
    .menu a{opacity:.9}
    .menu a:hover{opacity:1}
    .mobile-toggle{display:none}

    /* Hero */
    .hero{display:grid; grid-template-columns:1.15fr .85fr; gap:2rem; padding:4.5rem 0 3rem}
    .hero h2{font-size:clamp(2rem, 3.8vw, 3rem); line-height:1.15; margin:.5rem 0 1rem}
    .hero p{color:var(--muted); max-width:52ch}
    .hero-card{background:linear-gradient(180deg, rgba(15,23,42,.8), rgba(15,23,42,.6)); border:1px solid rgba(148,163,184,.15); border-radius:1rem; overflow:hidden; box-shadow:0 10px 30px rgba(0,0,0,.35)}
    .hero-media{position:relative; aspect-ratio: 16/10; background:#0b1220}
    .hero-media img{width:100%; height:100%; object-fit:cover; opacity:.9}
    .overlay{position:absolute; inset:0; background:linear-gradient(180deg, rgba(2,6,23,0) 20%, rgba(2,6,23,.6) 80%)}
    .hero-form{display:grid; gap:.75rem; grid-template-columns:1fr 1fr; padding:1rem; background:rgba(2,6,23,.6); border-top:1px solid rgba(148,163,184,.12)}
    .hero-form input, .hero-form select{
      width:100%; padding:.8rem .9rem; border-radius:.7rem; border:1px solid #334155; background:#0b1220; color:var(--text);
      outline: none; box-shadow:0 0 0 0 var(--ring);
    }
    .hero-form input:focus, .hero-form select:focus{border-color:#3b82f6; box-shadow:0 0 0 4px rgba(59,130,246,.15)}
    .hero-actions{display:flex; gap:.8rem; margin-top:1rem}

    /* Services */
    section{padding:3.5rem 0}
    .section-title{font-size:1.8rem; margin:0 0 1rem}
    .muted{color:var(--muted)}
    .grid{display:grid; gap:1rem}
    .grid-3{grid-template-columns:repeat(3, minmax(0,1fr))}
    .grid-4{grid-template-columns:repeat(4, minmax(0,1fr))}

    .card{background:rgba(15,23,42,.65); border:1px solid rgba(148,163,184,.15); border-radius:1rem; padding:1rem; transition:.2s ease; height:100%}
    .card:hover{transform:translateY(-2px); border-color:rgba(148,163,184,.3)}
    .icon{width:40px;height:40px;border-radius:.8rem; display:grid; place-items:center; background:rgba(34,211,238,.12); border:1px solid rgba(34,211,238,.35); margin-bottom:.6rem}
    .card h3{margin:.2rem 0 .4rem; font-size:1.05rem}
    .card p{margin:0; color:var(--muted); font-size:.95rem}

    /* Process */
    .steps{display:grid; gap:1rem; grid-template-columns:repeat(4, minmax(0,1fr))}
    .step{padding:1rem; border-radius:1rem; background:rgba(2,6,23,.35); border:1px dashed rgba(148,163,184,.25)}
    .step .num{font-weight:800; color:var(--brand)}

    /* Testimonials (simple placeholders) */
    .testis{display:grid; gap:1rem; grid-template-columns:repeat(3, minmax(0,1fr))}
    blockquote{margin:0; padding:1rem; background:rgba(15,23,42,.55); border:1px solid rgba(148,163,184,.15); border-radius:1rem}
    blockquote footer{margin-top:.6rem; color:var(--muted); font-size:.9rem}

    /* Contact */
    .contact{display:grid; gap:1.5rem; grid-template-columns:1.1fr .9fr}
    .panel{background:rgba(15,23,42,.65); border:1px solid rgba(148,163,184,.15); border-radius:1rem; padding:1.25rem}
    .contact form{display:grid; gap:.9rem}
    .contact input,.contact textarea{
      padding:.9rem 1rem; border-radius:.8rem; border:1px solid #334155; background:#0b1220; color:var(--text);
    }
    .contact textarea{min-height:120px; resize:vertical}

    /* Map embed helpers */
    .map-wrap{position:relative; width:100%; overflow:hidden; border-radius:1rem; border:1px solid rgba(148,163,184,.15); background:#0b1220}
    .map{width:100%; height:0; padding-bottom:56%; border:0}
    .map iframe{position:absolute; top:0; left:0; width:100%; height:100%; border:0; filter:grayscale(0.2) contrast(1.05)}

    /* Footer */
    footer{padding:2.5rem 0; border-top:1px solid rgba(148,163,184,.15); color:var(--muted)}

    /* Responsive */
    @media (max-width: 980px){
      .hero{grid-template-columns:1fr; padding:3rem 0 2rem}
      .grid-4{grid-template-columns:repeat(2, minmax(0,1fr))}
      .steps{grid-template-columns:repeat(2, minmax(0,1fr))}
      .contact{grid-template-columns:1fr}
    }
    @media (max-width: 640px){
      .grid-3{grid-template-columns:1fr}
      .grid-4{grid-template-columns:1fr}
      .menu{display:none}
      .mobile-toggle{display:inline-flex}
      .hero-form{grid-template-columns:1fr}
    }
    /* WhatsApp Floating Button + Label */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  transition: .2s ease;
}
.whatsapp-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,.4);
}
.whatsapp-icon img {
  width: 32px;
  height: 32px;
}

/* Fixed text label */
.whatsapp-label {
  background: #25D366;
  color: #001019;
  font-weight: 600;
  padding: .6rem .9rem;
  border-radius: .8rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  white-space: nowrap;
}

/* Tooltip on hover */
.whatsapp-btn:hover::after {
  content: "Chat with us on WhatsApp";
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: .5rem;
  background: #111;
  color: #fff;
  padding: .4rem .6rem;
  font-size: .8rem;
  border-radius: .4rem;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
}
/* Slideshow */
.hero-media { position: relative; }
.hero-media .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .9s ease;
}
.hero-media .slide.active { opacity: 1; }

/* Newsletter + WhatsApp Modal (Dark Theme) */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.65);
  display: none; align-items: center; justify-content: center;
  z-index: 1200;
}
.modal-backdrop.show { display: flex; }

.modal {
  background: #0f172a;       /* dark panel */
  color: #ffffff;            /* white text */
  width: min(560px, 92vw);
  border: 1px solid #1e293b; /* subtle border */
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  overflow: hidden;
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; border-bottom: 1px solid #1e293b;
}
.modal-title { margin: 0; font-size: 1.1rem; }
.modal-close {
  background: transparent; color: #fff;
  border: 1px solid #475569; border-radius: .6rem;
  padding: .35rem .6rem; cursor: pointer;
}
.modal-body { padding: 1.25rem; display: grid; gap: 1rem; }
.modal-body p { margin: .2rem 0; color: #e2e8f0; }
.modal-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.input {
  width: 100%; padding: .8rem 1rem;
  border-radius: .8rem; border: 1px solid #475569;
  background: #1e293b; color: #fff;
}
.input::placeholder { color: #94a3b8; }

/* Buttons inside modal */
.modal .btn-primary {
  background: #22d3ee; color: #001019; border: none;
}
.modal .btn-secondary {
  background: #ffffff; color: #000000; border: 1px solid #cbd5e1;
}

.typer { font-weight: 600; }

.caret {
  display: inline-block;
  width: 1ch;
  margin-left: 2px;
  border-right: 2px solid currentColor;
  animation: caret-blink 1s step-end infinite;
}

@keyframes caret-blink { from, to { opacity: 0; } 50% { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .caret { animation: none; opacity: 0; }
}

/* ==== Mobile-first: stack nav links vertically ==== */
#primary-menu {
  display: none;                 /* hidden until opened */
  padding: .5rem 0 0;
}

#primary-menu[data-open="true"] {
  display: flex;                 /* show as flex when opened */
  flex-direction: column;        /* STACK items */
  align-items: stretch;          /* full width items */
}

#primary-menu li { display: block; width: 100%; }   /* ensure each is its own row */
#primary-menu a  { width: 100%; }                   /* link fills the row */

/* ==== Desktop: row layout ==== */
@media (min-width: 768px) {
  .menu-toggle { display: none; }
  #primary-menu {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: .75rem;
    padding: 0;
  }
  #primary-menu li { width: auto; }
  #primary-menu a  { width: auto; }
}

/* ===== Countries we serve ===== */
.countries-section {
  padding: 1.25rem 1rem;
  border-top: 1px solid var(--border);
}

.countries-section h2 {
  margin: 0 0 .75rem 0;
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
}

/* Responsive, auto-fitting grid */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: .75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Card look */
.country-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .6rem;
  padding: .7rem .8rem;
  border: 1px solid var(--border);
  border-radius: .85rem;
  background: var(--bg);
  color: inherit;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}

.country-card:hover,
.country-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--brand-primary);
  background: var(--link-hover-bg);
  outline: none;
  box-shadow: 0 4px 18px rgba(0,0,0,.06), 0 0 0 3px var(--link-hover-bg);
}

/* Flag + name */
.country-card .flag {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(137, 197, 144, 0.15); /* soft brand tint */
  font-size: 20px;
}

.country-card .name {
  font-weight: 600;
  letter-spacing: .2px;
}

/* Make the date input text white */
.input[type="date"],
input[type="date"] {
  color: #fff;
  background: transparent;     /* keep your dark bg; change if you want */
  border-color: #e2e8f0;       /* optional: lighter border on dark themes */
  -webkit-appearance: auto;    /* restore native look if a reset disabled it */
  appearance: auto;
}

/* Make the calendar icon visible & white-ish (Chromium/WebKit) */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(1.2);
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}
