/* ==============================
   1. Base & Variables
============================== */
:root {
  --primary: #ff6a00;
  --primary-700: #e55f00;
  --dark: #0e2a3b;
  --muted: #f5f7fb;
  --accent: #ffe7d3;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ==============================
   2. Typography & Utility Classes
============================== */
.container { width: 92%; max-width: 1200px; margin: 0 auto; }
.center { text-align: center; }
.mt-12 { margin-top: 12px; }
.mt-24 { margin-top: 24px; }

/* ==============================
   3. Header / Navigation
============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.brand {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--dark);
}
.brand span { color: var(--primary); }

#mainNav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
}
#mainNav a {
  padding: 8px 10px;
  border-radius: 6px;
  color: #2d3a45;
  text-decoration: none;
}
#mainNav a:hover,
#mainNav a.active {
  background: var(--muted);
  color: var(--dark);
}

.hamburger {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Dropdown (Desktop) */
.has-dropdown {
  position: relative; /* anchor */
}
.has-dropdown > .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform: none;
  background: #fff;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  z-index: 1000;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;

  /** ✅ Force vertical list **/
  display: flex;
  flex-direction: column;
}


.has-dropdown > .dropdown li {
  display: block;
}

.has-dropdown > .dropdown li a {
  display: block;
  padding: 10px 18px;
  color: #333;
  text-decoration: none;
  transition: 0.2s ease;
}
.has-dropdown > .dropdown li a:hover {
  background: #ff6600;
  color: #fff;
  border-radius: 6px;
}

/* Show dropdown smoothly */
.has-dropdown:hover > .dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(8px);
}

/* ==============================
   4. Buttons
============================== */
.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: .25s;
}
.btn:hover { background: var(--primary-700); }
.btn.outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn.outline:hover { background: var(--primary); color: #fff; }
.btn.small { padding: 8px 14px; font-size: .9rem; }

/* ==============================
   5. Hero Section
============================== */
.hero {
  background: linear-gradient(to right, rgba(14, 42, 59, 0.85), rgba(14, 42, 59, 0.5)),
              url('../images/Local-Moving.jpg') center/cover no-repeat;
  color: #fff;
  padding: 120px 20px;
  text-align: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  margin-top: 20px;
}

.hero__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 30px;
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-row .btn {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  transition: background 0.3s, transform 0.2s;
}

.cta-row .btn:hover {
  background: var(--primary-700);
  transform: translateY(-2px);
}

.cta-row .btn.outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.cta-row .btn.outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--primary);
  color: var(--primary);
}

/* ==============================
   6. Sections
============================== */
/* Section background + spacing */
.section--muted {
  background-color: #f8f9fa;
  padding: 80px 20px;
  text-align: center;
}

/* Section title */
#quote h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #0e2a3b;
  font-weight: 700;
}

/* Quote form container */
.quote-form {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Full-width for long fields */
.quote-form select,
.quote-form button,
.quote-form .form-note {
  grid-column: span 2;
}

/* Input + select styles */
.quote-form input,
.quote-form select {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.quote-form input:focus,
.quote-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.15);
  outline: none;
}

