:root {
  --green-900: #0a2f20;
  --green-800: #0d4d33;
  --green-700: #126543;
  --green-600: #198754;
  --gold: #cfb06e;
  --gold-soft: #e7d7ae;
  --cream: #f7f4ee;
  --white: #ffffff;
  --text: #1d2a24;
  --muted: #5f6f68;
  --line: rgba(13, 77, 51, 0.12);
  --shadow-lg: 0 24px 60px rgba(10, 47, 32, 0.18);
  --shadow-md: 0 18px 38px rgba(10, 47, 32, 0.1);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(207, 176, 110, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
  line-height: 1.6;
}

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

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

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

.topbar {
  background: linear-gradient(90deg, var(--green-900), var(--green-800));
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  min-height: 52px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 0;
}

.info {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: url('media/hero-hdb-painting.jpg') center/cover no-repeat;
}

.site-brand {
  position: relative;
  z-index: 2;
  padding-top: 22px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.option-one-logo {
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.16));
}

.brand-icon,
.hero-logo-icon {
  position: relative;
  width: 74px;
  height: 58px;
  display: inline-block;
  flex: 0 0 auto;
}

.contractor-icon {
  border-radius: 18px;
}

.roof-line {
  position: absolute;
  top: 6px;
  left: 14px;
  width: 34px;
  height: 18px;
  border-top: 5px solid var(--gold);
  border-left: 5px solid var(--gold);
  transform: skew(-35deg);
  border-top-left-radius: 3px;
}

.house-wall {
  position: absolute;
  left: 20px;
  top: 22px;
  width: 20px;
  height: 15px;
  border-left: 4px solid rgba(255, 255, 255, 0.96);
  border-bottom: 4px solid rgba(255, 255, 255, 0.96);
  border-bottom-left-radius: 3px;
}

.paint-roller {
  position: absolute;
  left: 28px;
  top: 18px;
  width: 40px;
  height: 30px;
}

.roller-head {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 6px 14px rgba(207, 176, 110, 0.25);
}

.roller-head::after {
  content: '';
  position: absolute;
  top: 3px;
  right: -5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.roller-handle {
  position: absolute;
  left: 24px;
  top: 10px;
  width: 12px;
  height: 12px;
  border-right: 4px solid rgba(255, 255, 255, 0.96);
  border-bottom: 4px solid rgba(255, 255, 255, 0.96);
  border-bottom-right-radius: 10px;
}

.roller-handle::after {
  content: '';
  position: absolute;
  right: -4px;
  bottom: -11px;
  width: 4px;
  height: 12px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 4px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong,
.hero-logo-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand-copy small,
.hero-logo-sub {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.hero-logo-icon {
  width: 96px;
  height: 74px;
}

.hero-logo-icon .roof-line {
  top: 8px;
  left: 18px;
  width: 42px;
  height: 22px;
  border-top-width: 6px;
  border-left-width: 6px;
}

.hero-logo-icon .house-wall {
  left: 26px;
  top: 28px;
  width: 24px;
  height: 18px;
  border-left-width: 5px;
  border-bottom-width: 5px;
}

.hero-logo-icon .paint-roller {
  left: 38px;
  top: 23px;
  width: 46px;
}

.hero-logo-icon .roller-head {
  width: 34px;
  height: 14px;
}

.hero-logo-icon .roller-head::after {
  top: 4px;
  right: -6px;
  width: 6px;
  height: 6px;
}

.hero-logo-icon .roller-handle {
  left: 28px;
  top: 12px;
  width: 14px;
  height: 14px;
  border-right-width: 5px;
  border-bottom-width: 5px;
}

.hero-logo-icon .roller-handle::after {
  right: -5px;
  bottom: -12px;
  width: 5px;
  height: 13px;
}

.hero-logo-name,
.hero-logo-sub {
  margin: 0;
}

.hero-logo-sub {
  margin-top: 6px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 47, 32, 0.92) 0%, rgba(10, 47, 32, 0.84) 42%, rgba(10, 47, 32, 0.52) 100%),
    radial-gradient(circle at top right, rgba(207, 176, 110, 0.2), transparent 35%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto -8% -80px auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(207, 176, 110, 0.28), rgba(207, 176, 110, 0));
  filter: blur(8px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 36px;
  align-items: center;
  padding: 64px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.eyebrow::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(207, 176, 110, 0.14);
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.14;
}

h1 {
  font-size: clamp(2.35rem, 5.2vw, 4.7rem);
  letter-spacing: -0.03em;
  max-width: 760px;
}

.hero-text p {
  font-size: 1.08rem;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 28px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  border: 1px solid transparent;
  text-align: center;
}

.btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #162019;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 26px rgba(37, 211, 102, 0.22);
}

.hero-card {
  margin-left: auto;
  width: min(100%, 410px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.hero-card-image {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.08);
  aspect-ratio: 4 / 5;
}

.hero-card-image img,
.image-feature img,
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
}

.hero-card:hover .hero-card-image img,
.gallery-card:hover .media img,
.image-feature:hover img {
  transform: scale(1.05);
  filter: saturate(1.04);
}

.hero-card h3,
.contact-card h3 {
  font-size: 1.25rem;
}

.hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
}

