/* Base Reset & Layout */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background-color: #fff;          /* ALWAYS WHITE */
  color: #111;                     /* Black text by default */
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

/* -------------------------------------------------
   Theme variables – now both modes use white bg
   ------------------------------------------------- */
:root {
  --bg-color: #fff;               /* Light mode background */
  --text-color: #111;             /* Light mode text */
  --accent-color: #3fa170;        /* Accent green */
  --card-bg: #ffffff;             /* Card background */
}

body.dark-mode {
  --bg-color: #fff;               /* Dark mode background – still white */
  --text-color: #111;             /* Dark mode text – black */
  --card-bg: #f9f9f9;             /* Slightly off-white cards in dark mode */
  background-color: var(--bg-color);
  color: var(--text-color);
}

/* -------------------------------------------------
   Typography
   ------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #3fa170;
  margin-bottom: 1rem;
}

a {
  color: #3fa170;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #3a8c5e;
}

/* -------------------------------------------------
   Layout utilities
   ------------------------------------------------- */
.container {
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: 0;
}

/* -------------------------------------------------
   Header
   ------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  z-index: 1000;
}

.hamburger-icon {
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;                     /* Black icon */
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  margin-top: -32px;
  margin-right: -1.0rem;
}

.logo-img {
  height: 130px;
  filter: drop-shadow(0 0 5px #3fa170);
  margin-left: -1.8rem;
  margin-top: -1.5rem
}

/* -------------------------------------------------
   Hamburger Menu
   ------------------------------------------------- */

/* Hamburger Menu – Enhanced */
.hamburger-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background-color: #fff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 6rem 1.5rem 2rem;
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  font-family: 'Inter', sans-serif;
}

.hamburger-menu.open {
  right: 0;
}

.menu-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-nav li {
  width: 100%;
}

.menu-nav a {
  display: block;
  padding: 0.9rem 1.2rem;
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
}

.menu-nav a:hover {
  background-color: #f0f8f4;
  color: #3fa170;
  padding-left: 1.5rem;
}

/* Group Titles */
.menu-group-title {
  font-weight: 600;
  color: #3fa170 !important;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 1rem 1.2rem 0.5rem;
  margin-top: 1.5rem;
  border-bottom: 1px solid #e0f2e9;
  pointer-events: none;
}

.menu-group-title:first-child {
  margin-top: 0;
}

/* Legal Section – Subtle Separator */
.legal-title {
  margin-top: 2.5rem !important;
  border-top: 1px dashed #ccc;
  padding-top: 1.5rem !important;
  color: #888 !important;
}

.legal-title + li a {
  font-size: 0.95rem;
  color: #666;
}

.legal-title + li a:hover {
  color: #3fa170;
  background-color: #f9f9f9;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.8rem;
  color: #3fa170;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.close-btn:hover {
  background-color: #f0f8f4;
}
/* -------------------------------------------------
   Hero Section
   ------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #111;                     /* Black text on white */
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

/* -------------------------------------------------
   CTA Button
   ------------------------------------------------- */
.cta-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #3fa170;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #3a8c5e;
}

/* -------------------------------------------------
   Section Titles
   ------------------------------------------------- */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #3fa170;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #555;
}

/* -------------------------------------------------
   Testimonials
   ------------------------------------------------- */
#testimonials {
  background-color: #fff;
  padding: 5rem 0;
  color: #111;
  text-align: center;
}

body.dark-mode #testimonials {
  background-color: #fff;
  color: #111;
}

.testimonial-header h2 {
  font-size: 2.5rem;
  color: #3fa170;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

.testimonial-header p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.testimonial-swiper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  cursor: grab;
}

@media (max-width: 768px) { .testimonial-slide { height: 80vh; } }

.testimonial-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
  z-index: 1;
}

.testimonial-overlay {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.6);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem;
  max-width: 80%;
  color: #fff;
  text-align: center;
}

