
/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #333;
  background: #f9f9f9;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.site-header {
  background: linear-gradient(90deg, #0077b6, #00bfa5);
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.main-nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #d0f0f0;
}

.call-btn {
  background: #fff;
  color: #00796b;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.call-btn:hover {
  background: #f1f1f1;
}

/* Mobile CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #00bfa5;
  text-align: center;
  padding: 12px 0;
  z-index: 9999;
}

.mobile-cta a {
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to bottom right, #e0f7fa, #f9f9f9);
}

.hero h2 {
  font-size: 2.4rem;
  color: #00796b;
  margin-bottom: 15px;
}

.hero p {
  max-width: 700px;
  margin: 10px auto;
  font-size: 1.1rem;
  color: #444;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  background: #0077b6;
  color: #fff;
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: #009688;
}

.disclaimer {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #666;
}

/* Why Choose */
.why-choose {
  background: #e6f5f3;
  text-align: center;
  padding: 60px 20px;
}

.why-choose h2 {
  color: #00695c;
  font-size: 2rem;
  margin-bottom: 20px;
}

.why-choose ul {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.why-choose li {
  padding: 8px 0;
  font-size: 1.1rem;
}

/* Features */
.features {
  background: #fff;
  padding: 60px 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feature-box {
  background: #e0f7fa;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
}

/* Offer Banner */
.offer-banner {
  background: #0077b6;
  color: #fff;
  text-align: center;
  padding: 10px;
  overflow: hidden;
  white-space: nowrap;
  font-weight: bold;
}

/* About */
.about {
  background: #f0fbfa;
  text-align: center;
  padding: 60px 20px;
}

.about h2 {
  color: #00695c;
  font-size: 2rem;
  margin-bottom: 15px;
}

/* Reviews */
.reviews {
  text-align: center;
  padding: 60px 20px;
}

.review-slides {
  position: relative;
  height: 120px;
}

.review {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: opacity 0.5s;
}

.review.active {
  opacity: 1;
}

.stars {
  color: gold;
  font-size: 1.2rem;
}

/* FAQ */
.faq {
  background: #eef6f6;
  padding: 60px 20px;
}

.faq details {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Contact */
.contact {
  background: #fff;
  padding: 60px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.map {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 8px;
}

.contact-form h3 {
  color: #00796b;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  background: #0077b6;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #00bfa5;
}

/* Affiliate */
.affiliate {
  background: #e9f9f8;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  background: #004d40;
  color: #fff;
  text-align: center;
  padding: 40px 20px 60px;
}

.footer-call {
  display: inline-block;
  background: #00bfa5;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-links {
  margin: 10px 0;
}

.footer-links a {
  color: #aef1e6;
  margin: 0 10px;
  text-decoration: underline;
}

.footer-links a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-cta {
    display: block;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero h2 {
    font-size: 1.8rem;
  }
}
/* =========================
   FAST SETUP - CONTACT & DISCLAIMER CSS
   ========================= */

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
}

/* Container Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* -------------------------
   CONTACT SECTION
-------------------------- */
#contact {
  background-color: #fff;
  padding: 80px 0;
}

#contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

#contact iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
#contact form {
  background-color: #f8f9fb;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#contact h3 {
  font-size: 28px;
  color: #0073e6;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: left;
}

#contact input,
#contact textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  background-color: #fff;
  transition: border 0.3s ease;
}

#contact input:focus,
#contact textarea:focus {
  border-color: #00a67e;
  outline: none;
}

#contact textarea {
  resize: none;
  min-height: 120px;
}

/* Submit Button */
#contact button {
  background-color: #00a67e;
  color: #fff;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#contact button:hover {
  background-color: #008a69;
  transform: translateY(-2px);
}

/* -------------------------
   AFFILIATE DISCLAIMER
-------------------------- */
section.bg-gray-50 {
  background-color: #f4f8fb;
  padding: 40px 0;
  text-align: center;
}

section.bg-gray-50 p {
  color: #555;
  font-size: 15px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

section.bg-gray-50 strong {
  color: #0073e6;
}

/* -------------------------
   RESPONSIVENESS
-------------------------- */

/* Tablet */
@media (max-width: 992px) {
  #contact .container {
    grid-template-columns: 1fr;
  }

  #contact iframe {
    height: 320px;
  }

  #contact form {
    padding: 24px;
  }

  #contact h3 {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  #contact {
    padding: 60px 0;
  }

  #contact button {
    width: 100%;
  }

  section.bg-gray-50 p {
    padding: 0 10px;
  }
}