/* ===== Global Typography ===== */

body {
  font-family: 'Poppins', sans-serif;
  color: #2f3e34; /* deep premium green-grey */
  background-color: #ffffff;
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: #1f3d2b; /* rich forest green */
  letter-spacing: 0.5px;
}

h1 {
  font-size: 42px;
  font-weight: 700;
}

h2 {
  font-size: 32px;
  font-weight: 600;
}

h3 {
  font-size: 22px;
  font-weight: 600;
}

p {
  color: #4a5d52; /* soft charcoal green */
  font-weight: 400;
}







/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}



/* Header & Nav */
header {
    background: #ffffff;
    border-bottom: 2px solid #eee;
}




header {
  position: sticky;
  top: 0;
  background: white;
  z-index: 1000;
}

/* ===== HEADER ===== */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  color: #2e7d32;
}

.nav-links a {
  margin-left: 24px;
  text-decoration: none;
  font-weight: 500;
  color: #333;
}

.nav-links a:hover {
  color: #2e7d32;
}

nav {
    max-width: 1100px;
    margin: auto;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: bold;
    font-size: 18px;
    color: #2e7d32;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #1f3d2b;
    font-weight: 500;
    letter-spacing: 0.3px;
}


nav ul li a:hover {
    color: #2e7d32;
}

/* Main sections */
main {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

h1 {
    margin-bottom: 16px;
    
}

h2 {
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
}

/* Hero */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, #eef7f0, #ffffff);
    border-radius: 16px;
}


.hero .btn {
    display: inline-block;
    margin-top: 28px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #1f6f43, #2d8a5a);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.4px;
}


/* Cards */
.cards, .service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card, .service {
    background: #ffffff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}

.card:hover, .service:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(31, 111, 67, 0.15);
}


/* Contact */
.contact-form {
    max-width: 500px;
    margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form button {
    background: #2e7d32;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Footer */
footer {
    background: #ffffff;
    background-color: #ffffff;
    border-top: 2px solid #eee;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

/* WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    padding: 12px 15px;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
}

.about-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.about-section h1,
.about-section h2 {
  color: #2f7d32;
}

.elements-list {
  list-style: none;
  padding-left: 0;
}

.elements-list li {
  margin: 10px 0;
  background: #ffffff;
  padding: 10px 15px;
  border-left: 5px solid #2f7d32;
}

/* FIVE ELEMENTS SECTION */
.elements {
    background-color: #f4fff6;
    padding: 60px 20px;
}

.elements h2 {
    text-align: center;
    color: #2e7d32;
    margin-bottom: 10px;
}

.elements-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
}

.elements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.element-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.element-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(31, 111, 67, 0.18);
}


.element-card h3 {
    margin-bottom: 10px;
    color: #2e7d32;
}

/* ABOUT PAGE STYLES */
.about-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.about-section h1,
.about-section h2 {
    color: #2e7d32;
    margin-bottom: 15px;
}

.about-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.light-bg {
    background-color: #f4fff6;
    border-radius: 12px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.about-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.closing-line {
    font-size: 1.1rem;
    font-style: italic;
    color: #2e7d32;
}

/* SERVICES PAGE */
.services-intro {
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

.services-intro h1 {
    color: #2e7d32;
    margin-bottom: 15px;
}

.services-intro p {
    color: #555;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 40px 20px;
    max-width: 1100px;
    margin: auto;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card h2 {
    color: #388e3c;
    margin-bottom: 5px;
}

.service-card h3 {
    color: #333;
    margin-bottom: 10px;
}

.service-card p {
    color: #555;
    line-height: 1.6;
}

.services-closing {
    text-align: center;
    padding: 50px 20px;
    font-style: italic;
    color: #2e7d32;
}

.gallery-section {
  padding: 60px 40px;
  text-align: center;
}

.gallery-section h1 {
  color: #2e7d32;
  margin-bottom: 10px;
}

.gallery-intro {
  color: #555;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.gallery-item {
  background: #f4fff6;
  padding: 40px 20px;
  border-radius: 12px;
  font-weight: 600;
  color: #2e7d32;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.elements-highlight {
  background: #ffffff;
  padding: 60px 40px;
  text-align: center;
}

.elements-highlight h2 {
  color: #2e7d32;
  margin-bottom: 15px;
}

.elements-highlight p {
  color: #555;
  max-width: 800px;
  margin: 0 auto 30px;
}

.elements-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 18px;
  font-weight: 600;
  color: #2e7d32;
}


/* ===== FOOTER ===== */
.site-footer {
  background-color: #f3f8f3;
  border-top: 1px solid #e0e0e0;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-about h3 {
  color: #2e7d32;
  margin-bottom: 12px;
}

.footer-about p {
  color: #555;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  color: #2e7d32;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #333;
}

.footer-links a:hover {
  color: #2e7d32;
}

.footer-contact p {
  margin-bottom: 8px;
  color: #444;
}

.footer-bottom {
  text-align: center;
  padding: 18px;
  font-size: 14px;
  background-color: #ffffff;
border-top: 1px solid #e5e5e5;
  color: #333;
}


/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background-color: #eef7ee;
  text-align: center;
  padding: 80px 20px;
}

.contact-hero h1 {
  color: #2e7d32;
  font-size: 36px;
  margin-bottom: 12px;
}

.contact-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  line-height: 1.6;
}

.contact-section {
  padding: 80px 20px;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2,
.contact-form h2 {
  color: #2e7d32;
  margin-bottom: 16px;
}

.contact-info p {
  color: #444;
  margin-bottom: 10px;
}

.contact-note {
  margin-top: 20px;
  font-style: italic;
  color: #666;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.contact-form button {
  background-color: #2e7d32;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #256628;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 28px;
  padding: 14px 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
}

.logo img {
  height: 45px;
  width: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-text {
    font-size: 18px;
    font-weight: 600;
    color: #2e7d32;
    white-space: nowrap;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-logo {
  height: 28px;
  width: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-size: 16px;
  color: #2e7d32;
}

.logo-text span {
  font-size: 12px;
  color: #555;
}

footer {
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.03);
}

.footer-bottom {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 15px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-logo {
  height: 35px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials img {
  height: 22px;
  width: 22px;
  transition: transform 0.3s ease;
}

.footer-socials img:hover {
  transform: scale(1.15);
}

.contact-map iframe {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}



.gallery-images {
  margin-top: 50px;
}

.gallery-group {
  margin-bottom: 60px;
  text-align: center;
}

.gallery-group h3 {
  color: #2f6f3e;
  margin-bottom: 20px;
  font-size: 22px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.image-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.04);
}

/* Impact Points Styling */
.impact-points {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.impact-item {
    background: rgba(255, 255, 255, 0.45);
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
}

/* ✨ Soft hover glow */
.impact-item:hover {
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 
        0 8px 18px rgba(46, 125, 50, 0.18),
        0 0 0 1px rgba(46, 125, 50, 0.15);
    transform: translateY(-2px);
}

/* Premium text rendering */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

