:root {
  --navy: #14213d;
  --navy-light: #24365c;
  --orange: #f2994a;
  --orange-dark: #d97e2e;
  --gray-bg: #f6f7fa;
  --text: #2c2f36;
  --rainbow: linear-gradient(90deg, #e03131, #f2994a, #f2c94c, #2f9e44, #3b82f6, #7c3aed);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  margin-top: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 4px solid #000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-img {
  height: 68px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--navy);
  letter-spacing: 1px;
}

.logo-sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--orange-dark);
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
}

.main-nav a:hover { color: var(--orange-dark); }

.phone-pill {
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.phone-pill:hover { background: var(--navy-light); }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--gray-bg) 0%, #ffffff 100%);
  padding: 90px 0 70px;
  text-align: center;
}

.hero h1 {
  font-size: 44px;
  max-width: 780px;
  margin: 0 auto 18px;
}

.hero-sub {
  font-weight: 600;
  color: var(--orange-dark);
  font-size: 18px;
  margin-bottom: 14px;
}

.hero-desc {
  max-width: 600px;
  margin: 0 auto 32px;
  color: #55596a;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, background 0.15s ease;
}

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

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover { background: var(--orange-dark); }

.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn-outline:hover { background: var(--navy); color: #fff; }

/* Section generic */
section { padding: 80px 0; }

section h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  color: #6b6f7d;
  max-width: 560px;
  margin: 0 auto 40px;
}

/* Services */
.services { background: var(--gray-bg); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(20,33,61,0.06);
}

.service-icon { font-size: 36px; margin-bottom: 12px; }

.service-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: #6b6f7d;
  margin: 0;
}

/* Before & After */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0 56px;
}

.ba-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(20,33,61,0.08);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ba-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.ba-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(20,33,61,0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
}

.ba-tag-after { background: rgba(242,153,74,0.92); }

.ba-card h4 {
  margin: 0;
  padding: 14px 16px;
  font-size: 15px;
  text-align: center;
}

.gallery-subhead {
  text-align: center;
  font-size: 20px;
  margin-bottom: 24px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item.placeholder {
  background: repeating-linear-gradient(45deg, #eceef3, #eceef3 10px, #e2e4ec 10px, #e2e4ec 20px);
  color: #9aa0b0;
  font-size: 14px;
  font-weight: 600;
}

/* About */
.about { background: var(--navy); color: #fff; }
.about h2 { color: #fff; }
.about-inner { max-width: 700px; text-align: center; margin: 0 auto; }
.about p { color: #d7dbe8; }

.about-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 14px;
  text-align: left;
}

.about-list li {
  background: rgba(255,255,255,0.08);
  padding: 14px 18px;
  border-radius: 8px;
  position: relative;
  padding-left: 40px;
  color: #fff;
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  color: var(--orange);
  font-weight: 700;
}

/* Quote */
.quote-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--gray-bg);
  border-radius: 16px;
  padding: 32px;
}

/* Footer */
.site-footer {
  background: #0d1729;
  color: #cfd3de;
  padding-top: 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
}

.footer-logo { color: #fff; margin-bottom: 6px; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.footer-contact a { color: #fff; font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 24px;
  font-size: 13px;
  text-align: center;
  color: #8a8fa0;
}

/* Responsive */
@media (max-width: 860px) {
  .main-nav { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .before-after-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .footer-inner { flex-direction: column; }
  .footer-contact { align-items: flex-start; }
}

@media (max-width: 480px) {
  .service-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 50px; }
  .hero h1 { font-size: 26px; }
}
