/**
* Template Name: 
* Template URL: 
* Updated: May 1 2026
* Author: ET
* License: tornasolutions.com/license
*/
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #FCFAF5;
      color: #2D3E2F;
      scroll-behavior: smooth;
    }

    /* Color palette inspired by the logo: deep forest green, warm oak brown, soft cream */
    :root {
      --primary-dark: #2D5A3B;
      --primary: #4A7C59;
      --primary-light: #7AA57C;
      --accent-warm: #C29B4A;
      --accent-soft: #E7D8B5;
      --gray-bg: #F6F4EF;
      --card-shadow: 0 12px 28px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.02);
      --hover-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
      --border-radius: 1.25rem;
      --border-radius-sm: 1rem;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* header & logo */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      padding: 20px 0;
      border-bottom: 1px solid rgba(74, 124, 89, 0.2);
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .logo-img {
      height: 70px;
      width: auto;
      max-width: 220px;
      object-fit: contain;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
      transition: transform 0.2s ease;
    }
    .logo-img:hover {
      transform: scale(1.02);
    }

    .logo-text h1 {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: -0.3px;
      color: var(--primary-dark);
      line-height: 1.2;
    }

    .logo-text span {
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--primary-light);
      display: block;
      font-family: 'Inter', sans-serif;
    }

    nav ul {
      display: flex;
      gap: 16px;
      list-style: none;
    }

    /* Enhanced navigation button effects */
    nav a {
      text-decoration: none;
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 40px;
      color: #2D5A3B;
      background: transparent;
      transition: all 0.25s ease-in-out;
      display: inline-block;
      letter-spacing: 0.3px;
      box-shadow: 0 1px 2px rgba(0,0,0,0.02);
    }

    nav a:hover {
      background-color: var(--primary);
      color: white;
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 6px 14px rgba(45, 90, 59, 0.2);
    }

    nav a:active {
      transform: translateY(1px);
      transition: 0.05s;
    }

    /* hero */
    .hero {
     /* background: linear-gradient(135deg, #F1F2E9 0%, #E9EDE3 100%);  */
      background:#2D5A3B;
      border-radius: 2rem;
      margin: 32px 0 48px 0;
      padding: 48px 40px;
      box-shadow: var(--card-shadow);
      border-left: 5px solid var(--accent-warm);
	  text-align: -webkit-center;
    }

    .hero h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 700;
    /*  color: var(--primary-dark); */
    color:#F1F2E9;
    }

    .hero p {
      font-size: 1.1rem;
      /* color: #4C6B4A; */
      color:#F1F2E9;
      max-width: 600px;
      margin-top: 12px;
    }

    /* section titles */
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin: 48px 0 24px 0;
      border-left: 6px solid var(--accent-warm);
      padding-left: 20px;
    }

    /* services grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
      gap: 24px;
      margin-bottom: 40px;
    }

    .service-card {
      background: white;
      border-radius: var(--border-radius-sm);
      padding: 22px 14px;
      text-align: center;
      font-weight: 600;
      font-size: 0.95rem;
      color: #2E4A2C;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: var(--card-shadow);
      border: 1px solid rgba(0,0,0,0.02);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      min-height: 140px;
      justify-content: center;
    }

    .service-card i {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 6px;
      transition: transform 0.2s;
    }

    .service-card span {
      display: block;
      line-height: 1.3;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--hover-shadow);
      background: #ffffff;
      border-color: var(--accent-warm);
    }
    .service-card:hover i {
      transform: scale(1.05);
    }

    /* gallery filters */
    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
      justify-content: center;
    }
    .filter-btn {
      background: white;
      border: none;
      padding: 8px 20px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.2s;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      color: #2D5A3B;
      font-family: 'Inter', sans-serif;
    }
    .filter-btn.active {
      background: var(--primary-dark);
      color: white;
      box-shadow: 0 4px 10px rgba(45, 90, 59, 0.3);
    }
    .filter-btn:hover:not(.active) {
      background: var(--primary-light);
      color: white;
      transform: translateY(-2px);
    }

    /* gallery wrapper */
    .gallery-wrapper {
      background: white;
      border-radius: var(--border-radius);
      padding: 28px 24px;
      box-shadow: var(--card-shadow);
      margin: 24px 0;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 24px;
    }

    .gallery-item {
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      transition: 0.2s;
      background: #FEFCF8;
    }

    .gallery-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.02);
    }
	
	.gallery-item {
      overflow: hidden; /* already present - ensures zoom stays inside card */
    }

    .gallery-item img {
      transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1); /* smooth zoom */
    }

    .caption {
      padding: 12px;
      font-size: 0.85rem;
      font-weight: 500;
      color: #4A6B44;
      background: #fff;
      border-top: 1px solid #EFE6D5;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .caption span:first-child i {
      margin-right: 6px;
    }
    .category-badge {
      background: #E7D8B5;
      padding: 2px 10px;
      border-radius: 30px;
      font-size: 0.7rem;
      color: #2D5A3B;
      font-weight: 600;
    }

    .pagination {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-top: 32px;
      align-items: center;
    }

    .pagination button {
      background: var(--primary);
      border: none;
      color: white;
      padding: 10px 24px;
      border-radius: 40px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.2s;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .pagination button:hover:not(:disabled) {
      background: var(--primary-dark);
      transform: scale(0.97);
    }
    .pagination button:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    .page-info {
      font-weight: 500;
      background: #EEF0E8;
      padding: 6px 18px;
      border-radius: 30px;
      color: #2D5A3B;
    }

    /* request form */
    .form-card {
      background: white;
      border-radius: var(--border-radius);
      padding: 32px 30px;
      box-shadow: var(--card-shadow);
      margin: 40px 0 48px;
      border-top: 4px solid var(--accent-warm);
    }

    .form-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 20px;
    }

    .form-group {
      flex: 1 1 240px;
    }

    label {
      font-weight: 600;
      display: block;
      margin-bottom: 8px;
      color: #386A3E;
    }

    input, textarea, select {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #DDD6C8;
      border-radius: 20px;
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      transition: 0.2s;
      background: #FEFCF7;
    }

    input:focus, textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(74,124,89,0.2);
    }

    .btn-submit {
      background: var(--primary-dark);
      color: white;
      border: none;
      padding: 14px 32px;
      font-weight: 700;
      border-radius: 40px;
      cursor: pointer;
      font-size: 1rem;
      transition: 0.2s;
      margin-top: 8px;
    }

    .btn-submit:hover {
      background: var(--primary);
      transform: translateY(-2px);
    }

    /* contact section */
    .contact-section {
      background: var(--gray-bg);
      border-radius: var(--border-radius);
      padding: 36px 32px;
      margin: 40px 0 32px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
      box-shadow: var(--card-shadow);
    }

    .contact-details h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--primary-dark);
      margin-bottom: 20px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 20px;
      font-size: 1.05rem;
    }

    .contact-item i {
      width: 36px;
      height: 36px;
      background: white;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-dark);
      font-size: 1.2rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .social-buttons {
      display: flex;
      gap: 18px;
      margin-top: 24px;
    }

    .social-buttons a {
      background: white;
      width: 48px;
      height: 48px;
      border-radius: 60px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: var(--primary-dark);
      transition: 0.2s;
      box-shadow: 0 5px 12px rgba(0,0,0,0.05);
      text-decoration: none;
    }

    .social-buttons a:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-4px);
    }

    .map-mock {
      flex: 1.2;
      background: #E9E6DC;
      border-radius: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 30px;
      text-align: center;
    }

    footer {
      text-align: center;
      padding: 28px 0;
      font-size: 0.85rem;
      color: #6C8268;
      border-top: 1px solid #DFE0D4;
      margin-top: 30px;
    }

    @media (max-width: 760px) {
      .navbar {
        flex-direction: column;
        gap: 16px;
      }
      .logo-area {
        justify-content: center;
      }
      nav ul {
        gap: 12px;
        justify-content: center;
      }
      .hero h2 {
        font-size: 1.7rem;
      }
      .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
      }
      .service-card {
        padding: 16px 8px;
        min-height: 120px;
      }
      .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      }
      .contact-section {
        flex-direction: column;
      }
      .section-title {
        font-size: 1.6rem;
      }
      .logo-img {
        height: 55px;
      }
      .filter-btn {
        padding: 6px 14px;
        font-size: 0.75rem;
      }
    } 
	
	 /* Emergency image block - now matches height of left column automatically */
    .emergency-image-block {
      flex: 1.2;
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      background: #D9D2C0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .emergency-image-block img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .emergency-image-block:hover img {
      transform: scale(1.02);
    }
