:root {
  --primary: #ff9a00;
  --dark: #111;
  --gray: #666;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/*NAVBAR*/

.navbar {
  background: #fff;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 10px 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.nav-logo img {
  width: 130px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ff9a00;
}

.nav-btn {
  background: #ff9a00;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.nav-btn:hover {
  background: #e08600;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #111;
  position: relative;
}

.menu-toggle .close-icon {
  display: none;
}

.menu-toggle.active .menu-icon {
  display: none;
}

.menu-toggle.active .close-icon {
  display: inline;
}

.mobile-menu {
  position: fixed;
  top: -120vh;

  left: 0;
  width: 100%;
  height: 100vh;
  background: #f2f2f2;
  display: flex;
  flex-direction: column;
  padding-top: 70px;
  transition: top 0.35s ease;
  z-index: 9999;
}

.mobile-menu.open {
  top: 0;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  cursor: pointer;
}

.mobile-menu a {
  padding: 25px;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  color: #000;
  text-align: center;
  font-size: 18px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .nav-logo img {
    padding: 8px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links,
  .nav-btn {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

.hero {
  position: relative;

  width: 100%;
  background: linear-gradient(to right, #fff8ef, #fff);
  background-image: url("./assets/banner.jpg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  padding: 50px 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);

  z-index: 1;
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px !important;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  padding-left: 0 !important;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: var(--primary);
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 480px;
}

.hero-text h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary);
}

.hero-text span {
  font-size: 3.2rem;
  color: var(--text-dark);
  font-weight: 700;
}

.hero-form {
  background: var(--primary);
  padding: 30px;
  border-radius: 12px;
  color: var(--white);
  width: 420px;
  flex-shrink: 0;
  margin-right: 0 !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.hero-form h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  outline: none;
  font-size: 1rem;
  color: #333;
}

.hero-form textarea {
  height: 80px;
  resize: none;
}

.hero-form button {
  background: white;
  color: var(--text-dark);
  font-weight: 600;
  border: none;
  padding: 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

/* .hero-form button:hover {
  background: var(--primary);
} */

/* Responsive */
@media (max-width: 900px) {

  /* HERO SECTION */
  .hero {
    background-position: center;
    background-size: cover;
    padding: 90px 25px;
    /* increased padding */
    text-align: center;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
    padding: 0 25px !important;
    /* more spacing */
  }

  /* TEXT */
  .hero-text h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 1rem;
    margin: 0 auto 30px;
    line-height: 1.6;
  }

  .hero-form {
    width: 127%;
    max-width: none;

    padding: 28px 22px;

    border-radius: 14px;
  }

  .hero-form h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
  }

  .form-row input {
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
    border-radius: 8px;
  }

  .hero-btn {
    padding: 14px;
    font-size: 1.1rem;
    border-radius: 10px;
  }
}

/* about section starting */
.about {
  width: 100%;
  padding: 80px 20px;
  background: #fff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-image img {
  width: 500px;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Right Text */
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  text-align: justify;
}

/* about section ending */

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    text-align: center;
    font-size: 0.95rem;
  }
}

/* why choose us section starting */
.why-choose {
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(to bottom, #fff, #fff7eb);
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-container h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 50px;
}

/* Grid Layout */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  justify-items: center;
  align-items: start;
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
}

.why-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

/* why choose us section ending */

.pickup-btn-box {
  margin-top: 50px;
}

.pickup-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #ff9a00;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
  cursor: pointer;
}

.pickup-btn:hover {
  background: #e58a00;
}

/* our services section starting */
.services {
  width: 100%;
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible !important;
}

.services h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 50px;
}

.services-slider {
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  padding-bottom: 20px;
}

.services-track {
  display: flex;
  gap: 40px;
  transition: transform 0.4s ease-in-out;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
  width: 360px;
  flex-shrink: 0;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-service {
  background: #ff9800;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
  cursor: pointer;
}

.btn-service:hover {
  opacity: 0.9;
}

.service-arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 35px;
}

.arrow-btn {
  width: 48px;
  height: 38px;
  border-radius: 10px;
  background: #ffffff;
  border: 2px solid #ffa500;
  color: #ffa500;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.arrow-btn:hover {
  background: #ffa500;
  color: #fff;
}

@media (max-width: 1000px) {
  .services-track {
    gap: 20px;
  }

  .service-card {
    width: 300px;
  }
}

@media (max-width: 700px) {
  .service-card {
    width: 100%;
  }

  .services-track {
    gap: 15px;
  }

  .services {
    padding: 51px 20px;
  }
}

/* OUR PROCESS SECTION */

.process {
  width: 100%;
  padding: 50px 0;
  background: #fffaf1;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.process-container h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 98px;
  text-align: center;
}

.process-wrapper {
  position: relative;
  width: 100%;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
  align-items: stretch;
}

