/* -------------------------------------------------
   Variables & base
-------------------------------------------------*/
:root{
  --brand: #ffb400;
  --accent: #ff9800;
  --dark: #111;
  --muted: #6b7280;
  --bg: #fff;
  --alt: #f8f8f8;
  --max-width: 1120px;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(15,15,15,0.08);
  --glass: rgba(255,255,255,0.6);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial;color:var(--dark);background:var(--bg);line-height:1.5}
.container{width:min(var(--max-width),94%);margin-inline:auto}
a{color:inherit;text-decoration:none}

/* ---------------- HEADER ---------------- */
 /* RESET */
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: Arial, sans-serif; line-height: 1.5; }

  /* HEADER */
  .site-header {
    position: sticky;
    top: 0;
    background: white;
    border-bottom: 1px solid #ddd;
    z-index: 1000;
  }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
    max-width: 1200px;
    margin: auto;
  }
  .brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1.2rem;
  }
  .brand span {
    margin-left: 0.5rem;
  }
  .main-nav {
    display: flex;
    gap: 1rem;
  }
  .main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .btn {
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
  }
  .btn-primary { background: #ff9900; color: white; }
  .call { color: #ff9900; text-decoration: none; font-weight: bold; }
  .hamburger { display: none; font-size: 1.5rem; background: none; border: none; cursor: pointer; }

  /* MOBILE NAV */
  .mobile-nav {
    display: none;
    flex-direction: column;
    background: white;
    padding: 1rem;
    border-top: 1px solid #ddd;
  }
  .mobile-nav a {
    padding: 0.5rem 0;
    text-decoration: none;
    color: #333;
  }

  /* HERO */
  .hero {
    background: linear-gradient(to right, rgba(255,153,0,0.8), rgba(255,99,71,0.8)), 
                url('https://via.placeholder.com/1600x800?text=Moving+Truck+Illustration');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 4rem 1rem;
  }
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  .hero .hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
  }
  .btn-whatsapp {
    background: #25D366;
    color: white;
  }

  /* RESPONSIVE */
  @media(max-width: 768px) {
    .main-nav { display: none; }
    .hamburger { display: block; }
    .mobile-nav.active { display: flex; }
    .hero h1 { font-size: 1.8rem; }
  }

/* ---------------- HERO ---------------- */
.hero{position:relative;min-height:64vh;display:grid;place-items:center;background-image:url('https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?q=80&w=1600&auto=format&fit=crop&ixlib=rb-4.0.3&s=7e9f3b6c1810c59c2a6ef5bfa6f0d3c8');background-size:cover;background-position:center;color:#fff}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,0.45),rgba(0,0,0,0.5))}
.hero-inner{position:relative;display:flex;gap:28px;align-items:center;justify-content:space-between;padding:64px 0}
.hero-copy{max-width:640px}
.hero-copy h1{font-size:clamp(1.6rem,3.4vw,2.8rem);margin:0 0 12px}
.lead{color:#fff;opacity:.95;margin-bottom:16px}
.hero-ctas{display:flex;gap:12px;flex-wrap:wrap}
.hero-media img{width:480px;border-radius:14px;box-shadow:var(--shadow)}
@media(max-width:980px){.hero-inner{flex-direction:column;text-align:center}.hero-media img{width:100%;max-width:560px}}

/* ---------------- SECTION HEAD ---------------- */
.section{padding:64px 0}
.section-alt{background:var(--alt)}
.section-head{text-align:center;margin-bottom:28px}
.section-head h2{font-size:clamp(1.3rem,2.4vw,1.8rem);margin-bottom:8px}
.section-head p{color:var(--muted);max-width:820px;margin:0 auto}
/* ===== Quote Section Styling ===== */
.quote-section {
  background: linear-gradient(135deg, #ff7f27, #003366);
  padding: 50px 20px;
  color: #fff;
  text-align: center;
}

.section-head h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.section-head p {
  font-size: 1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* ===== Form Styling ===== */
.quote-form {
  background: #fff;
  color: #333;
  padding: 25px;
  border-radius: 10px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
}

.quote-form div {
  margin-bottom: 15px;
  text-align: left;
}

.quote-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.quote-form input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.quote-form input:focus {
  border-color: #ff7f27;
  box-shadow: 0 0 5px rgba(255,127,39,0.4);
}

/* ===== Submit Button ===== */
.btn-submit {
  background: linear-gradient(90deg, #ff7f27, #ff9900);
  color: #fff;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: linear-gradient(90deg, #e96b1d, #ff7f27);
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .quote-form {
    padding: 20px;
  }
  .section-head h2 {
    font-size: 1.5rem;
  }
}



/* ---------------- CARDS / SERVICES ---------------- */
.cards{display:grid;gap:18px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.service-card{background:#fff;border-radius:12px;overflow:hidden;box-shadow:var(--shadow);text-align:center;padding-bottom:16px}
.service-card img{width:100%;height:170px;object-fit:cover}
.service-card h3{margin:14px 8px 6px;font-size:1.05rem}
.service-card p{color:var(--muted);padding:0 12px;margin-bottom:12px}
@media(max-width:980px){.grid-3{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.grid-3{grid-template-columns:1fr}}

/* ---------------- FEATURES ---------------- */
.features{display:flex;gap:20px;justify-content:space-between}
.feature{background:#fff;padding:20px;border-radius:12px;flex:1;box-shadow:var(--shadow);text-align:center}
@media(max-width:980px){.features{flex-direction:column}}

/* ---------------- STEPS ---------------- */
.steps{display:flex;gap:14px;justify-content:space-between;align-items:center}
.steps li{list-style:none;background:#fff;padding:18px;border-radius:10px;text-align:center;flex:1;box-shadow:var(--shadow)}
.steps li strong{display:block;font-size:1.15rem;background:var(--brand);color:#111;border-radius:50%;width:40px;height:40px;line-height:40px;margin:0 auto 8px}

/* ---------------- PRICING ---------------- */
.pricing-table-wrapper {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  text-align: center;
  font-family: Arial, sans-serif;
}

.pricing-table thead {
  background: #e9ecef;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid #ccc;
  padding: 12px 10px;
}

.pricing-table th {
  font-weight: bold;
  color: #2b2b2b;
}

.pricing-table td {
  color: #444;
}

.pricing-table small {
  display: block;
  font-size: 0.8em;
  color: #777;
}


/* ---------------- TESTIMONIALS ---------------- */
.testimonials{display:flex;gap:16px;overflow:hidden;position:relative}
.testimonial{background:#fff;padding:28px;border-radius:12px;box-shadow:var(--shadow);flex:1;display:none}
.testimonial.active{display:block;text-align:center;font-size:1.05rem}

/* ---------------- GALLERY ---------------- */
.gallery {
  padding: 40px 20px;
  background: #f8f8f8;
  text-align: center;
}

.gallery h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-container img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-container img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Offer Section Styling */
#offer {
  padding: 50px 20px;
  background: linear-gradient(135deg, #ff4d00, #ff9900);
  color: #fff;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.offer-box {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#offer h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: bold;
}

#offer p {
  font-size: 1.2rem;
}

#offer .highlight {
  background: #ffea00;
  color: #000;
  padding: 3px 8px;
  border-radius: 5px;
}

.countdown {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 15px 0;
  color: #ffea00;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-offer {
  display: inline-block;
  background: #ffea00;
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-offer:hover {
  background: #fff;
  color: #ff4d00;
  transform: scale(1.05);
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==============================
   CONTACT SECTION STYLES
   ============================== */
#contact {
  padding: 60px 0;
  font-family: Arial, sans-serif;
}

/* Section Head */
#contact .section-head h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

#contact .section-head p {
  font-size: 1rem;
  color: #666;
}

/* Contact Grid */
#contact .contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

/* Map */
#contact .mapwrap {
  flex: 1 1 50%;
  min-height: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Right Column */
#contact .contact-info {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

#contact .contact-info p {
  margin: 8px 0;
}

#contact .contact-info a {
  text-decoration: none;
}

#contact .contact-info a:hover {
  text-decoration: underline;
}

/* Contact Form */
#contact .contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contact .contact-form label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

#contact .contact-form input,
#contact .contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

#contact .contact-form input:focus,
#contact .contact-form textarea:focus {
  border-color: #ff6600;
  outline: none;
  box-shadow: 0 0 5px rgba(255, 102, 0, 0.3);
}

/* Button */
#contact .contact-form button {
  padding: 12px 20px;
  background-color: #ff6600;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#contact .contact-form button:hover {
  background-color: #e65c00;
}

/* Responsive */
@media (max-width: 768px) {
  #contact .contact-grid {
    flex-direction: column;
  }
  
  #contact .mapwrap {
    flex: 1 1 100%;
    height: 300px;
  }
}

/* ---------------- FOOTER ---------------- */

/* FOOTER */
.site-footer {
  background: #222;
  color: #ccc;
  padding: 2rem 0;
  font-size: 0.95rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.footer-col h4, .footer-col h5 {
  color: #fff;
  margin-bottom: 0.8rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col a {
  color: #ccc;
  text-decoration: none;
}
.footer-col a:hover {
  color: #ff6600;
}
.social a {
  margin-right: 10px;
  font-size: 1.2rem;
}
.social a:hover {
  color: #ff6600;
}
.copyright {
  text-align: center;
  padding-top: 1rem;
  font-size: 0.85rem;
  border-top: 1px solid #444;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* small screens tweaks */
@media(max-width:640px){
  .main-nav{display:none}
  .hamburger{display:inline-block}
  .header-inner{gap:8px}
  .brand-name{display:none}
  .pricing-cards{flex-direction:column}
  .features{gap:14px}
  .steps{flex-direction:column;gap:12px}
}



/* Floating Buttons Container */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

/* Individual Button Styles */
.float-btn {
  background: #ff6600;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
  transition: background 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.float-btn:hover {
  background: #e65c00;
  transform: scale(1.05);
}

#scrollTopBtn {
  display: none; /* hidden until scroll */
}




/* form  */

#response.success {
  color: green;
  margin-top: 10px;
}
#response.error {
  color: red;
  margin-top: 10px;
}





/* 1st quote form Submition  */

    
    .quote-section {max-width: 600px; margin: auto;}
    .quote-form {display: flex; flex-direction: column; gap: 12px;}
    label {font-weight: bold;}
    input, button {
      padding: 10px;
      font-size: 16px;
      border-radius: 6px;
      border: 1px solid #ccc;
    }
    button {
      background: #e63946;
      color: #fff;
      border: none;
      cursor: pointer;
      transition: 0.3s;
    }
    button:hover {
      background: #d62828;
    }