/* Hero Banner */
.hero {
  min-height: 420px;
  background-image: url("images/hero-image-v2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 35%;
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.hero h1 {
  font-size: 3rem;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  color: #fff; /* assuming your hero text is white over a dark image */
}

.hero-ctas {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;          /* space between buttons */
}

/* Primary filled button */
.btn-primary {
  background-color: #ffc107; /* your gold */
  color: #222;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

.promo-banner {
  background-color: #f8f9fa;  /* very light gray */
  border-top: 2px solid #e9ecef;
  border-bottom: 2px solid #e9ecef;
}

.promo-banner .row > div {
  font-size: 1.5rem;
  padding: 0.5rem 4rem;
}

.promo-banner strong {
  font-weight: 600;
  display: block;
  font-size: 1.2rem;
}

.promo-banner .medium {
  color: #6c757d;
  font-size: 1.0rem;
}

.promo-cards .card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}
.promo-cards .card-body {
  padding: 1.5rem;
}

/* Secondary outlined button */
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.2);
  color: #ffc107; /* match your brand gold hover */
}

.cta-btn {
  background-color: #ff6600;
  border: none;
}
.size-card {
  border: 1px solid #eee;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 20px;
}
.how-it-works i {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero {
  position: relative;
  background-image: url('/static/front-page.jpg');
  background-size: cover;
  background-position: center;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.4); /* translucent overlay */
  color: #fff;
  padding: 40px;
  text-align: center;
  border-radius: 8px;
}

.hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 1.25rem;
}

.hero-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 180px;       /* adjust size as needed */
  opacity: 0.75;      /* adjust for desired transparency */
  z-index: 10;        /* keeps it above background */
}

/* a little pill background + padding around each feature line */
.feature-line {
  display: inline-flex;
  align-items: center;
  background-color: #f0f0f0; /* soft brand-yellow highlight */
  color: #222;
  padding: 4px 12px;
  border-radius: 4px;
  margin: 6px 0;           /* vertical spacing between lines */
  font-size: 0.95rem;
}

/* slightly larger, dark icon on the left */
.feature-icon {
  width: auto;           /* let width follow aspect-ratio */
  height: auto;          /* remove the hard height */
  max-height: 30px;      /* or whatever your “normal” size should be */
  margin-right: 6px;
  flex-shrink: 0;
}

/* bolder text so it stands out */
.feature-text {
  font-weight: 600;
  color: #222;
}

/* optional: smaller “size” icon at top */
.size-icon {
  width: 24px;
  height: auto;
  margin-right: 6px;
  vertical-align: middle;
}

.request-btn
{
  margin-top: 10px;
  background-color: #ee790d;
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 0.9rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.request-btn:hover
{
  background-color: #b88222;
}

.how-it-works img
{
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-banner {
  background-color: #333;
}

.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: none;
  background: #333;
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 20px;
}

input:invalid, select:invalid {
  border-color: #dc3545;
}

input:valid, select:valid {
  border-color: #28a745;
}

.form-floating label {
  color: #6c757d;
}

.spinner-border {
  margin-left: 8px;
}

/* === Quote Form Styling === */
#quoteForm {
  background: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}

#quoteForm .form-control {
  border-radius: 6px;
  padding: 0.75rem;
  font-size: 1rem;
}

#quoteForm label {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

#quoteForm .form-floating {
  position: relative;
}

#quoteForm .was-validated .form-control:invalid {
  border-color: #dc3545;
}

#quoteForm .was-validated .form-control:valid {
  border-color: #198754;
}

/* Autofill highlight */
#quoteForm .form-select.highlighted {
  border-color: #ffc107;
  box-shadow: 0 0 5px #ffc107;
}

/* Submit button styling */
#quoteForm button[type="submit"] {
  background-color: #f4d35e;
  color: #000;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#quoteForm button[type="submit"]:hover {
  background-color: #e6c84f;
}

/* In your styles.css */
.row.gx-3 {
  align-items: stretch; /* ensure columns stretch to match the tallest */
}

.col-md-4.d-flex {
  flex-direction: column; /* stack contents vertically */
}

.quote-card {
  /* All of your existing styles… */
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;

  flex: 1;             /* This makes the .quote-card stretch to fill the column */
  display: flex;       /* Optional: if you want its content laid out in a flex column */
  flex-direction: column;
}

/* Spinner visibility */
#spinner {
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* === Confirmation Modal === */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.modal-content h4 {
  margin-bottom: 1rem;
}

.modal-content button {
  margin-top: 1rem;
}

#quoteTitle {
  margin-bottom: -5.0rem;  /* adjust to taste */
}

/* Hide modal by default */
.d-none {
  display: none !important;
}

.highlighted {
  outline: 2px solid #ffc107;
  transition: outline 0.3s ease-in-out;
}

