/* ============================================
   MHATRE NURSERY & LANDSCAPE - MAIN STYLESHEET
   ============================================ */

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

:root {
  --primary-green: #2e5c3e;
  --primary-dark: #1e3a2a;
  --primary-light: #4b6e3f;
  --bg-light: #fafbf9;
  --bg-green-light: #f2f7ef;
  --accent-light: #c7e0b1;
  --text-dark: #1e2e1c;
  --text-muted: #2b3f28;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 6px 18px rgba(0, 0, 0, 0.02);
  --border-light: 1px solid #ddebd3;
  --border-lighter: 1px solid #e2f0da;
  --border-radius-card: 24px;
  --border-radius-btn: 50px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, .serif {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 8vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

h2 {
  font-size: 2rem;
  line-height: 1.2;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--primary-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 60px 0 20px;
}

/* ============================================
   NAVIGATION WITH DROPDOWN
   ============================================ */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  flex-wrap: wrap;
}

.logo-img {
  height: 70px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 500;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary-dark);
  font-size: 0.95rem;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-green);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.2s;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 200;
  border: var(--border-lighter);
}

.dropdown-menu-large {
  min-width: 320px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.15s, padding-left 0.2s;
}

.dropdown-menu a:hover {
  background: var(--bg-green-light);
  color: var(--primary-green);
  padding-left: 24px;
}

.contact-btn {
  background: var(--primary-green);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 40px;
  font-weight: 600;
  transition: background 0.2s !important;
}

.contact-btn:hover {
  background: var(--primary-dark) !important;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-dark);
  cursor: pointer;
}

/* ============================================
   HERO SECTION - 50/50 SPLIT WITH SLIDER
   ============================================ */
.hero {
  padding: 40px 24px 60px;
  background: linear-gradient(145deg, var(--bg-green-light) 0%, #e2ede0 100%);
}

.hero-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 45%;
  min-width: 300px;
}

