@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --blue: #2f9fdb;
  --yellow: #f7a91e;
  --teal: #14c9ae;
  --navy: #122a5e;
  --dark: #1b1e2b;
  --grey: #667085;
  --light: #f6f8fb;
  --border: #e4e9f0;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(18,42,94,0.08);
  --gradient-vibrant: linear-gradient(135deg, #0b1a45 0%, #16316f 28%, #1f5cb8 58%, #2f9fdb 82%, #14c9ae 100%);
  --font-heading: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  font-size: 16px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); color: var(--dark); background: #fff; line-height: 1.65; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: var(--font-heading); letter-spacing: -0.02em; line-height: 1.2; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 8px;
  font-weight: 600; font-family: var(--font-heading); font-size: 0.95rem; cursor: pointer; border: none; transition: 0.2s;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: #0c1e46; }
.btn-accent { background: var(--yellow); color: var(--navy); }
.btn-accent:hover { background: #e59a10; }
.btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--navy); }
.btn-outline:hover { border-color: var(--navy); }
.btn-block { width: 100%; text-align: center; }
section { padding: 88px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head h2 { font-size: 2.1rem; color: var(--navy); margin-bottom: 14px; font-weight: 700; }
.section-head p { color: var(--grey); font-size: 1.02rem; }
.badge { display:inline-block; background: rgba(47,159,219,0.1); color: var(--blue); padding: 6px 16px; border-radius: 50px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }

/* Top utility bar */
.topbar { background: var(--navy); color: #cfd9f0; font-size: 0.85rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding: 9px 24px; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-left a { color: #cfd9f0; }
.topbar-left a:hover { color: var(--yellow); }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { color: #cfd9f0; }
.topbar-social a:hover { color: var(--yellow); }

/* Header */
header.site-header { position: sticky; top: 0; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.06); z-index: 100; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.logo img { height: 54px; }
nav ul { display: flex; gap: 30px; list-style: none; }
nav ul li a { font-weight: 600; font-family: var(--font-heading); font-size: 0.95rem; color: var(--dark); }
nav ul li a.active, nav ul li a:hover { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; }

/* Page header banner (for interior pages) */
.page-banner { background: var(--gradient-vibrant); color: #fff; padding: 64px 0; text-align: center; }
.page-banner h1 { font-size: 2.3rem; margin-bottom: 10px; }
.page-banner p { color: #cfd9f0; }

/* Hero */
.hero { position: relative; background: var(--gradient-vibrant); color: #fff; padding: 100px 0; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 85% 15%, rgba(20,201,174,0.35), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(247,169,30,0.22), transparent 40%);
}
.hero > .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 52px; align-items: center; }
.hero h1 { font-size: 2.7rem; margin-bottom: 20px; font-weight: 700; }
.hero h1 span { color: var(--yellow); }
.hero p { color: #cfd9f0; margin-bottom: 30px; font-size: 1.08rem; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Name checker card */
.check-card { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); color: var(--dark); }
.check-card h3 { color: var(--navy); margin-bottom: 6px; font-size: 1.25rem; }
.check-card p { color: var(--grey); font-size: 0.9rem; margin-bottom: 20px; }
.check-row { display: flex; gap: 10px; flex-wrap: wrap; }
.check-row input { flex: 1; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 1rem; font-family: var(--font-body); }
.check-row input:focus { outline: none; border-color: var(--blue); }
.suffix-select { padding: 0 12px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.95rem; font-family: var(--font-body); background: #fff; color: var(--dark); }
.check-suffix { font-size: 0.8rem; color: var(--grey); margin-top: 10px; }
#check-result { margin-top: 16px; min-height: 20px; font-weight: 600; font-size: 0.92rem; }
.result-available { color: #1a9e5c; }
.result-taken { color: #d64545; }
.result-list { margin-top: 10px; font-size: 0.85rem; color: var(--grey); font-weight: 400; }
.ch-disclaimer { font-size: 0.72rem; color: #98a5c0; margin-top: 14px; }

/* Services grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 28px; }
.service-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: 0.2s; background: #fff; }
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(247,169,30,0.15); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.service-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { color: var(--grey); font-size: 0.95rem; margin-bottom: 18px; }
.service-price { font-weight: 700; font-family: var(--font-heading); color: var(--blue); margin-bottom: 16px; font-size: 1.1rem; }

/* Packages */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 22px; align-items: start; }
.pkg-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 24px; position: relative; background: #fff; }
.pkg-card.featured { border: 2px solid var(--blue); box-shadow: var(--shadow); }
.pkg-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 6px 16px; border-radius: 50px; font-family: var(--font-heading); }
.pkg-card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.15rem; }
.pkg-card .pkg-desc { color: var(--grey); font-size: 0.88rem; margin-bottom: 16px; min-height: 55px; }
.pkg-card .price { font-size: 2rem; font-weight: 800; color: var(--dark); margin: 4px 0 4px; font-family: var(--font-heading); }
.pkg-card .ch-fee { font-size: 0.78rem; color: var(--grey); margin-bottom: 20px; }
.pkg-card ul { list-style: none; margin-bottom: 26px; }
.pkg-card ul li { padding: 9px 0; border-bottom: 1px dashed var(--border); font-size: 0.9rem; display: flex; gap: 8px; }
.pkg-card ul li::before { content: "✓"; color: var(--blue); font-weight: 700; }

/* Addons */
.addons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; }
.addon-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 10px; background: #fff; }
.addon-card h3 { color: var(--navy); font-size: 1.1rem; }
.addon-card p { color: var(--grey); font-size: 0.9rem; }
.addon-card .addon-price { color: var(--blue); font-weight: 700; font-family: var(--font-heading); font-size: 1.1rem; }
.exclusive-tag { display:inline-block; background: var(--yellow); color: var(--navy); font-size: 0.65rem; font-weight: 700; padding: 4px 10px; border-radius: 4px; letter-spacing: 0.05em; width: fit-content; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 30px; }
.step { text-align: center; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 700; font-family: var(--font-heading); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.step h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.05rem; }
.step p { color: var(--grey); font-size: 0.9rem; }

/* Map / address block */
.map-block { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-info { background: var(--navy); color: #fff; padding: 48px; display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.map-info h3 { font-size: 1.4rem; }
.map-info p { color: #cfd9f0; }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { padding: 20px 0; cursor: pointer; display: flex; justify-content: space-between; font-weight: 600; font-family: var(--font-heading); color: var(--navy); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; color: var(--grey); font-size: 0.95rem; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* About page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-grid img { border-radius: var(--radius); box-shadow: var(--shadow); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 24px; margin-top: 40px; }
.value-card { text-align: center; padding: 20px; }
.value-card .icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h4 { color: var(--navy); margin-bottom: 8px; }
.value-card p { color: var(--grey); font-size: 0.9rem; }

/* Package / service detail pages */
.detail-hero { background: var(--gradient-vibrant); color: #fff; padding: 70px 0 60px; }
.breadcrumb { font-size: 0.82rem; color: #cfd9f0; margin-bottom: 18px; }
.breadcrumb a { color: #cfd9f0; }
.breadcrumb a:hover { color: var(--yellow); }
.detail-hero-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px; align-items: center; }
.detail-hero h1 { font-size: 2.2rem; margin-bottom: 14px; }
.detail-hero .lead { color: #cfd9f0; font-size: 1.02rem; margin-bottom: 26px; max-width: 560px; }
.detail-price-card { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); color: var(--dark); text-align: center; }
.detail-price-card .amount { font-size: 2.4rem; font-weight: 800; font-family: var(--font-heading); color: var(--navy); }
.detail-price-card .amount span { font-size: 1rem; font-weight: 600; color: var(--grey); }
.detail-price-card .note { font-size: 0.82rem; color: var(--grey); margin: 6px 0 22px; }
.detail-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 18px; margin-top: 10px; }
.feature-item { display: flex; gap: 12px; align-items: flex-start; padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; }
.feature-item .tick { width: 30px; height: 30px; border-radius: 50%; background: rgba(47,159,219,0.12); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 700; }
.feature-item h4 { color: var(--navy); font-size: 0.98rem; margin-bottom: 4px; }
.feature-item p { color: var(--grey); font-size: 0.85rem; }
.kiqi-address-box { display: none; border: 1px solid var(--border); border-radius: 8px; padding: 20px; background: #fff; font-size: 0.95rem; line-height: 1.8; }
.kiqi-address-box.active { display: block; }
.kiqi-address-box strong { display: block; margin-bottom: 8px; color: var(--navy); }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-info-item .icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(47,159,219,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info-item h4 { color: var(--navy); margin-bottom: 4px; font-size: 0.95rem; }
.contact-info-item p, .contact-info-item a { color: var(--grey); font-size: 0.9rem; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--navy); font-family: var(--font-heading); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 15px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.95rem; font-family: var(--font-body); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* CTA band */
.cta-band { background: var(--yellow); text-align: center; padding: 64px 0; }
.cta-band h2 { color: var(--navy); margin-bottom: 20px; font-size: 1.9rem; }

/* Footer */
footer { background: var(--navy); color: #cfd9f0; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-grid h4 { color: #fff; margin-bottom: 16px; font-family: var(--font-heading); font-size: 1rem; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-grid ul li a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; font-size: 0.85rem; text-align: center; color: #9fb0d8; }

@media (max-width: 900px) {
  .map-block, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .map-info { padding: 32px; }
}
@media (max-width: 860px) {
  nav, .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .hero-grid, .detail-hero-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topbar-left { display: none; }

  .nav-wrap { flex-wrap: wrap; }
  nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 8px 24px 16px;
    box-shadow: 0 12px 20px rgba(0,0,0,0.08); border-top: 1px solid var(--border);
  }
  nav.open { display: flex; }
  nav ul { flex-direction: column; gap: 0; width: 100%; }
  nav ul li { width: 100%; }
  nav ul li a { display: block; padding: 13px 0; border-bottom: 1px solid var(--border); }
}
@media (max-width: 600px) {
  section { padding: 56px 0; }
  .hero { padding: 56px 0; }
  .hero h1 { font-size: 2rem; }
  .page-banner { padding: 44px 0; }
  .page-banner h1 { font-size: 1.7rem; }
  .detail-hero { padding: 44px 0 40px; }
  .detail-hero h1 { font-size: 1.7rem; }
  .section-head h2 { font-size: 1.6rem; }
  .cta-band h2 { font-size: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
