@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #0f4c81;
  --primary-dark: #0b365c;
  --accent: #2a84c8;
  --text-dark: #111827;
  --text-body: #4b5563;
  --text-light: #6b7280;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-light: #e5e7eb;
  --shadow-soft: 0 10px 30px rgba(15, 76, 129, 0.08);
  --shadow-card: 0 8px 24px rgba(17, 24, 39, 0.08);
  --radius-lg: 18px;
  --radius-md: 12px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background-color: var(--bg-white);
  line-height: 1.7;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

section {
  position: relative;
}

.py-lg-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

.display-5 {
  letter-spacing: -0.02em;
}

p {
  color: var(--text-body);
  margin-bottom: 1rem;
}

.text-secondary {
  color: var(--text-body) !important;
}

.top-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary)) !important;
  font-size: 0.92rem;
}

.top-bar .btn {
  border-radius: 999px;
  padding: 0.5rem 1rem;
}

.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(12px);
}

.navbar-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  font-size: 1.1rem;
  letter-spacing: 0.3px;
  color: #212529;
}

.navbar-brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark) !important;
  letter-spacing: -0.02em;
  transition: opacity 0.2s ease;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  position: relative;
}

.navbar-brand:hover {
  opacity: 0.85;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 999px;
}

.btn {
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 8px 18px rgba(15, 76, 129, 0.18);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(11, 54, 92, 0.22);
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.hero-section {
  background:
    radial-gradient(circle at top right, rgba(13, 110, 253, 0.10), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero-image-card {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.10);
}

.hero-section .lead {
  font-size: 1.08rem;
  max-width: 620px;
}

.hero-image-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background-color: #fff;
}

.hero-image-wrapper img {
  min-height: 420px;
  object-fit: cover;
}

.hero-trust-row span {
  display: inline-flex;
  align-items: center;
}

.homepage-feature-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.homepage-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
}

.homepage-feature-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.12), rgba(13, 110, 253, 0.22));
}

.premium-home-card {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.premium-home-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
}

.premium-home-card .card-img-top {
  height: 220px;
  object-fit: cover;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.why-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.12);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.image-panel img {
  width: 100%;
  display: block;
}

.text-uppercase.small.fw-semibold {
  letter-spacing: 0.12em;
}

.card {
  border: 1px solid rgba(229, 231, 235, 0.7) !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  transition: var(--transition);
  background-color: #fff;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.card-img-top {
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card .text-decoration-none {
  color: var(--primary);
}

.card .text-decoration-none:hover {
  color: var(--primary-dark);
}

.border.rounded-4,
.p-4.border.rounded-4 {
  border: 1px solid var(--border-light) !important;
  border-radius: var(--radius-lg) !important;
  background-color: #fff;
  transition: var(--transition);
}

.p-4.border.rounded-4:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.rounded-4 {
  border-radius: 24px !important;
}

.shadow-sm {
  box-shadow: var(--shadow-soft) !important;
}

.bg-light {
  background-color: var(--bg-light) !important;
}

.bg-primary {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
}

.bg-primary h2,
.bg-primary p {
  color: #fff !important;
}

.bg-primary .btn-light {
  color: var(--primary-dark);
  font-weight: 700;
}

.bg-primary .btn-outline-light {
  border-width: 1.5px;
}

.bg-primary .btn-outline-light:hover {
  color: var(--primary-dark);
}

.footer {
  background-color: #0b1220 !important;
}

.footer h3,
.footer h4 {
  color: #fff;
}

.footer p,
.footer li,
.footer a {
  color: rgba(255, 255, 255, 0.78) !important;
}

.footer a:hover {
  color: #ffffff !important;
}

.footer hr {
  opacity: 0.18;
}

.container {
  max-width: 1200px;
}

.list-unstyled li {
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border-radius: 12px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(42, 132, 200, 0.12);
}

.form-label {
  color: var(--text-dark);
}

.services-hero {
  background:
    radial-gradient(circle at top right, rgba(13, 110, 253, 0.10), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f8f9fa 100%);
}

.premium-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(13, 110, 253, 0.08);
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
}

.premium-label-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.premium-highlight-card,
.premium-panel,
.premium-service-card,
.premium-cta-box {
  border-radius: 1.5rem;
}

.premium-highlight-card,
.premium-panel,
.premium-service-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-feature-list {
  display: grid;
  gap: 1rem;
}

.premium-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #495057;
}

.feature-dot {
  width: 12px;
  height: 12px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  flex-shrink: 0;
}

