:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-2: #eef3fb;
  --surface-dark: #0f172a;
  --text: #182235;
  --muted: #5c6880;
  --primary: #1d4ed8;
  --primary-dark: #173ea8;
  --accent: #2563eb;
  --border: #e4eaf4;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.05);
  --radius: 18px;
  --container: 1180px;
  --header-height: 86px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section-light {
  background: var(--surface-2);
}

.section-dark {
  background: var(--surface-dark);
  color: var(--white);
}

.section-tag,
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.section h2,
.section-head h2,
.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-head p:last-child {
  color: var(--muted);
}

.section-head-dark .section-tag {
  color: #93c5fd;
}

.section-head-dark h2,
.section-head-dark p:last-child {
  color: var(--white);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--white);
}

.logo-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.16);
  color: #dbeafe;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-weight: 700;
  font-size: 1rem;
}

.logo-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  display: block;
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(11, 18, 35, 0.35), rgba(11, 18, 35, 0.35)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 15, 31, 0.9) 0%,
    rgba(8, 15, 31, 0.74) 50%,
    rgba(8, 15, 31, 0.45) 100%
  );
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-content {
  color: var(--white);
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.02;
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 1.08rem;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-badges span {
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 2rem;
  color: var(--white);
  box-shadow: var(--shadow);
}

.panel-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #93c5fd;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.hero-panel h2 {
  font-size: 1.7rem;
  margin-bottom: 0.35rem;
}

.panel-role {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.5rem;
}

.hero-panel-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-panel-item strong {
  display: block;
  margin-bottom: 0.2rem;
}

.hero-panel-item span {
  color: rgba(255, 255, 255, 0.84);
}

.panel-link {
  color: #dbeafe;
  font-weight: 700;
}

/* TRUST STRIP */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.trust-strip-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-strip-inner span {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-full {
  width: 100%;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.about-copy strong {
  color: var(--text);
}

.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.about-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.info-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.info-item:last-child {
  border-bottom: 0;
}

.info-item strong {
  display: block;
  margin-bottom: 0.3rem;
}

.info-item span {
  color: var(--muted);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.service-card p {
  color: var(--muted);
}

/* PACKAGES */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.package-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.package-card-featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}

.package-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.package-card h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
}

.package-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.package-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
  flex: 1;
}

.package-list li {
  position: relative;
  padding-left: 1.4rem;
}

.package-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-card {
  padding: 1.7rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-step {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(147, 197, 253, 0.16);
  color: #dbeafe;
  font-weight: 800;
  margin-bottom: 1rem;
}

.process-card h3 {
  margin-bottom: 0.75rem;
}

.process-card p {
  color: rgba(255, 255, 255, 0.82);
}

/* MAP */
.map-section {
  background: var(--surface);
}

.map-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: stretch;
}

.map-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  min-height: 420px;
}

.location-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.location-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.location-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.location-item:last-of-type {
  border-bottom: 0;
}

.location-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.location-item span {
  color: var(--muted);
}

.location-actions {
  margin-top: 1.5rem;
}

/* CTA */
.cta-section {
  padding: 0 0 5.5rem;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
  color: var(--white);
  border-radius: 26px;
  padding: 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: var(--shadow);
}

.cta-box h2,
.cta-box p,
.cta-box .section-tag {
  color: var(--white);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-intro {
  color: var(--muted);
  margin-bottom: 1rem;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.contact-list a {
  color: var(--primary);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
}

.form-group {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #d7e0ee;
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid rgba(37, 99, 235, 0.15);
  border-color: var(--accent);
}

/* FOOTER */
.site-footer {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.9);
  padding: 1.8rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .packages-grid,
  .map-layout,
  .contact-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    display: grid;
  }

  .package-card-featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #0f172a;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav.open {
    display: flex;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 3rem 0;
  }

  .hero-actions,
  .contact-actions,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-strip-inner {
    justify-content: flex-start;
  }

  .section {
    padding: 4rem 0;
  }
  
  
}

.success-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #22c55e;
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  font-weight: 700;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.success-toast.show {
  opacity: 1;
  transform: translateY(0);
}