:root {
  --blue: #2e3a8c;
  --blue-dark: #1d2463;
  --red: #e53935;
  --red-dark: #c62828;
  --ink: #0d0f14;
  --text: #1c2430;
  --muted: #667085;
  --line: rgba(20, 27, 44, 0.12);
  --bg: #f4f6fb;
  --panel: rgba(255, 255, 255, 0.78);
  --shadow: 0 22px 60px rgba(13, 15, 20, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(46, 58, 140, 0.1), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(229, 57, 53, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(248, 250, 255, 0.74);
  border-bottom: 1px solid rgba(13, 15, 20, 0.08);
}

.nav-bar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo,
.footer-logo {
  width: min(220px, 42vw);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
}

.nav-links a:not(.nav-phone)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-phone {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(46, 58, 140, 0.08);
  border: 1px solid rgba(46, 58, 140, 0.16);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image:
    linear-gradient(180deg, rgba(12, 16, 28, 0.36), rgba(12, 16, 28, 0.68)),
    url('img/gallery/WhatsApp%20Image%202026-04-14%20at%2022.31.06.jpeg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.hero-overlay {
  background:
    radial-gradient(circle at 20% 20%, rgba(46, 58, 140, 0.36), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(229, 57, 53, 0.28), transparent 26%),
    linear-gradient(180deg, rgba(8, 10, 16, 0.2), rgba(8, 10, 16, 0.68));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 96px 0;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.section-kicker {
  color: var(--blue);
}

.section-kicker.light {
  color: rgba(255, 255, 255, 0.85);
}

.hero h1,
.section-head h2,
.section-copy h2,
.cta-panel h2,
.contact-form-panel h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 16px 0 18px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.6rem);
  max-width: 12ch;
}

.hero p,
.section-head p,
.section-copy p,
.contact-form-panel p,
.site-footer p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  font-size: 1.03rem;
}

.section-head p,
.section-copy p,
.contact-form-panel p,
.site-footer p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 16px 34px rgba(229, 57, 53, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-white {
  background: #fff;
  color: var(--red);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.hero-badges,
.trust-grid,
.about-stats,
.services-grid,
.project-grid,
.contact-grid,
.footer-grid,
.value-list {
  display: grid;
}

.hero-badges {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.badge-card,
.trust-item,
.service-card,
.glass-panel,
.value-item,
.project-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.badge-card {
  border-radius: var(--radius-lg);
  padding: 18px;
}

.badge-card span,
.trust-item p,
.service-card p,
.project-overlay span,
.why-stat span,
.value-item p,
.about-card span,
.footer-bottom span,
.contact-details a,
.contact-details span {
  color: rgba(255, 255, 255, 0.78);
}

.badge-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

.trust-bar {
  margin-top: -44px;
  position: relative;
  z-index: 2;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(13, 15, 20, 0.08);
}

.trust-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(46, 58, 140, 0.14), rgba(229, 57, 53, 0.12));
  color: var(--ink);
  font-weight: 800;
  flex: 0 0 auto;
}

.trust-item strong,
.service-card h3,
.value-item h3,
.site-footer h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  margin: 0;
}

.trust-item p {
  color: var(--muted);
  margin: 6px 0 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: 1.02fr 0.98fr;
}

.about-visual,
.why-visual,
.map-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.about-visual {
  padding: 18px;
  background: linear-gradient(160deg, rgba(46, 58, 140, 0.1), rgba(229, 57, 53, 0.07));
}

.about-image {
  min-height: 520px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(8, 10, 16, 0.08), rgba(8, 10, 16, 0.55)),
    url('img/gallery/WhatsApp%20Image%202026-04-14%20at%2022.31.05.jpeg') center/cover;
}

.about-card {
  position: absolute;
  right: 34px;
  bottom: 34px;
  min-width: 220px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(13, 15, 20, 0.78);
  color: #fff;
  backdrop-filter: blur(10px);
}

.about-card strong,
.about-card span {
  display: block;
}

.about-card span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
}

.section-copy h2,
.section-head h2,
.contact-form-panel h2,
.cta-panel h2 {
  color: var(--ink);
  font-size: clamp(2.15rem, 4vw, 4rem);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head > div {
  max-width: 680px;
}

.about-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.about-stats div {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 15, 20, 0.08);
}

.about-stats strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: var(--blue);
}

.about-stats span {
  color: var(--muted);
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  border-radius: 24px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(13, 15, 20, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.project-card:hover,
.value-item:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 58, 140, 0.2);
  box-shadow: 0 30px 60px rgba(13, 15, 20, 0.16);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(46, 58, 140, 0.14), rgba(229, 57, 53, 0.14));
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.project-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 280px;
}

.project-large {
  grid-row: span 2;
  min-height: 578px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(8, 10, 16, 0.92));
  color: #fff;
}

.project-overlay h3 {
  margin: 8px 0 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
}

.why-us {
  position: relative;
}