.hero-slider-wrapper {
  flex: 1 1 45%;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-badge {
  background: rgba(46, 92, 62, 0.13);
  color: var(--primary-green);
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-highlight {
  color: var(--primary-green);
  border-bottom: 4px solid var(--accent-light);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 550px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin: 30px 0 20px;
}

.stat-item h3 {
  font-size: 2.2rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.stat-item span {
  color: var(--text-muted);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary {
  background: var(--primary-green);
  color: var(--white);
  border: none;
  padding: 14px 34px;
  border-radius: var(--border-radius-btn);
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(46, 92, 62, 0.2);
  transition: all 0.2s;
  border: 1px solid var(--primary-green);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 18px rgba(30, 58, 42, 0.25);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary-green);
  color: var(--primary-green);
  padding: 14px 28px;
  border-radius: var(--border-radius-btn);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--primary-green);
  color: var(--white);
}


/* ============================================
   MODAL POPUP (ENQUIRY FORM)
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  background: var(--white);
  border-radius: 32px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.2s;
  z-index: 10;
}

.modal-close:hover {
  color: var(--primary-dark);
}

.modal-header {
  padding: 32px 28px 16px;
  text-align: center;
}

.modal-header i {
  font-size: 40px;
  color: var(--primary-green);
  margin-bottom: 12px;
}

.modal-header h2 {
  margin-bottom: 8px;
}

.modal-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.enquiry-form {
  padding: 0 28px 32px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e0e8dc;
  border-radius: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
}

.btn-full {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   TRUSTED CLIENTS
   ============================================ */
.trusted-header {
  text-align: center;
  padding: 30px 0 10px;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 24px;
  margin: 40px 0;
  opacity: 0.9;
}

.client-item {
  font-weight: 600;
  color: #2b4a22;
  background: #eef4ea;
  padding: 10px 20px;
  border-radius: 60px;
}

.client-item i {
  margin-right: 6px;
  color: var(--primary-green);
}


/* ============================================
   ABOUT SECTION
   ============================================ */
.about-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.about-content {
  flex: 2;
  min-width: 280px;
}

.about-description {
  margin: 20px 0;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.approach-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.approach-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.approach-item i {
  color: var(--primary-green);
}

.about-quote {
  flex: 1;
  background: #e3efdb;
  padding: 30px;
  border-radius: 40px;
  text-align: center;
}

.about-quote i {
  color: var(--primary-green);
  font-size: 2rem;
  margin-bottom: 10px;
}

.about-quote p {
  font-style: italic;
  font-size: 1.2rem;
}

/* Founders */
.founders {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.founder-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--border-radius-card);
  flex: 1 1 260px;
  box-shadow: var(--shadow-md);
  border: var(--border-lighter);
}

.founder-card i {
  font-size: 2.8rem;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.founder-card h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.founder-title {
  color: var(--primary-light);
  margin-bottom: 12px;
  font-weight: 500;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.project-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}

.project-item {
  flex: 1 1 240px;
  background: #eaf1e6;
  border-radius: 20px;
  padding: 16px 16px 8px;
}

.project-img {
  height: 200px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background-size: cover;
  background-position: center;
}

.project-img span {
  background: rgba(0, 0, 0, 0.2);
  padding: 8px 16px;
  border-radius: 30px;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.portfolio-more {
  text-align: right;
  color: var(--primary-light);
  font-weight: 500;
}

.portfolio-more a {
  text-decoration: none;
  color: var(--primary-green);
  font-weight: 600;
}

/* ============================================
   CTA & FOOTER
   ============================================ */
.cta-section {
  background: var(--primary-dark);
  color: var(--white);
  padding: 64px 24px;
  border-radius: 48px 48px 0 0;
  margin-top: 60px;
}

.cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cta-content h2 {
  font-size: 2.6rem;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.cta-email-btn {
  background: var(--white);
  color: var(--primary-dark);
  padding: 16px 36px;
  border-radius: 60px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s;
}

.cta-email-btn:hover {
  transform: scale(1.02);
}

.footer-contact {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-item i {
  opacity: 0.8;
}

.footer-divider {
  border-color: var(--primary-light);
  margin: 40px 0 20px;
  opacity: 0.3;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-tagline {
  color: var(--accent-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
    gap: 16px;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding-left: 20px;
  }
  
  .dropdown-menu a {
    padding: 8px 20px;
  }
  
  .dropdown-toggle i {
    display: none;
  }
}

@media (max-width: 680px) {
  .hero-grid {
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  

  .section-title {
    font-size: 1.9rem;
  }
  
  .cta-flex {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-button-wrapper {
    margin-top: 20px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .footer-contact {
    justify-content: center;
    text-align: center;
  }
}

/* ============================================
   ENHANCED ABOUT SECTION
   ============================================ */
.about-enhanced {
  padding: 80px 0;
  background: var(--white);
}

.about-enhanced-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* About Images */
.about-images {
  position: relative;
}

.about-image-main {
  border-radius: 30% 60% 30% 70% / 50% 40% 60% 50%;
  overflow: hidden;
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.08);
}

.about-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.about-image-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 60%;
  border-radius: 40% 30% 60% 40% / 40% 50% 50% 60%;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.1);
}

.about-secondary-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.about-experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--primary-green);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(46, 92, 62, 0.3);
}

.about-experience-badge .years {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.about-experience-badge .text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.95;
}

/* About Content */
.about-enhanced-content .section-sub {
  color: var(--primary-green);
}

.about-intro {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin: 20px 0 16px;
  line-height: 1.5;
}

.about-description {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.about-features {
  margin: 30px 0;
}

.feature-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.feature-item i {
  font-size: 24px;
  color: var(--primary-green);
  margin-top: 4px;
}

.feature-content h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.feature-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ============================================
   DETAILED FOUNDERS SECTION
   ============================================ */
.bg-light {
  background: var(--bg-green-light);
}

.text-center {
  text-align: center;
}

.founders-detailed {
  margin-top: 50px;
}

.founder-detailed-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
  background: var(--white);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: var(--border-lighter);
}

.founder-detailed-card.reverse {
  grid-template-columns: 1.5fr 1fr;
}

.founder-detailed-card.reverse .founder-image {
  order: 2;
}

.founder-detailed-card.reverse .founder-info {
  order: 1;
}

.founder-image {
  border-radius: 30% 60% 30% 70% / 50% 40% 60% 50%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-info h3 {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.founder-credential {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 1rem;
}

.founder-bio {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.founder-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.founder-expertise span {
  background: var(--bg-green-light);
  color: var(--primary-green);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ============================================
   SLIDER FIXES - Prevent shape shifting
   ============================================ */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  border-radius: 30% 60% 30% 70% / 50% 40% 60% 50%;
  overflow: hidden;
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.08);
  background: linear-gradient(145deg, #5b8c4e, #3d6b35); /* Fallback background */
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.slider-slide.active {
  opacity: 1;
  visibility: visible;
}

.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: linear-gradient(145deg, #5b8c4e, #3d6b35); /* Same as slider bg */
}

/* Loading spinner */
.slider-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 24px;
  z-index: 5;
}

/* Logo fallback */
.logo a {
  text-decoration: none;
  display: block;
}

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

.logo-fallback i {
  font-size: 32px;
  color: var(--primary-green);
}

.logo-text {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--primary-dark);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--primary-light);
  letter-spacing: 1px;
}

/* ============================================
   RESPONSIVE FIXES
   ============================================ */
@media (max-width: 968px) {
  .about-enhanced-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-images {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .founder-detailed-card,
  .founder-detailed-card.reverse {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .founder-detailed-card.reverse .founder-image {
    order: -1;
  }
  
  .founder-image {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .founder-expertise {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .about-image-secondary {
    right: -10px;
    bottom: -20px;
    width: 50%;
  }
  
  .about-secondary-img {
    height: 160px;
  }
  
  .about-experience-badge {
    padding: 14px 18px;
    bottom: 10px;
    left: 10px;
  }
  
  .about-experience-badge .years {
    font-size: 2rem;
  }
  
  .hero-slider {
    max-width: 350px;
  }
}

/* ============================================
   HERO SLIDER - CLEAN SQUARE (DESKTOP & MOBILE)
   ============================================ */

.hero-slider-wrapper {
  flex: 1 1 45%;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  /* Square aspect ratio */
  aspect-ratio: 1 / 1;
  /* Clean rectangle corners - same on all devices */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.1);
  /* Solid background prevents white flash during image load */
  background: linear-gradient(145deg, #4a7a3e, #2d5a25);
  /* Hardware acceleration for smoother transitions */
  transform: translateZ(0);
  will-change: transform;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  transform: translateZ(0);
}

.slider-slide.active {
  opacity: 1;
  visibility: visible;
}

.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: inherit;
  user-select: none;
  -webkit-user-drag: none;
  image-rendering: -webkit-optimize-contrast;
}

/* Pre-colored slides - each slide has its own fallback color */
.slider-slide:nth-child(1) .slider-img {
  background: linear-gradient(145deg, #5b8c4e, #3d6b35);
}

.slider-slide:nth-child(2) .slider-img {
  background: linear-gradient(145deg, #4a7a3e, #2d5a25);
}

.slider-slide:nth-child(3) .slider-img {
  background: linear-gradient(145deg, #6b9c5e, #4a7a3e);
}

.slider-slide:nth-child(4) .slider-img {
  background: linear-gradient(145deg, #3d6b35, #2a5a22);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary-dark);
  font-size: 18px;
  backdrop-filter: blur(4px);
  transition: all 0.2s;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-nav:hover {
  background: var(--white);
  color: var(--primary-green);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.slider-nav.prev {
  left: 16px;
}

.slider-nav.next {
  right: 16px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.dot.active {
  background: var(--white);
  width: 28px;
  border-radius: 14px;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Loading indicator */
.slider-loading-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: sliderSpin 0.8s linear infinite;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.hero-slider.is-loading .slider-loading-indicator {
  opacity: 1;
}

@keyframes sliderSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ============================================
   RESPONSIVE - CLEAN SQUARE ON ALL DEVICES
   ============================================ */
@media (max-width: 1024px) {
  .hero-slider {
    max-width: 500px;
    /* Keep same border-radius - no shape change */
    border-radius: 16px;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    max-width: 450px;
    /* Keep same border-radius - no shape change */
    border-radius: 14px;
  }
  
  .slider-nav {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  
  .slider-nav.prev {
    left: 12px;
  }
  
  .slider-nav.next {
    right: 12px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    max-width: 100%;
    /* Keep same clean rectangle - no shape change */
    border-radius: 12px;
  }
  
  .slider-nav {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
  
  .slider-nav.prev {
    left: 8px;
  }
  
  .slider-nav.next {
    right: 8px;
  }
  
  .slider-dots {
    bottom: 14px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
  
  .dot.active {
    width: 22px;
  }
}
/* ============================================
   FEATURE HIGHLIGHTS SECTION
   ============================================ */
.feature-highlights {
  padding: 60px 0;
  background: var(--white);
  position: relative;
  margin-top: -20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-light);
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-lighter);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.06);
  border-color: var(--accent-light);
  background: var(--white);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(145deg, var(--bg-green-light), #e8f3e2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(145deg, var(--primary-green), var(--primary-light));
  transform: scale(1.05);
}

.feature-icon i {
  font-size: 36px;
  color: var(--primary-green);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon i {
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
  font-weight: 600;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ============================================
   RESPONSIVE FEATURES
   ============================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .feature-highlights {
    padding: 40px 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 24px 20px;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .feature-icon i {
    font-size: 30px;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
  }
}

/* ============================================
   ENHANCED ABOUT SECTION - RECTANGLE & SQUARE
   ============================================ */
.about-enhanced {
  padding: 80px 0;
  background: var(--white);
}

.about-enhanced-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* About Images - Rectangle & Square */
.about-images {
  position: relative;
}

.about-image-main {
  border-radius: 16px; /* Slight rounded corners - clean rectangle */
  overflow: hidden;
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.08);
}

.about-main-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.about-image-secondary {
  position: absolute;
  bottom: -125px;
  right: -30px;
  width: 55%;
  border-radius: 12px; /* Slight rounded corners - clean square/rectangle */
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.12);
}

.about-secondary-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.about-experience-badge {
  position: absolute;
  bottom: 30px;
  left: 20px;
  background: var(--primary-green);
  color: var(--white);
  padding: 18px 24px;
  border-radius: 12px; /* Clean rectangle with slight rounding */
  text-align: center;
  box-shadow: 0 10px 25px rgba(46, 92, 62, 0.3);
  min-width: 140px;
}

.about-experience-badge .years {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.about-experience-badge .text {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.95;
  white-space: nowrap;
}

/* About Content */
.about-enhanced-content .section-sub {
  color: var(--primary-green);
}

.about-intro {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin: 20px 0 16px;
  line-height: 1.5;
}

.about-description {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.about-features {
  margin: 30px 0;
}

.feature-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.feature-item i {
  font-size: 22px;
  color: var(--primary-green);
  margin-top: 4px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.feature-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-enhanced-grid {
    gap: 40px;
  }
  
  .about-main-img {
    height: 400px;
  }
  
  .about-image-secondary {
    bottom: -30px;
    right: -20px;
    width: 50%;
  }
  
  .about-secondary-img {
    height: 170px;
  }
  
  .about-experience-badge {
    padding: 14px 18px;
    bottom: 20px;
    left: 15px;
    min-width: 120px;
  }
  
  .about-experience-badge .years {
    font-size: 2rem;
  }
  
  .about-experience-badge .text {
    font-size: 0.75rem;
  }
}

@media (max-width: 968px) {
  .about-enhanced-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-images {
    max-width: 550px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .about-enhanced {
    padding: 50px 0;
  }
  
  .about-main-img {
    height: 320px;
  }
  
  .about-image-secondary {
    bottom: -25px;
    right: -15px;
    width: 45%;
    border-width: 4px;
  }
  
  .about-secondary-img {
    height: 140px;
  }
  
  .about-experience-badge {
    padding: 12px 16px;
    bottom: 15px;
    left: 10px;
    min-width: 100px;
  }
  
  .about-experience-badge .years {
    font-size: 1.8rem;
  }
  
  .about-experience-badge .text {
    font-size: 0.7rem;
    white-space: normal;
  }
  
  .about-cta {
    flex-direction: column;
  }
  
  .about-cta .btn-primary,
  .about-cta .btn-outline {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-image-secondary {
    display: none; /* Hide secondary image on very small screens */
  }
  
  .about-experience-badge {
    position: static;
    display: inline-block;
    margin-top: 20px;
  }
}

/* ============================================
   COMPREHENSIVE SERVICES SECTION
   ============================================ */
.services-comprehensive {
  padding: 80px 0;
  background: var(--bg-green-light);
}

.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.services-header .section-sub {
  color: var(--primary-green);
}

.services-header .section-title {
  margin-bottom: 16px;
}

.services-intro {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Services Grid - 3 Columns */
.services-grid-comprehensive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* Service Card */
.service-card-comprehensive {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--border-lighter);
}

.service-card-comprehensive:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card-inner {
  display: flex;
  flex-direction: column;
}

/* Icon Box Section */
.service-icon-box {
  padding: 28px 24px 20px;
}

/* Icon + Title side by side */
.service-icon-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.service-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-green-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.service-card-comprehensive:hover .service-icon {
  background: var(--primary-green);
}

.service-card-comprehensive:hover .service-icon svg,
.service-card-comprehensive:hover .service-icon svg path,
.service-card-comprehensive:hover .service-icon svg g,
.service-card-comprehensive:hover .service-icon svg circle {
  fill: var(--white) !important;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.service-icon-title h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0;
  line-height: 1.3;
}

/* Description below icon+title */
.service-icon-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  padding-left: 0; /* No indent needed since title is next to icon */
}

/* Service Image */
.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card-comprehensive:hover .service-image img {
  transform: scale(1.05);
}

/* Services CTA */
.services-cta {
  text-align: center;
  margin-top: 20px;
}

.services-cta .btn-primary {
  padding: 14px 36px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid-comprehensive {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .services-comprehensive {
    padding: 50px 0;
  }
  
  .services-header {
    margin-bottom: 35px;
  }
  
  .service-icon-box {
    padding: 24px 20px 16px;
  }
  
  .service-icon-title {
    gap: 12px;
  }
  
  .service-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
  
  .service-icon svg {
    width: 36px;
    height: 36px;
  }
  
  .service-icon-title h3 {
    font-size: 1.1rem;
  }
  
  .service-image {
    height: 180px;
  }
}

@media (max-width: 640px) {
  .services-grid-comprehensive {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-icon-box {
    padding: 22px 18px 16px;
  }
  
  .service-icon-title h3 {
    font-size: 1.05rem;
  }
  
  .service-image {
    height: 200px;
  }
}

/* ============================================
   TRUSTED CLIENTS - RUNNING LOGO CAROUSEL
   ============================================ */
.trusted-clients {
  padding: 70px 0 50px;
  background: var(--white);
  overflow: hidden;
}

.trusted-header {
  text-align: center;
  margin-bottom: 40px;
}

.trusted-header .section-sub {
  color: var(--primary-green);
}

.trusted-header .section-title {
  margin-top: 8px;
}

/* Logo Carousel Wrapper */
.logo-carousel-wrapper {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

/* Gradient fade edges */
.logo-carousel-wrapper::before,
.logo-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.logo-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.logo-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

/* Logo Carousel */
.logo-carousel {
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Row 1: Left to Right */
.logo-carousel.left-to-right .logo-track {
  animation-name: scrollLeftToRight;
  animation-duration: 60s;
}

/* Row 2: Right to Left */
.logo-carousel.right-to-left .logo-track {
  animation-name: scrollRightToLeft;
  animation-duration: 60s;
}

/* Pause on hover */
.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

/* Logo Item */
.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  background: var(--white);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  margin-top: 5px;
}

.logo-item:hover {
  border-color: var(--border-lighter);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.logo-item img {
  height: 45px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  filter: grayscale(30%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes scrollLeftToRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRightToLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .trusted-clients {
    padding: 50px 0 30px;
  }
  
  .trusted-header {
    margin-bottom: 30px;
  }
  
  .logo-track {
    gap: 30px;
  }
  
  .logo-item {
    padding: 8px 12px;
  }
  
  .logo-item img {
    height: 35px;
    max-width: 110px;
  }
  
  .logo-carousel-wrapper::before,
  .logo-carousel-wrapper::after {
    width: 50px;
  }
  
  .logo-carousel.left-to-right .logo-track {
    animation-duration: 40s;
  }
  
  .logo-carousel.right-to-left .logo-track {
    animation-duration: 40s;
  }
}

@media (max-width: 480px) {
  .logo-track {
    gap: 20px;
  }
  
  .logo-item {
    padding: 6px 10px;
  }
  
  .logo-item img {
    height: 28px;
    max-width: 90px;
  }
  
  .logo-carousel.left-to-right .logo-track,
  .logo-carousel.right-to-left .logo-track {
    animation-duration: 30s;
  }
  
  .logo-carousel-wrapper::before,
  .logo-carousel-wrapper::after {
    width: 30px;
  }
}


/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f9fbf7 0%, #f2f7ef 100%);
}

.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.testimonials-header .section-sub {
  color: var(--primary-green);
}

.testimonials-header .section-title {
  margin-bottom: 12px;
}

.testimonials-intro {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Testimonials Slider */
.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 20px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  min-width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.testimonial-card-inner {
  background: var(--white);
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #e8f0e3;
  text-align: center;
  transition: all 0.3s ease;
}

.testimonial-card-inner:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

/* Platform Badge */
.testimonial-platform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f8ee;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-green);
}

.testimonial-platform img {
  width: 20px;
  height: 20px;
}

/* Profile */
.testimonial-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-light);
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-profile-info {
  text-align: left;
}

.testimonial-profile-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 4px;
}

.testimonial-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Stars */
.testimonial-stars {
  margin-bottom: 18px;
}

.testimonial-stars i {
  color: #f4b740;
  font-size: 18px;
  margin: 0 2px;
}

/* Content */
.testimonial-content {
  margin-bottom: 18px;
}

.testimonial-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
}

/* Verified Badge */
.testimonial-verified {
  font-size: 0.85rem;
  color: var(--primary-green);
  font-weight: 500;
}

.testimonial-verified i {
  margin-right: 4px;
}

/* Slider Navigation */
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 2px solid #e0ebd8;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary-dark);
  font-size: 16px;
  transition: all 0.2s;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-nav:hover {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
}

.testimonial-nav.prev {
  left: 0;
}

.testimonial-nav.next {
  right: 0;
}

/* Slider Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c8d9bf;
  cursor: pointer;
  transition: all 0.3s;
}

.t-dot.active {
  background: var(--primary-green);
  width: 28px;
  border-radius: 14px;
}

.t-dot:hover {
  background: var(--primary-light);
}

/* CTA Button */
.testimonials-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary-dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #e0ebd8;
  transition: all 0.3s;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.btn-google-review:hover {
  background: #4285F4;
  color: var(--white);
  border-color: #4285F4;
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.2);
}

.btn-google-review i {
  font-size: 20px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 50px 0;
  }
  
  .testimonials-header {
    margin-bottom: 35px;
  }
  
  .testimonial-card-inner {
    padding: 28px 20px;
  }
  
  .testimonial-content p {
    font-size: 1rem;
  }
  
  .testimonial-nav {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
  
  .testimonial-nav.prev {
    left: 0;
  }
  
  .testimonial-nav.next {
    right: 0;
  }
}

@media (max-width: 480px) {
  .testimonials-slider {
    padding: 0 10px;
  }
  
  .testimonial-card-inner {
    padding: 24px 16px;
    border-radius: 16px;
  }
  
  .testimonial-profile {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonial-profile-info {
    text-align: center;
  }
  
  .testimonial-content p {
    font-size: 0.95rem;
  }
  
  .testimonial-nav {
    width: 34px;
    height: 34px;
  }
  
  .btn-google-review {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* ============================================
   CLIENT SATISFACTION SECTION - 50/50
   ============================================ */
.satisfaction-section {
  padding: 80px 0;
  background: var(--white);
  overflow: hidden;
}

.satisfaction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left - Image with Animation */
.satisfaction-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.satisfaction-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.satisfaction-main-image {
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.satisfaction-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.satisfaction-image-container:hover .satisfaction-main-image img {
  transform: scale(1.03);
}

/* Floating Elements */
.satisfaction-float-element {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  z-index: 3;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.satisfaction-float-element i {
  font-size: 22px;
}

.float-1 {
  top: -20px;
  right: 30px;
  animation-name: floatUpDown1;
}

.float-1 i {
  color: #f4b740;
}

.float-2 {
  bottom: 40px;
  left: -20px;
  animation-name: floatUpDown2;
  animation-delay: 1s;
}

.float-2 i {
  color: #e74c3c;
}

.float-3 {
  top: 40%;
  right: -20px;
  animation-name: floatUpDown3;
  animation-delay: 2s;
}

.float-3 i {
  color: var(--primary-green);
}

/* Animated Ring */
.satisfaction-ring {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  border: 3px dashed var(--accent-light);
  border-radius: 50%;
  z-index: 1;
  animation: rotateRing 20s linear infinite;
}

/* Mini Badge */
.satisfaction-mini-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--primary-green);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 16px;
  text-align: center;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(46, 92, 62, 0.3);
  animation: floatUpDown2 5s ease-in-out infinite;
}

.mini-count {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.mini-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Right - Content */
.satisfaction-content {
  display: flex;
  align-items: center;
}

.satisfaction-content-inner {
  max-width: 500px;
}

.satisfaction-content .section-sub {
  color: var(--primary-green);
  margin-bottom: 20px;
}

.satisfaction-percentage {
  margin-bottom: 24px;
}

.satisfaction-number {
  font-size: 6rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--primary-dark);
  line-height: 1;
  margin: 0 0 4px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.percent-sign {
  font-size: 3rem;
  color: var(--primary-green);
}

.satisfaction-label {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.satisfaction-description {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Mini Stats */
.satisfaction-stats-mini {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.mini-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-green-light);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.mini-stat:hover {
  background: #e8f0e2;
  transform: translateX(6px);
}

.mini-stat i {
  font-size: 28px;
  color: var(--primary-green);
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.mini-stat h4 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin: 0 0 2px;
}

.mini-stat span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes floatUpDown1 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

@keyframes floatUpDown2 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(-5deg);
  }
}

@keyframes floatUpDown3 {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.1);
  }
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .satisfaction-grid {
    gap: 40px;
  }
  
  .satisfaction-number {
    font-size: 5rem;
  }
  
  .satisfaction-main-image {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 900px) {
  .satisfaction-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .satisfaction-image-container {
    max-width: 450px;
    margin: 0 auto;
  }
  
  .satisfaction-content-inner {
    max-width: 100%;
    text-align: center;
  }
  
  .satisfaction-number {
    justify-content: center;
  }
  
  .satisfaction-stats-mini {
    align-items: center;
  }
  
  .mini-stat {
    max-width: 350px;
    width: 100%;
  }
  
  .mini-stat:hover {
    transform: translateX(0) translateY(-4px);
  }
  
  .satisfaction-cta {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .satisfaction-section {
    padding: 50px 0;
  }
  
  .satisfaction-grid {
    gap: 40px;
  }
  
  .satisfaction-number {
    font-size: 4rem;
  }
  
  .percent-sign {
    font-size: 2rem;
  }
  
  .satisfaction-label {
    font-size: 1.3rem;
  }
  
  .satisfaction-description {
    font-size: 1rem;
  }
  
  .satisfaction-float-element {
    width: 40px;
    height: 40px;
  }
  
  .satisfaction-float-element i {
    font-size: 18px;
  }
  
  .satisfaction-mini-badge {
    padding: 12px 16px;
    bottom: -15px;
    right: -5px;
  }
  
  .mini-count {
    font-size: 1.3rem;
  }
  
  .satisfaction-ring {
    width: 80px;
    height: 80px;
    top: -20px;
    left: -20px;
  }
}

@media (max-width: 480px) {
  .satisfaction-main-image {
    border-radius: 18px;
  }
  
  .satisfaction-mini-badge {
    right: 10px;
  }
  
  .float-1 {
    right: 10px;
  }
  
  .float-3 {
    right: -10px;
  }
}


/* ============================================
   PORTFOLIO - ANIMATED RUNNING GALLERY (BACK-TO-BACK)
   ============================================ */
.portfolio-gallery {
  padding: 80px 0 60px;
  background: var(--bg-green-light);
  overflow: hidden;
}

.portfolio-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.portfolio-header .section-sub {
  color: var(--primary-green);
}

.portfolio-header .section-title {
  margin-bottom: 12px;
}

.portfolio-intro {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Gallery Track Wrapper */
.gallery-track-wrapper {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  margin-bottom: 10px;
}

/* Gradient fade edges */
.gallery-track-wrapper::before,
.gallery-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.gallery-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-green-light) 0%, transparent 100%);
}

.gallery-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-green-light) 0%, transparent 100%);
}

/* Gallery Track - Continuous Back-to-Back */
.gallery-track {
  overflow: visible;
  width: 100%;
}

.gallery-slide {
  display: flex;
  gap: 0; /* No gap between items */
  width: max-content;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  padding: 15px 0;
}

/* Remove gap, use padding on items instead */
.gallery-item {
  flex-shrink: 0;
  width: 300px;
  padding: 0 12px; /* Half gap on each side */
  transition: all 0.4s ease;
  box-sizing: content-box; /* Padding doesn't affect width calculation */
}

/* Row 1: Left to Right */
.gallery-track.left-to-right .gallery-slide {
  animation-name: scrollLeftToRight;
  animation-duration: 40s;
}

/* Row 2: Right to Left */
.gallery-track.right-to-left .gallery-slide {
  animation-name: scrollRightToLeft;
  animation-duration: 45s;
}

/* Pause on hover */
.gallery-track:hover .gallery-slide {
  animation-play-state: paused;
}

/* Alternating Up/Down */
.gallery-up {
  transform: translateY(-18px);
}

.gallery-down {
  transform: translateY(18px);
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.03) !important;
  z-index: 5;
}

/* Gallery Image */
.gallery-image {
  width: 300px;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  background: linear-gradient(145deg, #5b8c4e, #3d6b35);
}

.gallery-item:hover .gallery-image {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-radius: 24px;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.08);
}

/* Gallery Caption */
.gallery-caption {
  padding: 14px 4px 0;
  text-align: center;
}

.gallery-caption h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 4px;
}

.gallery-caption span {
  font-size: 0.85rem;
  color: var(--primary-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Portfolio CTA */
.portfolio-cta {
  text-align: center;
  margin-top: 50px;
}

.portfolio-cta .btn-primary {
  padding: 14px 36px;
}

/* ============================================
   KEYFRAME ANIMATIONS - EXACT PIXEL CALCULATION
   ============================================ */
/* 
   Each item = 300px width + 24px padding (12px left + 12px right) = 324px per item
   For 8 unique items, total width = 324px * 8 = 2592px
   But we have duplicates too, so animation moves by half = 2592px
*/

@keyframes scrollLeftToRight {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Move by exactly 8 items width (half of 16 items) */
    transform: translateX(-2592px);
  }
}

@keyframes scrollRightToLeft {
  0% {
    /* Start at -2592px (halfway through duplicate set) */
    transform: translateX(-2592px);
  }
  100% {
    transform: translateX(0);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .gallery-item {
    width: 260px;
    padding: 0 10px;
  }
  
  .gallery-image {
    width: 260px;
    height: 210px;
  }
  
  /* 260px + 20px padding = 280px * 8 = 2240px */
  @keyframes scrollLeftToRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(-2240px); }
  }
  
  @keyframes scrollRightToLeft {
    0% { transform: translateX(-2240px); }
    100% { transform: translateX(0); }
  }
}

@media (max-width: 768px) {
  .portfolio-gallery {
    padding: 50px 0 40px;
  }
  
  .portfolio-header {
    margin-bottom: 35px;
  }
  
  .gallery-item {
    width: 220px;
    padding: 0 8px;
  }
  
  .gallery-image {
    width: 220px;
    height: 180px;
    border-radius: 16px;
  }
  
  .gallery-up {
    transform: translateY(-12px);
  }
  
  .gallery-down {
    transform: translateY(12px);
  }
  
  .gallery-caption h4 {
    font-size: 1rem;
  }
  
  .gallery-caption span {
    font-size: 0.8rem;
  }
  
  .gallery-track-wrapper::before,
  .gallery-track-wrapper::after {
    width: 40px;
  }
  
  /* 220px + 16px padding = 236px * 8 = 1888px */
  @keyframes scrollLeftToRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1888px); }
  }
  
  @keyframes scrollRightToLeft {
    0% { transform: translateX(-1888px); }
    100% { transform: translateX(0); }
  }
}

@media (max-width: 480px) {
  .gallery-item {
    width: 180px;
    padding: 0 6px;
  }
  
  .gallery-image {
    width: 180px;
    height: 150px;
    border-radius: 14px;
  }
  
  .gallery-up {
    transform: translateY(-8px);
  }
  
  .gallery-down {
    transform: translateY(8px);
  }
  
  .gallery-caption {
    padding: 10px 2px 0;
  }
  
  .gallery-caption h4 {
    font-size: 0.95rem;
  }
  
  .gallery-caption span {
    font-size: 0.75rem;
  }
  
  .gallery-track-wrapper::before,
  .gallery-track-wrapper::after {
    width: 25px;
  }
  
  /* 180px + 12px padding = 192px * 8 = 1536px */
  @keyframes scrollLeftToRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1536px); }
  }
  
  @keyframes scrollRightToLeft {
    0% { transform: translateX(-1536px); }
    100% { transform: translateX(0); }
  }
}


/* ============================================
   STICKY SOCIAL MEDIA ICONS
   ============================================ */
.sticky-social {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Individual Social Icon */
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
  color: var(--white);
  position: relative;
  transition: all 0.3s ease;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Brand Colors */
.social-icon.facebook {
  background: #1877F2;
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.linkedin {
  background: #0A66C2;
}

.social-icon.youtube {
  background: #FF0000;
}

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

/* Hover Effects */
.social-icon:hover {
  width: 60px;
  border-radius: 12px 0 0 12px;
}

.social-icon:hover i {
  transform: scale(1.2);
}

/* Tooltip */
.social-tooltip {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-dark);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.social-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--primary-dark);
}

.social-icon:hover .social-tooltip {
  opacity: 1;
  visibility: visible;
}

/* WhatsApp Pulse Animation */
.social-icon.whatsapp {
  animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
  }
}

/* ============================================
   RESPONSIVE - MOBILE BOTTOM BAR
   ============================================ */
@media (max-width: 768px) {
  .sticky-social {
    position: fixed;
    right: auto;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: none;
    flex-direction: row;
    gap: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 0;
    justify-content: space-around;
    z-index: 999;
  }
  
  .social-icon {
    flex: 1;
    height: 50px;
    border-radius: 0;
    width: auto;
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: none;
    border-top: 3px solid transparent;
    transition: all 0.3s ease;
  }
  
  .social-icon i {
    font-size: 20px;
  }
  
  .social-icon:hover {
    width: auto;
    border-radius: 0;
  }
  
  /* Active state instead of background fill */
  .social-icon.facebook {
    background: var(--white);
    color: #1877F2;
  }
  .social-icon.facebook:hover,
  .social-icon.facebook:active {
    border-top-color: #1877F2;
    background: #f0f4ff;
  }
  
  .social-icon.instagram {
    background: var(--white);
    color: #E4405F;
  }
  .social-icon.instagram:hover,
  .social-icon.instagram:active {
    border-top-color: #E4405F;
    background: #fff0f3;
  }
  
  .social-icon.linkedin {
    background: var(--white);
    color: #0A66C2;
  }
  .social-icon.linkedin:hover,
  .social-icon.linkedin:active {
    border-top-color: #0A66C2;
    background: #f0f6ff;
  }
  
  .social-icon.youtube {
    background: var(--white);
    color: #FF0000;
  }
  .social-icon.youtube:hover,
  .social-icon.youtube:active {
    border-top-color: #FF0000;
    background: #fff0f0;
  }
  
  .social-icon.whatsapp {
    background: var(--white);
    color: #25D366;
    animation: none;
  }
  .social-icon.whatsapp:hover,
  .social-icon.whatsapp:active {
    border-top-color: #25D366;
    background: #f0fff5;
  }
  
  .social-icon:hover i {
    transform: scale(1.1);
  }
  
  /* Hide tooltip on mobile */
  .social-tooltip {
    display: none;
  }
  
  /* Add bottom padding to body to prevent content hiding behind bar */
  body {
    padding-bottom: 55px;
  }
}

@media (min-width: 769px) {
  /* Ensure no extra padding on desktop */
  body {
    padding-bottom: 0;
  }
}


/* ============================================
   RECENT BLOGS SECTION
   ============================================ */
.blogs-section {
  padding: 80px 0;
  background: var(--white);
}

.blogs-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.blogs-header .section-sub {
  color: var(--primary-green);
}

.blogs-header .section-title {
  margin-bottom: 12px;
}

.blogs-intro {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Blog Grid */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* Blog Card */
.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-lighter);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-card-inner {
  display: flex;
  flex-direction: column;
}

/* Blog Image Wrapper */
.blog-image-wrapper {
  position: relative;
  overflow: hidden;
}

.blog-image-link {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.08);
}

/* Cross Overlay Effect */
.blog-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 92, 62, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
  z-index: 2;
}

.blog-card:hover .blog-image-overlay {
  background: rgba(46, 92, 62, 0.75);
}

/* Cross Lines */
.cross-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cross-line-1 {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scaleX(0);
  transform-origin: center;
}

.cross-line-2 {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%) scaleY(0);
  transform-origin: center;
}

.blog-card:hover .cross-line-1 {
  transform: translateY(-50%) scaleX(1);
}

.blog-card:hover .cross-line-2 {
  transform: translateX(-50%) scaleY(1);
}

/* Overlay Plus Icon */
.overlay-icon {
  position: relative;
  z-index: 3;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .overlay-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.overlay-icon i {
  color: var(--white);
  font-size: 20px;
  transition: transform 0.3s ease;
}

.blog-card:hover .overlay-icon i {
  transform: rotate(0deg);
}

/* Date Badge */
.blog-date-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--white);
  color: var(--primary-dark);
  padding: 10px 14px;
  border-radius: 12px;
  text-align: center;
  z-index: 3;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  min-width: 55px;
}

.blog-date-badge strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-green);
}

.blog-date-badge span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* Blog Content */
.blog-content {
  padding: 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-title a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--primary-green);
}

.blog-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: gap 0.3s ease;
  margin-top: auto;
}

.blog-read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.blog-read-more:hover {
  gap: 14px;
}

.blog-read-more:hover i {
  transform: translateX(4px);
}

/* View All CTA */
.blogs-cta {
  text-align: center;
  margin-top: 20px;
}

.blogs-cta .btn-primary {
  padding: 14px 36px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .blogs-section {
    padding: 50px 0;
  }
  
  .blogs-header {
    margin-bottom: 35px;
  }
  
  .blog-content {
    padding: 20px 16px;
  }
  
  .blog-title {
    font-size: 1.1rem;
  }
  
  .blog-date-badge {
    padding: 8px 12px;
    top: 12px;
    left: 12px;
    min-width: 48px;
  }
  
  .blog-date-badge strong {
    font-size: 1.2rem;
  }
  
  .blog-date-badge span {
    font-size: 0.7rem;
  }
  
  .overlay-icon {
    width: 40px;
    height: 40px;
  }
  
  .overlay-icon i {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .blogs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .blog-image-link {
    aspect-ratio: 16 / 10;
  }
}


/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */

/* Page Header */
.page-header {
  background: linear-gradient(145deg, var(--bg-green-light) 0%, #e2ede0 100%);
  padding: 60px 24px;
  text-align: center;
}

.page-breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.page-breadcrumb a {
  color: var(--primary-green);
  text-decoration: none;
}

.page-breadcrumb i {
  margin: 0 8px;
  font-size: 10px;
  color: var(--text-muted);
}

.page-breadcrumb span {
  color: var(--text-muted);
}

.page-header h1 {
  margin-bottom: 12px;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Our Story */
.about-story {
  padding: 80px 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.about-story-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-story-image {
  position: relative;
}

.about-story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);
}

.story-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--primary-green);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 10px 25px rgba(46, 92, 62, 0.3);
}

/* Mission, Vision, Values */
.about-mvv {
  padding: 70px 0;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mvv-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-lighter);
  transition: all 0.3s ease;
}

.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.mvv-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(145deg, var(--bg-green-light), #e8f3e2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mvv-icon i {
  font-size: 30px;
  color: var(--primary-green);
}

.mvv-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--primary-dark);
}

