:root {
  --primary: #1b4b82;
  --primary-light: #f0f6ff;
  --accent: #f4a51c;
  --text: #222;
  --muted: #666;
  --bg: #ffffff;
  --border: #e0e0e0;
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

/* NAVBAR */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}

.logo span {
  color: var(--accent);
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1.3rem;
  align-items: center;
}

.nav li a {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s ease, transform 0.1s ease;
}

.nav li a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.nav .btn-nav {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(27, 75, 130, 0.4);
  transition: transform 0.1s ease, box-shadow 0.2s ease;
}

.nav .btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(27, 75, 130, 0.5);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* SECTIONS GENERAL */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1rem;
}

.section-hero {
  padding-top: 4.2rem;
}

.section-alt {
  background: #fafbff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.section-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 620px;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-size: 2.1rem;
  line-height: 1.3;
  margin-bottom: 0.7rem;
  color: var(--primary);
}

.hero p {
  color: var(--muted);
  font-size: 0.97rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1.2rem;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.4rem;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(27, 75, 130, 0.45);
  transition: transform 0.1s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(27, 75, 130, 0.55);
}

.btn-outline {
  background: transparent;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--primary);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  background: var(--primary-light);
}

.hero-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  max-height: 260px;
  box-shadow: var(--shadow-soft);
}

.hero-img-small-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-img-small {
  width: 40%;
  min-width: 120px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.hero-img-label {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 60%;
}

.hero-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.5rem;
  border: 1px solid #f2f2f2;
}

.hero-card h3 {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--primary);
}

.hero-list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-list li {
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-list span.icon {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--primary-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--primary);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  border-radius: 16px;
  padding: 1.3rem;
  border: 1px solid var(--border);
  background: #fff;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(27, 75, 130, 0.3);
}

.service-icon {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 140px;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: var(--primary);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.service-tag {
  display: inline-block;
  font-size: 0.75rem;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
}

/* ABOUT / WHY */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.about-points {
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
}

.about-points li {
  margin-bottom: 0.6rem;
}

.about-points strong {
  color: var(--text);
}

.stat-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.stat-box {
  background: var(--primary-light);
  padding: 0.9rem;
  border-radius: 12px;
  font-size: 0.85rem;
}

.stat-box strong {
  display: block;
  font-size: 1.2rem;
  color: var(--primary);
}

.about-img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  max-height: 220px;
  margin-bottom: 0.8rem;
  box-shadow: var(--shadow-soft);
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.price-card {
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 1.3rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.price-card.highlight {
  border-color: var(--primary);
  box-shadow: var(--shadow-soft);
}

.price-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--primary);
}

.price-card small {
  font-size: 0.8rem;
  color: var(--muted);
}

.price {
  font-size: 1.4rem;
  margin: 0.6rem 0;
  color: var(--primary);
}

.price span {
  font-size: 0.8rem;
  color: var(--muted);
}

.price-list {
  list-style: none;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.price-list li {
  margin-bottom: 0.35rem;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  font-size: 0.85rem;
  color: var(--muted);
  padding-right: 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 0.35rem;
}

.faq-toggle {
  font-size: 1.2rem;
  color: var(--muted);
  margin-left: 0.5rem;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

form {
  background: #fff;
  border-radius: 14px;
  padding: 1.4rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.form-group {
  margin-bottom: 0.8rem;
}

label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.55rem 0.55rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(27, 75, 130, 0.1);
}

textarea {
  min-height: 80px;
  resize: vertical;
}

.contact-side {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-side h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.contact-list {
  list-style: none;
  margin-top: 0.5rem;
}

.contact-list li {
  margin-bottom: 0.4rem;
}

.contact-image {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  max-height: 220px;
  margin-bottom: 0.8rem;
  box-shadow: var(--shadow-soft);
}

.status-message {
  margin-top: 0.6rem;
  font-size: 0.85rem;
}

.status-success {
  color: #22863a;
}

.status-error {
  color: #b00020;
}

/* BOOKING SECTION */
.booking-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.booking-box {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.booking-image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 200px;
  margin-bottom: 0.8rem;
}

/* LEADS TABLE */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

th, td {
  border: 1px solid var(--border);
  padding: 0.4rem 0.5rem;
  text-align: left;
}

th {
  background: var(--primary-light);
  color: var(--primary);
}

.no-leads {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

/* CHAT WIDGET */
#chat-launcher {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 1000;
}

#chat-widget {
  position: fixed;
  bottom: 80px;
  right: 16px;
  width: 320px;
  max-width: 90vw;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  overflow: hidden;
  background: #fff;
  display: none;
  flex-direction: column;
  z-index: 1001;
  border: 1px solid var(--border);
}

#chat-widget.open {
  display: flex;
}

#chat-header {
  background: var(--primary);
  color: #fff;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#chat-header small {
  display: block;
  font-size: 0.75rem;
  opacity: 0.85;
}

#chat-toggle-icon {
  cursor: pointer;
  font-size: 1.1rem;
}

#chat-body {
  padding: 0.6rem 0.7rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

#chat-messages {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 0.3rem;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
}

.chat-row {
  margin-bottom: 0.4rem;
  display: flex;
}

