:root {
  --navy-900: #060d2a;
  --navy-800: #0b1747;
  --navy-700: #132767;
  --orange-500: #ffad20;
  --orange-400: #ffc040;
  --white: #f8fbff;
  --text-soft: #d8e2ff;
  --stroke: rgba(255, 173, 32, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 173, 32, 0.2), transparent 35%),
    radial-gradient(circle at 80% 85%, rgba(34, 85, 255, 0.2), transparent 36%),
    linear-gradient(155deg, var(--navy-900) 0%, var(--navy-800) 45%, var(--navy-700) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(4px);
}

.bg-shape-1 {
  width: 380px;
  height: 380px;
  background: rgba(255, 173, 32, 0.18);
  top: -120px;
  right: -100px;
}

.bg-shape-2 {
  width: 420px;
  height: 420px;
  background: rgba(102, 141, 255, 0.16);
  bottom: -200px;
  left: -120px;
}

.topbar,
main,
.footer {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

.topbar {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(7, 16, 51, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: clamp(140px, 18vw, 190px);
  display: block;
}

nav {
  display: flex;
  gap: 1rem;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.cta {
  text-decoration: none;
  color: #1d1300;
  font-weight: 800;
  background: linear-gradient(140deg, var(--orange-500), var(--orange-400));
  border-radius: 999px;
  padding: 0.65rem 1rem;
}

main {
  margin-top: 1.1rem;
  display: grid;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.hero,
.services,
.about,
.enquiry,
.contact,
.footer {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(7, 15, 50, 0.8);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.hero {
  padding: clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.pill {
  margin: 0;
  display: inline-block;
  background: var(--orange-500);
  color: #1f1600;
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  letter-spacing: 0.01em;
  font-weight: 800;
}

h1 {
  font-size: clamp(2rem, 6vw, 4.3rem);
  line-height: 1.05;
  margin: 0.9rem 0 0.8rem;
  font-weight: 700;
}

h1 span {
  color: var(--orange-500);
}

.hero-copy p {
  color: var(--text-soft);
  max-width: 58ch;
}

.hero-caption {
  margin: 0 0 0.75rem;
  color: #ffe4a4;
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  font-weight: 700;
}

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

.btn {
  border-radius: 999px;
  padding: 0.65rem 1rem;
  text-decoration: none;
  font-weight: 700;
}

.btn.primary {
  background: linear-gradient(140deg, var(--orange-500), var(--orange-400));
  color: #231600;
}

.btn.ghost {
  border: 1px solid var(--stroke);
  color: var(--white);
}

.hero-logo-card {
  display: grid;
  place-items: center;
  border: 1px solid var(--stroke);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 173, 32, 0.1), rgba(17, 41, 110, 0.3)),
    rgba(6, 13, 42, 0.8);
  min-height: 240px;
}

.hero-logo-card img {
  width: min(330px, 88%);
}

.services {
  padding: 1.2rem;
}

.services h2,
.about h2 {
  margin: 0;
  font-size: clamp(1.3rem, 3vw, 2rem);
}

.services-grid {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.services-grid article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid var(--orange-500);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font-weight: 700;
}

.service-item {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid var(--orange-500);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.service-item:hover,
.service-item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 173, 32, 0.8);
  background: rgba(255, 173, 32, 0.12);
  outline: none;
}

.services-note {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.about {
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
}

.about p {
  color: var(--text-soft);
  text-align: justify;
}

.about-subtitle {
  margin: 0.8rem 0 0.45rem;
  color: #ffe4a4;
  font-size: 1.04rem;
}

.about-points {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
  display: grid;
  gap: 0.35rem;
}

.enquiry {
  padding: 1.2rem;
}

.enquiry h2 {
  margin: 0;
  font-size: clamp(1.3rem, 3vw, 2rem);
}

.enquiry-note {
  margin: 0.45rem 0 0.9rem;
  color: var(--text-soft);
}

.enquiry-form {
  display: grid;
  gap: 0.7rem;
}

.enquiry-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-radius: 10px;
  padding: 0.65rem 0.72rem;
  font: inherit;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: rgba(255, 173, 32, 0.8);
  box-shadow: 0 0 0 2px rgba(255, 173, 32, 0.16);
}

.enquiry-submit {
  margin-top: 0.2rem;
  border: 0;
  background: linear-gradient(140deg, var(--orange-500), var(--orange-400));
  color: #201400;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  cursor: pointer;
  width: fit-content;
}

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  justify-items: stretch;
}

.stats article {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  min-height: 120px;
  display: grid;
  align-content: center;
}

.stats h3 {
  margin: 0;
  color: var(--orange-500);
  font-size: 1.35rem;
}

.stats p {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
  color: var(--white);
}

.contact {
  padding: 1rem;
  text-align: center;
}

.contact p {
  margin: 0;
  font-size: clamp(1.1rem, 2.4vw, 1.8rem);
  font-weight: 700;
}

.contact span {
  color: var(--orange-500);
}

.contact a {
  margin-top: 0.5rem;
  display: inline-block;
  text-decoration: none;
  font-size: clamp(1.9rem, 7vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
}

.contact-address {
  margin: 0.7rem auto 0;
  max-width: 62ch;
  color: var(--text-soft);
  font-size: 0.98rem;
  text-align: center;
}

.contact-map {
  margin: 0.45rem 0 0;
}

.contact-map a {
  margin-top: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #ffe4a4;
  text-decoration: underline;
}

.footer {
  margin-bottom: 1rem;
  padding: 1rem;
  text-align: center;
}

.footer img {
  width: clamp(130px, 16vw, 170px);
}

.footer p {
  margin: 0.45rem 0 0;
  color: var(--text-soft);
}

.footer a {
  color: var(--white);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 22, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 10;
}

.modal-overlay.is-open {
  display: flex;
}

.modal-card {
  width: min(560px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(160deg, rgba(13, 27, 75, 0.95), rgba(8, 16, 50, 0.98));
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.modal-card h3 {
  margin: 0 2rem 0.5rem 0;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--orange-500);
}

.modal-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.modal-read-more {
  margin-top: 0.9rem;
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(140deg, var(--orange-500), var(--orange-400));
  color: #201400;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.58rem 0.95rem;
}

.modal-close {
  float: right;
  border: 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  background: var(--orange-500);
  color: #1d1300;
}

.whatsapp-float {
  position: fixed;
  left: 14px;
  bottom: 26px;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #ecfff3;
  font-weight: 700;
  background: rgba(5, 27, 16, 0.92);
  border: 1px solid rgba(37, 211, 102, 0.7);
  border-radius: 999px;
  padding: 0.35rem 0.72rem 0.35rem 0.36rem;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.whatsapp-icon img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  display: block;
}

.whatsapp-icon::before,
.whatsapp-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, 0.62);
  animation: waRipple 2s ease-out infinite;
}

.whatsapp-icon::after {
  animation-delay: 1s;
}

.whatsapp-text {
  letter-spacing: 0.01em;
}

@keyframes waRipple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

.reveal {
  animation: fadeUp 700ms ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .hero,
  .about {
    grid-template-columns: 1fr;
  }

  .hero-logo-card {
    min-height: 160px;
  }
}

@media (max-width: 700px) {
  .topbar,
  main,
  .footer {
    width: min(1140px, calc(100% - 1rem));
  }

  .topbar {
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

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

  .whatsapp-text {
    display: none;
  }

  .whatsapp-float {
    padding-right: 0.36rem;
  }
}
