:root {
  --navy: #10233f;
  --navy-deep: #0a172b;
  --gold: #d4a84b;
  --gold-soft: #f0dfb1;
  --ink: #192538;
  --muted: #66768f;
  --surface: #f5f7fb;
  --white: #ffffff;
  --shadow-xl: 0 32px 72px rgba(16, 35, 63, 0.18);
  --shadow-lg: 0 20px 44px rgba(16, 35, 63, 0.12);
  --radius-xl: 1.8rem;
  --radius-lg: 1.25rem;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(212, 168, 75, 0.18), transparent 28%),
    linear-gradient(180deg, #fdfcf9 0%, #f4f6fb 100%);
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-navbar {
  padding: 1rem 0;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-navbar.scrolled {
  background: rgba(10, 23, 43, 0.94);
  box-shadow: 0 18px 48px rgba(10, 23, 43, 0.22);
  backdrop-filter: blur(12px);
  padding: 0.8rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  color: var(--white);
  line-height: 1;
}
.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  margin-right: 0.8rem;
  background: none;
  box-shadow: none;
}
.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-name,
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.brand-name {
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.navbar-brand small {
  color: var(--gold-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
}

.site-navbar .nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  padding: 0.7rem 1rem;
  border-radius: 999px;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.site-navbar .navbar-toggler {
  padding: 0.5rem;
}

.site-navbar .navbar-toggler-icon {
  width: 2rem;
  height: 2rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-gold,
.btn-outline-gold {
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-weight: 700;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b78625);
  border: 0;
  color: var(--navy-deep);
  box-shadow: 0 16px 34px rgba(212, 168, 75, 0.26);
}

.btn-gold:hover,
.btn-gold:focus {
  color: var(--navy-deep);
  background: linear-gradient(135deg, #e4bb63, #be8c2e);
}

.btn-outline-gold {
  border: 2px solid rgba(212, 168, 75, 0.7);
  color: var(--white);
}

.btn-outline-gold:hover,
.btn-outline-gold:focus {
  border-color: var(--gold);
  background: rgba(212, 168, 75, 0.15);
  color: var(--white);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  color: var(--white);
  background: var(--navy-deep);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(10, 23, 43, 0.9), rgba(16, 35, 63, 0.82)),
    url("../../public/images/hero-construction.jpg") center/cover no-repeat;
}

.hero-section .container {
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold-soft);
}

.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: currentColor;
}

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

.hero-section h1,
.section-title,
.hero-card h2,
.location-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.hero-section h1 {
  font-size: clamp(3.4rem, 8vw, 6rem);
  line-height: 0.95;
  margin-bottom: 1.2rem;
}

.hero-copy {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  margin-bottom: 2rem;
}

.hero-stats {
  max-width: 26rem;
}

.hero-stat {
  padding: 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  backdrop-filter: blur(10px);
}

.hero-stat strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--gold-soft);
}

.hero-stat span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}

.hero-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(16px);
}

.badge-line,
.form-kicker,
.form-note {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.badge-line {
  background: rgba(212, 168, 75, 0.18);
  color: var(--gold-soft);
  margin-bottom: 1rem;
}

.hero-card h2 {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 1.2rem;
}

.hero-contact-list {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-contact-list a,
.hero-contact-list div {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
}

.hero-contact-list i {
  color: var(--gold);
}

.section-pad {
  padding: 6.5rem 0;
}

.section-heading {
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.section-copy {
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.03rem;
}

.section-copy-light {
  color: rgba(255, 255, 255, 0.75);
}

.services-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 247, 251, 0.95)),
    var(--surface);
}

.service-card {
  height: 100%;
  padding: 1.9rem 1.6rem;
  background: var(--white);
  border-radius: 1.4rem;
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: var(--shadow-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 52px rgba(16, 35, 63, 0.14);
}

.service-card i,
.promise-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(16, 35, 63, 0.08);
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
}

.service-card h3,
.comparison-body h3,
.promise-card h3,
.contact-form-card h3,
.site-footer h3 {
  font-size: 1.14rem;
  font-weight: 700;
}

.service-card p,
.comparison-body p,
.promise-card p,
.site-footer p {
  color: var(--muted);
  margin: 0;
}

