/* ===============================
   EFFILIFTS – Global Styles
   Brand: Black + Red | Trust-focused
   =============================== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: #222;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* TOP BAR */
.top-bar {
  background: #111;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

/* HEADER */
.main-header {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  height: 55px;          /* base size */
  width: auto;
  transform: scale(1.9); /* 👈 increases visual size */
  transform-origin: left center;
}

/* .logo {
  height: 65px;
} */

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-size: 15px;
}

nav a:hover {
  color: #e10600;
}

/* BUTTON */
.btn {
  background: #e10600;
  color: #fff;
  padding: 12px 26px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #ff2a2a;
}

/* HERO */
.hero {
  height: 85vh;
  background: url('../images/hero-lift.jpg') center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

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

/* QUICK REQUEST */
.quick-request {
  background: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  margin-top: -80px; /* was -60 */
  position: relative;
  z-index: 3;
}


.quick-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 20px;
  padding: 30px;
}

.quick-request small {
  color: #e10600;
  font-weight: 600;
}

.quick-request form {
  display: flex;
  gap: 15px;
}

.quick-request input {
  padding: 12px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* ABOUT */
.about {
  padding: 100px 0 80px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about img {
  width: 100%;
  border-radius: 8px;
}

.about small {
  color: #e10600;
  font-weight: 600;
}

.about h2 {
  font-size: 36px;
}

/* STATS */
.stats {
  background: #111;
}

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

.stats-grid div {
  padding: 50px 20px;
  text-align: center;
  color: #fff;
}

.stats-grid div:nth-child(odd) {
  background: #c7363f;
}

.stats-grid div:nth-child(even) {
  background: #111;
}

.stats h3 {
  font-size: 36px;
  margin-bottom: 5px;
}


/* SERVICES */
.services.dark {
  background: #111;
  color: #fff;
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #1c1c1c;
  border-radius: 6px;
  overflow: hidden;
}

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

.service-card h3 {
  padding: 20px 20px 10px;
}

.service-card p {
  padding: 0 20px 25px;
  color: #ddd;
}

/* WHY CHOOSE US */
.why {
  padding: 100px 0;
  background: #f5f5f5;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
  margin-top: 40px;
}

.why-grid div {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
}

/* FOOTER */
.footer {
  background: #000;
  color: #fff;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
}

.footer h4 {
  color: #e10600;
}

.footer a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer a:hover {
  color: #fff;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  color: #aaa;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .about-grid,
  .services-grid,
  .why-grid,
  .footer-grid,
  .stats {
    grid-template-columns: 1fr;
  }

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

  nav {
    display: none;
  }

  .hero-content h1 {
    font-size: 34px;
  }
}
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PAGE LOADER ===== */

#page-loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.loader-logo {
  color: #e10600;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255,255,255,0.2);
  border-top: 4px solid #e10600;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* HIDE LOADER */
body.loaded #page-loader {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

/* ===== MANUAL HERO SLIDER ===== */

.hero-slider {
  height: 75vh;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background: #000;
}

.slides {
  display: flex;
  height: 100%;
  width: 300%;
  transition: transform 0.8s ease;
}


.slide {
  min-width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* Individual images */
.slide-1 {
  background-image: url("../images/hero-1.jpg");
}

.slide-2 {
  background-image: url("../images/hero-2.jpg");
}

.slide-3 {
  background-image: url("../images/hero-3.jpg");
}



/* Overlay */
.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

/* Text */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
}

.hero-content p {
  margin: 15px 0 25px;
  font-size: 18px;
}

.hero-btn {
  background: #e10600;
  color: #fff;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
}

.hero-btn:hover {
  background: #b50400;
}

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

