/* Rentals Page Styles */
.rentals-hero-section {
  /* background: linear-gradient(90deg, #fffaf7 0%, #fff3e6 60%, #ffe7c2 100%); */
  padding: 0rem 0 2.5rem 0;
  /* font-family: 'Poppins', 'Roboto', Arial, sans-serif; */
}
.rentals-hero-container {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(44, 62, 80, 0.10);
  padding: 2.5rem 2rem 2.5rem 2rem;
  text-align: center;
}
.rentals-hero-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ff6600;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.rentals-hero-lead {
  font-size: 1.58rem;
  color: #222;
  font-weight: 500;
  margin-bottom: 2rem;
}
.rentals-list {
  list-style: disc inside;
  color: #444;
  font-size: 1.20rem;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.rentals-list li {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.6;
}
.rentals-coming-soon {
  color: #2a6d83;
  font-weight: 700;
  font-size: 0.98em;
}
.rentals-actions {
  margin: 2.2rem 0 1.2rem 0;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}
.rentals-btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(255,102,0,0.10);
  border: none;
}
.rentals-btn-orange {
  background: #ff6600;
  color: #fff;
}
.rentals-btn-orange:hover {
  background: #e65c00;
}
.rentals-btn-blue {
  background: #2a6d83;
  color: #fff;
}
.rentals-btn-blue:hover {
  background: #174a5a;
}
.rentals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2.5rem auto 2rem auto;
  max-width: 900px;
}
.rental-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  text-align: center;
  width: 180px;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rental-card:hover {
  box-shadow: 0 8px 32px rgba(255,102,0,0.13);
  transform: translateY(-4px) scale(1.03);
}
.rental-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.rental-name {
  font-size: 1.08rem;
  font-weight: 600;
  color: #2a6d83;
}

body {
  background: #fff;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0 0 0;
}

h1 {
  /* background: linear-gradient(90deg, #fff7f0 0%, #fefdfb 60%, #ffe2c8 100%); */
  background: linear-gradient(90deg, #ffffff 0%, #f6e1d3 60%, #ffffff 100%);
  text-align: center;
  color: #0c2340;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  line-height: 35px;
  font-weight: 600;
}

.rental-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #444;
}

a {
  text-decoration: none;
}

.modal-title {
  font-size: 1.95rem;
  font-weight: 600;
  color: #0c2340;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
  justify-items: center;
}

.rental-card {
  width: 325px;
  background: #C0C0C0;
  background: linear-gradient(0deg, #C0C0C0, #F8F7F6);
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.rental-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.rental-card img {
  cursor: pointer;
  max-width: 180px;
  max-height: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 12px;
}

.btn-primary {
  background: #0c2340;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #152f56;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-content {
  position: relative;
  display: inline-block;
}

.lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

/* X Button inside top-right of the image */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 3rem; 
  font-weight: bold;
  color: white;
  cursor: pointer;
  user-select: none;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  padding: 6px 12px;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
}

.close-btn:hover {
  background: rgba(255, 68, 68, 0.85);
  color: #fff;
}

.btn-quote-inquiry {
    background-color: #ff7f50; 
    color: #fff;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.btn-quote-inquiry:hover {
    background-color: #ff6333;
}