* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background: radial-gradient(circle at top left, #eff6ff, #f8fafc 45%, #f1f5f9);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(10px);
  color: #0f172a;
  padding: 18px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: #475569;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.2s ease;
}

nav a:hover,
nav a.active {
  background: rgba(37, 99, 235, 0.14);
  color: #1e3a8a;
}

.hero {
  background: linear-gradient(135deg, #0ea5e9, #2563eb 45%, #4338ca);
  color: #fff;
  padding: 84px 0;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);
}

.hero h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2;
}

.hero p {
  max-width: 680px;
  margin: 14px 0 0;
  color: #dbeafe;
  font-size: 1.05rem;
}

.section {
  padding: 68px 0;
}

h2 {
  margin: 0 0 20px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  color: #0f172a;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.card {
  background: #fff;
  border: 1px solid #dbe3ef;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.16);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #1d4ed8;
}

.contact-box {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid #dbe3ef;
  border-radius: 16px;
  padding: 28px;
  max-width: 760px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
}

.contact-form {
  display: grid;
  gap: 12px;
  margin: 18px 0 14px;
}

.contact-form label {
  font-weight: 600;
  color: #334155;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 12px 13px;
  font: inherit;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 0 4px #dbeafe;
}

.contact-form button {
  justify-self: start;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 11px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.form-status {
  margin: 4px 0 0;
  color: #166534;
  font-weight: 600;
}

.form-status.error {
  color: #b91c1c;
}

.contact-page {
  padding-top: 46px;
  padding-bottom: 70px;
}

.contact-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
}

.contact-hero h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.contact-hero p {
  margin: 0;
  color: #6b7280;
  font-size: 1.02rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact-card {
  background: #ffffff;
  border: 1px solid #dde3eb;
  border-radius: 10px;
  padding: 20px 18px 16px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.045);
}

.contact-card h3,
.contact-info-panel h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.2;
  color: #0f172a;
}

.contact-intro,
.contact-info-panel > p {
  margin: 8px 0 16px;
  color: #6b7280;
  font-size: 0.95rem;
}

.contact-card .contact-form {
  margin: 0;
  gap: 10px;
}

.contact-card .contact-form label {
  font-size: 0.86rem;
  color: #111827;
}

.contact-card .contact-form input,
.contact-card .contact-form textarea {
  background: #fcfdff;
  border-radius: 7px;
  border-color: #d8dee7;
  padding: 10px 11px;
  font-size: 0.92rem;
}

.contact-submit {
  width: 100%;
  justify-self: stretch;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.9rem;
  margin-top: 4px;
}

.contact-info-panel {
  padding: 2px 4px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.info-item {
  display: flex;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e3e8f0;
  border-radius: 9px;
  padding: 10px 9px;
}

.info-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: #e8f1ff;
  color: #3b82f6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.info-item h4 {
  margin: 1px 0 2px;
  font-size: 0.92rem;
  color: #0f172a;
}

.info-item p {
  margin: 0;
  font-size: 0.88rem;
  color: #1f2937;
}

.info-item small {
  color: #6b7280;
  font-size: 0.78rem;
}

.business-hours {
  margin-top: 14px;
  background: #eef2f7;
  border: 1px solid #d8e0ea;
  border-radius: 10px;
  padding: 12px 12px 11px;
}

.business-hours h4 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: #1e293b;
}

.business-hours p {
  margin: 3px 0;
  color: #5b6576;
  font-size: 0.86rem;
}

.about-page {
  padding-top: 40px;
  padding-bottom: 8px;
}

.about-row {
  margin-bottom: 48px;
}

.about-intro {
  max-width: 740px;
  margin: 0 auto 48px;
  text-align: center;
}

.about-intro h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.8vw, 3rem);
}

.about-intro p {
  margin: 0 auto;
  max-width: 620px;
  color: #6b7280;
  line-height: 1.7;
}

.about-mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 42px;
}

.mission-text h3 {
  margin: 0 0 16px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  color: #111827;
}

.mission-text p {
  margin: 0 0 14px;
  color: #4b5563;
  max-width: 520px;
  line-height: 1.75;
}

.mission-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 360px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.13);
}

.about-placeholder {
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  padding: 18px;
  color: #64748b;
  background: #f8fafc;
}

.about-row-2 {
  margin-bottom: 38px;
}

.about-stats {
  background: #eef1f5;
  border-radius: 0;
  max-width: 980px;
  margin: 0 auto;
  padding: 30px 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  line-height: 1;
  color: #2f6fbe;
  font-weight: 700;
}

.stat-label {
  margin: 7px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #788090;
  font-size: 0.68rem;
}

.about-row-3 {
  margin-bottom: 0;
}

.core-values {
  background: #f5f7fb;
  border: 1px solid #e3e8f0;
  border-radius: 0;
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 36px 28px;
}

.core-values-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 26px;
}

.core-values-head h3 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #111827;
}

.core-values-head p {
  margin: 0;
  color: #6b7280;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}

.value-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.value-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #e8f1ff;
  color: #2f6fbe;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.value-item h4 {
  margin: 0 0 5px;
  font-size: 1.15rem;
  color: #111827;
}

.value-item p {
  margin: 0;
  color: #4b5563;
  line-height: 1.65;
}

.services-page {
  padding-top: 34px;
  padding-bottom: 10px;
}

.services-row {
  margin-bottom: 32px;
}

.services-row-1 {
  margin-bottom: 26px;
}

.services-row-2 {
  margin-bottom: 26px;
}

.services-row-3 {
  margin-bottom: 0;
}

