.offer-section {
  background: linear-gradient(180deg, #eef9f8, #e6f4f3);
  padding: 90px 20px;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.offer-header {
  text-align: center;
  margin-bottom: 60px;
}

.offer-header h2 {
  font-size: 40px;
  color: #0b5c5d;
}

.offer-header p {
  color: #4f7f80;
  font-size: 18px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media(max-width: 1024px){
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 640px){
  .offer-grid { grid-template-columns: 1fr; }
}

.offer-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px 32px;
  position: relative;
  border: 2px solid rgba(11,92,93,0.18); /* DARK BORDER */
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  overflow: hidden;
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  border: 2px solid transparent;
  background: linear-gradient(120deg, #0b5c5d, transparent, #0b5c5d) border-box;
  -webkit-mask: 
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

.offer-card:hover::after {
  opacity: 1;
}

.offer-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 65px rgba(0,0,0,0.15);
}

.icon {
  font-size: 36px;
  margin-bottom: 18px;
}

.offer-card h3 {
  font-size: 20px;
  color: #0b5c5d;
  margin-bottom: 10px;
}

.offer-card p {
  font-size: 15px;
  color: #6b8f90;
  line-height: 1.6;
}



.why-choose {
  background: #eef9f8;
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.why-left {
  flex: 1;
  animation: fadeLeft 1s ease forwards;
}

.why-left h2 {
  font-size: 38px;
  color: #0b5c5d;
  margin-bottom: 20px;
}

.why-left p {
  font-size: 17px;
  color: #4f7f80;
  line-height: 1.8;
}

.why-divider {
  width: 3px;
  height: 260px;
  background: linear-gradient(to bottom, transparent, #0b5c5d, transparent);
  animation: growLine 1.2s ease forwards;
}

.why-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeRight 1s ease forwards;
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-point span {
  color: #0b5c5d;
  font-size: 18px;
  margin-top: 3px;
}

.why-point p {
  color: #6b8f90;
  font-size: 16px;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes growLine {
  from { height: 0; }
  to { height: 260px; }
}

/* Responsive */
@media(max-width: 900px){
  .why-container {
    flex-direction: column;
    text-align: center;
  }

  .why-divider {
    width: 60px;
    height: 3px;
  }

  .why-right {
    align-items: center;
  }

  .why-point {
    justify-content: center;
  }
}



.testimonials {
  background: linear-gradient(180deg, #e6f4f3, #eef9f8);
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
}

.testimonial-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.testimonial-left {
  flex: 1;
  animation: fadeLeft 1s ease forwards;
}

.testimonial-left h2 {
  font-size: 38px;
  color: #0b5c5d;
  margin-bottom: 18px;
}

.testimonial-left p {
  font-size: 17px;
  color: #4f7f80;
  line-height: 1.8;
}

.testimonial-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.testimonial-item {
  position: relative;
  padding-left: 40px;
  animation: fadeUp 1s ease forwards;
}

.testimonial-item:hover {
  transform: translateX(8px);
  transition: 0.4s;
}

.quote {
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 64px;
  color: rgba(11,92,93,0.2);
  line-height: 1;
}

.testimonial-item p {
  font-size: 16px;
  color: #6b8f90;
  line-height: 1.8;
}

.testimonial-item h4 {
  margin-top: 10px;
  font-size: 15px;
  color: #0b5c5d;
  font-weight: 500;
}

/* Animations */
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media(max-width: 900px){
  .testimonial-container {
    flex-direction: column;
    gap: 50px;
  }

  .testimonial-item {
    padding-left: 30px;
  }
}



/* ===== FOOTER BASE FIX ===== */
footer {
  position: relative;
  background-color: #0b5c5d; /* fallback */
  color: #ffffff;
}

/* Dark overlay to balance background image */
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 92, 93, 0.85); /* dark overlay */
  z-index: 0;
}

/* Bring content above overlay */
footer * {
  position: relative;
  z-index: 1;
}

/* ===== TEXT CLARITY ===== */
footer p,
footer li,
footer a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.7;
}

/* Headings */
footer h3 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Links hover */
footer a:hover {
  color: #f9c846; /* citrus yellow */
}

/* Logo visibility */
footer img {
  filter: brightness(1.2);
}

/* Contact icons spacing fix */
footer .contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* ===== COPYRIGHT ===== */
footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
  footer {
    text-align: center;
  }

  footer .grid {
    gap: 40px;
  }
}