section {
  padding: 86px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.small-gap {
  margin-bottom: 18px;
}

.label {
  color: var(--green-700);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 12px;
  margin-bottom: 12px;
  display: inline-block;
}

.section-head p,
.panel p,
.service p,
.gallery-card p,
.stat span,
.contact-box p,
.contact-box li,
.image-feature + div p {
  color: var(--muted);
  margin: 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.align-center {
  align-items: center;
}

.panel,
.service,
.gallery-card,
.stat,
.contact-box,
.contact-card,
.image-feature {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
}

.panel {
  padding: 30px;
}

.about-copy {
  padding-right: 10px;
}

.company-list,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.company-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.company-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.stat {
  padding: 20px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--green-800);
  margin-bottom: 6px;
}

.services-wrap {
  background: linear-gradient(180deg, rgba(13, 77, 51, 0.04), rgba(13, 77, 51, 0));
}

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

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

.service {
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.service::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green-700), var(--gold));
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(25, 135, 84, 0.14), rgba(207, 176, 110, 0.18));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-800);
  font-size: 22px;
  margin-bottom: 18px;
}

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

.gallery-card {
  overflow: hidden;
}

.media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9efe8;
}

.gallery-card .content {
  padding: 22px;
}

.gallery-tag {
  display: inline-flex;
  font-size: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
  background: rgba(13, 77, 51, 0.08);
  color: var(--green-800);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.image-feature {
  overflow: hidden;
  min-height: 420px;
}

.contact-wrap {
  padding-top: 22px;
}

.contact-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: var(--shadow-lg);
}

.contact-box::before,
.contact-box::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(207, 176, 110, 0.12);
  pointer-events: none;
}

.contact-box::before {
  width: 260px;
  height: 260px;
  right: -90px;
  top: -80px;
}

.contact-box::after {
  width: 180px;
  height: 180px;
  left: -70px;
  bottom: -70px;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}

.contact-head .label {
  color: var(--gold-soft);
}

.contact-head h2,
.contact-card h3 {
  color: #fff;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 24px;
  backdrop-filter: blur(8px);
}

.contact-list strong {
  color: var(--gold-soft);
}

.footer {
  background: #082619;
  color: rgba(255, 255, 255, 0.86);
  padding: 26px 0 34px;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.32);
  animation: floatPulse 2.8s ease-in-out infinite;
}

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

.hero-text > * {
  animation: heroFadeUp 0.9s ease both;
}

.hero-text > *:nth-child(1) { animation-delay: 0.08s; }
.hero-text > *:nth-child(2) { animation-delay: 0.18s; }
.hero-text > *:nth-child(3) { animation-delay: 0.28s; }
.hero-text > *:nth-child(4) { animation-delay: 0.38s; }

.brand-mark,
.hero-logo-lockup {
  transition: transform 0.35s ease, filter 0.35s ease;
}

.brand-mark:hover,
.hero-logo-lockup:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

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

@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.04);
  }
}

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

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

.delay-3 {
  transition-delay: 0.36s;
}

@media (max-width: 1080px) {
  .hero-inner,
  .contact-grid,
  .grid-2,
  .service-grid,
  .gallery-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 40px 0 44px;
  }

  .site-brand {
    padding-top: 18px;
  }

  .hero-card {
    margin-left: 0;
  }

  .image-feature {
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  section {
    padding: 66px 0;
  }

  .topbar {
    font-size: 13px;
  }

  .topbar-inner {
    align-items: flex-start;
  }

  .info {
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .hero-text p,
  .section-head p,
  .panel p,
  .service p,
  .gallery-card p,
  .contact-box p {
    font-size: 0.98rem;
  }

  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-whatsapp {
    width: 100%;
  }

  .cta-row {
    width: 100%;
  }

  .panel,
  .service,
  .gallery-card .content,
  .contact-box,
  .contact-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-card {
    width: 100%;
    padding: 16px;
    border-radius: 22px;
  }

  .brand-mark,
  .hero-logo-lockup {
    width: 100%;
  }

  .brand-mark,
  .hero-logo-lockup {
    gap: 12px;
  }

  .brand-mark {
    align-items: center;
  }

  .brand-icon {
    width: 64px;
    height: 52px;
  }

  .hero-logo-icon {
    width: 72px;
    height: 58px;
  }

  .brand-copy strong,
  .hero-logo-name {
    font-size: 0.95rem;
    letter-spacing: 0.09em;
  }

  .brand-copy small,
  .hero-logo-sub {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .hero-card-image {
    aspect-ratio: 16 / 10;
  }

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

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 14px;
    bottom: 14px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
