:root {
  --bg: #eaf3ff;
  --surface: rgba(250, 253, 255, 0.86);
  --surface-strong: #f8fbff;
  --ink: #0c1d31;
  --muted: #405671;
  --accent: #0f6ad8;
  --accent-deep: #0b4ea5;
  --line: rgba(12, 29, 49, 0.1);
  --shadow: 0 28px 80px rgba(15, 59, 110, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(15, 106, 216, 0.18), transparent 28%),
    radial-gradient(circle at right 22%, rgba(89, 186, 255, 0.17), transparent 24%),
    linear-gradient(180deg, #f5f9ff 0%, #deebfb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(27, 19, 15, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 19, 15, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 90%);
}

.page-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.site-header,
.hero,
.stats,
.about,
.highlights,
.experience-strip,
.services,
.gallery,
.contact-banner,
.contact-form-section,
.site-footer {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0 2.25rem;
}

.brand,
.site-nav a,
.button {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 34rem;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(248, 252, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.brand-text {
  display: inline-block;
  max-width: 24ch;
  line-height: 1.1;
  font-size: 1.58rem;
}

.brand-copy {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.brand-tagline {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: none;
  color: var(--muted);
  line-height: 1.3;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
}

.hero {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
  padding: 3.25rem 0 2.5rem;
}

.hero-visuals {
  display: grid;
  gap: 1rem;
}

.company-name {
  margin: 0.35rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}

.hero-image,
.section-image,
.services-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-image-main {
  min-height: 280px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero-trust span {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-size: 0.92rem;
}

.eyebrow,
.section-tag,
.card-label,
.service-card span {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.88rem;
  color: var(--accent-deep);
  font-weight: 700;
}

h1,
h2,
h3,
.hero-card h2 {
  margin: 0;
  line-height: 0.95;
}

h1,
h2,
h3,
.hero-card h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  max-width: 14ch;
  margin-top: 0.65rem;
  line-height: 1.02;
}

.hero-text,
.section-copy p,
.service-card p,
.card-list,
.contact-banner {
  color: var(--muted);
}

.hero-text {
  max-width: 32rem;
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 1.25rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
}

.button-primary {
  background: var(--accent);
  color: #fff8f2;
  box-shadow: var(--shadow);
}

.button-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(248, 252, 255, 0.72);
  backdrop-filter: blur(14px);
}

.hero-card,
.service-card,
.stats article,
.contact-banner,
.trust-card,
.project-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.5rem;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-card h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  margin: 0.75rem 0 1rem;
}

.card-list {
  margin: 0;
  padding-left: 1.1rem;
  line-height: 1.9;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0 3rem;
}

.stats article {
  border-radius: 22px;
  padding: 1.2rem;
}

.stats strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.section-grid,
.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.about,
.highlights,
.experience-strip,
.trust-section,
.projects-section,
.services,
.gallery {
  padding: 2.5rem 0 3.2rem;
}

.section-copy p {
  margin: 0 0 1rem;
  line-height: 1.8;
}

.section-image {
  margin-bottom: 1.25rem;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.section-heading h2,
.about h2,
.contact-banner h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  margin-top: 0.5rem;
}

.trust-section {
  padding-top: 0.5rem;
}

.trust-grid,
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.trust-card,
.project-card {
  padding: 1.5rem;
  border-radius: 28px;
}

.trust-card h3,
.project-card h3 {
  margin: 0.75rem 0;
  font-size: 1.38rem;
  line-height: 1.25;
}

.trust-card p:last-child,
.project-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.project-card span {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 0;
}

.highlight-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(250, 253, 255, 0.82);
  box-shadow: var(--shadow);
}

.highlight-card h3 {
  margin: 0.8rem 0 0.8rem;
  font-size: 1.4rem;
  line-height: 1.2;
}

.highlight-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.experience-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 0;
}