.mvv-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Approach Timeline */
.about-approach {
  padding: 80px 0;
}

.approach-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.approach-step {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.approach-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 35px;
  top: 70px;
  bottom: -40px;
  width: 2px;
  background: var(--accent-light);
}

.step-number {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  position: relative;
  z-index: 2;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.step-content p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Stats Grid */
.about-stats {
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-lighter);
}

.stat-card i {
  font-size: 36px;
  color: var(--primary-green);
  margin-bottom: 16px;
}

.stat-card h3 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  font-family: 'Playfair Display', serif;
  margin-bottom: 6px;
}

.stat-card p {
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-story-image img {
    height: 400px;
  }
  
  .mvv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-story {
    padding: 50px 0;
  }
  
  .story-badge {
    left: 10px;
    bottom: -15px;
    padding: 12px 18px;
    font-size: 1rem;
  }
  
  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .approach-step {
    gap: 20px;
  }
  
  .step-number {
    width: 55px;
    height: 55px;
    min-width: 55px;
    font-size: 1.2rem;
  }
  
  .approach-step:not(:last-child)::after {
    left: 27px;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 40px 20px;
  }
  
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .stat-card h3 {
    font-size: 2rem;
  }
}

/* ============================================
   DETAILED FOUNDERS SECTION - SQUARE IMAGES
   ============================================ */
