:root {
  --primary: #6a1b9a;
  --primary-dark: #2c123f;
  --accent-red: #d53131;
  --accent-red-dark: #aa2020;
  --gold: #d9b167;
  --text: #1d1424;
  --muted: #62556f;
  --surface: #ffffff;
  --surface-alt: #faf7ff;
  --border: #ebdef7;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 16px 35px rgba(49, 20, 74, 0.08);
  --shadow-strong: 0 20px 45px rgba(40, 13, 62, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% -10%, rgba(217, 177, 103, 0.16) 0%, rgba(217, 177, 103, 0) 30%),
    radial-gradient(circle at 90% 0%, rgba(106, 27, 154, 0.1) 0%, rgba(106, 27, 154, 0) 32%),
    linear-gradient(180deg, #f9f5fe 0%, #ffffff 38%);
}

body {
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: clamp(64px, 8vw, 94px) 0;
}

.section-light {
  background: var(--surface-alt);
}

.eyebrow {
  color: #7a42a2;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
  margin-bottom: 10px;
}

h1,
h2,
h3,
h4,
p,
ul {
  margin-top: 0;
}

h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 16px;
}

h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 14px;
}

h3,
h4 {
  font-family: "Manrope", "Segoe UI", sans-serif;
  letter-spacing: 0.01em;
}

p {
  line-height: 1.8;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(229, 216, 245, 0.75);
  box-shadow: 0 8px 24px rgba(44, 18, 63, 0.07);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-dark);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(40, 15, 61, 0.2));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  color: #3c3051;
  font-weight: 600;
  position: relative;
  padding: 4px 2px;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--primary);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  background: linear-gradient(90deg, var(--gold), var(--primary));
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--primary-dark);
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-red {
  background: linear-gradient(135deg, var(--accent-red) 0%, #c92a2a 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(213, 49, 49, 0.28);
}

.btn-red:hover {
  background: linear-gradient(135deg, var(--accent-red-dark) 0%, #a71f1f 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 22px rgba(171, 33, 33, 0.35);
}

.btn-outline {
  border-color: rgba(106, 27, 154, 0.65);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.75);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 20px rgba(106, 27, 154, 0.25);
}

.btn-outline.light {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.btn-outline.light:hover {
  background: #fff;
  color: var(--primary-dark);
}

.block {
  width: 100%;
}

.hero-banner {
  position: relative;
  min-height: min(72vh, 640px);
  margin-top: 82px;
  overflow: hidden;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

.hero-banner > img {
  width: 100%;
  height: 100%;
  min-height: min(72vh, 640px);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(109deg, rgba(21, 8, 34, 0.86) 4%, rgba(44, 17, 69, 0.56) 48%, rgba(82, 28, 121, 0.35) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  color: #fff;
  z-index: 2;
}

.hero-banner-content h1,
.hero-banner-content p,
.hero-banner-content .eyebrow {
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.maintenance-section {
  background: var(--surface-alt);
  position: relative;
}

.maintenance-section::before {
  content: "";
  position: absolute;
  right: 5%;
  top: 40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 177, 103, 0.16) 0%, rgba(217, 177, 103, 0) 70%);
  pointer-events: none;
}

.maintenance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.maintenance-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.maintenance-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.maintenance-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.maintenance-content ul,
.ac-feature-content ul {
  margin: 0 0 22px 18px;
  padding: 0;
}

.maintenance-content li,
.ac-feature-content li {
  margin-bottom: 8px;
  color: #4f3f64;
}

.ac-feature-wrap {
  background: #fff;
}

.ac-feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.ac-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.ac-feature-content {
  padding: 34px;
}

.section-head {
  text-align: center;
  margin-bottom: 26px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcf9ff 100%);
  border: 1px solid #efdef9;
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #dbc1ef;
  box-shadow: var(--shadow-strong);
}

.page-banner {
  position: relative;
  margin-top: 82px;
  min-height: 320px;
  overflow: hidden;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

.page-banner img {
  width: 100%;
  min-height: 320px;
  max-height: 420px;
  object-fit: cover;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 8, 41, 0.79) 0%, rgba(25, 8, 41, 0.4) 62%, rgba(25, 8, 41, 0.2) 100%);
}

.page-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 660px;
  color: #fff;
  z-index: 2;
}

.page-banner-content h1,
.page-banner-content p,
.page-banner-content .eyebrow {
  color: #fff;
}

.about-banner img {
  object-position: center;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.about-box,
.contact-card,
.lead-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.about-box ul {
  margin: 0;
  padding-left: 18px;
}

.lead-form {
  display: grid;
  gap: 10px;
}

.lead-form label {
  font-weight: 600;
  color: #3a2f4d;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid #d8c9e8;
  border-radius: 10px;
  padding: 12px 13px;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(106, 27, 154, 0.15);
}

.form-note {
  font-size: 0.9rem;
  margin: 0;
}

.certificate-card {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(135deg, #f9f1ff 0%, #fffdf8 100%);
}

.certificate-card h3 {
  margin-bottom: 8px;
}

.certificate-card p {
  margin-bottom: 12px;
}

.floating-wa {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 998;
  background: linear-gradient(135deg, #20c55a 0%, #14a84b 100%);
  color: #fff;
  font-weight: 700;
  padding: 13px 17px;
  border-radius: 999px;
  box-shadow: 0 16px 28px rgba(16, 95, 45, 0.34);
}

.floating-wa:hover {
  transform: translateY(-2px);
}

.site-footer {
  background:
    radial-gradient(circle at 18% -20%, rgba(217, 177, 103, 0.22) 0%, rgba(217, 177, 103, 0) 35%),
    linear-gradient(135deg, #1d0f2d 0%, #2a1342 70%, #25103b 100%);
  color: #ddd;
  padding: 46px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
}

.site-footer p,
.site-footer a {
  color: #d6d0df;
}

.site-footer a:hover {
  color: #fff;
}

.copy {
  text-align: center;
  margin-top: 16px;
  font-size: 0.92rem;
}

.center {
  text-align: center;
}

.mt-24 {
  margin-top: 24px;
}

.mb-16 {
  margin-bottom: 16px;
}

.reveal-element {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-element.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .maintenance-grid,
  .ac-feature-card,
  .cards-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-banner-content,
  .page-banner-content {
    max-width: 540px;
  }

  .brand span {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0 14px;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .maintenance-grid,
  .ac-feature-card,
  .cards-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    min-height: 520px;
  }

  .hero-banner > img {
    min-height: 520px;
  }

  .hero-banner-content,
  .page-banner-content {
    max-width: 100%;
    padding-top: 52px;
  }

  .maintenance-content,
  .ac-feature-content,
  .about-box,
  .contact-card,
  .lead-form {
    padding: 24px;
  }

  .section {
    padding: 58px 0;
  }


@media (prefers-reduced-motion: reduce) {
  .reveal-element,
  .btn,
  .service-card,
  .floating-wa {
    transition: none;
    transform: none;
  }
}
  .section {
    padding: 60px 0;
  }
}



/* Map Section */
.section-map {
  background: #f9f9f9;
  padding: 60px 0;
  text-align: center;
}

.map-heading {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.map-subtext {
  color: #555;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.map-actions {
  margin-top: 16px;
}