.confirmation-message {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 1.5rem;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.confirmation-message.show {
  opacity: 1;
}

.d-none {
  display: none;
}

#confirmationMessage {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.quote-card {
  background: #fff;
  border: 1px solid #ddd; 
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.quote-card h3 {
  margin-top: 0;
  font-weight: 600;
  color: #333;
}
.form-group {
  margin-bottom: 2.0rem;
}
.btn-submit {
  background: #f4c542;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  color: #333;
  font-weight: bold;
  width: 100%;
}
/* Align the price & label */
.price-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

/* allow the select’s menu to break out of its wrapper */
#quoteForm .form-floating {
  overflow: visible !important;
}

/* make sure the dropdown sits above the card */
#quoteForm .form-select {
  position: relative;
  z-index: 1000;
}

#priceDisplay {
  padding-right: 0.5rem;  /* or 8px, 1rem, whatever suits you */
}

.call-button:hover {
  background-color: #e0a800;
}

.rent-now-top {
  background-color: #007bff;
  color: white;
  padding: 40px 20px;
  text-align: center;
  border-bottom: 4px solid #0056b3;
}

.rent-now-top h2 {
  font-size: 2em;
  margin: 0 0 15px;
}

.rent-now-btn {
  display: inline-block;
  background-color: #ffc107;
  color: #000;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.rent-now-btn:hover {
  background-color: #e0a800;
}

.rent-now-banner {
  background-color: #343a40;
  color: white;
  padding: 20px 0;
  border-bottom: 4px solid #ffc107;
}

.rent-now-banner h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.rent-now-banner .btn {
  font-size: 1.1rem;
  padding: 10px 25px;
}
/* Carousel-Section */
.carousel-section {
  padding: 40px 0;
  text-align: center;
  background-color: #f8f9fa;
}

.carousel-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.carousel-track img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.carousel-track img:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

.hero {
  background-image: url("/static/images/hero-image-v2.jpg"); /* image */
  background-size: cover;
  background-position: center 70%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

.card-thumbnail {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.floating-call-card {
  position: fixed;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background-color: #f4b400;
  color: #000;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  font-weight: bold;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 999;
}

.floating-call-card.show {
  opacity: 0.4;
  pointer-events: auto;
}

.floating-call-card:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .floating-call-card {
    left: 10px;
    top: auto;
    bottom: 20px;
    transform: none;
  }
}

input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  padding: 8px;
}

input[type="date"] {
  max-width: 250px;
  padding: 10px;
  font-size: 16px;
}

.flatpickr-calendar {
  font-size: 1.1rem; /* increase size */
}

/* Why Choose US */

.services-why {
  background-color: #2e2e2e;
  color: #f4d35e;
  border-radius: 12px;
  margin: 2rem auto;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  padding: 20px;
  text-align: center;
}

.services-why h4 {
  font-weight: bold;
  color: #fff;
}

.services-why ul li {
  font-size: 16px;
  margin-bottom: 8px;
}

/* Clients Slider */
.clients-slider {
  overflow: hidden;
  position: relative;
}

.clients-track {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

.clients-track img {
  max-height: 120px;
  margin: 0 2rem;
  object-fit: contain;
}

/* Pause on hover */
.clients-slider:hover .clients-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* Mobile Optimizations */
@media (max-width: 768px) {
  .hero {
    height: 250px;
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 0.75rem;        /* a little vertical breathing room */
  }

  /* 2) make each button fill most of the width */
  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;    /* or whatever fits nicely */
    margin: 0 auto;      /* center them */
  }


  .hero-overlay {
    padding: 10px;
  }

  .carousel-track img {
    max-width: 100%;
    height: auto;
  }

  .floating-call-card {
    left: 10px;
    top: auto;
    bottom: 20px;
    transform: none;
    width: auto;
    padding: 10px 16px;
  }

  .floating-call-card:hover {
    opacity: 1;
  }

  .carousel-section {
    padding: 20px 0;
  }

  .carousel-title {
    font-size: 18px;
  }

  .carousel-btn {
    font-size: 20px;
    padding: 6px;
  }
}

/* facebook float icon */
.social-float {
  position: fixed;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;

  /* no need for overflow rules here now */
}

.social-float a {
  position: relative;
  display: inline-block;
}

.social-float img {
  width: 40px;
  height: 40px;
}

.social-float .tooltip {
  position: fixed;           /* <-- switch from absolute */
  /* calculate its final screen coords relative to the icon: */
  right: 1rem;               /* same as .social‐float’s right */
  top: calc(50% - 3.5rem);   /* 50% down minus half the tooltip’s height */
  transform: none;           /* no need to translateX */
  
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 0.85rem;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* show on hover */
.social-float a:hover .tooltip {
  opacity: 1;
}

/* Make buttons full width on mobile forms */
@media (max-width: 576px) {
  .request-btn {
    width: 100%;
  }
}@media (max-width: 768px) {
  .hero {
    height: 250px;
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .hero-overlay {
    padding: 10px;
  }
}