.why-choose {
  background: #eef1f5;
  border: 1px solid #e1e6ee;
  border-radius: 0;
  max-width: 980px;
  margin: 0 auto;
  padding: 30px 28px 24px;
}

.why-choose-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 22px;
}

.why-choose-head h3 {
  margin: 0 0 8px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: #111827;
}

.why-choose-head p {
  margin: 0;
  color: #6b7280;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-item {
  text-align: center;
}

.why-icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 10px;
  border-radius: 9px;
  background: #e8f1ff;
  color: #2f6fbe;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.why-item h4 {
  margin: 0 0 5px;
  font-size: 1.05rem;
  color: #111827;
}

.why-item p {
  margin: 0;
  color: #4b5563;
  line-height: 1.55;
  font-size: 0.9rem;
}

.services-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 20px;
}

.services-intro h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 3.4vw, 2.85rem);
}

.services-intro p {
  margin: 0 auto;
  max-width: 620px;
  color: #6b7280;
  line-height: 1.65;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 980px;
  margin: 0 auto;
}

.service-detail-card {
  background: #ffffff;
  border: 1px solid #dde3eb;
  border-radius: 10px;
  padding: 16px 13px 14px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.service-detail-card h3 {
  margin: 0 0 7px;
  font-size: 2rem;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-mini-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #e8f1ff;
  color: #2f6fbe;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.service-detail-card > p {
  margin: 0 0 12px;
  color: #4b5563;
  font-size: 0.92rem;
}

.service-detail-card h4 {
  margin: 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.feature-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 6px;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  color: #374151;
  font-size: 0.84rem;
}

.feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid #7bb287;
  color: #2f855a;
  font-size: 0.63rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.benefit-tags span {
  font-size: 0.72rem;
  color: #374151;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 3px 7px;
}

.home-page {
  padding-top: 36px;
  padding-bottom: 8px;
}

.home-row {
  margin-bottom: 28px;
}

.home-row-2 {
  margin-bottom: 0;
}

.home-hero-banner {
  min-height: 460px;
  background-image:
    linear-gradient(rgba(248, 250, 252, 0.88), rgba(248, 250, 252, 0.88)),
    url("home-bg.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 46px 56px;
}

.home-intro {
  text-align: left;
  max-width: 560px;
}

.home-intro h2 {
  margin: 0 0 10px;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.2;
}

.home-intro p {
  margin: 0;
  max-width: 540px;
  color: #6b7280;
  line-height: 1.6;
}

.home-actions {
  margin-top: 18px;
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-link.secondary {
  background: #ffffff;
  border-color: #e2e8f0;
  color: #1f2937;
}

.home-actions .cta-link {
  margin-top: 0;
  min-width: 112px;
  text-align: center;
}

.home-offer {
  background: #eef1f5;
  border: 1px solid #e1e6ee;
  max-width: 980px;
  margin: 0 auto;
  padding: 30px 26px 24px;
}

.home-offer-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 22px;
}

.home-offer-head h3 {
  margin: 0 0 8px;
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  color: #111827;
}

.home-offer-head p {
  margin: 0;
  color: #6b7280;
}

.home-offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.home-offer-card {
  background: #fff;
  border: 1px solid #dde3eb;
  border-radius: 10px;
  padding: 14px 12px 12px;
}

.home-offer-card h4 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-offer-card > p {
  margin: 0 0 10px;
  color: #4b5563;
  font-size: 0.9rem;
}

.home-offer-card h5 {
  margin: 0 0 6px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.home-feature-list {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: grid;
  gap: 5px;
}

.home-feature-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.82rem;
  color: #374151;
}

.home-feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid #7bb287;
  color: #2f855a;
  font-size: 0.58rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-offer-action {
  margin-top: 18px;
  text-align: center;
}

.cta-link {
  display: inline-block;
  margin-top: 22px;
  text-decoration: none;
  background: #ffffff;
  color: #1d4ed8;
  border: 1px solid rgba(191, 219, 254, 0.9);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
}

.cta-link:hover {
  background: #eff6ff;
}

.site-footer {
  margin-top: 30px;
  background: #f3f4f8;
  color: #3f4755;
  border-top: 1px solid #dbe1ea;
  padding: 50px 0 20px;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.site-footer h4 {
  margin: 0 0 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1f2937;
}

.footer-brand {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  font-size: 1.05rem;
}

.footer-logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.footer-text {
  margin: 0;
  max-width: 300px;
  color: #5b6576;
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon {
  width: 16px;
  display: inline-flex;
  justify-content: center;
  color: #4b5563;
  font-size: 0.85rem;
}

.footer-social {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 24px;
  height: 24px;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #4b5563;
  font-size: 0.72rem;
  font-weight: 700;
}

.footer-social a:hover {
  color: #1d4ed8;
  border-color: #93c5fd;
  background: #eff6ff;
}

.footer-links a {
  text-decoration: none;
  color: #5b6576;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #1d4ed8;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid #dbe1ea;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: #6b7280;
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  text-decoration: none;
  color: #6b7280;
  margin-left: 16px;
}

@media (max-width: 760px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 70px 0;
  }

  .section {
    padding: 54px 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .about-mission-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
    padding: 24px 18px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .core-values {
    padding: 28px 18px 22px;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .services-row-1 {
    margin-bottom: 24px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-hero-banner {
    min-height: 380px;
    padding: 28px 22px;
  }

  .home-intro {
    max-width: 100%;
  }

  .home-offer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom a {
    margin: 0 14px 0 0;
  }
}