.premium-service-card {
  height: 100%;
  background: #fff;
  padding: 2rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.premium-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
}

.service-icon-circle {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.12), rgba(13, 110, 253, 0.22));
  color: var(--primary);
}

.service-icon-circle i {
  font-size: 1.6rem;
}

.service-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #6c757d;
}

.service-list li {
  margin-bottom: 0.55rem;
}

.expect-grid {
  display: grid;
  gap: 1rem;
}

.expect-item {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: #f8f9fa;
}

.premium-process-panel {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 1rem 2rem rgba(13, 110, 253, 0.22);
}

.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.process-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.premium-cta-box {
  background: linear-gradient(135deg, #0b1f3a, #123c73);
}

.py-lg-6 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.feature-icon {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 2px;
}

.about-hero {
  background:
    radial-gradient(circle at top left, rgba(13,110,253,0.08), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #f8f9fa 100%);
}

.about-highlight-card {
  border: 1px solid rgba(0,0,0,0.05);
}

.value-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.05);
  transition: all 0.25s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 2rem rgba(0,0,0,0.08);
}

.value-icon {
  font-size: 2rem;
  color: var(--primary);
}

.service-areas-hero {
  background:
    radial-gradient(circle at top right, rgba(13, 110, 253, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #f8f9fa 100%);
}

.service-area-highlight-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.area-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: #f8f9fa;
  border-radius: 1rem;
  padding: 1rem 1rem;
  height: 100%;
}

.area-card-icon {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.map-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

#serviceAreaMap {
  width: 100%;
  height: 500px;
  border-radius: 1rem;
  overflow: hidden;
}

.contact-hero {
  background:
    radial-gradient(circle at top left, rgba(13, 110, 253, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #f8f9fa 100%);
}

.reviews-hero {
  background:
    radial-gradient(circle at top right, rgba(13, 110, 253, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #f8f9fa 100%);
}

.review-card {
  height: 100%;
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
}

.review-stars {
  color: #f4b400;
  font-size: 0.95rem;
  letter-spacing: 0.1rem;
}

.review-text {
  color: #495057;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.review-author strong {
  color: #212529;
}

.review-author span {
  color: #6c757d;
  font-size: 0.95rem;
}

@media (max-width: 767.98px) {
  #serviceAreaMap {
    height: 380px;
  }
}

@media (max-width: 991.98px) {
  .premium-service-card,
  .premium-panel,
  .premium-highlight-card,
  .premium-cta-box {
    padding: 1.5rem;
  }
}

.legal-hero {
  background:
    radial-gradient(circle at top left, rgba(13, 110, 253, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #f8f9fa 100%);
}

.legal-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.9rem;
  color: #212529;
}

.legal-card h2:first-of-type {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: #5c6670;
  line-height: 1.8;
}

.legal-card ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.legal-card a {
  word-break: break-word;
}

.gallery-hero {
  background:
    radial-gradient(circle at top right, rgba(13, 110, 253, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #f8f9fa 100%);
}

.gallery-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
}

.gallery-image-button {
  display: block;
}

.gallery-image-wrap {
  position: relative;
  overflow: hidden;
}

.gallery-image {
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-card:hover .gallery-image {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 31, 58, 0.45), rgba(11, 31, 58, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-card:hover .gallery-overlay,
.gallery-image-button:focus .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.gallery-card-body {
  padding: 1.5rem;
}

.gallery-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(13, 110, 253, 0.08);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
}

.gallery-modal-content {
  border-radius: 1.5rem;
  overflow: hidden;
}

.gallery-modal-details {
  padding-top: 0.25rem;
}

@media (max-width: 991.98px) {
  .gallery-image {
    height: 240px;
  }
}

@media (max-width: 767.98px) {
  .gallery-image {
    height: 220px;
  }
}

@media (max-width: 991.98px) {
  .premium-home-card .card-img-top {
    height: 200px;
  }
}

@media (max-width: 991.98px) {
  .navbar-nav .nav-link.active::after,
  .navbar-nav .nav-link:hover::after {
    display: none;
  }

  .hero-image-wrapper img {
    min-height: 320px;
  }

  .py-lg-6 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}

@media (max-width: 767.98px) {
  .display-5 {
    font-size: 2.3rem;
  }

  .hero-section .lead {
    font-size: 1rem;
  }

  .card-img-top {
    height: 200px;
  }

  .btn {
    width: 100%;
  }

  .top-bar .btn {
    width: auto;
  }
}
