:root {
  --primary:#1e88e5;
  --secondary:#ff9800;
  --dark:#222;
  --light:#f5f7fa;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: 
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("background.jpg") no-repeat center center fixed;
  background-size: cover;
}

/* Mobile background fix */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  color: #fff;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: .3s ease;
}

header.scrolled {
  padding: .7rem 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

header img {
  height: 60px;
  transition: .3s;
}

header.scrolled img {
  height: 45px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: bold;
  transition: .3s;
}

nav a:hover {
  color: var(--secondary);
}

/* ===== MAIN LAYOUT ===== */
main {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
}

/* ===== SECTIONS / CARDS ===== */
section, .item {
  background: rgba(255,255,255,0.75);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

section {
  padding: 2rem;
  box-sizing: border-box;
}

section * {
  max-width: 100%;
}

section {
  margin-bottom: 2.5rem;   /* space between stacked sections */
}

/* ===== FLOATING CALL BUTTON ===== */
.call-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--secondary);
  color: #fff;
  padding: 15px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
  transition: .3s;
  z-index: 999;
}

.call-button:hover {
  background: var(--primary);
  transform: translateY(-4px);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  margin-top: 3rem;
}

/* ===== MOBILE ===== */
@media(max-width:768px){
  header { flex-direction: column; text-align: center; }
  nav { margin-top: 10px; }
  nav a { margin: 0 10px; }
  main { padding: 2rem 1rem; }
}

.faq-question {
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.contact-section h1 {
  text-align: center;
}

.contact-section p a {
  color: var(--primary);
  font-weight: bold;
  text-decoration: none;
}

.contact-section p a:hover {
  text-decoration: underline;
}

.contact-section {
  max-width: 760px;
  margin: 0 auto 2.5rem;  /* center + add bottom spacing */
}

/* Contact form polish */
.contact-section form {
  max-width: 520px;
  margin: 0 auto;
}

.contact-section input,
.contact-section textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-section input:focus,
.contact-section textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,136,229,0.15);
}

.contact-section button {
  margin-top: .5rem;
  font-size: 1rem;
  letter-spacing: .3px;
}

/* ===== Mobile Call Bubble in Header ===== */
@media (max-width: 768px) {
  .call-button {
    z-index: 2000;
    position: absolute;
    top: 16px;
    right: 26px;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }

  .call-button span {
    display: none; /* hide "Call Now" text on mobile */
  }
}

/* ===== HERO ===== */
.hero {
  height: 420px;
  background: linear-gradient(
      rgba(0,0,0,0.6),
      rgba(0,0,0,0.6)
    ),
    url("hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 1rem;
}

.hero-content {
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin: 0 8px;
}

.btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  text-align: center;
  transition: transform 0.3s ease;
}

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

.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.hero-brand {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 16px 28px;        /* more breathing room */
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  font-size: 2rem;          /* ~2x size */
  font-weight: 900;        /* extra bold */
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

@media (max-width: 768px) {
  .hero-brand {
    font-size: 1.4rem;
    padding: 12px 22px;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  border-radius: 0;   /* square edges */
}

/* ===== RENTAL MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 1rem;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.modal-content img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.modal-price {
  font-weight: bold;
  color: var(--primary);
  margin: .5rem 0 1rem;
  font-size: 1.2rem;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.item {
  cursor: pointer;
}
