
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #050816;
  color: #f9fafb;
}

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

/* Layout helpers */
.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  padding: 4rem 0;
  background: radial-gradient(circle at top, #111827, #020617);
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.section-header {
  text-align: center;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  max-width: 540px;
  margin: 0.5rem auto 0;
  color: #9ca3af;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.fall-banner {
  background: linear-gradient(90deg, #f97316, #eab308);
  color: #111827;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.35rem 0.5rem;
}

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

.logo-main {
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.logo-sub {
  font-weight: 500;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #4b5563;
  color: #f9fafb;
  font-size: 1.2rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
}

.nav-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #e5e7eb;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #22d3ee, #4ade80);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 4.5rem 0 4rem;
  background-image: url("images/background.png");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.95));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-top: 0;
  margin-bottom: 1rem;
}

.hero-text p {
  color: #e5e7eb;
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-badges span {
  font-size: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

/* Hero photos */
.hero-photos {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-photo-main {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.75);
}

.hero-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.hero-thumb {
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  border: 2px solid transparent;
  transition: transform 0.15s ease, opacity 0.15s ease, border-color 0.15s ease;
}

.hero-thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.hero-thumb.active-thumb {
  opacity: 1;
  border-color: #22d3ee;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #22d3ee, #4ade80);
  color: #022c22;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.5);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.7);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.85);
  color: #f9fafb;
  border-color: rgba(148, 163, 184, 0.6);
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 1);
}

.full-width {
  width: 100%;
}

/* Service highlights */
.service-highlights {
  padding: 3rem 0 1rem;
  background: #020617;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.highlight-card {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: radial-gradient(circle at top left, #111827, #020617);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.highlight-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* Services */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: center;
}

.service-card.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

.service-images {
  position: relative;
  display: grid;
  gap: 0.75rem;
}

.service-images img:first-child {
  border-radius: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.service-images img:last-child {
  position: absolute;
  width: 55%;
  bottom: -0.85rem;
  right: -0.85rem;
  border-radius: 1.2rem;
  border: 2px solid #22d3ee;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
}

.service-card.reverse .service-images img:last-child {
  right: auto;
  left: -0.85rem;
}

.service-content h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.service-content p {
  color: #d1d5db;
}

.service-content ul {
  padding-left: 1.1rem;
  margin-bottom: 1rem;
  color: #9ca3af;
}

/* Gallery */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.photo-grid img {
  border-radius: 0.9rem;
  height: 160px;
  object-fit: cover;
  border: 1px solid rgba(55, 65, 81, 0.8);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.photo-grid img:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.85);
}

/* Reviews */
.reviews-wrapper {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.review-card {
  display: none;
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  background: radial-gradient(circle at top left, #111827, #020617);
  border: 1px solid rgba(148, 163, 184, 0.4);
  min-height: 160px;
}

.review-card.active-review {
  display: block;
}

.review-text {
  font-size: 0.95rem;
  color: #e5e7eb;
}

.review-name {
  margin-top: 1rem;
  color: #9ca3af;
  font-size: 0.85rem;
}

.review-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.review-btn {
  padding: 0.5rem 0.9rem;
  background: transparent;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
  cursor: pointer;
  font-size: 0.8rem;
}

.review-btn:hover {
  background: rgba(15, 23, 42, 0.9);
}

/* CTA / Contact */
.section-cta {
  background: radial-gradient(circle at top, #111827, #020617);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.cta-text h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.cta-text p {
  color: #d1d5db;
}

.cta-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: #e5e7eb;
}

/* Form */
.quote-form {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.form-row label {
  font-size: 0.8rem;
  color: #d1d5db;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 0.55rem 0.7rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: #020617;
  color: #f9fafb;
  font-size: 0.9rem;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid #22d3ee;
  border-color: transparent;
}

.form-note {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: #a5b4fc;
}

/* Footer */
.site-footer {
  padding-top: 2rem;
  border-top: 1px solid rgba(31, 41, 55, 1);
  background: #020617;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 1.5rem;
}

.footer-inner h4 {
  margin: 0 0 0.5rem;
}

.footer-inner p {
  margin: 0.1rem 0;
  color: #9ca3af;
}

.footer-contact p {
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(31, 41, 55, 1);
  text-align: center;
  padding: 0.75rem 0 1rem;
  font-size: 0.75rem;
  color: #6b7280;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 4.5rem;
  }

  .service-card,
  .service-card.reverse,
  .cta-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-images img:last-child {
    position: relative;
    width: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    margin-top: 0.75rem;
  }

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

@media (max-width: 720px) {
  .header-inner {
    padding-inline: 0.25rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.98);
    padding: 0.75rem 1rem;
    border-bottom-left-radius: 1rem;
    border-left: 1px solid rgba(148, 163, 184, 0.3);
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    display: none;
  }

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

  .hero {
    padding-top: 4.5rem;
    min-height: auto;
  }

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

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

  .footer-inner {
    flex-direction: column;
  }
}