.bg-light {
  background: var(--bg-green-light);
}

.text-center {
  text-align: center;
}

.founders-detailed {
  margin-top: 50px;
}

.founder-detailed-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: var(--border-lighter);
  transition: all 0.3s ease;
}

.founder-detailed-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.founder-detailed-card.reverse {
  grid-template-columns: 1.5fr 1fr;
}

.founder-detailed-card.reverse .founder-image {
  order: 2;
}

.founder-detailed-card.reverse .founder-info {
  order: 1;
}

/* Founder Image - Clean Square */
.founder-image {
  border-radius: 16px; /* Subtle rounded corners for square look */
  overflow: hidden;
  aspect-ratio: 1 / 1; /* Perfect square */
  box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.08);
  border: 4px solid var(--white);
  outline: 1px solid var(--border-lighter);
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.founder-detailed-card:hover .founder-image img {
  transform: scale(1.03);
}

/* Founder Info */
.founder-info h3 {
  font-size: 1.8rem;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.founder-credential {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 1rem;
}

.founder-bio {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* Expertise Tags */
.founder-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.founder-expertise span {
  background: var(--bg-green-light);
  color: var(--primary-green);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.founder-expertise span:hover {
  background: var(--primary-green);
  color: var(--white);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .founder-detailed-card,
  .founder-detailed-card.reverse {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
    padding: 24px;
  }
  
  .founder-detailed-card.reverse .founder-image {
    order: -1;
  }
  
  .founder-detailed-card.reverse .founder-info {
    order: 1;
  }
  
  .founder-image {
    max-width: 300px;
    margin: 0 auto;
    border-radius: 14px;
  }
  
  .founder-expertise {
    justify-content: center;
  }
  
  .founder-info h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .founders-detailed {
    margin-top: 30px;
  }
  
  .founder-detailed-card,
  .founder-detailed-card.reverse {
    padding: 18px;
    gap: 20px;
    border-radius: 16px;
  }
  
  .founder-image {
    max-width: 250px;
    border-radius: 12px;
    border-width: 3px;
  }
  
  .founder-info h3 {
    font-size: 1.4rem;
  }
  
  .founder-bio {
    font-size: 1rem;
  }
  
  .founder-expertise span {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
}


/* ============================================
   WHY CHOOSE US PAGE STYLES
   ============================================ */

/* Reasons Grid */
.why-choose-reasons {
  padding: 70px 0;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.reason-card {
  background: var(--white);
  padding: 40px 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-lighter);
  transition: all 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-light);
}

.reason-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 24px;
  background: linear-gradient(145deg, var(--bg-green-light), #e8f3e2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
  background: var(--primary-green);
}

.reason-icon i {
  font-size: 32px;
  color: var(--primary-green);
  transition: color 0.3s ease;
}

.reason-card:hover .reason-icon i {
  color: var(--white);
}

.reason-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--primary-dark);
}

.reason-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* What Sets Us Apart */
.what-sets-apart {
  padding: 70px 0;
}

.apart-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.apart-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border-lighter);
  transition: all 0.3s ease;
}

