:root {
  --navy: #061b3a;
  --blue: #123a6f;
  --gold: #c79b42;
  --gold-light: #f1d99d;
  --white: #ffffff;
  --soft: rgba(246, 248, 251, 0.9);
  --text: #263244;
  --muted: #667085;
  --shadow: 0 24px 70px rgba(6, 27, 58, 0.16);
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Poppins, Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.soft {
  background: var(--soft);
  backdrop-filter: blur(8px);
}

.background-layer {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(6, 27, 58, 0.94),
      rgba(6, 27, 58, 0.58),
      rgba(255, 255, 255, 0.08)
    ),
    url("../assets/background.png");
  background-size: cover;
  background-position: center;
  z-index: -3;
}

.background-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(199, 155, 66, 0.28), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.16), transparent 25%);
}

.preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  display: grid;
  place-items: center;
  z-index: 999;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.shine-loader {
  font-family: "Playfair Display", serif;
  color: var(--gold-light);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 1px;
  animation: pulse 1.1s infinite alternate;
}

.cursor-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(199, 155, 66, 0.16);
  filter: blur(38px);
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(6, 27, 58, 0.08);
}

.nav {
  height: 84px;
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.2px;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .brand img {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.nav-cta {
  background: var(--gold);
  color: #ffffff !important;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 25px rgba(199, 155, 66, 0.3);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--blue);
  border-radius: 14px;
  padding: 12px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
  border-radius: 8px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: #ffffff;
  padding: 150px 0 90px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 58px;
  align-items: center;
}

.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 12px;
}

.eyebrow.dark {
  color: var(--gold);
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.04;
}

h1 {
  font-size: clamp(48px, 7.6vw, 94px);
  margin: 0;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(34px, 4vw, 58px);
  margin: 0 0 16px;
  color: var(--navy);
}

.tagline {
  font-family: "Playfair Display", serif;
  color: var(--gold-light);
  font-size: clamp(26px, 3vw, 36px);
  margin: 18px 0;
}

.hero-text {
  font-size: 19px;
  line-height: 1.8;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 34px 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 15px 26px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
}

.primary {
  background: linear-gradient(135deg, var(--gold), #d9b66a);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(199, 155, 66, 0.36);
}

.light {
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue);
}

.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(10px);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.hero-card,
.glass-card,
.service-card,
.package-card,
.step,
.review-card,
.area-panel,
.estimate-form,
details {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 36px;
  color: var(--text);
}

.card-logo {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 16px 35px rgba(6, 27, 58, 0.12);
  overflow: hidden;
  padding: 8px;
}

.card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-card h2 {
  font-size: 36px;
}

.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -64px;
  position: relative;
  z-index: 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.stats div {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  text-align: center;
  padding: 30px;
  border-right: 1px solid rgba(18, 58, 111, 0.08);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  font-size: 42px;
  color: var(--blue);
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 9px;
  font-weight: 800;
  color: var(--muted);
}

.section-title {
  max-width: 790px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-title p:last-child {
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
}

.feature-grid,
.service-grid,
.package-grid,
.timeline,
.gallery-grid {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-grid,
.package-grid,
.timeline {
  grid-template-columns: repeat(3, 1fr);
}

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

.glass-card,
.service-card,
.package-card,
.step,
.review-card {
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.glass-card:hover,
.service-card:hover,
.package-card:hover,
.gallery-card:hover {
  transform: translateY(-8px);
}

.icon {
  font-size: 38px;
  margin-bottom: 14px;
}

h3 {
  color: var(--blue);
  font-size: 22px;
  margin: 0 0 10px;
}

.service-card span {
  color: var(--gold);
  font-weight: 900;
  display: inline-block;
  margin-bottom: 14px;
}

.package-label {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.package-card ul {
  padding-left: 20px;
  line-height: 2;
}

.package-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 900;
}

.package-card.featured {
  transform: scale(1.04);
  border: 2px solid rgba(199, 155, 66, 0.5);
}

.step {
  text-align: center;
}

.step b {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  margin-bottom: 16px;
}

.gallery-card {
  min-height: 260px;
  border: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(6, 27, 58, 0.84), rgba(18, 58, 111, 0.45)),
    url("../assets/background.png");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  display: flex;
  align-items: end;
  padding: 24px;
  cursor: pointer;
  transition: transform 0.25s ease;
  text-align: left;
}

.gallery-card span {
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
}

.review-shell {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  gap: 18px;
  align-items: center;
  max-width: 900px;
  margin: auto;
}

.slider-btn {
  height: 56px;
  width: 56px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  font-size: 36px;
  cursor: pointer;
}

.review-card {
  text-align: center;
  min-height: 230px;
  display: grid;
  place-items: center;
  padding: 42px;
}

.stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 3px;
}

.review-card p,
.review-card strong {
  transition: opacity 0.2s ease;
}

.areas {
  text-align: center;
}

.area-panel {
  padding: 58px 25px;
}

.area-list {
  font-size: 24px;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 28px;
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: auto;
}

details {
  padding: 22px 26px;
}

summary {
  cursor: pointer;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
}

details p {
  color: var(--muted);
}

.estimate-section {
  background: rgba(6, 27, 58, 0.76);
  color: #ffffff;
}

.estimate-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.estimate-copy h2 {
  color: #ffffff;
}

.estimate-copy p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.8;
}

.phone-large {
  display: inline-block;
  color: var(--gold-light);
  font-size: 32px;
  font-weight: 900;
  margin-top: 12px;
}

.estimate-form {
  padding: 32px;
  color: var(--text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  color: var(--blue);
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 13px;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border: 1px solid #d9e1ed;
  border-radius: 14px;
  font: inherit;
  background: rgba(255, 255, 255, 0.92);
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(199, 155, 66, 0.15);
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 0;
}

.footer {
  background: var(--navy);
  color: #ffffff;
  padding: 38px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer h3 {
  color: #ffffff;
}

.footer a {
  color: var(--gold-light);
  font-weight: 900;
}

.floating-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  background: var(--gold);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
}

.top-btn {
  position: fixed;
  right: 22px;
  bottom: 82px;
  z-index: 40;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--blue);
  color: #ffffff;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  cursor: pointer;
  transform: translateY(12px);
}

.top-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 27, 58, 0.84);
  z-index: 200;
  display: none;
  place-items: center;
  color: #ffffff;
  padding: 30px;
}

