/* SECTION 1 — Dual Service */
.dual-service-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #1b263b;
  color: #ffffff;
  padding: 4rem 2rem;
  gap: 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.full-row {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}
.service-box {
  background-color: #0d1b2a;
  border-radius: 10px;
  padding: 2rem;
  flex: 1 1 400px;
  max-width: 500px;
  box-shadow: 0 0 15px rgba(0, 180, 216, 0.2);
  text-align: center;
}

.service-box h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.service-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #003f66;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0096c7;
}

/* Mobile */
@media (max-width: 768px) {
  .dual-service-section {
    flex-direction: column;
    align-items: center;
  }
}

/* SECTION 2 — Support Options */
.support-options {
  background-color: #0d1b2a;
  color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.support-options h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.support-options .intro-text,
.support-options .brand-note {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  color: #ffffff;
}

.support-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.support-card {
  background-color: #1b263b;
  border-radius: 10px;
  padding: 2rem;
  flex: 1 1 280px;
  max-width: 320px;
  box-shadow: 0 0 12px rgba(0, 180, 216, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(0, 180, 216, 0.3);
}

.support-card i {
  font-size: 2.5rem;
  color: #00b4d8;
  margin-bottom: 1rem;
}

.support-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.support-card p {
  font-size: 1rem;
  color: #ffffff;
}

@media (max-width: 768px) {
  .support-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* SECTION 3 — Results */
.results-section {
  background-color: #1b263b;
  color: #ffffff;
  padding: 4rem 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.results-section h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.results-section .intro-text {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  color: #ffffff;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.stat-card {
  background-color: #0d1b2a;
  border-radius: 10px;
  padding: 2rem;
  flex: 1 1 200px;
  max-width: 240px;
  box-shadow: 0 0 12px rgba(0, 180, 216, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(0, 180, 216, 0.4);
}

.stat-card h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #00b4d8;
}

.stat-card p {
  font-size: 1rem;
  color: #ffffff;
}

@media (max-width: 768px) {
  .stats-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* SECTION 4 — Difference */
.difference-section {
  background-color: #0d1b2a;
  color: #ffffff;
  padding: 4rem 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.difference-section h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 2rem;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.difference-item {
  background-color: #1b263b;
  padding: 1.75rem;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 180, 216, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.difference-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(0, 180, 216, 0.3);
}

.difference-item h3 {
  font-size: 1.3rem;
  color: #00b4d8;
  margin-bottom: 0.75rem;
}

.difference-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
}
.section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}

/* SECTION 5 — Satisfaction */
.satisfaction-section {
  background-color: #1b263b;
  color: #ffffff;
  padding: 4rem 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.satisfaction-section h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.satisfaction-section p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  color: #ffffff;
}
/* Local Service Footer */
.local-service-footer {
  background-color: #0d1b2a;
  color: #ffffff;
  text-align: center;
  padding: 3rem 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.local-service-footer h3 {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
}

.local-service-footer strong {
  color: #00b4d8;
}

@media (max-width: 768px) {
  .local-service-footer h3 {
    font-size: 1.15rem;
  }
}
/* Floating Contact Button */
.floating-contact {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
}

.contact-main-btn {
  background-color: #00b4d8;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(0, 180, 216, 0.3);
  transition: transform 0.3s ease;
}

.contact-main-btn:hover {
  transform: scale(1.1);
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: absolute;
  bottom: 70px;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.contact-option {
  background-color: #1b263b;
  color: #ffffff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 0 10px rgba(0, 180, 216, 0.2);
  white-space: nowrap;
}

.contact-option:hover {
  background-color: #0096c7;
}

/* Active state */
.floating-contact.active .contact-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}