@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
  --green-dark: #1a3c2a;
  --green-mid: #2d6a4f;
  --green-main: #40916c;
  --green-light: #74c69d;
  --green-lighter: #b7e4c7;
  --green-pale: #d8f3dc;
  --green-faint: #f0faf3;
  --lime: #a7c957;
  --gold: #c9a84c;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  color: #2d3436;
  overflow-x: hidden;
  font-size: 18px;  /* Changed from 16px */
  line-height: 1.65; /* Slightly increased for better readability */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

/* ── Navbar ── */
.navbar-custom {
  transition: all 0.3s;
  padding: 1rem 0;
}
.navbar-custom.scrolled {
  background: rgba(255,255,255,0.98) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.5rem 0;
}
.navbar-custom .nav-link {
  color: rgba(255,255,255,0.95) !important;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s;
  position: relative;
  padding-bottom: 0.5rem;
}
/* Golden underline hover effect */
.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.navbar-custom .nav-link:hover::after {
  width: 70%;
}
.navbar-custom.scrolled .nav-link {
  color: #2d3436 !important;
}
.navbar-custom .nav-link:hover,
.navbar-custom.scrolled .nav-link:hover {
  color: var(--gold) !important;
}
.navbar-brand-text {
  color: #fff;
  transition: color 0.3s;
  font-size: 1.6rem;
}
.navbar-custom.scrolled .navbar-brand-text {
  color: #2d3436;
}
.navbar-custom.scrolled .brand-sub {
  color: #636e72 !important;
}
.brand-sub { 
  color: rgba(255,255,255,0.7); 
  transition: color 0.3s;
  font-size: 0.75rem;
}
.btn-cta {
  background: var(--green-main);
  color: #fff !important;
  border-radius: 8px;
  padding: 0.6rem 1.8rem;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: all 0.3s;
}
.btn-cta:hover { 
  background: var(--green-dark); 
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-custom .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}
.navbar-custom.scrolled .navbar-toggler-icon {
  filter: none;
}
.logo-placeholder {
  width: 45px; height: 45px;
  background: var(--green-main);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem;
}

/* ── Hero ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,60,42,0.82) 0%, rgba(45,106,79,0.75) 50%, rgba(26,60,42,0.88) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-content h1 { 
  font-size: 5rem; 
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}
.hero-content .motto-am { 
  font-style: italic; 
  opacity: 0.95;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.8rem; }
  .hero-content .motto-am { font-size: 1.4rem; }
}
.btn-hero-primary {
  background: #fff; 
  color: var(--green-dark);
  padding: 1rem 2rem; 
  border-radius: 8px;
  font-weight: 600; 
  font-size: 1.1rem;
  border: none; 
  transition: all 0.3s;
}
.btn-hero-primary:hover { 
  background: var(--green-pale); 
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  color: var(--green-dark); 
}
.btn-hero-outline {
  border: 2px solid #fff; 
  color: #fff;
  padding: 1rem 2.2rem; 
  border-radius: 8px;
  font-weight: 600; 
  font-size: 1.1rem;
  background: transparent; 
  transition: all 0.3s;
}
.btn-hero-outline:hover { 
  background: rgba(255,255,255,0.15); 
  transform: translateY(-3px);
  color: #fff; 
}
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); font-size: 1.8rem;
  animation: bounce-down 2s infinite;
  cursor: pointer;
  transition: color 0.3s;
}
.scroll-indicator:hover { color: var(--gold); }
@keyframes bounce-down {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ── Section styles ── */
.section-padding { padding: 5rem 0; }
@media (max-width: 768px) { .section-padding { padding: 3.5rem 0; } }
.section-label {
  color: var(--green-main);
  font-weight: 600; 
  font-size: 0.85rem;
  letter-spacing: 0.2em; 
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;  /* Changed from 2.5rem */
  font-weight: 700;
  color: #2d3436; 
  margin-bottom: 1rem;
}


@media (max-width: 768px) { .section-title { font-size: 2.2rem; } }

.section-subtitle {
  color: #636e72; 
  max-width: 600px;
  margin: 0 auto 2rem; 
  font-size: 1.2rem;  /* Changed from 1.05rem */
  line-height: 1.6;
}


.bg-green-faint { background: var(--green-faint); }

/* ── About cards ── */
.about-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid #e8e8e8;
  transition: all 0.3s;
  height: 100%;
}
.about-card:hover { 
  box-shadow: 0 12px 30px rgba(0,0,0,0.08); 
  transform: translateY(-5px);
}
.about-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--green-main); font-size: 1.6rem;
}
.about-card h4 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.about-card p, .about-card ul { color: #636e72; font-size: 1rem; line-height: 1.7; }
.about-card ul { list-style: none; padding: 0; }
.about-card ul li::before { content: "✔ "; color: var(--green-main); font-weight: bold; }

/* ── Services cards ── */
.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  transition: all 0.3s;
  height: 100%;
}
.service-card:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.service-card img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: transform 0.3s;
}
.service-card:hover img { transform: scale(1.05); }
.service-card .card-body { padding: 1.5rem; }
.service-card h5 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.35rem; margin-bottom: 0.75rem; }
.service-card p { color: #636e72; font-size: 0.95rem; line-height: 1.6; }
.service-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.75rem; font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 0.85rem;
}

