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

:root {
  --navy:     #0c1f3f;
  --navy-mid: #152a4a;
  --amber:    #e8870a;
  --amber-lt: #f5a623;
  --white:    #ffffff;
  --bg:       #f4f6f9;
  --bg-card:  #ffffff;
  --text:     #1e293b;
  --muted:    #64748b;
  --line:     #e2e8f0;
  --shadow:   0 12px 40px rgba(12, 31, 63, 0.08);
  --radius:   16px;
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1140px, calc(100% - 32px));
  margin-inline: auto;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  white-space: nowrap;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--amber), var(--amber-lt));
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.main-nav {
  display: flex;
  gap: 6px;
  list-style: none;
}

.main-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: background .2s, color .2s;
}

.main-nav a:hover,
.main-nav a.active {
  background: #eef2ff;
  color: var(--navy);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .15s, background .2s;
}

.header-call:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  padding: calc(var(--header-h) + 48px) 0 64px;
  background:
    radial-gradient(circle at 85% 15%, rgba(232,135,10,0.15), transparent 45%),
    linear-gradient(160deg, var(--navy) 0%, #0a2847 55%, #061528 100%);
  color: white;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-tag i { color: var(--amber-lt); }

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
}

.hero h1 em {
  font-style: normal;
  color: var(--amber-lt);
}

.hero-lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 28px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  border-radius: 12px;
  padding: 14px 22px;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s;
}

.btn-amber {
  background: linear-gradient(135deg, var(--amber), var(--amber-lt));
  color: white;
  box-shadow: 0 8px 24px rgba(232,135,10,0.35);
}

.btn-amber:hover { transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.35);
}

.btn-ghost:hover { background: rgba(255,255,255,0.08); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}

.trust-item i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  color: var(--amber-lt);
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(8px);
}

.hero-card h2 {
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}

.hero-card li i {
  color: var(--amber-lt);
  margin-top: 3px;
}

.hero-card .card-phone {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

.hero-card .card-phone a {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--amber-lt);
}

.hero-card .card-phone span {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* ===== QUICK STRIP ===== */
.quick-strip {
  margin-top: -32px;
  position: relative;
  z-index: 2;
  padding-bottom: 48px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.quick-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  text-align: center;
}

.quick-box i {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: #fff7ed;
  color: var(--amber);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.quick-box strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.quick-box span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ===== SECTIONS ===== */
.section {
  padding: 72px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s, border-color .2s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #fcd9a8;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  color: var(--amber);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
}

.service-card p {
  color: var(--muted);
  font-size: 0.94rem;
  flex: 1;
}

.service-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== CONTENT BLOCK ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.content-box {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.content-box p {
  color: var(--muted);
  margin-bottom: 16px;
}

.content-box p:last-child { margin-bottom: 0; }

.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.check-list li {
  display: flex;
  gap: 10px;
  font-size: 0.94rem;
}

.check-list i {
  color: var(--amber);
  margin-top: 4px;
}

.visual-panel {
  background: var(--navy);
  color: white;
  border-radius: var(--radius);
  padding: 32px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visual-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.visual-panel p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-box {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 1.4rem;
  color: var(--amber-lt);
}

.stat-box span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

/* ===== INFO TABLE ===== */
.info-table-section {
  background: var(--bg);
  border-block: 1px solid var(--line);
}

.info-table-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.info-table th,
.info-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.info-table th {
  width: 38%;
  background: var(--bg);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
}

.info-table th i {
  color: var(--amber);
  margin-right: 8px;
  width: 18px;
  text-align: center;
}

.info-table td {
  color: var(--muted);
  font-size: 0.94rem;
}

.info-table td a {
  color: var(--amber);
  font-weight: 800;
  font-size: 1.05rem;
}

.info-table td a:hover {
  color: var(--navy);
}

.rating-stars {
  color: var(--amber);
  margin-right: 6px;
}

.rating-stars i {
  font-size: 0.9rem;
}

.rating-note {
  color: var(--navy);
  font-weight: 600;
}

@media (max-width: 640px) {
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
    padding: 12px 16px;
  }

  .info-table th {
    border-bottom: none;
    padding-bottom: 4px;
  }

  .info-table td {
    padding-top: 0;
    padding-bottom: 16px;
  }

  .info-table tr {
    display: block;
    border-bottom: 1px solid var(--line);
  }

  .info-table tr:last-child {
    border-bottom: none;
  }
}

/* ===== AREAS ===== */
.areas-section {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.areas-article {
  max-width: 920px;
  margin: 0 auto;
}

.areas-article p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.areas-article p:last-child {
  margin-bottom: 0;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tags span {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

/* ===== CTA ===== */
.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white;
  border-radius: 24px;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.cta-band p {
  color: rgba(255,255,255,0.75);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 24px;
  margin-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.footer-col h4 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-col a:hover { color: var(--amber-lt); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.85rem;
  text-align: center;
}

/* ===== PAGE HERO (inner) ===== */
.page-hero {
  padding: calc(var(--header-h) + 40px) 0 48px;
  background: linear-gradient(160deg, var(--navy), #0a2847);
  color: white;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  max-width: 640px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
}

.breadcrumb a:hover { color: var(--amber-lt); }

/* ===== INNER PAGE HERO ===== */
.hero-inner {
  padding-bottom: 56px;
}

.hero-inner .breadcrumb {
  margin-top: 20px;
  color: rgba(255,255,255,0.5);
}

.hero-inner .breadcrumb a {
  color: rgba(255,255,255,0.65);
}

.hero-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
}

.hero-card .stat-row {
  margin-top: 0;
}

.hero-card .stat-box {
  padding: 12px 8px;
}

.hero-card .stat-box strong {
  font-size: 1rem;
}

/* ===== PAGE MAIN ===== */
.page-main {
  padding-top: 48px;
  padding-bottom: 48px;
}

.content-subtitle {
  font-size: 1.15rem;
  color: var(--navy);
  margin: 20px 0 12px;
}

.content-side {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}

.feature-list i {
  width: 28px;
  color: var(--amber-lt);
}

/* ===== CONTACT PAGE ===== */
.contact-hero-box {
  text-align: center;
  margin-bottom: 16px;
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-phone {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--amber-lt);
  margin-bottom: 10px;
}

.contact-hero-box p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child { border-bottom: none; }

.contact-item > i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff7ed;
  color: var(--amber);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact-item a {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.contact-item span {
  color: var(--muted);
  font-size: 0.94rem;
}

.map-box iframe {
  box-shadow: var(--shadow);
}

.site-footer {
  margin-top: 0;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.gallery-section {
  background: var(--bg);
}

@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 220px; }
}

/* ===== MOBILE FAB ===== */
.mobile-fab {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-lt));
  color: white;
  box-shadow: 0 8px 28px rgba(232,135,10,0.45);
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-inner .breadcrumb { margin-top: 12px; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid,
  .two-col,
  .footer-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .cta-band { text-align: center; justify-content: center; }
  .header-call span { display: none; }
}

@media (max-width: 640px) {
  .quick-grid { grid-template-columns: 1fr; }
  .mobile-fab { display: flex; }
  body { padding-bottom: 8px; }
}