.process-card {
  background: #fff;
  border-radius: 15px;
  padding: 70px 25px 40px;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  height: 100%;
  position: relative;
  z-index: 3;
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);
}

.process-icon {
  position: absolute;
  top: -45px;

  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 18px;
  border-radius: 15px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.process-icon img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.line {
  position: absolute;
  height: 4px;
  background: #ffb300;
  border-radius: 2px;
  z-index: 0;
}

.start-line {
  left: -159px;
  top: 217px;
  width: 160px;
}

.end-line {
  right: -171px;
  top: 80px;
  width: 170px;
}

.line-1 {
  left: -11%;
  width: 11%;
  bottom: 101px;
}

.line-2 {
  left: -11%;
  width: 11%;
  bottom: 138px;
}

.line-3 {
  left: -11%;
  width: 11%;
  bottom: 157px;
}

.process-card h4 {
  color: #ff9800;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.process-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  max-width: 280px;
}

.mobile-arrows {
  display: none;
}

.delivery {
  width: 100%;
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.delivery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.delivery h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 60px;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: stretch;
}

.delivery-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.delivery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.delivery-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.delivery-content {
  padding: 25px 20px;
}

.delivery-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.delivery-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

.delivery-footer {
  background: #ffa000;
  color: #111;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 0;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  transition: background 0.3s ease;
}

.delivery-card:hover .delivery-footer {
  background: #ff8f00;
}

.delivery-arrows {
  display: none !important;
}

/* testimonials section starting */
.testimonials {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #fff8e7, #fff2d6);
  text-align: center;
}

.testimonials h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.7s linear;
  will-change: transform;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 0 0 calc(33.333% - 20px);
  margin-right: 20px;
  min-height: 260px;

  /* Make content centered */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* horizontal center */
  text-align: center;
  /* center for the text */
}

.testimonial-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-bottom: 15px;
  display: block;
  object-fit: cover;
  /* image is already centered because card uses align-items:center */
}

.testimonial-card:last-child {
  margin-right: 0;
}

.testimonial-card h4 {
  text-align: center;
  color: #ff9800;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.testimonial-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 8px;
}

.testimonial-dots span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.testimonial-dots .active {
  background: #ff9800;
}

/* Tablet View */
@media (max-width: 900px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 20px);

  }
}

/* Mobile View */
@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 100%;

  }
}


/*  RESPONSIVE  */

@media (max-width: 1000px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .line {
    display: none;
  }
}

@media (max-width: 700px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .process-container h2 {
    font-size: 1.8rem;
  }

  .line {
    display: none;
  }
}

/* FAQ Section */
.faq {
  width: 100%;
  padding: 80px 20px;
  background: #fff;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #fffdf7;
  border-radius: 12px;
  border: 1px solid #eee;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:not(.active) {
  background: #fff;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: transparent;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.05rem;
  color: #444;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
}

.faq-question .arrow {
  border: solid #ffb300;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(45deg);
  transition: 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(-135deg);
}

.faq-answer {
  display: none;
  padding: 0 25px 20px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.faq-item.active {
  background: #fff6d8;
  border-color: #ffe2a6;
}

.faq-item.active .faq-answer {
  display: block;
}

@media (max-width: 768px) {
  .faq {
    padding: 60px 15px;
  }

  .faq h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
  }

  .faq-question {
    font-size: 1rem;
    padding: 18px 20px;
  }

  .faq-answer {
    padding: 0 20px 18px;
  }
}

/* GALLERY SECTION */
.gallery {
  width: 100%;
  background: #fff;
  padding: 17px 20px;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
}

.gallery-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Each Row */
.gallery-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  gap: 20px;
}

/* Image Styling */
.gallery-row img {
  height: 200px;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-row img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .gallery-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery-row img {
    width: 45%;
    height: 200px;
  }
}