.apart-item:hover {
  transform: translateX(6px);
  border-color: var(--accent-light);
}

.apart-number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.apart-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.apart-content p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Comparison Table */
.comparison {
  padding: 70px 0;
}

.comparison-table-wrapper {
  max-width: 800px;
  margin: 40px auto 0;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.comparison-table thead th {
  background: var(--primary-dark);
  color: var(--white);
  padding: 18px 20px;
  text-align: left;
  font-weight: 600;
}

.comparison-table thead th.highlight-col {
  background: var(--primary-green);
}

.comparison-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-lighter);
  color: var(--text-dark);
}

.comparison-table tbody td.highlight-col {
  font-weight: 600;
  color: var(--primary-green);
  background: #f9fbf7;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover td {
  background: var(--bg-green-light);
}

/* Why CTA Card */
.why-cta {
  padding: 0 0 70px;
}

.why-cta-card {
  background: linear-gradient(145deg, var(--primary-green), var(--primary-dark));
  border-radius: 30px;
  padding: 50px 40px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 15px 40px rgba(46, 92, 62, 0.2);
}

.why-cta-card h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 2rem;
}

.why-cta-card p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.why-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-white {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary-green);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .apart-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .reason-card {
    padding: 30px 22px;
  }
  
  .reason-icon {
    width: 65px;
    height: 65px;
  }
  
  .reason-icon i {
    font-size: 28px;
  }
  
  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 14px 16px;
    font-size: 0.9rem;
  }
  
  .why-cta-card {
    padding: 35px 24px;
  }
  
  .why-cta-card h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .apart-item {
    padding: 20px;
    gap: 14px;
  }
  
  .apart-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 1.1rem;
  }
  
  .why-cta-card {
    padding: 28px 18px;
    border-radius: 20px;
  }
  
  .comparison-table {
    font-size: 0.85rem;
  }
}


