:root {
  --primary-color: #1a4d8f; /* Deep Professional Blue */
  --secondary-color: #ffcc00; /* Vibrant Yellow */
  --accent-color: #e6b800; /* Darker Yellow for hover */
  --text-dark: #1a1a1a;
  --text-light: #444444;
  --white: #ffffff;
  --bg-light: #f4f7fa;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', 'Inter', sans-serif;
}

body {
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

/* Base Styles */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

section {
  padding: 80px 5%;
}

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

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #153a6d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(26, 77, 143, 0.3);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

/* Header */
header {
  height: var(--header-height);
  width: 100%;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

header.scrolled {
  height: 70px;
  background-color: var(--white);
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center; /* Fix vertical alignment for all items including dropdown */
}

.nav-link {
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
}

/* Dropdown Support 2026 */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  min-width: 260px;
  background: var(--white);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-radius: 15px;
  padding: 15px 0;
  border-top: 4px solid var(--secondary-color);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 12px 25px;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.95rem;
  transition: 0.3s;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.dropdown-link:last-child {
  border-bottom: none;
}

.dropdown-link:hover {
  background: var(--bg-light);
  color: var(--accent-color);
  padding-left: 35px;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

@media (max-width: 991px) {
  .mobile-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 30px 40px;
    gap: 0;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-item-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-link {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    justify-content: space-between;
    height: auto;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 15px;
    border: none;
    max-height: 0;
    width: 100%;
    overflow: hidden;
    transition: 0.4s;
  }

  .nav-item-dropdown.active .dropdown-menu {
    max-height: 500px;
    padding-bottom: 20px;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('hero_packers_movers.webp') center/cover;
  display: flex;
  align-items: center;
  color: var(--white);
  padding-top: var(--header-height);
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
  text-align: center;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  padding: 40px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: 0.3s;
  border-bottom: 5px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-bottom-color: var(--secondary-color);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Updated Services Grid (6 Cards with Photos) */
.services {
  background-color: var(--bg-light);
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-head h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.section-head p {
  color: var(--text-light);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.4s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

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

.service-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-content i {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  margin-top: -60px; /* Overlap with photo */
  border: 5px solid #fff;
  position: relative;
  z-index: 2;
}

.service-content h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: auto;
  transition: 0.3s;
}

.service-btn i {
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin: 0 !important;
  border: none !important;
  position: static !important;
  color: var(--primary-color);
  transition: 0.3s;
}

.service-btn:hover {
  gap: 18px;
  color: var(--accent-color);
}

.service-btn:hover i {
  transform: rotate(-45deg);
  background: var(--primary-color);
  color: var(--white);
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Redesigned Process Section 2026 */
.process {
  background: var(--white);
  padding: 100px 5%;
}

.process-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  margin-top: 60px;
}

/* Connecting Dotted Line on Desktop */
@media (min-width: 992px) {
  .process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-image: linear-gradient(to right, var(--primary-color) 33%, rgba(255,255,255,0) 0%);
    background-position: bottom;
    background-size: 15px 1px;
    background-repeat: repeat-x;
    z-index: 1;
    opacity: 0.3;
  }
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 30px 20px;
  background: #fff;
  border-radius: 25px;
  transition: 0.4s;
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: var(--secondary-color);
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 auto 30px;
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.3);
  position: relative;
  transform: rotate(-5deg);
  transition: 0.4s;
}

.process-step:hover .step-number {
  transform: rotate(0deg) scale(1.1);
  background: var(--primary-color);
  color: var(--white);
}

.step-number i {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.process-step h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.hero-sub p,
.feature-card p,
.service-content p,
.process-step p {
  text-align: center;
}

@media (max-width: 991px) {
  .process-grid {
    flex-direction: column;
    gap: 40px;
  }
}

/* Redesigned FAQ Section 2026 */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  background: transparent;
}

.faq-question {
  padding: 15px 25px;
  background: var(--secondary-color); /* Yellow background */
  cursor: pointer;
  display: flex !important;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  transition: 0.3s;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.faq-question i {
  width: 45px;
  height: 45px;
  background: var(--primary-color); /* Blue Icon Background */
  color: var(--white);
  border-radius: 12px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: 0.4s;
  box-shadow: 0 4px 8px rgba(26, 77, 143, 0.3);
}

.faq-item.active .faq-question {
  background: var(--primary-color);
  color: var(--white);
}

.faq-item.active .faq-question i {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px 0 90px;
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #555;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 25px 25px 25px 90px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* Google Reviews Section */
.google-reviews {
  padding: 80px 5%;
  background: var(--bg-light);
  text-align: center;
}

.rating-badge {
    background: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    transition: 0.3s;
}

.rating-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.google-icon {
    font-size: 1.8rem;
    color: #4285F4; /* Google Blue */
}

.stars {
    color: #ffcc00; /* Star Color */
    font-size: 1.2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: left;
    transition: 0.3s;
    border: 1px solid #eee;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
    text-align: justify;
}

p {
    text-align: justify;
}

/* Permanent Sticky Buttons */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 20px;
  width: 65px;
  height: 65px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex !important;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

.call-float {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 65px;
  height: 65px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: -2px 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex !important;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.whatsapp-float:hover, .call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Finalized Our Skill Section (Duo Image Design) */
.skill-section {
    padding: 100px 5%;
    display: flex;
    gap: 80px;
    background: #fff;
    align-items: flex-start;
}

.skill-images {
    flex: 1;
    position: relative;
    min-height: 550px;
    display: flex;
    justify-content: center;
}

.skill-img-main {
    width: 80%;
    max-width: 380px;
    height: 480px;
    border-radius: 40px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: var(--shadow);
}

.skill-img-overlap {
    width: 80%;
    max-width: 380px;
    height: 440px;
    border-radius: 40px;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 15px solid #fff;
    box-shadow: var(--shadow);
}



.skill-content {
    flex: 1;
    padding-top: 20px;
}

.skill-content h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 800;
}

.skill-content h2 {
    font-size: 3.5rem;
    margin: 20px 0;
    color: var(--primary-color);
}

.skill-content h2 span {
    color: var(--secondary-color);
}

.skill-bars {
    background: transparent;
    padding: 0;
    margin-top: 40px;
}

.skill-bar-outer {
    height: 18px; /* Thicker bars */
    background: #f0f0f0;
}

.skill-bar-inner {
    height: 100%;
    background: var(--secondary-color); /* Matches the screenshot's bright style */
}


/* Modern Gallery Section */
.gallery {
  padding: 100px 5%;
  background: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 350px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 77, 143, 0.7), rgba(255, 204, 0, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
  backdrop-filter: blur(3px);
}

.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: #fff;
  font-size: 2.5rem;
  transform: scale(0.5);
  transition: 0.4s;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}


/* Premium Footer 2026 */
.footer {
    background-color: #0d284d; /* Deep Dark Blue brand essence */
    color: var(--white);
    padding: 100px 5% 40px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 2fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-col h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.footer-links i {
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.footer-address {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.address-item {
    display: flex;
    gap: 18px;
}

.address-item i {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-top: 4px;
}

.address-text h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.address-text p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    font-size: 1.1rem;
}

.social-icon:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Consolidated Mobile Polishing 2026 */
@media (max-width: 1024px) {
    .skill-section { flex-direction: column; gap: 40px; padding: 60px 5%; }
    .skill-images { min-height: 480px; width: 100%; position: relative; display: flex; justify-content: center; }
    .skill-img-main, .skill-img-overlap { width: 80% !important; max-width: 300px !important; height: 380px !important; position: absolute !important; }
    .skill-img-main { top: 0 !important; left: 0 !important; }
    .skill-img-overlap { bottom: 0 !important; right: 0 !important; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .skill-content h2 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
    .section-head h2 { font-size: 2rem; }
    .hero-btns { flex-direction: column; width: 100%; gap: 15px; }
    .btn { width: 100%; text-align: center; }
    .desktop-only { display: none; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { height: 280px; }
    .whatsapp-float,
    .call-float {
        width: 56px;
        height: 56px;
        right: 16px;
        left: auto;
        font-size: 28px;
    }
    .whatsapp-float { bottom: 88px; }
    .call-float { bottom: 20px; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .skill-images { min-height: 400px; }
    .skill-img-main, .skill-img-overlap { max-width: 240px !important; height: 320px !important; }
}

@media (min-width: 769px) {
    /* Keeping sticky buttons visible on desktop too as requested */
}
