/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #2f2f2f;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: #ffffffcc;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #357376;
}
.lang-toggle button {
  background: none;
  border: none;
  font-size: 1.2rem;
  margin-left: 0.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background-image: url('../images/hero.jpg');
  background-size:cover;        /* Ensures image covers all screen sizes */
  background-position: center;   /* Keeps the image centered */
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2rem;
  border-radius: 10px;
  max-width: 700px;
  width: 100%;
  box-sizing: border-box;
}


.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2f2f2f;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #023801;
}
.hero-buttons .btn {
  padding: 0.75rem 1.5rem;
  margin: 0 0.5rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn.primary {
  background-color: #357376;
  color: #fff;
}
.btn.secondary {
  border: 2px solid #357376;
  color: #357376;
  background-color: transparent;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* About Section */
.about {
  background-color: #f5f5f5;
  padding: 4rem 2rem;
}
.about-container {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  gap: 2rem;
}
.about-text {
  text-align: center;
}
.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #357376;
  margin-bottom: 1rem;
}
.about p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  max-width: 600px;
}
.about-image img {
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (min-width: 768px) {
  .about-container {
    flex-direction: row;
    text-align: left;
  }
  .about-text, .about-image {
    flex: 1;
  }
}
/* Services Section */
.services {
  background-color: #ddeedc;
  padding: 4rem 2rem;
  text-align: center;
}
.services-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #357376;
  margin-bottom: 0.5rem;
}
.services-header p {
  color: #444;
  margin-bottom: 2rem;
  font-size: 1rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.service-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, border 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border: 2px solid #357376;
}
.service-card img {
  width: 50px;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1rem;
  color: #333;
}
/* Therapist Section */
.therapist {
  background-color: #ffffff;
  padding: 4rem 2rem;
}
.therapist-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.therapist-image img {
  width: 250px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.therapist-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #357376;
  margin-bottom: 0.5rem;
}
.therapist-info h3 {
  font-size: 1.2rem;
  color: #2f2f2f;
  margin-bottom: 1rem;
}
.therapist-info p {
  max-width: 600px;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (min-width: 768px) {
  .therapist-container {
    flex-direction: row;
    text-align: left;
  }
  .therapist-image, .therapist-info {
    flex: 1;
  }
}
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: #357376;
  color: #fff;
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn.primary:hover {
  background-color: #285c5e;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
@media (max-width: 480px) {
  .btn {
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
  }
}
/* Insurance Section */
.insurance {
  background-color: #fff7e5;
  padding: 4rem 2rem;
  text-align: center;
}

.insurance-container {
  max-width: 1000px;
  margin: 0 auto;
}

.insurance h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #357376;
  margin-bottom: 2rem;
}

/* Grid for insurance & payment options */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.insurance-item {
  background: #ffffff; /* White */
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #d6d6d6; /* Light grey border */
}

.insurance-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 128, 128, 0.15); /* Emerald glow */
}

.insurance-item img {
  width: 40px;
  margin-bottom: 1rem;
}

.insurance-item p {
  color: #1c1c1c; /* Deep grey-black */
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.insurance-list,
.payment-list {       
  padding-left: 1rem;             /* Keeps bullets inside container neatly */
  margin: 0;
  color: #2e2e2e;                 /* Matches existing dark grey text */
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: bold;              /* Makes list items bold */
  text-align: left;               /* Ensures list content aligns left */
}
.insurance-list li,
.payment-list li {
  margin-bottom: 0.3rem;          /* Gives space between each bullet item */
}
.payment-note {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.8rem;
  line-height: 1.5;
}

.payment-note a {
  color: #007070;
  text-decoration: underline;
}

.payment-note a:hover {
  color: #004d4d;
}


.insurance-note {
  font-style: italic;
  color: #357376; /* Teal/emerald accent */
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}
.paypal-outer {
  /* Option A: HTML align attribute equivalent */
  text-align: center; 

  /* Option B: Flexbox centering (optional, if text-align doesn't center it) */
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

#paypal-container-HLB5TBQ927JWQ {
  /* Prevent PayPal’s default max-width overflow */
  width: 100%;
  max-width: 750px; /* PayPal’s internal maximum */
}

/* Target the iframe inside the container to ensure it centers within the wrapper */
#paypal-container-HLB5TBQ927JWQ iframe {
  display: inline-block;
  max-width: 100%;
  height: auto !important;
  margin: 0 auto;
}
#paypal-container-HLB5TBQ927JWQ {
  margin-left: 10px;
}