/* ── Goals ── */
.goal-item { text-align: center; padding: 0.5rem; }
.goal-icon {
  width: 75px; height: 75px;
  border-radius: 20px;
  background: rgba(64,145,108,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--green-main); font-size: 2rem;
  transition: all 0.3s;
}
.goal-item:hover .goal-icon {
  background: var(--green-main);
  color: #fff;
  transform: scale(1.05);
}
.goal-item h5 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; }
.goal-item p { color: #636e72; font-size: 0.95rem; line-height: 1.5; }

/* ── Why Choose Us ── */
.why-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.why-icon {
  width: 50px; height: 50px; min-width: 50px;
  border-radius: 12px;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-main); font-size: 1.3rem;
}
.why-item h6 { font-weight: 600; margin-bottom: 0.25rem; font-size: 1.1rem; }
.why-item p { color: #636e72; font-size: 0.95rem; margin: 0; line-height: 1.5; }
.why-highlight {
  background: linear-gradient(135deg, var(--green-mid), var(--green-main));
  border-radius: 24px;
  color: #fff;
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.why-highlight h3 { color: #fff; margin-bottom: 1rem; font-size: 1.6rem; }
.why-highlight p { opacity: 0.9; font-size: 1rem; line-height: 1.6; }
.stat-grid { display: flex; gap: 2rem; margin-top: 1.5rem; flex-wrap: wrap; justify-content: center; }
.stat-item h4 { font-size: 2.2rem; color: var(--lime); margin-bottom: 0.2rem; font-weight: 700; }
.stat-item span { font-size: 0.85rem; opacity: 0.9; }

/* ── Products ── */
.product-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid #e8e8e8;
  transition: all 0.3s;
  height: 100%;
}
.product-card:hover { 
  box-shadow: 0 12px 30px rgba(0,0,0,0.08); 
  transform: translateY(-5px);
}
.product-icon {
  width: 85px; height: 85px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-pale), var(--green-lighter));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 2.2rem; color: var(--green-main);
}
.product-card h5 { font-weight: 600; margin-bottom: 0.75rem; font-size: 1.35rem; }
.product-card p { color: #636e72; font-size: 1rem; line-height: 1.6; }

/* ── Testimonials ── */
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #e8e8e8;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  height: 100%;
  transition: all 0.3s;
}
.testimonial-card:hover { 
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.testimonial-card .quote-icon {
  position: absolute; top: 1rem; right: 1.5rem;
  font-size: 2.8rem; color: rgba(64,145,108,0.1);
}
.stars { color: var(--gold); margin-bottom: 0.75rem; font-size: 0.9rem; }
.testimonial-card .text { color: #636e72; font-size: 1rem; font-style: italic; line-height: 1.7; margin-bottom: 1.2rem; }
.testimonial-card .name { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.1rem; }
.testimonial-card .condition { font-size: 0.8rem; color: var(--green-main); font-weight: 500; }

/* ── Contact ── */
.contact-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-main); font-size: 1.3rem;
  min-width: 50px;
}
.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #e8e8e8;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.contact-form .form-control {
  border-radius: 10px; padding: 0.8rem 1rem;
  font-size: 1rem; border: 1px solid #ddd;
}
.contact-form .form-control:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(64,145,108,0.15);
}
.btn-submit {
  background: var(--green-main); color: #fff;
  border: none; border-radius: 10px;
  padding: 1rem; font-weight: 600;
  font-size: 1.05rem;
  width: 100%; transition: all 0.3s;
}
.btn-submit:hover { 
  background: var(--green-dark);
  color: #fff; 
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.contact-icon + div a {
  color: #2d3436 !important;
  text-decoration: none;
}
.contact-icon + div a:hover {
  color: var(--green-main) !important;
}

/* Working Hours Card */
.hours-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  border: 1px solid #e8e8e8;
}
.hours-card h6 { font-weight: 600; margin-bottom: 1rem; font-size: 1rem; }
.hours-item { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px dashed #eee; }
.hours-item:last-child { border-bottom: none; }
.hours-item span { font-size: 0.9rem; color: #636e72; }

/* ── Footer ── */
.footer { background: #1a1a2e; color: #fff; }
.footer h5 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 1.2rem; }
.footer a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.95rem;transition: all 0.3s; }
.footer a:hover { color: var(--gold); opacity: 1; }
.footer .text-muted-footer { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.footer .border-top { border-color: rgba(255,255,255,0.1) !important; }
.social-links a {
  display: inline-flex;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  align-items: center; justify-content: center;
  margin-right: 0.5rem;
  transition: all 0.3s;
}
.social-links a:hover { 
  background: var(--green-main); 
  transform: translateY(-3px);
}
.social-links a:hover i { color: #fff; }

/* ── Animations ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .section-padding { padding: 3rem 0; }
  .stat-grid { flex-direction: column; gap: 1rem; }
  .why-highlight { margin-top: 2rem; }
  .service-card img { height: 180px; }
  .navbar-custom .nav-link::after { display: none; }
}


/* Add this to the top of your CSS after the existing imports */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* Then replace all the title font-family rules with this: */



/* If you want Lato instead, replace the above with this:*/
.about-card h4,
.service-card h5,
.goal-item h5,
.why-item h6,
.product-card h5,
.testimonial-card .name,
.contact-icon + div h6,
.footer h5 {
  font-family: 'Lato', sans-serif;
  font-weight: 750;
  letter-spacing: 0.02em;    /* Lato needs positive spacing to not look cramped */
  line-height: 1.4;
}


/* Keep body text as Inter (clean and readable) */
body, p, .nav-link, .btn, .section-subtitle, .service-card p, .about-card p, .goal-item p, .why-item p, .testimonial-card .text, .hours-item span, .footer a, .footer .text-muted-footer {
  font-family: 'Inter', sans-serif;
  letter-spacing: normal;
  line-height: 1.6;
}

/* ===================== CLEAN MOBILE NAVBAR DESIGN ===================== */

@media (max-width: 991.98px) {
  /* Make navbar padding smaller on mobile */
  .navbar-custom {
    padding: 0.75rem 0;
  }
  
  .navbar-custom.scrolled {
    padding: 0.5rem 0;
  }
  
  /* Style the toggler button - clean and simple */
  .navbar-toggler {
    border: none;
    padding: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
  }
  
  /* Toggler icon - white on hero, dark when scrolled */
  .navbar-custom:not(.scrolled) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  
  .navbar-custom.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232d3436' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  
  /* Menu container - clean card design */
  .navbar-collapse {
    position: absolute;
    top: calc(100% + 10px);
    left: 1rem;
    right: 1rem;
    background: #fff;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 1050;
    max-height: 80vh;
    overflow-y: auto;
  }
  
  /* When on hero section (not scrolled) - make menu dark */
  .navbar-custom:not(.scrolled) .navbar-collapse {
    background: #1a3c2a;
    border: 1px solid rgba(255,255,255,0.1);
  }
  
  /* When scrolled - menu stays white */
  .navbar-custom.scrolled .navbar-collapse {
    background: #fff;
  }
  
  /* Navigation items */
  .navbar-nav {
    gap: 0.25rem;
  }
  
  .nav-item {
    width: 100%;
  }
  
  /* Nav links styling */
  .navbar-nav .nav-link {
    padding: 0.85rem 1rem !important;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  
  /* Dark menu links (on hero) */
  .navbar-custom:not(.scrolled) .navbar-nav .nav-link {
    color: #fff !important;
  }
  
  .navbar-custom:not(.scrolled) .navbar-nav .nav-link:hover {
    background: rgba(255,255,255,0.12);
    color: var(--gold) !important;
  }
  
  /* White menu links (scrolled) */
  .navbar-custom.scrolled .navbar-nav .nav-link {
    color: #2d3436 !important;
  }
  
  .navbar-custom.scrolled .navbar-nav .nav-link:hover {
    background: var(--green-faint);
    color: var(--green-main) !important;
  }
  
  /* Active link styling */
  .navbar-custom:not(.scrolled) .navbar-nav .nav-link.active {
    background: rgba(255,255,255,0.12);
    color: var(--gold) !important;
  }
  
  .navbar-custom.scrolled .navbar-nav .nav-link.active {
    background: var(--green-faint);
    color: var(--green-main) !important;
  }
  
  /* CTA Button in mobile menu */
  .navbar-nav .btn-cta {
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
    border-radius: 12px;
    padding: 0.85rem 1rem;
  }
  
  /* Dark menu CTA button */
  .navbar-custom:not(.scrolled) .navbar-nav .btn-cta {
    background: var(--gold);
    color: #1a3c2a !important;
  }
  
  .navbar-custom:not(.scrolled) .navbar-nav .btn-cta:hover {
    background: #fff;
    color: #1a3c2a !important;
  }
  
  /* White menu CTA button */
  .navbar-custom.scrolled .navbar-nav .btn-cta {
    background: var(--green-main);
    color: #fff !important;
  }
  
  .navbar-custom.scrolled .navbar-nav .btn-cta:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
  }
  
  /* Hide underline effect on mobile */
  .navbar-custom .nav-link::after {
    display: none;
  }
  
  /* Logo size on mobile */
  .logo-placeholder img {
    width: 40px !important;
    height: 40px !important;
  }
  
  .navbar-brand-text {
    font-size: 1.2rem !important;
  }
  
  .brand-sub {
    font-size: 0.6rem !important;
  }
}

/* Desktop styles remain unchanged */
@media (min-width: 992px) {
  .navbar-collapse {
    position: static !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
  }
  
  .navbar-nav .nav-link {
    position: relative;
  }
  
  .navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
  }
  
  .navbar-custom .nav-link:hover::after {
    width: 70%;
  }
}