* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* =========================
   HERO (HOME PAGE)
========================= */
.hero {
  height: 100vh;
  background-image: url("hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}

.overlay {
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* =========================
   BUTTON SYSTEM (CLEAN)
========================= */
.btn {
  display: inline-block;
  padding: 12px 20px;
  width: 220px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: #1e90ff;
  color: white;
  border-color: #1e90ff;
}

.btn-primary:hover {
  background: #1877d6;
  border-color: #1877d6;
}

/* SECONDARY BUTTON */
.btn-secondary {
  background: transparent;
  color: #1e90ff;
  border-color: #1e90ff;
}

.btn-secondary:hover {
  background: #1e90ff;
  color: white;
}

/* HERO BUTTON LAYOUT */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}

.hero-question {
  font-size: 16px;
  opacity: 0.9;
}

/* =========================
   SERVICES
========================= */
.services {
  padding: 60px 20px;
  text-align: center;
}

.services h2 {
  margin-bottom: 30px;
  font-size: 32px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  padding: 20px;
  border-radius: 10px;
  background: #f5f5f5;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card h3 {
  margin-bottom: 10px;
}

/* =========================
   QUOTE HERO (IMPORTANT FIXED SECTION)
========================= */
.quote-hero {
  height: 60vh;
  background-image: url("quote-hero.jpg"); /* MUST MATCH FILE NAME */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
}

/* dark overlay */
.quote-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* text layer */
.quote-hero .overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
}

.quote-hero h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

.quote-hero p {
  font-size: 18px;
}

/* =========================
   QUOTE FORM
========================= */
.quote-section {
  padding: 80px 20px;
  background: #f6f7fb;
  display: flex;
  justify-content: center;
}

.quote-card {
  width: 100%;
  max-width: 550px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.quote-card h2 {
  font-size: 28px;
  margin-bottom: 6px;
}

.subtext {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.quote-card label {
  display: block;
  font-size: 14px;
  margin-bottom: 14px;
  color: #333;
}

.quote-card input {
  width: 100%;
  padding: 12px 14px;
  margin-top: 6px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
}

.quote-card input:focus {
  outline: none;
  border-color: #4f46e5;
}

/* service grid */
.service-grid {
  margin: 18px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  cursor: pointer;
}

.service-card input {
  display: none;
}

.service-card:hover {
  background: #eef2ff;
}

.service-card:has(input:checked) {
  background: #4f46e5;
  color: white;
}

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

/* submit button */
.quote-card button {
  width: 100%;
  padding: 14px;
  background: #4f46e5;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  cursor: pointer;
}

.quote-card button:hover {
  background: #4338ca;
}

/* messages */
.error {
  color: #dc2626;
  font-size: 13px;
}

.success {
  color: #16a34a;
  font-size: 13px;
}

/* =========================
   CONTACT + FOOTER
========================= */
.contact {
  padding: 60px 20px;
  text-align: center;
  background: #111;
  color: white;
}

.contact-box {
  margin-top: 20px;
}

footer {
  padding: 20px;
  text-align: center;
  background: #000;
  color: white;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .overlay {
    padding: 25px;
  }

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

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

  .service-grid {
    grid-template-columns: 1fr;
  }
}
.quote-intro {
  padding: 60px 20px;
  text-align: center;
  background: white;
}

.quote-intro h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.quote-intro p {
  max-width: 600px;
  margin: 0 auto;
  color: #555;
}

.quote-gallery-preview {
  padding: 60px 20px;
  text-align: center;
  background: #f6f7fb;
}

.quote-gallery-preview h2 {
  font-size: 26px;
  margin-bottom: 10px;
}
.service-title {
  grid-column: 1 / -1;
  font-size: 14px;
  color: #666;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.quote-card textarea {
  width: 100%;
  padding: 12px 14px;
  margin-top: 6px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  resize: vertical;
  min-height: 120px;
  transition: 0.2s;
}

.quote-card textarea:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.15);
}


/* Card styling */
.service-card {
  background: white;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h2 {
  margin-bottom: 5px;
}

.starting {
  color: #666;
  margin-bottom: 10px;
}

/* Select dropdown */
select {
  width: 100%;
  padding: 8px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* Pricing list */
.prices {
  background: #f2f2f2;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 14px;
}

/* Includes */
ul {
  padding-left: 18px;
  font-size: 14px;
  color: #444;
}

/* Button */
button {
  width: 100%;
  margin-top: 15px;
  padding: 10px;
  border: none;
  background: #111;
  color: white;
  border-radius: 10px;
  cursor: pointer;
}

button:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-section {
    grid-template-columns: repeat(2, 1fr);
  }
}


body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: #f4f6f8;
  color: #111;
}

/* GRID LAYOUT */
.pricing-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 50px;
  max-width: 1200px;
  margin: auto;
}
/* allow mobile override properly */
@media (max-width: 900px) {
  .pricing-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CARD DESIGN */
.service-card {
  background: white;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* TITLE */
.service-card h2 {
  margin: 0;
  font-size: 20px;
}

/* STARTING PRICE */
.starting {
  color: #666;
  margin: 6px 0 14px;
  font-weight: 500;
}

/* LABELS */
label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #444;
}

/* DROPDOWN */
select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
}

/* PRICE BOX */
.prices {
  margin-top: 14px;
  padding: 12px;
  background: #f1f3f5;
  border-radius: 10px;
}

.prices p {
  margin: 4px 0;
  font-size: 14px;
}

/* LIST */
ul {
  margin: 14px 0;
  padding-left: 18px;
}

ul li {
  margin-bottom: 6px;
  font-size: 14px;
  color: #444;
}

/* BUTTON */
button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #111, #333);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

button:hover {
  transform: scale(1.02);
  background: linear-gradient(135deg, #000, #222);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pricing-section {
    grid-template-columns: repeat(2, 1fr);
  }
}



.includes {
  margin-top: 10px;
  padding: 10px;
  background: #f3f4f6;
  border-radius: 8px;
  font-size: 14px;
}

.includes ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.includes li {
  margin-bottom: 4px;
}

@media (max-width: 768px) {

  .pricing-section {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .service-card {
    min-width: 85%;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  /* prevent weird horizontal scrolling bugs */
  body {
    overflow-x: hidden;
  }

}

@media (max-width: 768px) {

  .pricing-section {
    display: flex !important;
    overflow-x: auto;
    gap: 16px;
    padding: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .service-card {
    min-width: 85%;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

}

@media (max-width: 768px) {

  .pricing-section {
    display: flex !important;
    overflow-x: auto;
    gap: 16px;
    padding: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .service-card {
    min-width: 85%;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  body {
    overflow-x: hidden;
  }

}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #2b2b2b;
  border-bottom: 1px solid #444;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: #ddd;
}

@media (max-width: 600px) {
  .site-header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .site-header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}
.site-header .logo img {
  height: clamp(38px, 4vw, 55px);
  width: auto;
}