/*  FAQ Modal */
.faq-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.faq-modal.hidden {
  display: none;
}
.faq-modal-content {
  background: white;
  padding: 2rem;
  width: 90%;
  max-width: 600px;
  border-radius: 12px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}
.faq-modal-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #357376;
}
.faq-item {
  margin-bottom: 1.2rem;
}
.faq-item strong {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Floating FAQ Button */
.floating-faq {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background-color: #357376;
  color: white;
  font-size: 20px;
  padding: 10px 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 998;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}
.floating-faq:hover {
  transform: scale(1.1);


}.contact-enhanced {
  background-color: #ddeedc;
  padding: 4rem 2rem;
}
.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #357376;
  margin-bottom: 0.5rem;
}

.contact-text p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.contact-details p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.contact-details a {
  color: #357376;
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-form button {
  align-self: flex-start;
}

/* Responsive */
@media (min-width: 768px) {
  .contact-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .contact-text, .contact-form {
    flex: 1;
  }
  .contact-text {
    margin-right: 2rem;
  }
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  color: #333;
  flex-wrap: wrap;
}

.contact-row img {
  width: 20px;
  height: 20px;
  filter: grayscale(100%) brightness(0.5);
}

.whatsapp-btn {
  background-color: #25D366;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  margin-left: 0.5rem;
  transition: background 0.3s ease;
}
.whatsapp-btn:hover {
  background-color: #1ebe5d;
}

/* Telehealth Section */
.telehealth {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
}
.telehealth-container {
  max-width: 1000px;
  margin: 0 auto;
}
.telehealth h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #357376;
  margin-bottom: 0.5rem;
}
.telehealth p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 2rem;
}
.telehealth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.telehealth-card {
  background: #357376;
  padding: 2rem;
  border-radius: 10px;
  text-decoration: none;
  color: #fffefe;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.telehealth-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.telehealth-card img {
  width: 48px;
  margin-bottom: 1rem;
}
.telehealth-card h3 {
  font-size: 1.1rem;
}
/* Footer */
.site-footer {
  background-color: #1e1e2f;
  color: #ccc;
  padding: 3rem 2rem;
  font-size: 0.9rem;
}
.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
.footer-brand h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-extras {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.social-icons img {
  width: 24px;
  margin: 0 0.5rem;
  filter: brightness(0.9);
  transition: filter 0.2s;
}
.social-icons img:hover {
  filter: brightness(1.2);
}
.language-toggle button {
  background:none;
  border:none;
  font-size: 1.2rem;
  cursor: pointer;
  margin: 0 0.3rem;
  text-emphasis-color: white;
}
.language-toggle button:hover {
  opacity: 0.8;
}

/* Responsive */
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left;
  }
  .footer-extras {
    align-items: flex-end;
  }
}
/* 🌙 Dark Mode Styles */
.dark-mode {
  background-color: #121212;
  color: #e0e0e0;
}

.dark-mode header,
.dark-mode section,
.dark-mode footer {
  background-color: #1e1e1e;
  color: #e0e0e0;
}

.dark-mode .btn.primary {
  background-color: #357376;
  color: #fff;
}

.dark-mode .btn.primary:hover {
  background-color: #4b8a8b;
}

.dark-mode a {
  color: #a8dadc;
}

.dark-mode .faq-question {
  background-color: #2a2a2a;
  color: #fff;
}

.dark-mode .faq-answer {
  color: #ccc;
}

.dark-mode-toggle {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.2rem;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}.floating-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #0077cc; /* Deep blue */
  color: #fff;
  font-weight: bold;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  font-size: 15px;
  z-index: 999;
  transition: background-color 0.3s ease;
}

.floating-call:hover {
  background-color: #005fa3;
}


html {
  scroll-behavior: smooth;
}
.hidden {
  display: none;
}

.faq-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.faq-modal-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.footer-bottom {
  text-align: center;
  font-size: 0.875rem;
  margin-top: 1.5rem;
  color: #ccc;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.footer-bottom strong {
  color: #fff;
}
.form-status-bubble {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #357376;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  animation: fadeInOut 4s ease-in-out;
  z-index: 1000;
  font-size: 1rem;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(20px); }
  10% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(20px); }
}
@media (max-width: 600px) {
  .hero {
    min-height: 80vh;
    padding-top: 3rem;
  }
}
