:root {
  --ink: #121826;
  --navy: #111f3d;
  --blue: #1268f3;
  --red: #ed1c2e;
  --amber: #ffb000;
  --paper: #f5f7fb;
  --white: #ffffff;
  --muted: #687386;
  --line: rgba(18, 24, 38, 0.12);
  --shadow: 0 22px 70px rgba(17, 31, 61, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
input, select, textarea, button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), var(--blue));
  color: #fff;
  font-weight: 950;
}

.brand strong,
.brand small { display: block; }
.brand strong {
  color: var(--navy);
  font-size: 1.22rem;
  font-weight: 950;
}
.brand small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex: 1;
  gap: clamp(14px, 2.4vw, 34px);
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 850;
}
.site-nav a:hover { color: var(--blue); }

.header-call,
.btn,
.enquiry-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 950;
  cursor: pointer;
}
.header-call,
.btn.primary,
.enquiry-form button {
  background: var(--red);
  color: #fff;
}
.btn.whatsapp {
  background: #20c763;
  color: #062312;
}
.btn.light {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 118px clamp(18px, 5vw, 76px) 70px;
  color: #fff;
}
.hero > img,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 15, 31, 0.92), rgba(8, 15, 31, 0.55) 48%, rgba(8, 15, 31, 0.08)),
    linear-gradient(0deg, rgba(8, 15, 31, 0.72), rgba(8, 15, 31, 0.08));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 890px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 1.03;
}
h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.2;
}
.hero-content p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}
.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: 34px;
  z-index: 2;
  max-width: 330px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
}
.hero-panel strong,
.hero-panel span { display: block; }
.hero-panel span {
  margin-top: 8px;
  color: rgba(255,255,255,0.75);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--navy);
  color: #fff;
}
.stats div {
  padding: clamp(24px, 4vw, 44px);
  border-right: 1px solid rgba(255,255,255,0.13);
}
.stats strong {
  display: block;
  color: var(--amber);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
}
.stats span {
  color: rgba(255,255,255,0.72);
  font-weight: 800;
}

.section {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 76px);
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: clamp(24px, 6vw, 76px);
  max-width: 1240px;
  margin: 0 auto 42px;
}
.section-heading.center {
  display: block;
  max-width: 760px;
  text-align: center;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 5vw, 70px);
  max-width: 1040px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}
.services { background: #fff; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-grid article,
.package-list article,
.trust-card,
.studio-card,
.contact-card,
.enquiry-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.service-grid article {
  overflow: hidden;
}
.service-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.service-grid h3,
.service-grid p {
  padding-inline: 20px;
}
.service-grid h3 { padding-top: 20px; }
.service-grid p {
  padding-bottom: 22px;
  color: var(--muted);
}

.advertise {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 76px);
  background: linear-gradient(135deg, var(--navy), #223c74);
  color: #fff;
}
.advertise h2 { color: #fff; }
.advertise p:not(.eyebrow) { color: rgba(255,255,255,0.75); }
.package-list {
  display: grid;
  gap: 14px;
}
.package-list article {
  display: grid;
  gap: 4px;
  padding: 22px;
}
.package-list strong {
  color: var(--red);
  font-size: 1.2rem;
}
.package-list span { color: var(--muted); }

.area-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.area-grid span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-weight: 850;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 22px;
  background: #fff;
}
.trust-card {
  padding: clamp(28px, 5vw, 54px);
}
.trust-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}
.studio-card { overflow: hidden; }
.studio-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 22px;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 76px);
}
.contact-card,
.enquiry-form {
  padding: clamp(26px, 5vw, 48px);
}
.contact-card address {
  margin-top: 28px;
  color: var(--muted);
  font-style: normal;
}
.enquiry-form {
  display: grid;
  gap: 12px;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}
.enquiry-form textarea {
  min-height: 130px;
  resize: vertical;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}
.floating-call,
.floating-wa {
  position: fixed;
  right: 18px;
  z-index: 25;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 950;
  box-shadow: var(--shadow);
}
.floating-call {
  bottom: 88px;
  background: var(--red);
}
.floating-wa {
  bottom: 18px;
  background: #20c763;
  color: #062312;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(260px, 0.6fr);
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 76px);
  background: var(--ink);
  color: #fff;
}
.footer strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.footer a,
.footer span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.72);
}
.footer p { color: rgba(255,255,255,0.72); }

.sent {
  outline: 3px solid rgba(255,176,0,0.55);
}

@media (max-width: 1080px) {
  .site-nav,
  .header-call { display: none; }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .site-header.nav-open .site-nav {
    position: absolute;
    top: 80px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .site-header.nav-open .site-nav a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }
  .service-grid,
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-heading,
  .advertise,
  .trust,
  .contact-section,
  .footer {
    grid-template-columns: 1fr;
  }
  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 28px;
  }
}

@media (max-width: 640px) {
  .brand { min-width: auto; }
  .brand small { display: none; }
  .hero {
    min-height: 92svh;
    padding: 104px 18px 42px;
  }
  .hero-overlay {
    background: linear-gradient(0deg, rgba(8,15,31,0.9), rgba(8,15,31,0.2));
  }
  .hero-actions,
  .contact-actions {
    display: grid;
  }
  .btn { width: 100%; }
  .stats,
  .service-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .floating-call,
  .floating-wa {
    width: 52px;
    height: 52px;
  }
}