.lightbox.open {
  display: grid;
}

.lightbox-card {
  max-width: 620px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(18px);
}

.lightbox-card h3 {
  color: var(--gold-light);
  font-size: 38px;
}

.lightbox button {
  position: absolute;
  right: 28px;
  top: 24px;
  background: transparent;
  color: #ffffff;
  border: 0;
  font-size: 46px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.78s ease, transform 0.78s ease;
}

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

.sparkle,
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.sparkle {
  width: 8px;
  height: 8px;
  background: #ffffff;
  box-shadow: 0 0 30px #ffffff;
  animation: twinkle 3s infinite;
}

.sparkle-one {
  left: 10%;
  top: 24%;
}

.sparkle-two {
  left: 56%;
  top: 18%;
  animation-delay: 1s;
}

.sparkle-three {
  left: 83%;
  top: 46%;
  animation-delay: 1.7s;
}

.hero-orb {
  width: 320px;
  height: 320px;
  background: rgba(199, 155, 66, 0.16);
  filter: blur(25px);
  animation: float 7s ease-in-out infinite;
}

.orb-one {
  right: -80px;
  top: 160px;
}

.orb-two {
  left: -140px;
  bottom: 40px;
  background: rgba(255, 255, 255, 0.1);
  animation-delay: 1.5s;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.7);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.5);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-22px);
  }
}

@keyframes pulse {
  from {
    opacity: 0.45;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1.04);
  }
}

@media (max-width: 980px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 84px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .feature-grid,
  .service-grid,
  .package-grid,
  .timeline,
  .gallery-grid,
  .estimate-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-card {
    display: none;
  }

  .stats {
    margin-top: 0;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(18, 58, 111, 0.08);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
  }

  .package-card.featured {
    transform: none;
  }

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 560px) {
  .container,
  .nav {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  .brand span {
    font-size: 15px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .review-shell {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }

  .floating-call {
    left: 18px;
    right: 18px;
    text-align: center;
  }

  .top-btn {
    bottom: 82px;
  }

  .card-logo {
    width: 64px;
    height: 64px;
    padding: 6px;
  }
}

/* Footer Credit */
.footer-credit {
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-credit p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  letter-spacing: 0.5px;
}

@media (max-width: 560px) {
  .footer-credit p {
    font-size: 11px;
  }
}

/* ========================================
   FORM LABEL FIX - NOT BOLD & LARGER
   ======================================== */
.estimate-form label {
  font-weight: 400 !important;
  font-size: 15px;
  color: var(--text);
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  font-weight: 400;
  font-size: 16px;
  color: var(--text);
}

.estimate-form input::placeholder,
.estimate-form select::placeholder,
.estimate-form textarea::placeholder {
  font-weight: 300;
  color: #999;
}
