:root {
  --brand-red: #df1f26;
  --brand-red-deep: #b7171e;
  --brand-blue: #2d2d7f;
  --brand-blue-deep: #1f1f5b;
  --brand-sky: #eef3ff;
  --ink: #14142b;
  --muted: #5f6377;
  --white: #ffffff;
  --card-border: #d8dced;
  --shadow: 0 16px 36px rgba(31, 31, 91, 0.14);
  --radius-xl: 22px;
  --radius-md: 14px;
  --font-main: "Verdana", "Trebuchet MS", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--ink);
  background: linear-gradient(180deg, #f9fbff 0%, #f0f4ff 40%, #ffffff 100%);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(45, 45, 127, 0.24);
  outline-offset: 3px;
}

.container {
  width: min(1150px, 92vw);
  margin: 0 auto;
}

.top-bar {
  background: var(--brand-blue);
  color: var(--white);
}

.top-bar-inner {
  min-height: 44px;
  display: flex;
  gap: 1.1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.84rem;
  font-weight: 700;
}

.top-bar a {
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid #e7e9f5;
}

.header-inner {
  width: min(1150px, 92vw);
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid #eceffd;
}

.logo-text strong {
  display: block;
  color: var(--brand-red);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.97rem;
}

.logo-text span {
  color: var(--brand-blue);
  font-size: 0.76rem;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav a {
  text-decoration: none;
  padding: 0.52rem 0.92rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--brand-blue);
  transition: 0.2s ease;
}

.nav a:hover,
.nav a.active {
  background: linear-gradient(120deg, var(--brand-red), var(--brand-blue));
  color: var(--white);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--brand-red);
  font-size: 1.55rem;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.4rem 0 3.2rem;
}

.hero::before {
  content: "";
  position: absolute;
  right: -140px;
  top: -180px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(223, 31, 38, 0.22), rgba(223, 31, 38, 0));
}

.hero::after {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -160px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(45, 45, 127, 0.2), rgba(45, 45, 127, 0));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.55rem);
  line-height: 1.08;
  color: #1b1b4f;
  margin-bottom: 1rem;
}

.hero .tagline {
  font-size: 1.03rem;
  color: #535b75;
  margin-bottom: 1.2rem;
  max-width: 58ch;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

.badge {
  border-radius: 999px;
  padding: 0.43rem 0.76rem;
  border: 1px solid #d7dbef;
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  color: #2f386d;
}

.hero-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid #f4f6ff;
}

.hero-photo img {
  width: 100%;
  height: min(500px, 64vw);
  object-fit: cover;
}


.btn {
  display: inline-block;
  border: none;
  text-decoration: none;
  cursor: pointer;
  padding: 0.8rem 1.22rem;
  border-radius: 11px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(120deg, var(--brand-red), var(--brand-blue));
  box-shadow: 0 12px 28px rgba(45, 45, 127, 0.2);
}

.btn:hover {
  filter: brightness(1.05);
}