/* Submit button */
.quote-form button.btn {
  padding: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.quote-form button.btn:hover {
  background: var(--primary-700);
  transform: translateY(-2px);
}

/* Note under the form */
.quote-form .form-note {
  font-size: 0.95rem;
  color: #555;
  margin-top: 8px;
  text-align: center;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-form select,
  .quote-form button,
  .quote-form .form-note {
    grid-column: span 1;
  }
}



.contact-shortcuts {
  margin: 50px auto 0;
  max-width: 700px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  text-align: center;
}

.contact-box {
  flex: 1 1 180px;
  background: #fff;
  color: #0e2a3b;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 16px 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-box span {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #555;
}

.contact-box:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.contact-box:hover span {
  color: #fff;
}

@media (max-width: 600px) {
  .contact-shortcuts {
    flex-direction: column;
    align-items: stretch;
  }
}



/* ==============================
   7. Grids & Cards
============================== */
.grid { display: grid; gap: 18px; }
.usp-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.service-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.city-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.team-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.footer-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.gallery { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.offices { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.blog-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; }
@media(max-width:900px){ .two-col { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid #eee; border-radius: 12px;
  padding: 18px; box-shadow: 0 10px 30px rgba(0,0,0,.04);
}
.img-card { overflow: hidden; border-radius: 12px; }
.img-card img { aspect-ratio: 16/10; object-fit: cover; }

.usp { font-weight: 700; }
.usp small { display: block; font-weight: 500; opacity: .85; margin-top: 6px; }

.service-card {
  display: block; background: #fff; border: 1px solid #eee; border-radius: 14px;
  overflow: hidden; color: #1c2a35; transition: .25s;
  box-shadow: 0 12px 30px rgba(0,0,0,.05);
}
.service-card img { height: 170px; width: 100%; object-fit: cover; }
.service-card h3 { padding: 12px 16px 0; margin: 0; }
.service-card p { padding: 6px 16px 18px; margin: 0; opacity: .9; }
.service-card:hover {
  transform: translateY(-6px); border-color: #ddd;
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}

.city {
  display: block; padding: 20px; border-radius: 12px;
  border: 1px solid #eee; background: #fff;
  font-weight: 700; text-align: center;
}
.logo-card {
  background: #fff; padding: 20px; border: 1px solid #eee;
  border-radius: 12px; text-align: center; font-weight: 700;
}

/* ==============================
   8. Steps & Lists
============================== */
.steps { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.step {
  background: #fff; border: 1px solid #eee; border-radius: 12px;
  padding: 18px; text-align: center; box-shadow: 0 6px 20px rgba(0,0,0,.04);
}
.step span {
  display: inline-grid; place-items: center; width: 40px; height: 40px;
  background: var(--primary); color: #fff; border-radius: 50%;
  font-weight: 800; margin-bottom: 8px;
}
.checklist { list-style: none; padding: 0; margin: 10px 0 0; }
.checklist li {
  position: relative; padding-left: 28px; margin: 8px 0;
}
.checklist li:before {
  content: "✔"; position: absolute; left: 0; top: 0;
  color: var(--primary); font-weight: 700;
}
.steps-list { padding-left: 18px; }
.steps-list li { margin: 8px 0; }

/* ==============================
   9. Forms
============================== */
.quote-form {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px; margin-top: 16px;
}
input, select, textarea {
  width: 100%; padding: 12px 12px;
  border: 1px solid #dfe3ea; border-radius: 10px;
  background: #fff; font: inherit;
}
.form-note { font-size: .9rem; color: #667; }

/* ==============================
   10. Carousel
============================== */
.carousel {
  display: grid; grid-auto-flow: column; grid-auto-columns: 100%;
  overflow: hidden; scroll-behavior: smooth;
}
.slide {
  padding: 20px; background: #fff; border: 1px solid #eee; border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}
.carousel-controls {
  display: flex; gap: 8px; justify-content: center; margin-top: 12px;
}
.carousel-controls button {
  background: #fff; border: 1px solid #ddd; border-radius: 8px;
  padding: 8px 14px; cursor: pointer;
}
.carousel-controls button:hover { border-color: var(--primary); color: var(--primary); }

/* ==============================
   11. Maps
============================== */
/* Title styling */
.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #0e2a3b;
  text-align: center;
  font-weight: 700;
}

/* Logo grid */
.grid.logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  justify-items: center;
}

/* Logo card */
.logo-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Icon / Image inside card */
.logo-card img {
  max-width: 60px;
  height: auto;
  margin-bottom: 12px;
}

/* Logo title */
.logo-card p {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}


/* ==============================
   12. CTA Section
============================== */
.cta {
  background: linear-gradient(90deg, var(--primary), #ff944d);
  color: #fff; padding: 64px 0;
}
.cta .btn { background: #fff; color: var(--primary); }
.cta .btn.outline { border-color: #fff; color: #fff; }
.cta .btn.outline:hover { background: #fff; color: var(--primary); }



/* I cons 
 */


  /* Floating button container */
    .floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 999;
    }

    /* Individual button style */
    .floating-buttons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      text-decoration: none;
      color: white;
      font-size: 26px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.2);
      transition: transform 0.3s, opacity 0.3s;
      position: relative;
      animation: bounce 2s infinite;
    }

    /* Button colors */
    .call-btn { background-color: #007bff; }
    .whatsapp-btn { background-color: #25D366; }
    .top-btn { background-color: #333; }

    /* Tooltip styling */
    .floating-buttons a::after {
      content: attr(data-tooltip);
      position: absolute;
      right: 70px;
      background: #333;
      color: #fff;
      padding: 6px 10px;
      border-radius: 5px;
      font-size: 13px;
      white-space: nowrap;
      opacity: 0;
      transform: translateX(10px);
      transition: 0.3s ease;
      pointer-events: none;
    }

    .floating-buttons a:hover::after {
      opacity: 1;
      transform: translateX(0);
    }

    /* Icon bounce animation */
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    /* Optional content to scroll */
    .content {
      height: 1500px;
      padding: 40px;
    }
    
    
    
    /* ==============================
   13. Footer
============================== */
.site-footer {
  background: #0f1b25; color: #dfe6ee; margin-top: 0;
}
.site-footer a { color: #fff; text-decoration: underline; }
.site-footer .copy {
  padding: 16px 0; text-align: center;
  border-top: 1px solid rgba(255,255,255,.1);
}
.links { list-style: none; padding: 0; margin: 0; }
.links li { margin: 6px 0; }

/* ==============================
   14. Responsive Nav
============================== */
@media(max-width:900px) {
  #mainNav {
    display: none; position: absolute; right: 4%; top: 64px;
    background: #fff; border: 1px solid #eee; border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0,0,0,.12); padding: 12px;
  }
  #mainNav ul { flex-direction: column; gap: 8px; }
  .hamburger { display: block; }
  .has-dropdown:hover .dropdown {
    position: static; box-shadow: none; border: none;
  }
}
.show { display: block !important; }