.cta-section {
  width: 100%;
  padding: 60px 20px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  background: url("./assets/get.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* Yellow Gradient Overlay */
.cta-container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  /* background: linear-gradient(90deg, rgba(255, 170, 0, 0.9) 0%, rgba(255, 170, 0, 0.5) 60%, transparent 100%); */
  z-index: 1;
  border-radius: 20px;
}

.cta-content {
  position: relative;
  z-index: 2;
  padding-left: 50px;
  max-width: 600px;
  color: #fff;
  text-align: left;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-content p {
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: #ff9a00;
  font-weight: 600;
  padding: 12px 35px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-btn:hover {
  background: #ff9a00;
  color: #fff;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .cta-container {
    flex-direction: column;
    height: auto;
    background-position: right;
  }

  .cta-container::before {
    width: 100%;
    height: 100%;
    background: rgba(255, 170, 0, 0.9);
  }

  .cta-content {
    padding: 40px 20px;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}

/* FOOTER SECTION */
.footer {
  background: #fff5d9;
  padding: 50px 20px 20px;
  text-align: center;
  color: #444;
  font-family: "Inter", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* aligns top */
  flex-wrap: wrap;
  gap: 20px;
  text-align: left;
}

.footer-logo img {
  width: 200px;
  height: 100px;
  object-fit: contain;
}

.footer-logo p {
  font-size: 10px;
  color: #111;
  margin-bottom: 5px;
  font-weight: 600;
  width: 20%;
}

.footer-about {
  max-width: 500px;

  color: #444;
  line-height: 1.6;
}

.footer-about p {
  width: 100%;
  font-size: 12px;
}

.footer-center {
  text-align: center;
}

.footer-center h4 {
  font-size: 16px;
  color: #111;
  margin-bottom: 5px;
  font-weight: 600;
}

.footer-center a {
  font-size: 15px;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}

.footer-center a:hover {
  border-bottom: 1px solid #ff9a00;
  color: #ff9a00;
}

.footer-right {
  margin-top: 20px;
  text-align: center;
}

.footer-right h4 {
  font-size: 16px;
  color: #111;
  margin-bottom: 8px;
  font-weight: 600;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.social-icons img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.footer hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 25px 0 15px;
}

.footer-bottom p {
  font-size: 14px;
  color: #555;
}

.footer-contact {
  margin-top: 20px;
}

.footer-contact h4 {
  font-size: 16px;
  color: #111;
  margin-bottom: 8px;
  font-weight: 600;
}

.footer-contact a {
  text-decoration: none;
  color: #111;
  transition: 0.3s ease;
}

.footer-contact a:hover {
  color: #ff9a00;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-right {
    text-align: center;
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-logo img {
    margin-bottom: 10px;
  }
}

.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 56px;
  height: 56px;

  background: #25d366;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.25);

  cursor: pointer;
  z-index: 999;
  transition: 0.25s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.06);
}

/* POPUP OVERLAY */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* POPUP BOX styled like hero-form */
.popup-box {
  background: var(--primary);
  padding: 30px;
  border-radius: 12px;
  color: var(--white);
  width: 420px;
  max-width: 95%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: popupFade 0.3s ease;
  z-index: 10;
}

/* CLOSE BUTTON */
.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: white;
  font-weight: 700;
}

@keyframes popupFade {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* TITLE */
.popup-box h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
}

.popup-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popup-box .form-row {
  display: flex;
  gap: 10px;
}

.popup-box input,
.popup-box textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  outline: none;
  font-size: 1rem;
  color: #333;
}

.popup-box textarea {
  height: 80px;
  resize: none;
}

.popup-box button {
  background: white;
  color: var(--text-dark);
  font-weight: 600;
  border: none;
  padding: 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}


@media (max-width: 768px) {
  .why-choose {
    padding: 17px 0px !important;
  }

  .why-container {
    padding: 0 5px !important;
  }

  .why-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    width: 100% !important;
    border-radius: 14px;
  }

  .why-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }

  .why-card {
    padding: 18px !important;
    background: #fff;
    text-align: center !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  }

  .why-card img {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
  }
}

@media (max-width: 768px) {
  .process-card {
    display: none !important;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .process-card.active {
    display: block !important;
    opacity: 1;
    transform: translateX(0);
  }

  .process-card.slide-left {
    transform: translateX(-100%);
  }

  .mobile-arrows {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .arrow-btn {
    padding: 10px 25px;
    background: #ffb300;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 30px;
  }

  .process-card {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .delivery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 30px;
  }

  .delivery-card {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 767px) {
  .delivery-grid {
    grid-template-columns: 1fr;
    position: relative;
  }

  .delivery-card {
    display: none !important;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .delivery-card.active {
    display: block !important;
    opacity: 1;
    transform: translateX(0);
  }

  .delivery-card.slide-left {
    transform: translateX(-100%);
  }

  .delivery-arrows {
    display: flex !important;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
  }

  .delivery-arrow-btn {
    padding: 10px 25px;
    background: #ffa000;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
  }
}

.gallery-arrows {
  display: none !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .gallery-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .gallery-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
  }

  .gallery-row img {
    width: 100%;
    height: 180px;

    flex: none;
  }
}

@media (max-width: 767px) {
  .gallery-wrapper {
    position: relative;
    width: 100%;
    height: 220px;

    overflow: hidden;
  }

  .gallery-row {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .gallery-row img {
    display: none;
    opacity: 0;
    width: 100%;
    height: 220px;
    object-fit: cover;
    transform: translateX(100%);
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .gallery-row img.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
  }

  .gallery-row img.slide-left {
    transform: translateX(-100%);
  }

  .gallery-arrows {
    display: flex !important;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
  }

  .gallery-arrow-btn {
    padding: 10px 25px;
    background: #ff9800;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
  }

  .pickup-btn {
    font-size: 0.95rem;
    padding: 10px 24px;
    cursor: pointer;
  }
}