.experience-strip article {
  padding: 1.2rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.experience-strip strong {
  display: block;
  font-size: 1.9rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.experience-strip span {
  color: var(--muted);
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.services-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
}

.services-feature p {
  margin: 0;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(250, 253, 255, 0.84);
  box-shadow: var(--shadow);
  color: var(--muted);
  line-height: 1.8;
}

.service-card {
  padding: 1.4rem;
  border-radius: 24px;
}

.service-card h3 {
  margin: 0.9rem 0 0.7rem;
  font-size: 1.35rem;
}

.service-card p {
  margin: 0;
  line-height: 1.7;
}

.service-detail {
  margin-top: 0.95rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
}

.service-label {
  margin-bottom: 0.35rem;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.gallery-intro {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.gallery-card {
  margin: 0;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(250, 253, 255, 0.82);
  box-shadow: var(--shadow);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 20px;
}

.gallery-card figcaption {
  margin-top: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.96rem;
}

.gallery-card-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.contact-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.8rem;
  border-radius: 28px;
  margin-top: 1rem;
}

.contact-details {
  margin: 0.85rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-details a,
.footer-details a {
  color: var(--accent-deep);
  text-decoration: none;
}

.contact-form-section {
  padding: 2rem 0 3rem;
}

.form-status {
  margin-top: 1.25rem;
}

.form-status-success,
.form-status-error {
  margin: 0;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-status-success {
  background: rgba(220, 247, 232, 0.9);
  color: #1b5e3b;
}

.form-status-error {
  background: rgba(255, 234, 234, 0.94);
  color: #8a2630;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(250, 253, 255, 0.88);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--ink);
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-full {
  grid-column: 1 / -1;
}

.contact-form button {
  width: fit-content;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0 0.5rem;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.footer-tagline,
.footer-details p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 16px 32px rgba(20, 112, 55, 0.28);
}

.whatsapp-float::before {
  content: "";
  width: 1.35rem;
  height: 1.35rem;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M19.1 17.2c-.3-.2-1.8-.9-2.1-1-.3-.1-.5-.2-.7.2-.2.3-.8 1-.9 1.1-.2.2-.3.2-.6.1-.3-.2-1.1-.4-2.2-1.4-.8-.7-1.4-1.7-1.6-2-.2-.3 0-.5.1-.6.1-.1.3-.3.5-.5.2-.2.2-.3.3-.5.1-.2 0-.4 0-.5 0-.1-.7-1.7-.9-2.3-.2-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.7.4-.2.3-.9.9-.9 2.1 0 1.2.9 2.3 1 2.4.1.2 1.8 2.8 4.5 3.8 2.7 1 2.7.7 3.2.7.5 0 1.8-.7 2-1.4.3-.7.3-1.3.2-1.4-.1-.1-.3-.2-.6-.3Z'/%3E%3Cpath fill='%23fff' d='M16 3.2C9 3.2 3.4 8.8 3.4 15.7c0 2.2.6 4.3 1.7 6.2L3 29l7.3-1.9c1.8 1 3.7 1.5 5.7 1.5h.1c6.9 0 12.6-5.6 12.6-12.5 0-3.3-1.3-6.5-3.7-8.8-2.4-2.4-5.5-3.7-8.9-3.7Zm0 22.9h-.1c-1.8 0-3.6-.5-5.1-1.4l-.4-.2-4.3 1.1 1.2-4.2-.3-.4c-1-1.5-1.5-3.3-1.5-5.1 0-5.8 4.7-10.5 10.5-10.5 2.8 0 5.4 1.1 7.4 3.1s3.1 4.6 3.1 7.4c0 5.8-4.8 10.4-10.5 10.4Z'/%3E%3C/svg%3E");
}

@media (max-width: 860px) {
  .hero,
  .section-grid,
  .section-heading,
  .trust-grid,
  .projects-grid,
  .highlights,
  .experience-strip,
  .services-feature,
  .service-grid,
  .stats,
  .contact-banner,
  .contact-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .gallery-card-featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .contact-banner {
    display: grid;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 1.25rem, 100%);
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .brand-logo {
    width: 72px;
    height: 72px;
  }

  .site-nav {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 1.5rem;
  }

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

  .gallery-card-featured {
    grid-column: span 1;
    grid-row: span 1;
  }

  h1 {
    max-width: none;
  }
}
