/* =============================================
   Quinonez Exteriors — Global Stylesheet
   Color palette derived from logo-main:
     Dark:    #181b1b (near-black)
     Pink:    #dc2896 (hot pink)
     Accent:  #a81d71 (deep pink)
     Light:   #e4e7e7 (off-white)
   ============================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
  --clr-dark: #181b1b;
  --clr-gold: #dc2896;
  --clr-brown: #a81d71;
  --clr-light: #e4e7e7;
  --clr-white: #ffffff;
  --clr-black: #000000;
  --clr-gray: #363636;
  --clr-gold-light: #e84dab;
  --clr-overlay: rgba(24, 27, 27, 0.75);

  --ff-heading: 'Oswald', 'Arial Narrow', sans-serif;
  --ff-body: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-semi: 600;
  --fw-bold: 700;

  --max-width: 1200px;
  --nav-height: 70px;

  --transition: 0.3s ease;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--ff-body);
  color: var(--clr-dark);
  background: var(--clr-white);
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  text-transform: uppercase;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: var(--clr-dark);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-gold);
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

.nav-phone:hover {
  color: var(--clr-gold-light);
}

.nav-phone svg {
  width: 20px;
  height: 20px;
  fill: var(--clr-gold);
}

/* Burger menu */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  padding: 0;
  z-index: 1100;
}

.burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--clr-gold);
  border-radius: 2px;
  transition: var(--transition);
}

.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Slide-out menu */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--clr-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transition: right var(--transition);
  z-index: 1050;
}

.nav-menu.active {
  right: 0;
}

.nav-menu a {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  color: var(--clr-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active-link {
  color: var(--clr-gold);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile: hide burger, keep phone + logo */
@media (max-width: 768px) {
  .burger {
    display: none;
  }
  .nav-menu {
    display: none;
  }
  .nav-logo img {
    height: 40px;
  }
  .nav-phone {
    font-size: 1rem;
  }
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--nav-height);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--clr-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--clr-white);
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  color: var(--clr-white);
}

.hero-content h1 span {
  color: var(--clr-gold);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 32px;
  color: var(--clr-light);
  font-weight: var(--fw-light);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--clr-gold);
  color: var(--clr-white);
  border-color: var(--clr-gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--clr-gold);
}

.btn-outline {
  background: transparent;
  color: var(--clr-gold);
  border-color: var(--clr-gold);
}

.btn-outline:hover {
  background: var(--clr-gold);
  color: var(--clr-dark);
}

.btn-dark {
  background: var(--clr-dark);
  color: var(--clr-gold);
  border-color: var(--clr-dark);
}

.btn-dark:hover {
  background: var(--clr-gold);
  color: var(--clr-dark);
  border-color: var(--clr-gold);
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 12px;
  color: var(--clr-dark);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--clr-gray);
  max-width: 600px;
  margin: 0 auto;
}

.section-header .gold-line {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--clr-gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Light background variant */
.bg-light {
  background: var(--clr-light);
}

.bg-dark {
  background: var(--clr-dark);
  color: var(--clr-light);
}

.bg-dark .section-header h2 {
  color: var(--clr-white);
}

.bg-dark .section-header p {
  color: var(--clr-light);
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-card-content {
  padding: 24px;
  background: var(--clr-white);
}

.service-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--clr-dark);
}

.service-card-content p {
  font-size: 0.95rem;
  color: var(--clr-gray);
  margin-bottom: 16px;
}

.service-card-content .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ---------- Why Choose Us ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-gold);
  border-radius: 50%;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--clr-dark);
}

.feature-item h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 0.95rem;
  color: var(--clr-gray);
}

/* ---------- Reviews Carousel ---------- */
.reviews-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-card {
  min-width: 100%;
  padding: 40px 30px;
  text-align: center;
}

.review-stars {
  color: var(--clr-gold);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.review-card blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--clr-gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.review-card cite {
  font-family: var(--ff-heading);
  font-style: normal;
  font-weight: var(--fw-semi);
  color: var(--clr-dark);
  font-size: 1rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--clr-gold);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--clr-gold);
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
  fill: var(--clr-gold);
  transition: fill var(--transition);
}

.carousel-btn:hover svg {
  fill: var(--clr-dark);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clr-light);
  border: 2px solid var(--clr-gold);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--clr-gold);
}

/* ---------- Quote / Contact Form ---------- */
.form-section {
  padding: 80px 0;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--clr-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-wrapper h3 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: var(--fw-semi);
  font-size: 0.9rem;
  color: var(--clr-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--clr-light);
  border-radius: 4px;
  font-family: var(--ff-body);
  font-size: 1rem;
  transition: border-color var(--transition);
  background: var(--clr-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-wrapper .btn {
  width: 100%;
  text-align: center;
}

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

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-text h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--clr-gray);
}

