/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f5f7;
  color: #222;
  line-height: 1.6;
}

a {
  color: #0b63d1;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout helpers */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 60px 0;
}

.section-alt {
  background: #ffffff;
}

.section h2 {
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 10px;
  color: #0b3d91;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 32px;
  text-align: center;
  color: #555;
}

.section-note {
  text-align: center;
  margin-top: 18px;
  color: #666;
  font-size: 0.95rem;
}

/* Top bar */
.top-bar {
  background: #081f4d;
  color: #fff;
  font-size: 0.9rem;
}

.top-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.top-bar-contact a {
  margin-left: 12px;
  font-weight: 500;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-small {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background: #0b63d1;
  color: #fff;
}

.btn-primary:hover {
  background: #084faa;
}

.btn-secondary {
  background: #fff;
  color: #0b63d1;
  border-color: #c3d7f8;
}

.btn-secondary:hover {
  background: #eef3ff;
}

.btn-outline {
  background: transparent;
  color: #0b63d1;
  border-color: #0b63d1;
}

.btn-outline:hover {
  background: #e8f1ff;
}

.btn-small {
  padding: 6px 14px;
  font-size: 0.85rem;
  border-radius: 999px;
  background: #fff;
  color: #0b63d1;
  border: 1px solid #d1defa;
}

.btn-small:hover {
  background: #eef3ff;
}

.btn-primary.full {
  width: 100%;
}

/* Hero */
.hero {
  background: radial-gradient(circle at top left, #316ee0, #081f4d);
  color: #fff;
  padding: 60px 0 70px;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 32px;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.hero-text p {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.hero-list {
  padding-left: 20px;
  margin: 8px 0 18px;
}

.hero-list li {
  margin-bottom: 4px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.hero-note {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Hero card / logo */
.hero-card {
  background: rgba(255, 255, 255, 0.98);
  color: #222;
  border-radius: 18px;
  padding: 22px 22px 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: linear-gradient(135deg, #0b63d1, #20b6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.logo-mark.small {
  width: 34px;
  height: 34px;
  font-size: 0.78rem;
  border-radius: 12px;
}

.hero-card h2 {
  margin: 0 0 6px;
  font-size: 1.3rem;
}

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

.hero-card-list {
  padding-left: 18px;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

/* Grid layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

/* Cards */
.card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 20px 22px;
  box-shadow: 0 8px 20px rgba(15, 35, 95, 0.06);
}

.card h3 {
  margin-top: 0;
  font-size: 1.12rem;
  color: #0b3d91;
}

.card-list {
  padding-left: 18px;
  font-size: 0.95rem;
}

/* Pricing */
.pricing-card {
  position: relative;
}

.pricing-label {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef3ff;
  color: #0b3d91;
  font-weight: 600;
}

.pricing-label.featured {
  background: #0b63d1;
  color: #fff;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 8px 0 14px;
  color: #0b3d91;
}

/* Locations */
.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.locations-grid span {
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef3ff;
  font-size: 0.9rem;
}

/* Steps */
.steps-grid .step {
  background: #fff;
  border-radius: 16px;
  padding: 18px 18px 20px;
  box-shadow: 0 8px 20px rgba(15, 35, 95, 0.05);
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #0b63d1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item + .faq-item {
  border-top: 1px solid #e1e4f0;
  margin-top: 16px;
  padding-top: 16px;
}

.faq-item h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: #0b3d91;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.4fr);
  gap: 24px;
  align-items: flex-start;
}

.contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
}

.contact-form label {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 11px;
  border-radius: 10px;
  border: 1px solid #d5d9e9;
  margin-top: 4px;
  font-size: 0.95rem;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-info .card {
  height: 100%;
}

.contact-info p {
  margin: 4px 0;
}

.contact-info .small {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #666;
}

/* Links */
.text-link {
  font-weight: 500;
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background: #0a1024;
  color: #e5e7ff;
  padding: 16px 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-right a {
  margin-left: 14px;
  color: #d2dcff;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 360px;
    margin: 0 auto;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }
}
/* LIGHTBOX FIXED FULLSCREEN */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox:target {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
/* ===== LIGHTBOX 2.0 (with animation + arrows) ===== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.lightbox-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0,0,0,0.7);
  transform: scale(0.8);
  opacity: 0;
  transition: 0.25s ease;
}

.lightbox-image.show {
  transform: scale(1);
  opacity: 1;
}

.lb-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 55px;
  color: white;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

.lb-arrow.left { left: 40px; }
.lb-arrow.right { right: 40px; }