.chat-row.bot {
  justify-content: flex-start;
}

.chat-row.user {
  justify-content: flex-end;
}

.chat-bubble {
  padding: 0.4rem 0.6rem;
  border-radius: 12px;
  max-width: 80%;
  word-wrap: break-word;
}

.chat-bubble.bot {
  background: var(--primary-light);
  color: var(--text);
  border-bottom-left-radius: 2px;
}

.chat-bubble.user {
  background: var(--primary);
  color: #fff;
  border-bottom-right-radius: 2px;
}

.chat-cta-btn {
  margin-top: 0.3rem;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  border: none;
  font-size: 0.78rem;
  cursor: pointer;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.chat-cta-btn:hover {
  background: var(--primary-light);
}

#chat-form {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

#chat-form input,
#chat-form textarea {
  font-size: 0.8rem;
  padding: 0.4rem 0.45rem;
}

#chat-form textarea {
  min-height: 40px;
  max-height: 80px;
}

#chat-send {
  align-self: flex-end;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
}

#chat-send:hover {
  filter: brightness(1.05);
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .two-col,
  .pricing-grid,
  .services-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav ul {
    position: absolute;
    top: 56px;
    right: 0;
    left: 0;
    background: #fff;
    flex-direction: column;
    padding: 0.75rem 1rem 1rem;
    border-bottom: 1px solid var(--border);
    display: none;
  }

  .nav ul.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav .btn-nav {
    width: 100%;
    text-align: center;
  }
}


.brand-logo {
  width: 90px;
  height: 60px;
}
.brand-logo img {
  object-fit: contain; /* keeps ratio, adds space */
  padding: 6px;
  width: 90px;
  height: 70px;
}

/* .brand-logo {
  background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
} */

  :root{
      --primary:#1b4b82;
      --muted:#6b7280;
      --bg:#fff;
      --card-bg:#fff;
      --shadow: 0 10px 30px rgba(16,24,40,0.06);
    }

    .mt-carousel { display:flex; align-items:center; gap:12px; }
    .mt-btn {
      width:48px; height:48px; border-radius:12px; border:none; cursor:pointer;
      display:flex; align-items:center; justify-content:center; font-size:20px;
      background:var(--primary); color:#fff; box-shadow:var(--shadow);
      transition:transform .12s ease;
    }
    .mt-viewport { overflow:hidden; width:100%; border-radius:14px; }
    .mt-track { display:flex; gap:18px; padding:22px 12px 12px; margin:0; list-style:none; transition:transform .45s cubic-bezier(.2,.9,.3,1); will-change:transform; align-items:stretch; }
    .testi-item { box-sizing:border-box; min-width: calc((100% - (18px * 2)) / 3); flex:0 0 auto; }
    .testi-card {
      background:var(--card-bg); padding:1.4rem 1rem 1.2rem; border-radius:12px; box-shadow:var(--shadow);
      display:flex; flex-direction:column; gap:0.8rem; align-items:center; text-align:center; position:relative;
    }

    /* Egg-shaped avatar frame (vertical oval with narrower top) */
    .testi-avatar-egg {
      width:150px; height:190px; /* tall egg */
      margin-top:-95px; /* overlap */
      display:block;
      position:relative;
      background: #fff;
      border-radius: 50% / 60%; /* fallback rounded shape */
      box-shadow: 0 14px 40px rgba(16,24,40,0.12);
      overflow: hidden;
      border:6px solid #fff;
      /* precise egg using clip-path */
      -webkit-clip-path: ellipse(60% 82% at 50% 14%);
      clip-path: ellipse(60% 82% at 50% 14%);
    }

    /* image fills the egg and is cropped from top */
    .testi-avatar-egg img {
      width:100%; height:100%; object-fit:cover; object-position: top; display:block;
      transform-origin: center top;
    }

    .testi-person .testi-name { font-weight:700; color:var(--primary); font-size:1.02rem; }
    .testi-person .testi-role { color:var(--muted); font-size:0.85rem; margin-top:0.12rem; }

    .testi-quote { color:#111827; font-size:0.95rem; line-height:1.55; margin-top:0rem; }

    .mt-dots { display:flex; gap:12px; align-items:center; justify-content:center; }
    .mt-dot { width:12px; height:12px; border-radius:999px; background:#ececec; border:none; cursor:pointer; box-shadow:0 6px 18px rgba(0,0,0,0.03); transition:transform .12s ease, background .12s ease; }
    .mt-dot.active { background:var(--primary); transform:scale(1.05); box-shadow: 0 10px 26px rgba(27,75,130,0.12); }

    @media (max-width:900px) {
      .testi-item { min-width: calc((100% - 18px) / 2); }
      .testi-avatar-egg { width:130px; height:170px; margin-top:-85px; -webkit-clip-path: ellipse(60% 82% at 50% 12%); clip-path: ellipse(60% 82% at 50% 12%); border-width:5px; }
    }
    @media (max-width:600px) {
      .testi-item { min-width: 100%; }
      .testi-avatar-egg { width:140px; height:170px; margin-top:-85px; }
      .mt-btn { width:44px; height:44px; }
    }

    