/* ============================================
   FILTER GALLERY STYLES
   ============================================ */
.gallery-filter-section {
  padding: 60px 0 80px;
}

/* Filter Buttons */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 12px 24px;
  border: 2px solid var(--border-lighter);
  background: var(--white);
  color: var(--text-dark);
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-btn i {
  font-size: 16px;
}

.filter-btn:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
  background: var(--bg-green-light);
}

.filter-btn.active {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
  box-shadow: 0 6px 18px rgba(46, 92, 62, 0.2);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  min-height: 300px;
}

/* Gallery Item */
.gallery-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: scale(1);
}

.gallery-item-inner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.gallery-item-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item-inner:hover img {
  transform: scale(1.08);
}

/* Gallery Overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(30, 58, 42, 0.9) 0%, rgba(30, 58, 42, 0.4) 50%, rgba(30, 58, 42, 0.1) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item-inner:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content {
  color: var(--white);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-item-inner:hover .gallery-overlay-content {
  transform: translateY(0);
}

.gallery-category {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  backdrop-filter: blur(4px);
}

.gallery-overlay-content h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.gallery-overlay-content p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 12px;
}

.gallery-zoom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--white);
  color: var(--primary-dark);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gallery-zoom:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: scale(1.1);
}

/* No Results */
.gallery-no-results {
  text-align: center;
  padding: 60px 20px;
}

.gallery-no-results i {
  font-size: 50px;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.gallery-no-results h3 {
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.gallery-no-results p {
  color: var(--text-muted);
}

/* Load More */
.gallery-load-more {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 40px;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 10;
}

.lightbox-close:hover {
  opacity: 0.7;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-caption {
  color: var(--white);
  text-align: center;
  padding: 16px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 600px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .filter-buttons {
    gap: 8px;
    margin-bottom: 30px;
  }
  
  .filter-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
  
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .gallery-item-inner {
    border-radius: 12px;
  }
  
  .gallery-overlay {
    padding: 16px;
  }
  
  .gallery-overlay-content h3 {
    font-size: 1rem;
  }
  
  .gallery-overlay-content p {
    font-size: 0.8rem;
    display: none;
  }
  
  .filter-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
    gap: 4px;
  }
  
  .filter-btn i {
    font-size: 14px;
  }
  
  .lightbox-close {
    top: 12px;
    right: 16px;
    font-size: 30px;
  }
}

@media (max-width: 400px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Section */
.contact-section {
  padding: 60px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* Contact Info Column */
.contact-info-column h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-intro {
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: var(--bg-green-light);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact-info-card:hover {
  background: var(--white);
  border-color: var(--accent-light);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-card-icon.whatsapp-bg {
  background: #25D366;
}

.contact-card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.contact-card-content p {
  margin-bottom: 4px;
}

.contact-card-content a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.2s;
}

.contact-card-content a:hover {
  color: var(--primary-dark);
}

.contact-card-content span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contact Social */
.contact-social h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.contact-social-links {
  display: flex;
  gap: 12px;
}

.contact-social-links a {
  width: 44px;
  height: 44px;
  background: var(--bg-green-light);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact-social-links a:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-4px);
}

/* Contact Form Column */
.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-lighter);
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8f0e3;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: var(--bg-light);
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(46, 92, 62, 0.08);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Map Section */
.map-section {
  padding: 0 0 80px;
}

.map-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
  position: relative;
  min-height: 450px;
  background: #e8f0e3;
}

.map-placeholder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* FAQ Section */
.faq-section {
  padding: 70px 0;
}

.faq-grid {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-lighter);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: var(--bg-green-light);
}

.faq-question h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin: 0;
  padding-right: 20px;
}

.faq-question i {
  font-size: 18px;
  color: var(--primary-green);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.active {
  border-color: var(--accent-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .contact-grid {
    gap: 40px;
  }
  
  .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info-column {
    order: 1;
  }
  
  .contact-form-column {
    order: 0;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 40px 0 60px;
  }
  
  .contact-form-wrapper {
    padding: 24px;
    border-radius: 18px;
  }
  
  .contact-form-wrapper h2 {
    font-size: 1.6rem;
  }
  
  .contact-info-column h2 {
    font-size: 1.6rem;
  }
  
  .faq-question {
    padding: 16px 20px;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-answer p {
    padding: 0 20px 16px;
  }
  
  .map-container {
    padding: 0 16px;
  }
  
  .map-placeholder {
    min-height: 320px;
  }
}

@media (max-width: 480px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-info-card {
    padding: 16px;
    gap: 14px;
  }
  
  .contact-card-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 18px;
  }
  
  .contact-form-wrapper {
    padding: 20px 16px;
  }
  
  .contact-social-links a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}


/* ============================================
   SERVICE PAGE STYLES
   ============================================ */

/* Service Page Header */
.page-header-service {
  padding: 70px 24px 80px;
}

.page-header-service h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  margin-bottom: 16px;
}

.service-header-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

/* Service Overview */
.service-overview {
  padding: 60px 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.overview-intro {
  font-size: 1.1rem;
  margin: 20px 0 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.overview-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.overview-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.overview-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--primary-dark);
}

.overview-feature i {
  color: var(--primary-green);
}

.overview-image {
  position: relative;
}

.overview-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);
}

.overview-badge {
  position: absolute;
  bottom: -15px;
  right: 20px;
  background: var(--primary-green);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(46, 92, 62, 0.3);
}