.btn.outline {
  background: transparent;
  color: var(--brand-blue);
  border: 1px solid #cfd4ef;
  box-shadow: none;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.trust-note {
  margin-top: 0.9rem;
  color: #4f5d84;
  font-size: 0.93rem;
  font-weight: 700;
}

.section {
  padding: 2.8rem 0;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: 0.55rem;
  color: #21215e;
}

.section-subtitle {
  color: #59607b;
  margin-bottom: 1.5rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  box-shadow: 0 10px 26px rgba(31, 31, 91, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(31, 31, 91, 0.14);
}

.service-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.9rem;
  border: 1px solid #d8dff2;
  box-shadow: 0 10px 24px rgba(24, 48, 108, 0.14);
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.card:hover .service-thumb img {
  transform: scale(1.05);
}

.card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
  color: #222264;
}

.card p {
  color: #5c627a;
  font-size: 0.91rem;
  margin-bottom: 0.9rem;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(130deg, var(--brand-red), var(--brand-blue));
  margin-bottom: 0.8rem;
  box-shadow: 0 10px 22px rgba(45, 45, 127, 0.24);
}

.icon img {
  width: 22px;
  height: 22px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.panel {
  background: var(--white);
  border: 1px solid #dfe3f4;
  border-radius: var(--radius-xl);
  padding: 1.4rem;
  box-shadow: 0 10px 24px rgba(31, 31, 91, 0.08);
}

.list {
  list-style: none;
}

.list li {
  margin-bottom: 0.58rem;
  color: #4d5573;
  padding-left: 1.1rem;
  position: relative;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-red);
  opacity: 0.85;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat {
  background: linear-gradient(120deg, #ffffff, #f0f4ff);
  border: 1px solid #dae0f3;
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.45rem;
  color: var(--brand-red);
}

.stat span {
  font-size: 0.82rem;
  color: #545d7b;
  font-weight: 700;
}

.service-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1rem;
}

.service-nav {
  background: var(--white);
  border: 1px solid #dbe0f3;
  border-radius: 16px;
  padding: 0.8rem;
  position: sticky;
  top: 96px;
  align-self: start;
}

.service-nav a {
  display: block;
  text-decoration: none;
  padding: 0.7rem 0.75rem;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 800;
  color: #2c346f;
}

.service-nav a:hover {
  background: #eef2ff;
}

.service-stack {
  display: grid;
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid #dbe0f3;
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 8px 24px rgba(31, 31, 91, 0.06);
  transition: box-shadow 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 12px 32px rgba(31, 31, 91, 0.1);
}

/* Banner strip on services page: images at 1600×600 (16:6), fill container, no empty space */
.service-card .service-thumb {
  aspect-ratio: 16 / 6;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.service-card .service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card .service-card-header {
  margin-bottom: 0.6rem;
}

.service-card p {
  color: #55607c;
  font-size: 0.94rem;
}

.service-card .list {
  margin: 0.85rem 0;
}

.service-card .list li:last-child {
  margin-bottom: 0;
}

.service-note {
  font-size: 0.9rem;
  color: #4a5984;
}

.service-card-header {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.service-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.8rem;
}

.service-mini {
  background: var(--white);
  border: 1px solid #dbe1f4;
  border-radius: 12px;
  min-height: 86px;
  padding: 0.55rem;
  display: flex;
  align-items: center;
  gap: 0.68rem;
  color: #27336f;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(31, 31, 91, 0.08);
}

.service-mini-media {
  width: 62px;
  height: 62px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d8deef;
  box-shadow: 0 8px 14px rgba(24, 48, 108, 0.16);
  flex: 0 0 62px;
}

.service-mini-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-mini-label {
  display: block;
  line-height: 1.22;
}

.service-mini-sub {
  display: block;
  margin-top: 0.24rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #52638c;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1rem;
}

.contact-panel .section-title {
  margin-bottom: 0.5rem;
}

.contact-intro {
  color: #516189;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.contact-blocks {
  display: grid;
  gap: 0.85rem;
}

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: #f8f9ff;
  border: 1px solid #e4e8f7;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

a.contact-block:hover {
  background: #eef2ff;
  border-color: #d0d8f0;
  box-shadow: 0 4px 14px rgba(45, 45, 127, 0.08);
}

.contact-block-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(45, 45, 127, 0.2);
}

.contact-block-icon svg {
  width: 22px;
  height: 22px;
}

.contact-block-icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.contact-block-whatsapp .contact-block-icon {
  background: #25d366;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.contact-block-whatsapp .contact-block-icon img {
  filter: none;
}

.contact-block-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.contact-block-content strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-blue);
}

.contact-block-content span {
  font-size: 0.94rem;
  color: #2d3566;
  font-weight: 700;
  line-height: 1.35;
}

.contact-block-meta {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: #5c658a !important;
}

.contact-block-place {
  cursor: default;
}

.contact-map-wrap {
  margin-top: 1.25rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e4e8f7;
  background: #f8f9ff;
}

.contact-map-link {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--brand-blue);
  text-decoration: none;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid #e4e8f7;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-map-link:hover {
  background: #eef2ff;
  color: var(--brand-red);
}

.contact-map-iframe {
  display: block;
  width: 100%;
  min-height: 220px;
  pointer-events: auto;
}

.form-group {
  margin-bottom: 0.76rem;
}

label {
  display: block;
  font-size: 0.84rem;
  font-weight: 800;
  color: #384174;
}

input,
textarea,
select {
  width: 100%;
  margin-top: 0.3rem;
  padding: 0.74rem 0.82rem;
  border: 1px solid #d5daef;
  border-radius: 10px;
  font: inherit;
  background: #fbfcff;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-note {
  margin-bottom: 0.95rem;
  color: #516189;
  font-size: 0.92rem;
}

.success-message {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid #b6e8c8;
  background: #effbf3;
  color: #1d6943;
  border-radius: 12px;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid #dbe0f3;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 24px rgba(31, 31, 91, 0.06);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: #27336f;
}

.faq-item p {
  margin-top: 0.7rem;
  color: #55607c;
}

.site-footer {
  margin-top: 2rem;
  background: linear-gradient(120deg, var(--brand-blue-deep), #1a1a47);
  color: #d7dcf6;
}

.footer-inner {
  width: min(1150px, 92vw);
  margin: 0 auto;
  padding: 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.site-footer h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.site-footer li {
  list-style: none;
  margin-bottom: 0.33rem;
}

.site-footer a {
  text-decoration: none;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .service-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-nav {
    position: static;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #ffffff;
    border-bottom: 1px solid #e3e7f4;
    padding: 0.45rem;
    gap: 0;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    text-align: center;
    border-radius: 10px;
    margin: 0.15rem 0;
  }

  .logo img {
    width: 44px;
    height: 44px;
  }

  .logo-text span {
    display: none;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .button-row .btn {
    width: 100%;
    text-align: center;
  }
}

/* WhatsApp floating action button – visible across all pages */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.whatsapp-fab:focus-visible {
  outline: 2px solid #25d366;
  outline-offset: 3px;
}

.whatsapp-fab img,
.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}
