/* ================= FIXED NAVBAR ================= */

.scroll-nav-wrapper {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 1000;
  border-bottom: 1px solid #e2e8f0;
  padding: 0 5%;
}

.scroll-nav {
  background: #ffffff;
  display: flex;
  align-items: center;
  height: 60px;
  position: relative;
  width: 100%;
}

.scroll-container {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
  position: relative;
  overflow-x: auto;
  scroll-behavior: smooth;
  margin: 0 10px;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

.scroll-link {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #718096;
  text-decoration: none;
  padding: 18px 0;
  white-space: nowrap;
  position: relative;
  font-weight: 500;
  transition: color 0.3s;
}

.scroll-link:hover {
  color: #e53935;
}

.scroll-link.active {
  color: #1a202c;
  font-weight: 600;
}

/* Thick underline */
.scroll-indicator {
  position: absolute;
  bottom: 0;
  height: 3px;
  background: #1a202c;
  transition: all 0.3s ease;
  border-radius: 1.5px;
}

/* Naked Arrows (Chevrons) */
.nav-arrow {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #4a5568;
  transition: color 0.3s;
}

.nav-arrow:hover {
  color: #1a202c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 75px; /* Offset for sticky navbar */
}

body {
  background: #f3f3f3;
  color: #222;
}

/* ================= HEADER ================= */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  background: transparent;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 22px;
  color: white;
}

.car-icon {
  margin-right: 8px;
}

.nav a {
  margin-right: 25px;
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.login-btn {
  background: #e53935;
  border: none;
  padding: 8px 18px;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

/* ================= HERO ================= */

.hero {
  display: flex;
  flex-direction: column;
}

/* LEFT IMAGE */
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* RIGHT FORM */
.hero-form {
  background: #ffffff;
  padding: 30px;
}

.hero-form h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.hero-form p {
  margin-bottom: 25px;
  color: #666;
}

/* ================= FORM ================= */

form select,
form input {
  width: 100%;
  padding: 16px;
  margin-bottom: 18px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background: #fafafa;
  appearance: none;
}

form select:focus,
form input:focus {
  outline: none;
  border-color: #e53935;
  background: #fff;
}

.primary-btn {
  width: 100%;
  padding: 16px;
  background: #e53935;
  color: white;
  border: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.primary-btn:hover {
  background: #d32f2f;
}

/* ================= STATS ================= */

.stats {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.stats h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.stats span {
  font-size: 12px;
  color: #666;
}

/* ================= SERVICE CARDS ================= */

.services {
  padding: 40px 5%;
  background: #f7f7f7;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.service-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 60px;
  margin-bottom: 15px;
}

.service-card h4 {
  font-size: 14px;
  font-weight: 500;
}

/* ================= FLOATING SOS ================= */

.sos-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 100;
  overflow: hidden;
}

.sos-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}


/* ================= DESKTOP ================= */

@media (min-width: 992px) {

  .hero {
    flex-direction: row;
    height: 100vh;
  }

  .hero-image {
    flex: 1.2;
  }

  .hero-image img {
    height: 100%;
    object-fit: cover;
  }

  .hero-form {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
  }

  .hero-form h1 {
    font-size: 34px;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

}
.service-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* ================= AVAILABLE SERVICES ================= */

.available-services {
  padding: 60px 5%;
  background: #f7f7f7;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.available-services h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #666;
  margin-bottom: 40px;
  max-width: 700px;
}

.available-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.available-card {
  background: #f1f1f1;   /* grey background */
  padding: 35px 20px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: 0.25s ease;
  position: relative;
  border: 1px solid #e5e5e5;
}

.available-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.available-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 15px;
}

.available-card h4 {
  font-size: 15px;
  font-weight: 500;
}

/* NEW BADGE */

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
}

/* DESKTOP */

@media (min-width: 992px) {

  .available-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .available-services h2 {
    font-size: 34px;
  }

}
/* ================= SCROLL NAV ================= */


/* ===== SECTION HEADER ===== */

.section-header {
  margin-bottom: 30px;
}

.red-line {
  width: 50px;
  height: 3px;
  background: #e53935;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
}

/* ===== CURATED SECTION ===== */

/* ================= CURATED CUSTOM ================= */

.curated-section {
  padding: 70px 5%;
  background: #f5f5f5;
}

.curated-slider {
  position: relative;
  display: flex;
  align-items: center;
}

.curated-container {
  display: flex;
  gap: 70px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 40px;
}

.curated-container::-webkit-scrollbar {
  display: none;
}

.curated-item {
  min-width: 140px;
  text-align: center;
  scroll-snap-align: start;
}

.img-wrapper {
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.img-wrapper img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}

.curated-item:hover .img-wrapper {
  transform: translateY(-5px);
}

.curated-item p {
  margin-top: 15px;
  font-weight: 500;
  font-size: 16px;
}

/* ===== BADGES ===== */

.badge {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
}

.sale-badge {
  background: #28a745;
}

.new-badge {
  background: #28a745;
}

/* ===== ARROWS ===== */

.curated-arrow {
  position: absolute;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  background: #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
}

.curated-arrow img {
  width: 12px;
}

.curated-arrow.left {
  left: 0;
}

.curated-arrow.right {
  right: 0;
}

.curated-arrow.right img {
  transform: rotate(180deg);
}
/* ===== SUMMER SECTION ===== */

/* ================= SUMMER READY SECTION ================= */

.summer-section {
  padding: 80px 5%;
  background: #f5f5f5;
}

.summer-slider {
  position: relative;
  display: flex;
  align-items: center;
}

.summer-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 50px;
}

