.benefits-section {
  padding: 80px 0;
  background: #f9f9f9;
  text-align: center;
}

.section-header p {
  color: #666;
  margin-bottom: 50px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.benefit-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Hover Glow */
.benefit-card::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(200, 155, 60, 0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transition: 0.5s;
  transform: translate(-50%, -50%);
}

.benefit-card:hover::before {
  width: 300%;
  height: 300%;
}

/* Icon */
.icon {
  font-size: 36px;
  margin-bottom: 15px;
  transition: 0.3s;
}

/* Title */
.benefit-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Text */
.benefit-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Hover Effects */
.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover .icon {
  transform: scale(1.2) rotate(5deg);
}

/* Fade-in Animation */
.benefit-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s forwards;
}

.benefit-card:nth-child(1) {
  animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
  animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
  animation-delay: 0.3s;
}

.benefit-card:nth-child(4) {
  animation-delay: 0.4s;
}

.benefit-card:nth-child(5) {
  animation-delay: 0.5s;
}

.benefit-card:nth-child(6) {
  animation-delay: 0.6s;
}

.benefit-card:nth-child(7) {
  animation-delay: 0.7s;
}

.benefit-card:nth-child(8) {
  animation-delay: 0.8s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }
}

.marquee-section {
  background: #111;
  padding: 30px 0;
  overflow: hidden;
}

.marquee-wrapper {
  position: relative;
  width: 100%;
  /* overflow: hidden; */
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex: 0 0 auto;
  color: #fff;
  font-weight: 600;
  font-size: 27px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.marquee-item span {
  color: #d4af37;
  font-size: 18px;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .marquee-item {
    font-size: 30px;
    padding: 0 18px;
  }
}

@media (max-width: 576px) {
  .marquee-section {
    padding: 20px 0;
  }

  .marquee-item {
    font-size: 25px;
    padding: 0 14px;
    gap: 8px;
  }

  .marquee-item span {
    font-size: 18px;
  }
}


/* Locations */
.location-advantage-section {
  background: #f8f8f8;
}

.location-content {
  padding-right: 20px;
}

.section-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.location-points {
  margin-top: 25px;
}

.location-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.location-point span {
  width: 30px;
  line-height: 1;
}

.location-point p {
  margin: 0;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.location-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-info-card,
.location-map-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.location-info-card h4 {
  font-size: 30px;
  width: max-content;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 5px;
  color: #DDBB62;
  border-bottom: 2px solid #57799C;
}

.location-info-card ul {
  list-style: none;
  padding-left: 0;
}

.location-info-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 16px;
}

.location-info-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c89b3c;
}

.location-map-card iframe {
  border-radius: 14px;
  width: 100%;
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .section-title {
    font-size: 32px;
  }

  .location-content {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .location-advantage-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-text {
    font-size: 15px;
  }

  .location-point {
    padding: 12px 14px;
  }

  .location-info-card,
  .location-map-card {
    padding: 18px;
  }

  .location-info-card h4 {
    font-size: 20px;
  }
}


.faq-header {
  display: block;
  font-weight: 600;
  padding: 15px;
  background: #f8f8f8;
  border-radius: 8px;
  transition: 0.3s;
}

.faq-header:hover {
  background: #eee;
}

.faq-body {
  padding: 15px;
  color: #555;
}