/*Code for image zoom when mouse over*/	
/* Floating popup that follows the mouse 
.image-popup {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 35px -10px rgba(0,0,0,0.3);
  padding: 8px;
  border: 2px solid #C29B4A;
  transition: opacity 0.15s ease;
  opacity: 0;
  visibility: hidden;
  width: 680px;
  height: auto;
}
.image-popup img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
.image-popup.show {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  .image-popup {
    display: none;
  }
}

*/

/* ---------- MORE ZOOMED MODAL IMAGE ---------- */
.image-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(4px);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.image-modal.show {
  display: flex;
}

.modal-content {
  min-width: 80vw;      /* forces image to be at least 80% of viewport width */
  min-height: 80vh;     /* forces image to be at least 80% of viewport height */
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;  /* keeps aspect ratio, no cropping */
  border-radius: 8px;
  box-shadow: 0 25px 45px rgba(0,0,0,0.5);
  border: 3px solid var(--accent-warm, #C29B4A);
  background: #000;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 44px;
  font-weight: bold;
  transition: 0.2s;
  cursor: pointer;
  z-index: 10001;
  /*background: rgba(30,30,30,0.7);*/
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-modal:hover {
  color: var(--accent-warm);
  background: rgba(0,0,0,0.9);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .modal-content {
    min-width: 90vw;
    min-height: 70vh;
    max-width: 98vw;
    max-height: 90vh;
  }
  .close-modal {
    top: 12px;
    right: 16px;
    font-size: 32px;
    width: 44px;
    height: 44px;
  }
}

.fas fa-check-circle {
  color: #2D5A3B; 
}