.portfolio-section {
  background: linear-gradient(145deg, var(--navy-deep), #152d52 60%, #0f1f37 100%);
}

.comparison-card {
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.comparison {
  position: relative;
  height: 21rem;
  overflow: hidden;
}

.comparison img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison > img,
.comparison-before,
.comparison-before img,
.comparison-line,
.comparison-handle,
.comparison-range {
  position: absolute;
  inset: 0;
}

.comparison-before {
  width: 50%;
  overflow: hidden;
}

.comparison-before img {
  width: 100%;
}

.comparison-line {
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 999rem rgba(0, 0, 0, 0);
}

.comparison-handle {
  left: 50%;
  top: 50%;
  width: 3.1rem;
  height: 3.1rem;
  margin-left: -1.55rem;
  margin-top: -1.55rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.comparison-range {
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
}

.comparison-label {
  position: absolute;
  top: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
}

.before-label {
  left: 1rem;
  background: rgba(220, 53, 69, 0.95);
}

.after-label {
  right: 1rem;
  background: rgba(40, 167, 69, 0.95);
}

.comparison-body {
  padding: 1.4rem;
}

.comparison-body span {
  display: inline-flex;
  margin-bottom: 0.6rem;
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.comparison-body h3 {
  color: var(--white);
  margin-bottom: 0;
}

.about-section {
  background: linear-gradient(180deg, #fbfcff, #f4f7fb);
}

.flyer-frame,
.map-card,
.contact-form-card,
.location-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.flyer-frame {
  background: var(--white);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(16, 35, 63, 0.08);
}

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

.promise-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: var(--white);
  border-radius: 1.2rem;
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: var(--shadow-lg);
}

.promise-card i {
  margin-bottom: 0;
  flex-shrink: 0;
}

.location-section {
  background: linear-gradient(145deg, #edf2fb, #f8fafc);
}

.map-card {
  min-height: 100%;
  box-shadow: var(--shadow-xl);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 28rem;
  border: 0;
}

.location-card {
  height: 100%;
  padding: 2rem;
  background: linear-gradient(180deg, var(--navy), var(--navy-deep));
  color: var(--white);
  box-shadow: var(--shadow-xl);
}

.location-card h2 {
  font-size: 2.3rem;
  line-height: 0.98;
  margin-bottom: 1rem;
}

.location-card p {
  color: rgba(255, 255, 255, 0.78);
}

.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.location-list span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
}

.contact-section {
  background: var(--white);
}

.contact-card {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(180deg, var(--navy), #153056);
  border-radius: 1.4rem;
  box-shadow: var(--shadow-xl);
}

.contact-card span {
  display: block;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.contact-card a,
.contact-card p {
  color: var(--white);
  margin: 0;
  font-size: 1.05rem;
}

.contact-form-card {
  padding: 2rem;
  background: linear-gradient(180deg, #f9fbff, #eef3fb);
  border: 1px solid rgba(16, 35, 63, 0.1);
  box-shadow: var(--shadow-xl);
}

.form-kicker {
  background: rgba(212, 168, 75, 0.16);
  color: #7b5b15;
}

.form-note {
  background: rgba(16, 35, 63, 0.08);
  color: var(--navy);
}

.form-control,
.form-select {
  border-radius: 1rem;
  border: 1px solid rgba(16, 35, 63, 0.12);
  padding: 0.9rem 1rem;
  min-height: 3.35rem;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(212, 168, 75, 0.52);
  box-shadow: 0 0 0 0.25rem rgba(212, 168, 75, 0.16);
}

.site-footer {
  padding: 4rem 0 2.2rem;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.74);
}

.footer-brand {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand span {
  display: block;
  color: var(--gold-soft);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-family: "Outfit", sans-serif;
}

.site-footer h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1030;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.32);
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .site-navbar {
    background: rgba(10, 23, 43, 0.94);
    backdrop-filter: blur(12px);
  }

  .hero-section {
    padding-top: 5.5rem;
  }

  .section-pad {
    padding: 5rem 0;
  }

  .map-card iframe {
    min-height: 22rem;
  }
}

@media (max-width: 767.98px) {
  .brand-name,
  .footer-brand {
    font-size: 1.6rem;
  }

  .hero-card,
  .contact-form-card,
  .location-card {
    padding: 1.5rem;
  }

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

  .whatsapp-float span {
    display: none;
  }
}
