:root{
  --navy: #0c2350;
  --navy-deep: #081a3d;
  --gold: #f0b429;
  --teal: #3bb8b0;
  --white: #ffffff;
  --ink: #412402;
  --cloud: #f4f7fc;
}

*{ box-sizing: border-box; margin:0; padding:0; }

body{
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

.sky{
  position: relative;
  min-height: 100vh;
  background: radial-gradient(ellipse at top, #14306a 0%, var(--navy) 45%, var(--navy-deep) 100%);
  padding-bottom: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.star-bg{ position: absolute; opacity: 0.5; }

/* Top nav */
.topbar{
  z-index: 3; width: 100%;
  background: rgba(6, 18, 44, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(59, 184, 176, 0.25);
  position: sticky; top: 0;
}
.topbar-inner{ max-width: 980px; margin: 0 auto; padding: 14px 20px 0; display: flex; flex-direction: column; align-items: center; }
.logo{ display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.logo-text{ font-weight: 800; font-size: 18px; line-height: 1.1; letter-spacing: 0.5px; text-transform: uppercase; }
.lang-toggle{ display: flex; gap: 4px; margin-top: 8px; margin-bottom: 2px; }
.lang-btn{ background: rgba(255,255,255,0.08); border: 1px solid rgba(59,184,176,0.3); color: #c9d4ec; font-family: inherit; font-size: 12px; font-weight: 700; padding: 4px 11px; border-radius: 20px; cursor: pointer; }
.lang-btn.active{ background: var(--teal); color: #06182e; border-color: var(--teal); }

.nav-tabs{ display: flex; gap: 4px; width: 100%; overflow-x: auto; padding-bottom: 10px; scrollbar-width: none; }
.nav-tabs::-webkit-scrollbar{ display: none; }
.nav-btn{ flex: 1; min-width: 92px; background: transparent; border: none; color: #9aa9cc; font-family: inherit; font-size: 13.5px; font-weight: 600; padding: 9px 8px; border-radius: 20px; cursor: pointer; white-space: nowrap; transition: background 0.15s ease, color 0.15s ease; }
.nav-btn:hover{ color: var(--white); background: rgba(255,255,255,0.06); }
.nav-btn.active{ background: var(--gold); color: var(--ink); }

/* Content */
.content{ z-index: 2; width: 100%; max-width: 780px; padding: 32px 20px 0; display: flex; flex-direction: column; align-items: center; }
.tab-panel{ display: none; width: 100%; }
.tab-panel.active{ display: block; }

.tagline{ display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--teal); font-weight: 600; font-size: 16px; margin: 0 0 18px; text-align: center; }

.hero-badge{
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(240,180,41,0.12); border: 1px solid rgba(240,180,41,0.4);
  color: var(--gold); font-size: 13px; font-weight: 700; letter-spacing: 0.3px;
  padding: 7px 16px; border-radius: 30px; margin-bottom: 20px;
}

h1.hero{ font-size: clamp(30px, 6vw, 48px); font-weight: 800; text-align: center; margin-bottom: 16px; line-height: 1.15; }
.sub{ max-width: 640px; text-align: center; color: #c9d4ec; font-size: 16.5px; line-height: 1.65; margin: 0 auto 22px; }

.cta-row{ display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.btn{ display: inline-flex; align-items: center; gap: 8px; font-family: inherit; font-weight: 700; font-size: 15px; padding: 13px 26px; border-radius: 30px; cursor: pointer; text-decoration: none; border: none; }
.btn-primary{ background: var(--gold); color: var(--ink); }
.btn-primary:hover{ background: #f5c34f; }
.btn-secondary{ background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(59,184,176,0.5); }
.btn-secondary:hover{ background: rgba(255,255,255,0.14); }

/* Trust bar */
.trust-bar{ width: 100%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 28px; }
.trust-chip{ background: rgba(20,48,106,0.5); border: 1px solid rgba(59,184,176,0.35); border-radius: 14px; padding: 16px 10px; text-align: center; }
.trust-chip svg{ margin-bottom: 8px; }
.trust-chip .t-title{ font-size: 12.5px; font-weight: 700; color: var(--white); line-height: 1.3; }
.trust-chip .t-sub{ font-size: 11px; color: #9aa9cc; margin-top: 3px; }

/* Cards */
.card{ width: 100%; background: rgba(20, 48, 106, 0.5); border: 1px solid rgba(59, 184, 176, 0.4); border-radius: 18px; padding: 26px; margin-bottom: 20px; }
.card h2{ display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 700; margin-bottom: 18px; }
.card h3{ font-size: 15.5px; font-weight: 700; margin-bottom: 7px; color: var(--gold); }
.card p{ color: #dbe4f7; font-size: 14.5px; line-height: 1.7; }
.card-soft{ color: #c9d4ec; font-size: 15px; line-height: 1.7; }

.reassure{ background: rgba(59,184,176,0.1); border-left: 3px solid var(--teal); border-radius: 10px; padding: 14px 16px; margin-top: 14px; font-size: 14px; color: #dbe4f7; }
.reassure b{ color: var(--teal); }

.contact-row{ display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.contact-row:last-child{ margin-bottom: 0; }
.icon-circle{ width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-circle.gold{ background: var(--gold); }
.icon-circle.teal{ background: var(--teal); }
.contact-label{ font-size: 11.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.contact-label.gold-text{ color: var(--gold); }
.contact-label.teal-text{ color: var(--teal); }
.contact-value{ font-size: 16px; font-weight: 600; }
.contact-value a{ color: var(--white); text-decoration: none; }
.contact-value a:hover{ text-decoration: underline; }

/* Services grid (cards linking to pages) */
.service-cards{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.service-card{ background: rgba(8,26,61,0.55); border: 1px solid rgba(59,184,176,0.3); border-radius: 14px; padding: 18px; text-decoration: none; display: block; transition: border-color 0.15s ease, transform 0.1s ease; }
.service-card:hover{ border-color: var(--gold); transform: translateY(-2px); }
.service-card .sc-title{ color: var(--white); font-weight: 700; font-size: 14.5px; margin-bottom: 5px; }
.service-card .sc-sub{ color: #9aa9cc; font-size: 12.5px; line-height: 1.5; }
.service-card .sc-more{ color: var(--gold); font-size: 12px; font-weight: 700; margin-top: 8px; display: inline-block; }

.services-list{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 6px; }
.service-item{ display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: #dbe4f7; }
.service-item svg{ flex-shrink: 0; margin-top: 2px; }

/* Steps */
.steps{ counter-reset: step; }
.step{ display: flex; gap: 14px; margin-bottom: 18px; }
.step:last-child{ margin-bottom: 0; }
.step-num{ flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--gold); color: var(--ink); font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.step-body h3{ margin-bottom: 4px; }
.step-body p{ font-size: 14px; color: #dbe4f7; line-height: 1.6; }

/* About */
.about-flex{ display: flex; gap: 22px; align-items: flex-start; }
.about-badge{ flex-shrink: 0; width: 104px; height: 104px; border-radius: 50%; background: rgba(240, 180, 41, 0.15); border: 3px solid var(--gold); overflow: hidden; }
.about-badge img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.about-text p{ font-size: 14px; line-height: 1.75; color: #dbe4f7; margin-bottom: 12px; }
.credentials{ list-style: none; margin-top: 12px; display: flex; flex-direction: column; gap: 7px; }
.credentials li{ display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: #c9d4ec; }
.credentials svg{ flex-shrink: 0; margin-top: 3px; }

/* Form */
form{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field{ display: flex; flex-direction: column; gap: 6px; }
.field.full{ grid-column: 1 / -1; }
label{ font-size: 13px; font-weight: 600; color: #dbe4f7; }
input, textarea, select{ background: rgba(8, 26, 61, 0.6); border: 1px solid rgba(59, 184, 176, 0.4); border-radius: 8px; padding: 11px 13px; color: var(--white); font-size: 14px; font-family: inherit; }
input::placeholder, textarea::placeholder{ color: #7f8fb8; }
input:focus, textarea:focus, select:focus{ outline: none; border-color: var(--gold); }
textarea{ resize: vertical; min-height: 90px; }
button.submit-btn{ grid-column: 1 / -1; display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--gold); color: var(--ink); border: none; border-radius: 30px; padding: 14px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; }
button.submit-btn:hover{ background: #f5c34f; }
.form-status{ grid-column: 1 / -1; font-size: 13px; color: var(--teal); text-align: center; min-height: 16px; }

/* Learn / FAQ */
.tip-item{ margin-bottom: 16px; }
.tip-item:last-child{ margin-bottom: 0; }
.faq-item{ border-top: 1px solid rgba(59,184,176,0.2); padding: 14px 0; }
.faq-item:first-child{ border-top: none; padding-top: 0; }
.faq-q{ font-weight: 700; font-size: 14.5px; margin-bottom: 5px; color: var(--white); }
.faq-a{ font-size: 13.5px; line-height: 1.6; color: #c9d4ec; }
.learn-cat{ font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--teal); margin: 22px 0 10px; }
.learn-cat:first-child{ margin-top: 0; }

/* Gallery */
.gallery-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-tile{ aspect-ratio: 1; border-radius: 14px; background: rgba(8,26,61,0.5); border: 1px solid rgba(59,184,176,0.3); display: flex; align-items: center; justify-content: center; }

/* Reviews placeholder */
.review-placeholder{ text-align: center; padding: 20px 10px; color: #9aa9cc; font-size: 14px; }

footer{ z-index: 2; text-align: center; color: #7f8fb8; font-size: 12.5px; padding-top: 6px; margin-top: 6px; }

/* Sticky mobile CTA */
.mobile-cta{ display: none; }
@media (max-width: 720px){
  .mobile-cta{
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 10;
    background: rgba(6,18,44,0.97); backdrop-filter: blur(8px);
    border-top: 1px solid rgba(59,184,176,0.35);
    padding: 10px 14px; gap: 10px;
  }
  .mobile-cta a{ flex: 1; text-align: center; }
}

/* Subpage layout */
.subpage-header{ display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.back-link{ color: var(--teal); font-size: 13.5px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; margin-bottom: 18px; }
.back-link:hover{ text-decoration: underline; }

@media (max-width: 560px){
  form{ grid-template-columns: 1fr; }
  .services-list{ grid-template-columns: 1fr; }
  .service-cards{ grid-template-columns: 1fr; }
  .trust-bar{ grid-template-columns: 1fr 1fr; }
  .about-flex{ flex-direction: column; align-items: center; text-align: center; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .nav-btn{ font-size: 12px; padding: 8px 6px; min-width: 76px; }
}