.value-list {
  gap: 14px;
  margin-top: 24px;
}

.value-item {
  display: flex;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(13, 15, 20, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.value-item span {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--red));
}

.value-item h3 {
  margin-bottom: 6px;
}

.value-item p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.why-visual {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(46, 58, 140, 0.98), rgba(15, 18, 31, 0.94)),
    linear-gradient(135deg, rgba(46, 58, 140, 0.9), rgba(229, 57, 53, 0.76));
  color: #fff;
}

.why-stat strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
}

.why-stat span {
  display: block;
  margin-top: 8px;
}

.why-bars {
  margin-top: 26px;
  display: grid;
  gap: 16px;
}

.why-bars div {
  display: grid;
  gap: 8px;
}

.why-bars label {
  font-weight: 600;
}

.why-bars i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), #ff8a80);
  box-shadow: 0 10px 20px rgba(229, 57, 53, 0.3);
}

.cta-section {
  padding-top: 0;
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px 36px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), #b71c1c);
  box-shadow: 0 34px 70px rgba(229, 57, 53, 0.34);
}

.cta-panel h2 {
  color: #fff;
  margin: 12px 0 0;
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.contact-form-panel,
.map-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 30px;
  border: 1px solid rgba(13, 15, 20, 0.08);
}

.contact-form-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(46, 58, 140, 0.14), transparent 34%),
    radial-gradient(circle at 90% 5%, rgba(229, 57, 53, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.9);
}

.contact-form-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  border: 1px solid rgba(46, 58, 140, 0.08);
  pointer-events: none;
}

.contact-form-panel h2 {
  max-width: 16ch;
  margin-bottom: 12px;
}

.contact-intro {
  max-width: 58ch;
}

.contact-meta {
  margin-top: 10px;
  margin-bottom: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #4b5f9f;
}

.contact-info-board {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(13, 15, 20, 0.1);
  box-shadow: 0 14px 28px rgba(13, 15, 20, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-info-item:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 58, 140, 0.22);
  box-shadow: 0 20px 36px rgba(13, 15, 20, 0.12);
}

.contact-info-id {
  min-width: 48px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--red));
  flex: 0 0 auto;
}

.contact-info-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 1rem;
}

.contact-info-item a,
.contact-info-item span {
  color: #5f6b80;
  line-height: 1.5;
}

.contact-info-item span {
  display: block;
  margin-top: 4px;
  font-size: 0.92rem;
}

.contact-info-item a:hover {
  color: var(--blue);
}

.contact-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.contact-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--blue);
  border: 1px solid rgba(46, 58, 140, 0.22);
  background: linear-gradient(135deg, rgba(46, 58, 140, 0.1), rgba(255, 255, 255, 0.96));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-action-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 58, 140, 0.4);
  box-shadow: 0 14px 26px rgba(46, 58, 140, 0.18);
}

.whatsapp-link {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.3);
  background: linear-gradient(135deg, #25d366, #1faa52);
  color: #fff;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.whatsapp-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(37, 211, 102, 0.38);
  border-color: rgba(255, 255, 255, 0.2);
}

.whatsapp-icon,
.whatsapp-fab-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.whatsapp-icon {
  width: 26px;
  height: 26px;
}

.whatsapp-icon svg,
.whatsapp-fab-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #1faa52);
  color: #fff;
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 26px 50px rgba(37, 211, 102, 0.42);
}

.whatsapp-fab-icon {
  width: 28px;
  height: 28px;
}

.map-panel {
  min-height: 100%;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 640px;
  border: 0;
  border-radius: 22px;
}

.site-footer {
  padding: 36px 0 22px;
  background: linear-gradient(180deg, #111523 0%, #0a0d16 100%);
  color: rgba(255, 255, 255, 0.9);
}

.footer-grid {
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.site-footer p,
.site-footer a,
.site-footer span,
.footer-bottom span {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  color: #fff;
  margin-bottom: 14px;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 8px;
}

.footer-bottom {
  padding-top: 20px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-panel {
  border-radius: var(--radius-xl);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .services-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-large {
    grid-column: span 2;
    min-height: 420px;
  }

  .split-layout,
  .split-layout.reverse,
  .contact-grid,
  .section-head {
    grid-template-columns: 1fr;
    display: grid;
  }

  .section-head {
    align-items: start;
  }
}

@media (max-width: 780px) {
  .section {
    padding: 72px 0;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 12px;
    padding: 18px;
    margin-top: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(13, 15, 20, 0.08);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-bar {
    position: relative;
  }

  .hero-content {
    padding: 72px 0 64px;
  }

  .hero-badges,
  .about-stats,
  .contact-info-board,
  .contact-actions,
  .services-grid,
  .trust-grid,
  .project-grid,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    display: grid;
    align-items: stretch;
  }

  .project-large {
    grid-column: span 1;
    min-height: 340px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-image,
  .map-panel iframe {
    min-height: 360px;
  }

  .about-card {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 60px;
    height: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}