.overview-badge span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.overview-badge small {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Expertise Grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.expertise-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-lighter);
  transition: all 0.3s;
}

.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.expertise-image {
  height: 240px;
  overflow: hidden;
}

.expertise-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.expertise-card:hover .expertise-image img {
  transform: scale(1.05);
}

.expertise-content {
  padding: 24px;
}

.expertise-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.expertise-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.expertise-content ul {
  list-style: none;
}

.expertise-content ul li {
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.expertise-content ul li i {
  color: var(--primary-green);
  font-size: 14px;
}

/* Approach Steps */
.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.approach-step-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-lighter);
  transition: all 0.3s;
}

.approach-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.step-icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 20px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.approach-step-card h3 {
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.approach-step-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Projects Showcase */
.projects-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.project-showcase-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.project-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.project-showcase-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.project-showcase-info {
  padding: 20px;
}

.project-tag {
  display: inline-block;
  background: var(--bg-green-light);
  color: var(--primary-green);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.project-showcase-info h3 {
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.project-showcase-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Why Choose Service */
.why-choose-grid-service {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.why-card {
  background: var(--white);
  padding: 30px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-lighter);
  transition: all 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.why-card i {
  font-size: 36px;
  color: var(--primary-green);
  margin-bottom: 18px;
}

.why-card h3 {
  margin-bottom: 12px;
  color: var(--primary-dark);
  font-size: 1.15rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Areas Grid */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.area-tag {
  background: var(--white);
  color: var(--primary-dark);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  border: 1px solid var(--border-lighter);
  transition: all 0.3s;
}

.area-tag:hover {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
}

/* CTA Service Card */
.cta-section-service {
  padding: 0 0 70px;
}

.cta-service-card {
  background: linear-gradient(145deg, var(--primary-green), var(--primary-dark));
  border-radius: 30px;
  padding: 50px 40px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 15px 40px rgba(46, 92, 62, 0.2);
}

.cta-service-card h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-service-card p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.cta-service-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .approach-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .projects-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-choose-grid-service {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-header-service {
    padding: 50px 20px 60px;
  }
  
  .overview-features {
    grid-template-columns: 1fr;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  
  .approach-steps {
    grid-template-columns: 1fr;
  }
  
  .projects-showcase {
    grid-template-columns: 1fr;
  }
  
  .why-choose-grid-service {
    grid-template-columns: 1fr;
  }
  
  .cta-service-card {
    padding: 35px 24px;
  }
  
  .cta-service-card h2 {
    font-size: 1.6rem;
  }
}


/* ============================================
   PLANT RENTAL PAGE ADDITIONAL STYLES
   ============================================ */

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.benefit-card {
  background: var(--white);
  padding: 30px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  border: 1px solid var(--border-lighter);
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.benefit-icon {
  width: 65px; height: 65px;
  margin: 0 auto 20px;
  background: linear-gradient(145deg, var(--bg-green-light), #e8f3e2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.benefit-icon i { font-size: 28px; color: var(--primary-green); }

.benefit-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--primary-dark); }
.benefit-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* Popular Plants Grid */
.plants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plant-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  border: 1px solid var(--border-lighter);
  transition: all 0.3s;
}

.plant-card:hover { transform: translateY(-6px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }

.plant-image { height: 280px; overflow: hidden; }
.plant-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.plant-card:hover .plant-image img { transform: scale(1.05); }

.plant-info { padding: 20px; }
.plant-info h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--primary-dark); }
.plant-info p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; margin-bottom: 14px; }

.plant-tag {
  display: inline-block;
  background: var(--bg-green-light);
  color: var(--primary-green);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-right: 6px;
  margin-bottom: 6px;
}

.plant-tag i { margin-right: 4px; font-size: 12px; }

/* What We Provide Grid */
.provide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.provide-card {
  background: var(--white);
  padding: 28px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  border: 1px solid var(--border-lighter);
  transition: all 0.3s;
}

.provide-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }

.provide-icon {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}

.provide-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--primary-dark); }
.provide-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }

/* Steps Grid (How It Works) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 55px; left: 15%; right: 15%;
  height: 2px;
  background: var(--accent-light);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  display: none;
}

.step-icon-circle {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  background: var(--white);
  border: 3px solid var(--primary-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  color: var(--primary-green);
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-card:hover .step-icon-circle {
  background: var(--primary-green);
  color: var(--white);
}

.step-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--primary-dark); }
.step-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }

/* Featured Project Card */
.featured-project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
  margin-top: 40px;
}

.featured-project-image { height: 100%; min-height: 400px; }
.featured-project-image img { width: 100%; height: 100%; object-fit: cover; }

.featured-project-info { padding: 40px; }
.featured-project-info h3 { font-size: 1.6rem; margin: 10px 0 14px; color: var(--primary-dark); }
.featured-project-info p { color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.featured-project-info ul { list-style: none; margin-bottom: 24px; }
.featured-project-info ul li { padding: 6px 0; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.featured-project-info ul li i { color: var(--primary-green); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .benefits-grid, .plants-grid { grid-template-columns: repeat(2, 1fr); }
  .provide-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .featured-project-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .benefits-grid, .plants-grid, .provide-grid, .steps-grid { grid-template-columns: 1fr; gap: 18px; }
  .featured-project-info { padding: 24px; }
  .featured-project-image { min-height: 280px; }
}

/* ============================================
   VERTICAL GARDEN PAGE ADDITIONAL STYLES
   ============================================ */

/* Where to Install Grid */
.where-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.where-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  border: 1px solid var(--border-lighter);
  transition: all 0.3s;
}

.where-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.where-card.reverse {
  grid-template-columns: 1fr 1fr;
}

.where-card.reverse .where-image {
  order: 2;
}

.where-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.where-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.where-card:hover .where-image img {
  transform: scale(1.05);
}

.where-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(30,58,42,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}

.where-card:hover .where-overlay {
  opacity: 1;
}

.where-overlay i {
  font-size: 40px;
  margin-bottom: 12px;
}

.where-overlay h3 {
  font-size: 1.4rem;
}

.where-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.where-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.where-content ul {
  list-style: none;
}

.where-content ul li {
  padding: 5px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.where-content ul li i {
  color: var(--primary-green);
  font-size: 14px;
}

/* Systems Grid */
.systems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.system-card {
  background: var(--white);
  padding: 30px 22px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  border: 1px solid var(--border-lighter);
  transition: all 0.3s;
}

.system-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border-color: var(--accent-light);
}

.system-icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(145deg, var(--bg-green-light), #e8f3e2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--primary-green);
}

.system-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.system-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

.system-tag {
  display: inline-block;
  background: var(--bg-green-light);
  color: var(--primary-green);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* Featured Project Reverse */
.featured-project-card.reverse {
  grid-template-columns: 1fr 1fr;
}

.featured-project-card.reverse .featured-project-image {
  order: 2;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .systems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .where-card,
  .where-card.reverse {
    grid-template-columns: 1fr;
  }
  
  .where-card.reverse .where-image {
    order: -1;
  }
  
  .where-image {
    height: 220px;
  }
  
  .where-content {
    padding: 20px;
  }
  
  .systems-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .featured-project-card,
  .featured-project-card.reverse {
    grid-template-columns: 1fr;
  }
  
  .featured-project-card.reverse .featured-project-image {
    order: -1;
  }
}

/* ============================================
   INDOOR STYLING PAGE ADDITIONAL STYLES
   ============================================ */

/* Process Timeline */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.process-step-number {
  width: 50px; height: 50px; min-width: 50px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: 'Playfair Display', serif; font-size: 1.2rem;
}

.process-step-content {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  flex: 1;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid var(--border-lighter);
  display: flex; gap: 20px; align-items: flex-start;
}

.process-step-icon {
  width: 50px; height: 50px; min-width: 50px;
  background: linear-gradient(145deg, var(--bg-green-light), #e8f3e2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--primary-green);
}

.process-step-content h3 {
  font-size: 1.15rem; margin-bottom: 8px; color: var(--primary-dark);
}

.process-step-content p {
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.5;
}

/* Spaces Grid */
.spaces-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.space-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  border: 1px solid var(--border-lighter);
  transition: all 0.3s;
}

.space-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.space-card.reverse-card {
  grid-template-columns: 1.2fr 1fr;
}

.space-card.reverse-card .space-image {
  order: 2;
}

.space-image {
  height: 300px; overflow: hidden;
}

.space-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}

.space-card:hover .space-image img {
  transform: scale(1.05);
}

.space-content {
  padding: 28px;
  display: flex; flex-direction: column; justify-content: center;
}

.space-icon {
  width: 48px; height: 48px;
  background: var(--bg-green-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--primary-green);
  margin-bottom: 16px;
}

.space-content h3 {
  font-size: 1.25rem; margin-bottom: 10px; color: var(--primary-dark);
}

.space-content p {
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; margin-bottom: 14px;
}

.space-content ul {
  list-style: none;
}

.space-content ul li {
  padding: 4px 0; color: var(--text-muted); font-size: 0.85rem;
  display: flex; align-items: center; gap: 8px;
}

.space-content ul li i {
  color: var(--primary-green); font-size: 13px;
}

/* Plants Mini Grid */
.plants-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.plant-mini-card {
  background: var(--white);
  padding: 24px 18px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.03);
  border: 1px solid var(--border-lighter);
  transition: all 0.3s;
}