.about-text .gold-line {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--clr-gold);
  margin-bottom: 20px;
  border-radius: 2px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-value svg {
  width: 24px;
  height: 24px;
  fill: var(--clr-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-value h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.about-value p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--clr-dark);
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--clr-white);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--clr-light);
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--clr-dark);
  color: var(--clr-light);
  padding: 60px 0 30px;
  border-top: 3px solid var(--clr-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(228,231,231,0.7);
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--ff-heading);
  font-size: 1rem;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(228,231,231,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(228,231,231,0.7);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  fill: var(--clr-gold);
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(228,231,231,0.1);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(228,231,231,0.5);
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--clr-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--clr-dark);
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.95rem;
  color: var(--clr-gray);
}

.map-container {
  margin-top: 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* ---------- Services Page ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail img {
  border-radius: 8px;
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.service-detail-text h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.service-detail-text .gold-line {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--clr-gold);
  margin-bottom: 20px;
  border-radius: 2px;
}

.service-detail-text p {
  color: var(--clr-gray);
  margin-bottom: 14px;
}

.service-detail-text ul {
  margin-bottom: 20px;
}

.service-detail-text ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--clr-gray);
  font-size: 0.95rem;
}

.service-detail-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-gold);
  font-weight: var(--fw-bold);
}

/* ---------- Page Header ---------- */
.page-header {
  background: var(--clr-dark);
  padding: 120px 0 60px;
  text-align: center;
  margin-top: var(--nav-height);
}

.page-header h1 {
  color: var(--clr-white);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
}

.page-header p {
  color: var(--clr-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-header .gold-line {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--clr-gold);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ---------- Process Section ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
  counter-increment: step;
}

.process-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--clr-gold);
  color: var(--clr-dark);
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: var(--fw-bold);
  border-radius: 50%;
  margin: 0 auto 16px;
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--clr-gray);
}

/* ---------- Stats ---------- */
.stats-section {
  background: var(--clr-gold);
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--clr-white);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.95rem;
  color: var(--clr-white);
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- Team / About Page Extra ---------- */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--clr-gold);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: var(--clr-gold);
  border-radius: 50%;
  border: 3px solid var(--clr-white);
}

.timeline-item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--clr-gold);
}

.timeline-item p {
  font-size: 0.95rem;
  color: var(--clr-gray);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .about-grid,
  .contact-grid,
  .service-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-detail:nth-child(even) {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero {
    height: 70vh;
    min-height: 400px;
  }

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

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

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

  .form-wrapper {
    padding: 24px;
  }

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

@media (max-width: 480px) {
  .hero {
    height: 60vh;
  }

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

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ---------- Accessibility & Utilities ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-gold { color: var(--clr-gold); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }

/* ---------- Bottom Form Bar ---------- */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--clr-dark);
  z-index: 999;
  padding: 12px 5%;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  border-top: 2px solid var(--clr-gold);
}

.bottom-bar-form {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: nowrap;
}

.bottom-bar-form .form-label {
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: var(--fw-semi);
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}

.bottom-bar-form input,
.bottom-bar-form select {
  padding: 10px 14px;
  border: 2px solid rgba(228,231,231,0.2);
  border-radius: 4px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  background: rgba(255,255,255,0.08);
  color: var(--clr-white);
  transition: border-color var(--transition);
  flex: 1;
  min-width: 0;
}

.bottom-bar-form input::placeholder {
  color: rgba(228,231,231,0.5);
}

.bottom-bar-form input:focus,
.bottom-bar-form select:focus {
  outline: none;
  border-color: var(--clr-gold);
  background: rgba(255,255,255,0.12);
}

.bottom-bar-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23dc2896'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.bottom-bar-form select option {
  background: var(--clr-dark);
  color: var(--clr-light);
}

.bottom-bar-form .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Add body padding to account for bottom bar */
body {
  padding-bottom: 70px;
}

/* Responsive: bottom bar */
@media (max-width: 992px) {
  .bottom-bar-form .form-label {
    display: none;
  }
}

@media (max-width: 768px) {
  .bottom-bar-form {
    flex-wrap: wrap;
    gap: 8px;
  }

  .bottom-bar-form input,
  .bottom-bar-form select {
    flex: 1 1 calc(50% - 8px);
    min-width: calc(50% - 8px);
    font-size: 0.8rem;
    padding: 8px 10px;
  }

  .bottom-bar-form .btn {
    flex: 1 1 100%;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-size: 0;
  }

  .bottom-bar-form .btn::after {
    content: 'Get Free Estimate';
    font-size: 0.8rem;
  }

  /* Hide hero "Get a Free Estimate" button on mobile */
  .hero-cta-estimate {
    display: none;
  }

  body {
    padding-bottom: 130px;
  }
}

@media (max-width: 480px) {
  .bottom-bar-form input,
  .bottom-bar-form select {
    flex: 1 1 100%;
    min-width: 100%;
  }

  body {
    padding-bottom: 200px;
  }
}
