
:root{
  --bg:#ffffff;
  --text:#0b1b3a;
  --muted:#486089;
  --primary:#0d6efd; /* blue */
  --primary-600:#0b5ed7;
  --accent:#198754;
  --border:#e5eaf2;
  --light:#f8fbff;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;color:var(--text);background:var(--bg)}
a{color:var(--primary);text-decoration:none}
.container{width:min(1120px,92%);margin:0 auto}

/* Top notice + header */
.topbar{position:sticky;top:0;z-index:1000;background:#062a5c;color:#fff;text-align:center;padding:.45rem .5rem;font-size:.92rem}
.topbar a{color:#cfe3ff;text-decoration:underline}
.main-header{position:sticky;top:30px;z-index:999;background:#fff;border-bottom:1px solid var(--border)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:.85rem 0}
.logo{font-weight:800;font-size:1.25rem;color:#062a5c}
.nav{position:relative}
.menu{list-style:none;margin:0;padding:0;display:flex;gap:1rem;align-items:center}
.menu>li>a{padding:.5rem .2rem;color:#0b1b3a}
.menu>li>a:hover{color:var(--primary)}

/* Attractive dropdown */
.dropdown{position:relative}
.dropdown .caret{font-size:.8rem}
.dropdown-panel{
  position:absolute;left:-160px;top:100%;
  display:none;background:#fff;border:1px solid var(--border);
  box-shadow:0 16px 40px rgba(6,42,92,.15);
  border-radius:12px;padding:1rem;min-width:640px;
}
.dropdown:hover .dropdown-panel{display:block}
.dropdown-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:.6rem
}
.drop-item{
  display:block;border:1px solid var(--border);border-radius:10px;padding:.75rem;background:#fff
}
.drop-item:hover{border-color:var(--primary);box-shadow:0 8px 24px rgba(13,110,253,.15)}
.drop-title{display:block;font-weight:700;color:#062a5c}
.drop-desc{display:block;font-size:.9rem;color:var(--muted)}

/* Mobile */
.mobile-toggle{display:none;background:transparent;border:0;font-size:1.4rem}
@media (max-width: 900px){
  .mobile-toggle{display:block}
  .menu{display:none;position:absolute;right:0;top:140%;flex-direction:column;background:#fff;border:1px solid var(--border);padding:1rem;border-radius:12px;box-shadow:0 16px 40px rgba(6,42,92,.15)}
  .menu.open{display:flex}
  .dropdown-panel{position:static;min-width:auto;box-shadow:none;border:0;padding:.5rem}
}

/* Hero */

.hero{
  padding:3rem 0 1.2rem;
  background:linear-gradient(180deg,#e7f0ff 0%,#fff 55%);
}

/* MAIN LAYOUT (FIXED - NO SIDE SHIFT) */
.hero-grid{
  display:flex;
  flex-direction:column;
  gap:1.5rem;
  align-items:center;
  justify-content:center;
  text-align:center;
}

/* IMAGE SECTION */
.hero-image{
  width:100%;
  display:flex;
  justify-content:center;
}

.hero-image img{
  width:100%;
  max-width:880px;
  height:auto;
  object-fit:contain;
  border-radius:2px;
}

/* TEXT SECTION */
.hero-text{
  max-width:800px;
  margin:0 auto;
}

.hero-text h1{
  font-size:2.3rem;
  margin:0 0 .6rem;
  color:#062a5c;
}

.hero-text p{
  color:var(--muted);
  line-height:1.6;
  margin-bottom:1rem;
}

/* BUTTON ROW */
.btn-row{
  margin:1rem 0 1.2rem;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

/* BUTTONS */
.btn{
  display:inline-block;
  background:var(--primary);
  color:#fff;
  padding:.75rem 1rem;
  border-radius:.6rem;
  border:2px solid var(--primary);
  font-weight:700;
  transition:0.3s;
}

.btn:hover{
  background:var(--primary-600);
  border-color:var(--primary-600);
}

.btn-outline{
  background:#fff;
  color:var(--primary);
}

/* TRUST LIST */
.trust{
  list-style:none;
  padding:0;
  margin:1rem 0 0;
  color:var(--muted);
  line-height:1.8;
}

/* RESPONSIVE */
@media (max-width: 768px){

  .hero-text h1{
    font-size:1.8rem;
  }

  .hero-image img{
    max-width:360px;
  }

  .btn-row{
    flex-direction:column;
    align-items:center;
  }

}
/* Sections */
.section-intro{color:var(--muted)}
.services{padding:2rem 0}
.card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.card{border:1px solid var(--border);border-radius:14px;padding:1rem;background:#fff;box-shadow:0 10px 25px rgba(6,42,92,.06)}
.card img{width:100%;height:160px;object-fit:cover;border-radius:10px;background:#e7f0ff}
.card h3{margin:.6rem 0;color:#062a5c}
.read-more{display:inline-block;margin-top:.4rem;font-weight:600}
.center{text-align:center;margin:1.2rem 0}

/* Pricing */
.pricing{padding:2rem 0;background:#f6f9ff;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.price-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.price-card{background:#fff;border:1px solid var(--border);border-radius:14px;padding:1rem;box-shadow:0 10px 30px rgba(13,110,253,.08)}
.price-card.featured{border-color:var(--primary);box-shadow:0 16px 40px rgba(13,110,253,.18)}
.price{font-size:2rem;font-weight:800;margin:.4rem 0;color:#062a5c}
.price span{font-size:1rem;font-weight:500;color:var(--muted)}

/* CTA */
.cta{padding:2.4rem 0}
.cta-inner{background:linear-gradient(90deg,#0b5ed7,#0d6efd);color:#fff;padding:2rem;border-radius:16px;text-align:center}

/* Page hero */
.page-hero{padding:2rem 0;background:#f6f9ff;border-bottom:1px solid var(--border)}
.narrow{width:min(840px,92%);margin:0 auto}
.content ul{line-height:1.8}
.checklist li{margin:.4rem 0}

/* Service pages */
.service-hero{padding:2.4rem 0;background:linear-gradient(180deg,#e7f0ff,#fff)}
.service-hero h1{color:#062a5c}
.service-hero .subtitle{color:var(--muted)}
.service-details{padding:1.2rem 0 0}
.two-col{display:grid;grid-template-columns:1.1fr .9fr;gap:1.6rem;align-items:center}
.svc-image img{width:100%;height:auto;border-radius:14px;border:1px solid var(--border);box-shadow:0 12px 30px rgba(6,42,92,.07)}

/* ===== FINAL NAVY COMPARE TABLE ===== */
.compare-table{
  width:100%;
  border-collapse:collapse !important;
  border:2px solid #0b1b3a !important;
  background:#fff;
  font-size:13px;
  border-radius:10px;
  overflow:hidden;
}

/* ALL CELLS */
.compare-table th,
.compare-table td{
  border:1px solid #0b1b3a !important;
  padding:8px 10px;
  line-height:1.3;
}

/* HEADER */
.compare-table th{
  background:#eef4ff;
  color:#0b1b3a;
  font-weight:600;
  text-align:center;
  padding:10px;
}

/* FIRST COLUMN LEFT */
.compare-table td:first-child{
  text-align:left;
  font-weight:500;
}

/* ROW HEIGHT CONTROL */
.compare-table tr{
  height:40px;
}

/* HOVER */
.compare-table tbody tr:hover{
  background:#f7faff;
}

/* CHECK ICON */
.check{
  display:inline-block;
  width:18px;
  height:18px;
  line-height:18px;
  border-radius:50%;
  background:#d1f3dc;
  color:#16a34a;
  font-weight:bold;
  text-align:center;
  font-size:12px;
}

/* CROSS ICON */
.cross{
  display:inline-block;
  width:18px;
  height:18px;
  line-height:18px;
  border-radius:50%;
  background:#fde2e2;
  color:#dc2626;
  font-weight:bold;
  text-align:center;
  font-size:12px;
}
/* Footer */
.site-footer{padding:2rem 0;border-top:1px solid var(--border);margin-top:2rem;background:#fff}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:1rem}
.footer-links{padding-left:1rem}
.footer-links li{margin:.4rem 0}
.small{font-size:.9rem;color:var(--muted)}
.disclaimer{margin:.6rem 0 0}

/* Cookie banner */
.cookie-banner{position:fixed;left:1rem;right:1rem;bottom:1rem;background:#062a5c;color:#fff;padding:1rem;border-radius:.8rem;display:none;z-index:10000;justify-content:space-between;align-items:center}
.cookie-banner a{color:#cfe3ff;text-decoration:underline}
.cookie-banner button{background:#198754;border:none;color:#fff;padding:.6rem .9rem;border-radius:.6rem;cursor:pointer}

/* Floating call button */
.call-fab{position:fixed;right:1rem;bottom:1rem;background:#198754;color:#fff;padding:.85rem 1rem;border-radius:999px;font-weight:700;border:2px solid #146c43;box-shadow:0 10px 20px rgba(6,42,92,.18)}

/* Forms */
.contact-form{display:grid;gap:.8rem;margin-bottom:1.4rem}
.contact-form input,.contact-form textarea{width:100%;padding:.7rem;border:1px solid var(--border);border-radius:.6rem}

/* Responsive */
@media (max-width: 1000px){
  .hero-grid{grid-template-columns:1fr}
  .two-col{grid-template-columns:1fr}
}
@media (max-width: 900px){
  .card-grid{grid-template-columns:1fr 1fr}
  .price-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
}
@media (max-width: 600px){
  .card-grid{grid-template-columns:1fr}
}

.logo img {
  height: 50px; /* adjust size */
  width: auto;
  display: block;
}