.plant-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.plant-mini-icon {
  width: 50px; height: 50px;
  margin: 0 auto 14px;
  background: linear-gradient(145deg, var(--bg-green-light), #e8f3e2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--primary-green);
}

.plant-mini-card h3 {
  font-size: 1rem; margin-bottom: 8px; color: var(--primary-dark);
}

.plant-mini-card p {
  color: var(--text-muted); font-size: 0.8rem; line-height: 1.4;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .plants-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .process-step {
    flex-direction: column; gap: 12px;
  }
  
  .process-step-number {
    width: 40px; height: 40px; min-width: 40px; font-size: 1rem;
  }
  
  .process-step-content {
    flex-direction: column; gap: 12px;
  }
  
  .space-card,
  .space-card.reverse-card {
    grid-template-columns: 1fr;
  }
  
  .space-card.reverse-card .space-image {
    order: -1;
  }
  
  .space-image {
    height: 200px;
  }
  
  .space-content {
    padding: 20px;
  }
  
  .plants-mini-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .plants-mini-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CORPORATE GIFTING PAGE ADDITIONAL STYLES
   ============================================ */

/* Page Header Gifting */
.page-header-gifting {
  background: linear-gradient(145deg, #f7fdf5 0%, #ecf8e8 100%);
}

/* Occasions Grid */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.occasions-grid .occasion-card:last-child {
  grid-column: span 1;
}

.occasion-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  border: 1px solid var(--border-lighter);
  transition: all 0.3s;
}

.occasion-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.occasion-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.occasion-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}

.occasion-card:hover .occasion-image img {
  transform: scale(1.05);
}

.occasion-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(30,58,42,0.65);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--white);
  opacity: 0; transition: opacity 0.3s;
}

.occasion-card:hover .occasion-overlay {
  opacity: 1;
}

.occasion-overlay i {
  font-size: 36px; margin-bottom: 10px;
}

.occasion-overlay h3 {
  font-size: 1.2rem;
}

.occasion-info {
  padding: 20px;
}

.occasion-info h3 {
  font-size: 1.15rem; margin-bottom: 8px; color: var(--primary-dark);
}

.occasion-info p {
  color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; margin-bottom: 12px;
}

.occasion-info ul {
  list-style: none;
}

.occasion-info ul li {
  padding: 3px 0; color: var(--text-muted); font-size: 0.82rem;
  display: flex; align-items: center; gap: 6px;
}

.occasion-info ul li i {
  color: var(--primary-green); font-size: 12px;
}

/* Why Plants Grid */
.whyp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.whyp-card {
  background: var(--white);
  padding: 30px 22px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  border: 1px solid var(--border-lighter);
  transition: all 0.3s;
}

.whyp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border-color: var(--accent-light);
}

.whyp-icon {
  width: 65px; height: 65px;
  margin: 0 auto 18px;
  background: linear-gradient(145deg, var(--bg-green-light), #e8f3e2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--primary-green);
}

.whyp-card h3 {
  font-size: 1.1rem; margin-bottom: 10px; color: var(--primary-dark);
}

.whyp-card p {
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.5;
}

/* Gifting Steps */
.gifting-steps {
  grid-template-columns: repeat(4, 1fr);
}

.gifting-steps .step-icon-circle {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  background: var(--white);
  border: 3px solid var(--primary-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--primary-green);
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gifting-steps .step-card:hover .step-icon-circle {
  background: var(--primary-green);
  color: var(--white);
}

/* Gift Plants Grid */
.gift-plants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gift-plant-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  border: 1px solid var(--border-lighter);
  transition: all 0.3s;
}

.gift-plant-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.gift-plant-image {
  height: 240px;
  overflow: hidden;
}

.gift-plant-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}

.gift-plant-card:hover .gift-plant-image img {
  transform: scale(1.05);
}

.gift-plant-info {
  padding: 18px;
}

.gift-plant-info h3 {
  font-size: 1.15rem; margin-bottom: 6px; color: var(--primary-dark);
}

.gift-symbolism {
  font-size: 0.8rem; color: var(--primary-green); font-weight: 500;
  margin-bottom: 8px; display: flex; align-items: center; gap: 4px;
}

.gift-symbolism i {
  font-size: 12px;
}

.gift-plant-info p:last-child {
  color: var(--text-muted); font-size: 0.85rem; line-height: 1.4;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .occasions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gift-plants-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .whyp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gifting-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .occasions-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  .gift-plants-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  .whyp-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 30px auto 0;
  }
  .gifting-steps {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  .occasion-image {
    height: 180px;
  }
  .gift-plant-image {
    height: 220px;
  }
}


/* ============================================
   AGRI CONSULTING PAGE ADDITIONAL STYLES
   ============================================ */

/* Expert Highlight Full Card */
.expert-card-full {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--border-lighter);
}

.expert-image-full {
  position: relative;
  height: 100%;
  min-height: 450px;
}

.expert-image-full img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.expert-credentials-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--primary-green);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(46,92,62,0.3);
}

.expert-credentials-badge span {
  display: block; font-size: 1.3rem; font-weight: 700; font-family: 'Playfair Display', serif; line-height: 1.2;
}

.expert-credentials-badge small {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9;
}

.expert-info-full {
  padding: 40px 40px 40px 0;
}

.expert-title {
  color: var(--primary-green); font-weight: 600; margin-bottom: 20px; font-size: 1rem;
}

.expert-info-full p {
  color: var(--text-muted); line-height: 1.7; margin-bottom: 16px;
}

.expert-achievements {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px;
}

.achievement-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-green-light); padding: 12px 16px; border-radius: 12px;
  font-weight: 500; color: var(--primary-dark); font-size: 0.9rem;
}

.achievement-item i {
  color: var(--primary-green); font-size: 18px;
}

/* Consulting Services Grid */
.consulting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.consulting-card {
  background: var(--white);
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  border: 1px solid var(--border-lighter);
  transition: all 0.3s;
}

.consulting-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border-color: var(--accent-light);
}

.consulting-icon {
  width: 55px; height: 55px;
  background: linear-gradient(145deg, var(--bg-green-light), #e8f3e2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--primary-green);
  margin-bottom: 18px;
}

.consulting-card h3 {
  font-size: 1.2rem; margin-bottom: 10px; color: var(--primary-dark);
}

.consulting-card > p {
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px;
}

.consulting-list {
  list-style: none;
}

.consulting-list li {
  padding: 5px 0; color: var(--text-muted); font-size: 0.85rem;
  display: flex; align-items: center; gap: 8px;
}

.consulting-list li i {
  color: var(--primary-green); font-size: 13px;
}

/* Approach Timeline Vertical */
.approach-timeline-vertical {
  display: flex; flex-direction: column; gap: 24px;
  max-width: 750px; margin: 40px auto 0;
}

.approach-timeline-item {
  display: flex; gap: 24px; align-items: flex-start;
}

.timeline-marker {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: 'Playfair Display', serif; font-size: 1.1rem;
}

.timeline-card {
  background: var(--white);
  padding: 20px 24px;
  border-radius: 16px;
  flex: 1;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid var(--border-lighter);
}

.timeline-card h3 {
  font-size: 1.1rem; margin-bottom: 8px; color: var(--primary-dark);
  display: flex; align-items: center; gap: 10px;
}

.timeline-card h3 i {
  color: var(--primary-green); font-size: 18px;
}

.timeline-card p {
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .expert-card-full {
    grid-template-columns: 1fr;
  }
  .expert-image-full {
    min-height: 350px;
  }
  .expert-info-full {
    padding: 0 30px 30px;
  }
  .consulting-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .expert-card-full {
    gap: 0;
  }
  .expert-image-full {
    min-height: 300px;
  }
  .expert-info-full {
    padding: 20px;
  }
  .expert-achievements {
    grid-template-columns: 1fr;
  }
  .approach-timeline-item {
    gap: 14px;
  }
  .timeline-marker {
    width: 40px; height: 40px; min-width: 40px; font-size: 1rem;
  }
  .timeline-card {
    padding: 16px 18px;
  }
}

@media (max-width: 480px) {
  .consulting-card {
    padding: 20px;
  }
  .consulting-card h3 {
    font-size: 1.1rem;
  }
}