.summer-container::-webkit-scrollbar {
  display: none;
}

.summer-card {
  min-width: 340px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  scroll-snap-align: start;
  transition: 0.3s ease;
}

.summer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

.summer-card img {
  width: 100%;
  height: auto;
  display: block;
}

.summer-card h4 {
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
}

/* ===== ARROWS ===== */

.summer-arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #e9e9e9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: 0.2s ease;
}

.summer-arrow:hover {
  background: #ddd;
}

.summer-arrow img {
  width: 14px;
}

.summer-arrow.left {
  left: 0;
}

.summer-arrow.right {
  right: 0;
}

.summer-arrow.right img {
  transform: rotate(180deg);
}

/* ===== MOBILE OPTIMIZATION ===== */

@media (max-width: 768px) {

  .summer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0;
  }

  .summer-card {
    min-width: 100%;
  }

  .summer-arrow {
    display: none;
  }

}

/* ===== DESKTOP ===== */

@media (min-width: 992px) {

  .summer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

/* ================= PROMO SLIDER ================= */

.promo-section {
  padding: 80px 5%;
  background: #f5f5f5;
}

.promo-slider {
  position: relative;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.promo-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.promo-slide {
  min-width: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.promo-slide img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

/* ===== DOTS ===== */

.promo-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 8px;
}

.promo-dots span {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.promo-dots span.active {
  background: #e53935;
  width: 18px;
  border-radius: 10px;
}

/* ================= BANNER SLIDER ================= */

.banner-section {
  padding: 20px 5%;
  background: #f5f5f5;
}

.banner-slider {
  position: relative;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  border-radius: 28px;
}

.banner-track {
  display: flex;
  transition: transform 0.7s ease-in-out;
}

.banner-slide {
  min-width: 100%;
}

.banner-slide img {
  width: 100%;
  display: block;
  border-radius: 28px;
}

/* ===== DOTS ===== */

.banner-dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.banner-dots span {
  width: 8px;
  height: 8px;
  background: #cfcfcf;
  border-radius: 50%;
  transition: 0.3s ease;
  cursor: pointer;
}

.banner-dots span.active {
  width: 22px;
  border-radius: 10px;
  background: #e53935;
}

/* ================= GUARANTEE ================= */

.guarantee-section {
  padding: 70px 5%;
  background: #f5f5f5;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.guarantee-box {
  padding: 30px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 6px;
}

/* soft background colors */
.g1 { background: #e8edf5; }
.g2 { background: #efe8f3; }
.g3 { background: #e9f2e8; }
.g4 { background: #f3f1de; }


/* ================= HOW IT WORKS ================= */

/* ================= HOW IT WORKS FIXED ================= */

.works-section {
  padding: 80px 5%;
  background: #f5f5f5;
}

.works-container {
  margin-top: 40px;
}

.work-row {
  display: grid;
  grid-template-columns: 70px 1fr 180px;
  align-items: center;
  margin-bottom: 50px;
}

/* Left number + line */
.work-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-box {
  width: 42px;
  height: 42px;
  background: #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
}

.vertical-line {
  width: 2px;
  height: 80px;
  background: #ddd;
  margin-top: 10px;
}

/* Content */
.work-content h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.work-content p {
  color: #666;
  font-size: 15px;
}

/* Image */
.work-image img {
  width: 130px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .work-row {
    grid-template-columns: 55px 1fr 80px;
    gap: 15px;
    margin-bottom: 35px;
  }
  
  .work-image img {
    width: 80px;
  }

  .step-box {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .vertical-line {
    height: 70px;
  }
}

@media (max-width: 480px) {
  .work-row {
    grid-template-columns: 45px 1fr 60px;
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .work-image img {
    width: 50px;
  }

  .step-box {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
  
  .vertical-line {
    height: 65px;
  }
}

/* ================= VIDEO SECTION ================= */

.video-section {
  padding: 20px 5%;
  background: #f5f5f5;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 50%; /* 16:9 Aspect Ratio */
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

/* ================= REVIEW SECTION ================= */

.review-section {
  padding: 100px 5% 40px;
  background: #f5f5f5;
}

/* ===== STATS ===== */

.review-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 60px;
  text-align: center;
}

.stat-item h3 {
  font-size: 28px;
  font-weight: 700;
}

.stat-item p {
  color: #777;
  font-size: 14px;
  margin-top: 6px;
}

/* ===== REVIEW SLIDER ===== */

.review-slider-wrapper {
  overflow: hidden;
  margin-top: 40px;
}

.review-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  min-width: 100%;
  box-sizing: border-box;
  padding: 4px 2px;
}

.review-card {
  background: #eaeaea;
  padding: 40px;
  position: relative;
}

.quote {
  font-size: 60px;
  color: #e53935;
  position: absolute;
  top: 10px;
  left: 20px;
  font-weight: bold;
}

.review-card h3 {
  margin-top: 14px;
  margin-bottom: 20px;
  font-size: 22px;
}

.review-card p {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

/* ===== USER INFO ===== */

.review-user {
  display: flex;
  align-items: center;
  margin-top: 30px;
  gap: 15px;
}

.user-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.twitter {
  background: #1da1f2;
}

.facebook {
  background: #1877f2;
}

.google {
  background: #ea4335;
}

.review-user span {
  display: block;
  font-size: 14px;
  color: #777;
}

/* Star rating */
.review-stars {
  font-size: 18px;
  color: #f5a623;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {

  .review-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .review-grid,
  .review-slide {
    grid-template-columns: 1fr;
  }

  .review-card h3 {
    margin-top: 20px;
  }

}

/* ===== DOTS ===== */

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.review-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
  display: inline-block;
}

.review-dots span.active {
  background: #e53935;
}

/* ================= SPARE PARTS SECTION ================= */

.spare-section {
   padding: 80px 5% 40px;
  background: #f5f5f5;
}

.section-sub {
  color: #777;
  margin-top: 10px;
}

/* ===== SLIDER ===== */

.spare-slider {
  position: relative;
  margin-top: 50px;
  display: flex;
  align-items: center;
  padding: 0 45px;
}

.spare-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.spare-track {
  display: flex;
  gap: 80px;
  align-items: center;
  animation: scrollLogos 12.5s linear infinite;
}

.spare-logo {
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spare-logo img {
  max-width: 120px;
  opacity: 0.9;
  transition: 0.3s ease;
}

.spare-logo img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Infinite scroll animation */
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== ARROWS ===== */

.spare-arrow {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  color: #444;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}

.spare-arrow:hover {
  background: #f0f0f0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.14);
  color: #111;
}

.spare-arrow.left {
  left: 0;
}

.spare-arrow.right {
  right: 0;
}

/* Pause animation on hover */
.spare-track-wrapper:hover .spare-track {
  animation-play-state: paused;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .spare-track {
    gap: 40px;
  }

  .spare-logo img {
    max-width: 90px;
  }

  .spare-arrow {
    display: none;
  }
}

/* ================= WHY SECTION ================= */

.why-section {
  padding: 40px 5% 100px;
  background: #f5f5f5;
}

.why-box {
  background: #eaeaea;
  padding: 40px;
  margin-top: 40px;
}

.why-box h4 {
  margin-top: 25px;
  font-size: 18px;
}

.why-box p {
  margin-top: 10px;
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}


/* ================= PRICE SECTION ================= */

.price-section {
  padding: 100px 5%;
  background: #f5f5f5;
}

.price-table-wrapper {
  margin-top: 40px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.price-table th,
.price-table td {
  border: 1px solid #ddd;
  padding: 18px;
  text-align: left;
}

.price-table th {
  background: #f2f2f2;
  font-weight: 600;
}

.price-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}

.see-more {
  text-decoration: none;
  font-weight: 600;
  color: #000;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .why-box {
    padding: 25px;
  }

  .price-table th,
  .price-table td {
    padding: 12px;
    font-size: 14px;
  }

  .price-footer {
    flex-direction: column;
    gap: 10px;
  }

}

/* ================= FOOTER ================= */

.footer {
  background: #052b3b;
  color: #fff;
  padding-top: 80px;
}

/* TOP GRID */
.footer-top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  padding: 0 5% 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-column h4 {
  font-size: 14px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #cbd5e1;
  cursor: pointer;
}

.footer-column ul li:hover {
  color: #fff;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 50px 5%;
  flex-wrap: wrap;
}

.footer-brand h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #cbd5e1;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icons a {
  display: inline-block;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.social-icons a:hover {
  opacity: 1;
}

.social-icons img {
  height: 20px;
  width: auto;
  object-fit: contain;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 22px;
  color: white;
  margin-bottom: 15px;
}

.footer-logo img {
  height: 25px;
  width: auto;
  margin-right: 8px;
}

.footer-icon {
  width: 16px;
  height: auto;
  margin-right: 8px;
  vertical-align: middle;
}

.footer-app-badges {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.app-btn {
  display: flex;
  align-items: center;
  background: #000;
  border: 1px solid #334155;
  border-radius: 6px;
  padding: 8px 16px;
  text-decoration: none;
  color: white;
  min-width: 170px;
  transition: background 0.3s, border-color 0.3s;
}

.app-btn:hover {
  background: #1e293b;
  border-color: #475569;
}

.app-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-right: 12px;
}

.app-btn-text {
  display: flex;
  flex-direction: column;
}

.app-btn-sub {
  font-size: 9px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.app-btn-main {
  font-size: 14px;
  font-weight: 600;
}

/* COPYRIGHT */
.footer-copy {
  text-align: center;
  padding: 20px;
  background: #041f2c;
  font-size: 13px;
  color: #cbd5e1;
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 30px;
  }

}

@media (max-width: 600px) {

  .footer-top {
    grid-template-columns: 1fr;
  }

}


.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  position: absolute; /* keep it over hero */
  width: 100%;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;      /* ✅ Control size here */
  width: auto;       /* ✅ Maintain aspect ratio */
  max-width: 180px;  /* ✅ Prevent overflow */
  object-fit: contain;
}

/* ================= CURATED CUSTOM SERVICES ================= */

.curated-section {
  padding: 40px 0 50px;
  background: #fff;
}

.curated-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  position: relative;
}

/* Scrollable track */
.curated-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 10px 10px;
  flex: 1;
}

.curated-container::-webkit-scrollbar {
  display: none;
}

/* Each item */
.curated-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.curated-item:hover {
  transform: translateY(-4px);
}

/* Circular image wrapper */
.curated-img-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s ease;
}

.curated-item:hover .curated-img-wrap {
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.curated-img-wrap img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

/* Badges */
.curated-badge {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.curated-badge.sale {
  background: #22a63e;
  color: #fff;
}

.curated-badge.new {
  background: #22a63e;
  color: #fff;
}

/* Label */
.curated-item p {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  text-align: center;
  margin: 0;
}

/* Arrow buttons */
.curated-arrow {
  background: #fff;
  border: 1.5px solid #ddd;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 2;
}

.curated-arrow:hover {
  background: #f0f0f0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.14);
}

/* ================= PAGE LOADER ================= */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 99999; /* ensure it is above everything, including navbar and SOS */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader-content {
  text-align: center;
}

.loader-content img {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
}

.loader-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin: 0;
}

.loader-wrapper.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* ================= INTERACTIVE CALL-TO-ACTION CURSORS & HOVERS ================= */
.available-card,
.curated-item,
.summer-card,
.banner-slide {
  cursor: pointer;
}

.banner-slide img {
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.banner-slide img:hover {
  opacity: 0.95;
}

/* ================= GALLERY SECTION ================= */
.gallery-section {
  padding: 80px 5%;
  background: #ffffff; /* Contrast with the grey sections */
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #eaeaea;
}

.gallery-item:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(229, 57, 53, 0.85); /* Red brand overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #fff;
  padding: 8px 18px;
  border-radius: 30px;
  transform: translateY(15px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* ================= LIGHTBOX MODAL ================= */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 100000; /* Over everything including loader and headers */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: zoom 0.3s ease;
}

.lightbox-caption {
  position: absolute;
  bottom: 50px;
  color: #ccc;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  width: 100%;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: #e53935; /* Close button red on hover */
  text-decoration: none;
}

@keyframes zoom {
  from {transform: scale(0.85); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}