.testimonial-overlay h3 { font-size: 1.5rem; color: #3fa170; margin-bottom: 0.3rem; }
.member-role { font-size: 0.95rem; color: #aaa; font-style: italic; margin-bottom: 1rem; display: block; }
.testimonial-overlay p { font-size: 1rem; line-height: 1.6; color: #ddd; }

/* Swiper pagination */
.swiper-pagination-bullet { background: #3fa170; }

/* New All Services Section */
.services-section {
  margin-top: 2rem;  /* Your requested spacing after Hero */
  padding: 4rem 2rem;
  text-align: center;
}

.category-header {
  margin: 4rem 0 2rem 0;
  padding: 1rem 0;
}

.category-header h3 {
  font-size: 2rem;
  color: #3fa170;
  font-family: 'Playfair Display', serif;
  border-bottom: 2px solid #3fa170;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #3fa170;
  box-shadow: 0 0 10px rgba(63, 161, 112, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
}

body.dark-mode .service-card {
  background-color: #f9f9f9;
  box-shadow: 0 0 10px rgba(63, 161, 112, 0.2);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(63, 161, 112, 0.2);
}

.service-card h4 {
  font-size: 1.3rem;
  color: #3fa170;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.service-card .price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111;
  margin-bottom: 1rem;
}

.service-card p {
  color: #444;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.quote-card .price {
  color: #3fa170;
  font-style: italic;
}

.cta-btn.small {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.cta-btn.large {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .category-header h3 {
    font-size: 1.5rem;
  }
  
  .services-section {
    padding: 2rem 1rem;
  }
}

/* -------------------------------------------------
   Modal (testimonial detail)
   ------------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(63,161,112,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  color: #111;
}

.modal-content img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.modal-text h3 { font-size: 1.5rem; color: #3fa170; margin-bottom: 0.3rem; }
.modal-text span { font-size: 0.95rem; color: #666; font-style: italic; margin-bottom: 1rem; display: block; }
.modal-text p { font-size: 1rem; line-height: 1.6; color: #444; }

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: #3fa170;
  cursor: pointer;
}

/* Partnership Section */
#partnership {
  background-color: #fff;
  padding: 5rem 2rem;
  text-align: center;
  color: #111;
}

.partnership-container {
  max-width: 800px;
  margin: 0 auto;
}

.partnership-header h2 {
  font-size: 2.5rem;
  color: #3fa170;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.partnership-intro {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.partnership-description {
  text-align: left;
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #3fa170;
  margin: 2rem 0;
}

.partnership-description p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.partnership-benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.partnership-benefits li {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.partnership-benefits li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 8px;
  height: 8px;
  background: #3fa170;
  border-radius: 50%;
}

/* Showcase Section */
.showcase-section {
  background-color: #fff;
  padding: 5rem 2rem;
  color: #111;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(63, 161, 112, 0.2);
}

.showcase-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-overlay {
  transform: translateY(0);
}

.showcase-overlay h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.showcase-overlay p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #ddd;
}

.view-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #3fa170;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.view-btn:hover {
  background-color: #3a8c5e;
}

/* Responsive */
@media (max-width: 768px) {
  #partnership, .showcase-section {
    padding: 3rem 1rem;
  }
  
  .partnership-description {
    text-align: center;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* -------------------------------------------------
   Footer – Modern & Professional
   ------------------------------------------------- */
.site-footer {
  background-color: #ffffff;
  padding: 4rem 5% 2rem;
  color: #444;
  font-family: 'Inter', sans-serif;
  border-top: 1px solid #e0e0e0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* Top Section: Contact + Social */
.footer-top {
  display: flex;
  justify-content: center;
  gap: 4rem;
  width: 100%;
  flex-wrap: wrap;
}

.footer-contact,
.footer-social {
  text-align: center;
}

.contact-title,
.social-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #3fa170;
  margin-bottom: 0.8rem;
  font-family: 'Playfair Display', serif;
}

.footer-contact p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.contact-link {
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-link:hover {
  color: #3fa170;
}

.whatsapp-link i {
  color: #25D366;
  font-size: 1.1rem;
}

.whatsapp-link:hover i {
  color: #128C7E;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f0f0f0;
  color: #555;
  font-size: 1.1rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon.whatsapp {
  background-color: #25D366;
  color: white;
}

.social-icon.whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
}

.social-icon:not(.whatsapp):hover {
  background-color: #3fa170;
  color: white;
  transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #3fa170;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  width: 100%;
  padding-top: 1.5rem;
  border-top: 1px solid #eaeaea;
}

.tagline {
  font-size: 1rem;
  color: #3fa170;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.copyright {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    gap: 2rem;
    flex-direction: column;
    align-items: center;
  }

  .site-footer {
    padding: 3rem 5% 1.5rem;
  }

  .footer-links {
    gap: 1.5rem;
  }

  .tagline {
    font-size: 0.95rem;
  }
}
/* Document Links in Footer */
.document-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 400px;
}

.doc-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #444;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed #ccc;
  transition: all 0.3s ease;
}

.doc-link:hover {
  color: #3fa170;
  border-bottom-color: #3fa170;
}

.doc-link i {
  color: #3fa170;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.doc-caption {
  font-weight: 500;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .document-links {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .doc-link {
    font-size: 0.85rem;
  }
}

/* -------------------------------------------------
   Animations
   ------------------------------------------------- */
.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.animate.in-view { opacity: 1; transform: translateY(0); }

.fade-in-up { animation: fadeInUp 1s ease forwards; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}