:root {
  --green: hsl(85, 46%, 46%);
  --blue: #214D61;
  --light: #f6f8f5;
  --dark: #0f2e3a;
  --hero-title-size: 150px;
  --hero-title-line-height: 1.2;
  --hero-title-weight: 700;
  --hero-subtitle-size: 16px;
  --hero-subtitle-line-height: 1.7;
  --description-size: 16px;
  --description-line-height: 1.7;
  --service-description-title: 15px;
  --service-description-line-height: 1.25;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fafafa;
  color: #333;
  line-height: 1.6;
}

/* ===== GLOBAL LAYOUT SYSTEM ===== */
.section {
  width: 100%;
  padding: 70px 0;
  position: relative;
  /*gdggdg*/
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1400px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(33, 77, 97, 0.12), transparent);
}

/* Remove divider for FIRST section after hero */
.section.no-divider::before {
  display: none;
}

/* Dark sections use lighter divider */
.section-dark::before {
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.131), transparent);
}

.section-light {
  background: #ffffff;
}

.section-soft {
  background: #f6f8f5;
}

.section-dark {
  background: #214D61;
  color: white;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
}

/* MOBILE */
@media (max-width: 900px) {
  .section {
    padding: 90px 0;
  }

  .container {
    padding: 0 24px;
  }
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: .3px;
}

/* HEADER */
/* header { position: fixed; top: 0; left: 0; right: 0; background: transparent; z-index: 1000; padding: 0px 40px; display: flex; align-items: center; justify-content: space-between; transition: all .3s ease; } */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1000;
  padding: 8px 40px;
  /* ↓ was 0px 40px */
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .3s ease;
  height: 90px;
}

header {
  min-height: 64px;
}

header.scrolled {
  /* background: white; */
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

header img {
  height: 220px;
  width: auto;
}

/* NAV DROPDOWN */
.nav-dropdown{
  position:relative;
  display:inline-block;
}

.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  background:white;
  border-radius:12px;
  padding:10px 0;
  width:220px;
  box-shadow:0 10px 30px rgba(0,0,0,.1);

  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:all .25s ease;

  display:flex;
  flex-direction:column;
}

.dropdown-menu a{
  padding:10px 18px;
  font-size:14px;
  color:var(--blue);
  text-decoration:none;
}

.dropdown-menu a:hover{
  background:#f6f8f5;
  color:var(--green);
}

/* SHOW DROPDOWN ON HOVER */
/* .nav-dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
} */

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

.dropdown-arrow{
  width:14px;
  height:14px;
  stroke:currentColor;
  stroke-width:2;
  fill:none;
  transition:transform .25s ease;
}

.nav-dropdown:hover .dropdown-arrow{
  transform:rotate(180deg);
}
.dropdown-arrow svg{
  width:14px;
  height:14px;
  stroke:currentColor;
  stroke-width:2;
  fill:none;
  transition:transform .25s ease;
}

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

@media (max-width:768px){

  .nav-dropdown{
    width:100%;
  }

  .dropdown-menu{
    position:static;
    width:100%;
    padding-left:14px;
    box-shadow:none;

    /* HIDDEN by default */
    max-height:0;
    overflow:hidden;
    opacity:0;
    visibility:hidden;

    transition:max-height .3s ease;
  }

  .nav-dropdown.open .dropdown-menu{
    max-height:500px;
    opacity:1;
    visibility:visible;
  }

  .dropdown-menu a{
    padding:8px 0;
    font-size:15px;
  }

}@media (max-width:768px){
  .nav-dropdown{
    width:100%;
  }
  
  .dropdown-menu{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    width:100%;
    padding-left:10px;
  }
  
  .dropdown-menu a{
    padding:8px 0;
    font-size:15px;
  }
  
  }

/* ===== MOBILE MENU BUTTON ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--blue);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 28px;
  text-decoration: none;
  color: var(--blue);
  font-weight: 500;
  transition: color .3s ease;
}

header.scrolled nav a {
  color: var(--blue);
}

.btn-primary {
  background: var(--blue);
  color: white !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 500;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('assets/images/hero-bg.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  color: white;
}

.hero h1 {
  font-size: var(--hero-title-size);
  font-weight: var(--hero-title-weight);
  line-height: var(--hero-title-line-height);
  font-family: 'Playfair Display', serif;
  color: var(--blue);
}

.hero h1 span {
  color: #80AD40;
}

.hero p {
  max-width: 720px;
  margin: 24px auto;
  font-size: var(--hero-subtitle-size);
  line-height: var(--hero-subtitle-line-height);
  color: var(--blue);
  opacity: 1;
}

.hero-buttons a {
  display: inline-block;
  margin: 10px;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
}

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

.btn-blue {
  background: var(--blue);
  color: white;
}

.btn-outline {
  border: 2px solid var(--blue);
  color: var(--green);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #eaf3df;
  color: var(--green);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 22px;
}

/* HERO BADGE ONLY */
.badge.hero-badge {
  white-space: nowrap;
  max-width: 100%;
  background: rgba(128, 173, 64, .18);
  border: 1.5px solid rgba(128, 173, 64, .45);
  color: var(--blue);
  backdrop-filter: blur(6px);
}

.badge.hero-badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #80AD40;
  display: inline-block;
}

.badge img {
  width: 25px;
  height: 25px;
}

h2 {
  font-size: 42px;
  color: #214D61;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

h2 span {
  color: var(--green);
}

.section-desc {
  max-width: 760px;
  color: #6b8a94;
  margin: 24px auto;
  font-size: var(--description-size);
  line-height: var(--description-line-height);
  color: var(--blue);
  opacity: 1;
}

/* ABOUT SECTION – EXACT MATCH */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  margin-top: 20px;
  /* align cards with title top */
  align-items: start;
}

.about-content h2 {
  line-height: 1.15;
}

.about-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.about-icon-circle svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}

.about-features {
  display: flex;
  gap: 60px;
  margin-top: 36px;
}

.about-features .feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-features img {
  width: 28px;
  height: 28px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: #eef5e6;
  /* soft green */
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: #80AD40;
  stroke-width: 1.8;
  fill: none;
}

.feature-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: #264653;
  margin: 0 0 4px;
}

.feature-text p {
  font-size: 13px;
  color: #6b8b95;
  margin: 0;
}

/* NEW Container for the staggered columns */
.staggered-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Forces 2 columns on mobile and desktop */
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.stat-card {
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

/* Length Logic */
.card-tall {
  min-height: 280px;
}

.card-short {
  min-height: 200px;
}

/* The Staggered Effect */
/* Push the right-side cards down slightly */
.staggered-grid > div:nth-child(even) {
  transform: translateY(30px);
}

/* Backgrounds from image */
.bg-sage { background-color: #DEE4DF; color: #214D61; }
.bg-cream { background-color: #F0F4EC; color: #80AD40; }
.bg-light-gray { background-color: #ECECEC; color: #80AD40; }
.bg-gradient-navy { 
  /* background: linear-gradient(135deg, #214D61 0%, #9EB0B8 100%);  */
  background-color: var(--blue);
  color: white; 
}

/* Typography Adjustments for Mobile */
.stat-card h3 {
  font-size: 28px; /* Slightly smaller for mobile screens */
  margin: 0;
}

.stat-card span {
  font-size: 13px;
  font-weight: 500;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.3;
}

.stat-icon-circle {
  width: 48px;
  height: 48px;
  background: #80AD40;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: white;
}

.stat-icon-circle svg { width: 22px; height: 22px; }

/* Desktop Upscaling */
@media (min-width: 900px) {
  .staggered-grid { gap: 25px; }
  .card-tall { min-height: 340px; }
  .card-short { min-height: 250px; }
  .stat-card h3 { font-size: 42px; }
  .quote-text { font-size: 22px; }
}

/* END*/


.about-cards {
  display: grid;
  grid-template-columns: 300px 260px;
  grid-template-rows: 260px 260px;
  gap: 32px;
  align-items: start;
}

.about-card {
  border-radius: 28px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1.5px solid rgba(33, 77, 97, .10);
  transition: transform .35s ease, box-shadow .35s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(33, 77, 97, .12);
}

.about-card.soft {
  background: linear-gradient(180deg, #eaf3df, #f5f8f2);
}

.about-card.soft p {
  margin-top: 14px;
  font-weight: 500;
  color: var(--blue);
  font-size: 18px;
}

.about-card.light {
  background: #f2f2f2;
}

.about-card.light h3 {
  font-size: 42px;
  color: var(--green);
}

.about-card.light span {
  font-size: 18px;
  color: var(--blue);
}

.about-card.pale {
  background: #f1f6ea;
}

.about-card.pale h3 {
  font-size: 42px;
  color: var(--green);
}

.about-card.pale span {
  font-size: 18px;
  color: var(--blue);
}

.about-card.quote {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  border: none;
  background: linear-gradient(180deg, #214D61, #173947);
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-style: italic;
  line-height: 1.5;
  padding: 48px 36px;
}

/* Container for the 4-card grid */
.about-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.stat-card {
  padding: 40px 20px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 240px;
  transition: transform 0.3s ease;
}

/* The "Staggered" effect */
.lifted {
  transform: translateY(-30px);
}

/* Background Colors */
.light-green-bg { background-color: #e8f0e4; border: 1px solid #dbe6d3; }
.soft-green-bg { background-color: #f1f5eb; border: 1px solid #e1eadb; }
.dark-blue-bg { background-color: #80AD40; color: white; } /* Highlight card */
.navy-bg { background-color: #214D61; color: white; }

.stat-icon-circle {
  width: 56px;
  height: 56px;
  background: #80AD40;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: white;
}

.stat-icon-circle.outline {
  background: rgba(255,255,255,0.2);
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 28px;
  height: 28px;
}

@media(max-width:900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-cards {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  position: relative;
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
  transition: transform .35s ease, box-shadow .35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .2);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(33, 77, 97, .88), rgba(33, 77, 97, .35));
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-icon {
  width: 42px;
  height: 42px;
  background: rgba(128, 173, 64, .9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.service-icon img {
  width: 22px;
  height: 22px;
}

.service-overlay h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-overlay p {
  font-size: 14px;
  opacity: .95;
}

.service-overlay a {
  margin-top: 12px;
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.service-description {
  max-width: 760px;
  color: #ffffff;
  font-size: var(--service-description-title);
  line-height: var(--service-description-line-height);
  opacity: 1;
}

@media(max-width:1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== GARDEN INPUTS ===== */

.product-filters {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.product-filters button {
  padding: 10px 18px;
  border-radius: 30px;
  border: none;
  background: #eaeaea;
  color: var(--blue);
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

.product-filters button.active,
.product-filters button:hover {
  background: var(--green);
  color: white;
}

/* GRID */
.products-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.product-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(33,77,97,0.08);
  transition: all 0.3s ease, opacity 0.3s ease;
  padding: 15px;
}


.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(33,77,97,0.12);
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  background: #f5f5f5;
  /* padding: 20px; */

  margin: 0;
  padding: 25px;

  border-radius: 20px;

  /* 🔥 THIS MAKES BORDER VISIBLE */
  border: 1.5px solid rgba(33,77,97,0.15);
  /* 🔥 subtle elevation (premium look) */
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
}

.product-card.hide {
  opacity: 0;
  transform: scale(0.95);
}

/* CONTENT */
.product-content {
  padding: 24px;
  text-align: left;
}

.product-tag {
  display: inline-block;
  background: #eaf3df;
  color: var(--green);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.product-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--blue);
}

.product-content p {
  font-size: 14px;
  color: #6b8a94;
  margin-bottom: 14px;
}

.learn-more {
  text-decoration: none;
  font-weight: 500;
  color: var(--green);
  font-size: 14px;
}

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

@media(max-width: 600px){
  .products-grid{
    grid-template-columns: 1fr;
  }
}

/* PARTNERS SECTION */
.partners-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap:30px;
  align-items:center;
}

.partner-logo{
  background:white;
  height:120px;
  border-radius:16px;
  border:1px solid rgba(33,77,97,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  transition:all .3s ease;
}


.partner-logo img{
  max-width:100%;
  max-height:70px;
  object-fit:contain;
}

.partner-logo:hover{
  transform:translateY(-5px);
  box-shadow:0 8px 25px rgba(33,77,97,.1);
}

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

/* --- GALLERY / WORK SECTION STYLES --- */
.work-section {
  background: var(--light);
  padding: 100px 60px;
  text-align: center;
  /* Centers the Heading and Section Desc */
}

.work-container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.work-container .badge {
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
  /* Ensures badge centers correctly */
}

.work-container h2 {
  font-size: 42px;
  margin-top: 10px;
}

.work-container .section-desc {
  margin: 0 auto 50px;
  /* Centers the description text block */
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 24px;
}

.work-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.work-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

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

/* Centering the text inside the hover overlay */
.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(33, 77, 97, 0.9), transparent);
  display: flex;
  align-items: center;
  /* Vertically centers overlay text */
  justify-content: center;
  /* Horizontally centers overlay text */
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.work-overlay span {
  color: white;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
}

.work-item:hover img {
  transform: scale(1.1);
}

.work-item:hover .work-overlay {
  opacity: 1;
}

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

  .work-section {
    padding: 80px 24px;
  }
}

/* ===== EXACT OFFICES UI ===== */
.offices {
  background: #f6f8f5;
  padding: 120px 60px;
}

.offices-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.offices-header .badge {
  justify-content: center;
}

.offices-header h2 {
  font-size: 42px;
  color: var(--blue);
  margin: 18px 0;
}

.offices-header p {
  color: #6b8a94;
  font-size: 16px;
  line-height: 1.25;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.office-card {
  background: #fff;
  border-radius: 28px;
  padding: 42px;
  border: 1px solid rgba(33, 77, 97, .10);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  transition: all .35s ease;
}

.office-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(33, 77, 97, .12);
}

/* HEADER */
.office-head {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
}

.office-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #eef5e6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.office-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green);
  stroke-width: 1.8;
  fill: none;
}

/* TITLE */
.office-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--blue);
  margin-bottom: 6px;
}

.office-address {
  color: #6b8a94;
  font-size: 15px;
  line-height: 1.5;
}

/* DETAILS */
.office-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.office-row {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 15px;
  color: #214D61;
  padding: 6px 0;
  transition: all .25s ease;
  cursor: pointer;
  word-break: break-word;
}

.office-row svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  stroke-width: 1.8;
  fill: none;
  transition: all .25s ease;
}

/* ROW HOVER */
.office-row:hover {
  color: var(--green);
}

.office-row:hover svg {
  stroke: var(--green);
  transform: scale(1.1);
}

/* MAP LINK */
.office-map {
  margin-top: 26px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  transition: all .25s ease;
}

.office-map svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  stroke-width: 1.8;
  fill: none;
}

.office-map:hover {
  gap: 14px;
  opacity: .85;
}

/* MOBILE */
@media(max-width:900px) {
  .office-grid {
    grid-template-columns: 1fr;
  }

  .offices {
    padding: 90px 24px;
  }

  .offices-header h2 {
    font-size: 42px;
  }
}

/* CONTACT SECTION SPECIFIC STYLES */
.contact-section {
  background: #ffffff;
  padding: 60px 40px !important;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: stretch;
  /* CRITICAL: Matches the bottom of both columns */
}

.contact-left {
  flex: 1.1;
  display: flex;
  flex-direction: column;
}

.contact-left h2 {
  font-size: 42px;
  line-height: 1.15;
  color: var(--blue);
  margin-bottom: 24px;
}

.contact-left p {
  color: #6b8a94;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 44px;
}

/* --- ICON & LIST STYLING (CONSOLIDATED) --- */
.contact-details-list {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.25s ease;
}

.contact-icon,
.office-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #eef5e6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-item {
  display: flex;
  gap: 18px;
  align-items: center;
}

.detail-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #eef5e6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon-box i {
  font-size: 20px;
  color: var(--green);
}

.detail-info strong {
  display: block;
  font-size: 18px;
  color: var(--blue);
}

.detail-info span {
  color: #6b8a94;
  font-size: 15px;
}

/* CONTACT GRID LAYOUT */
.contact-grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px !important;
  margin-top: 15px !important;
}

/* INDIVIDUAL INFO CARD */
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 15px !important;
  background: #ffffff;
  padding: 14px 20px !important;
  ;
  border-radius: 16px;
  border: 1px solid rgba(33, 77, 97, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none !important;
  color: inherit !important;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(33, 77, 97, 0.08);
}

/* ICON BOXES */
.info-icon-box {
  width: 44px !important;
  /* Reduced from 54px */
  height: 44px !important;
  min-width: 44px !important;
  background: #eef5e6;
  /* Soft green from your About section icons */
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon-box svg {
  width: 20px !important;
  height: 24px;
  stroke: var(--green);
  stroke-width: 1.8;
  fill: none;
}

/* SOCIAL SPECIFIC COLORS */
.info-icon-box.whatsapp-bg svg {
  stroke: #25D366;
}

.info-icon-box.insta-bg svg {
  stroke: #E1306C;
}

/* TEXT CONTENT */
.info-content strong {
  font-size: 16px !important;
  /* Slightly smaller title */
  margin-bottom: 2px !important;
  display: block;
  color: var(--blue);
  font-family: 'Poppins', sans-serif;
}

.info-content p {
  color: #6b8a94;
  font-size: 14px !important;
  margin: 0;
  line-height: 1.2 !important;
}

/* Ensure the link tags behave like the cards */
.action-card {
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer;
}

/* Hover effect specifically for clickable cards */
.action-card:hover {
  border-color: var(--green);
  background-color: #f9fcf6;
  /* Very light tint on hover */
}

/* FORM STYLES */
.contact-form-container {
  flex: 1;
  background: var(--light);
  border-radius: 32px;
  padding: 50px 42px;
  /* Increased vertical padding to maintain box length */
  display: flex;
  flex-direction: column;
}

.contact-form-flex {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  /* Makes the form fill the available box height */
}

.contact-form-container .badge {
  align-self: flex-start;
  margin-bottom: 12px;
  background: #eef5e6;
  /* Soft green tint for the badge inside the box */
}

.contact-form-container h3 {
  font-size: 28px;
  color: var(--blue);
  margin-top: 10px;
  /* Spacing below the badge */
  margin-bottom: 30px;
  /* Spacing before fields */
  font-family: 'Playfair Display', serif;
}

.form-field {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  background: white;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
}

.form-field:focus {
  outline: none;
  border-color: var(--green);
}

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

.form-content-aligner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
  /* Aligns content to the top */
}

.stretch-area {
  flex-grow: 0;
  min-height: 150px;
  resize: none;
  margin-bottom: 24px;
}

/* TEXTAREA STRETCH LOGIC */
textarea.form-field {
  flex-grow: 1;
  /* Makes the message box expand to fill the right side height */
  min-height: 140px;
  resize: none;
}

.send-message-btn {
  width: 100%;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 14px;
  padding: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.send-message-btn:hover {
  opacity: 0.9;
}

.form-group{
  position:relative;
  margin-bottom:18px;
  }
  
  .error-message{
    display:none;
    color:#d32f2f;
    font-size:13px;
    margin-top:6px;
    }
    
    .error-message.active{
    display:block;
    }
  
  .input-error{
  border:1px solid #d32f2f !important;
  }
  
  .input-success{
  border:1px solid #2e7d32 !important;
  }

/* ICON BOX STYLING */
.contact-icon,
.office-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #eef5e6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.office-icon i,
.contact-icon i {
  font-size: 20px;
  color: var(--green);
  /* Uses your #80AD40 */
}

/* Contact Item Spacing */
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.contact-text strong {
  display: block;
  font-size: 18px;
  color: var(--blue);
}

.contact-text span {
  color: #6b8a94;
  font-size: 15px;
}

/* Office Row Icons */
.office-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 15px;
}

.office-row i {
  color: var(--green);
  width: 20px;
  text-align: center;
}

/* Specific SVG sizing and color inside the box */
.contact-icon svg,
.office-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green);
  stroke-width: 1.8;
  fill: none;
}

/* --- CONTACT LIST CLASSES --- */
.contact-list {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  /* Precise vertical spacing from reference */
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* Text styling for the items */
.contact-text strong {
  display: block;
  font-size: 18px;
  color: var(--blue);
  margin-bottom: 4px;
}

.contact-text span {
  color: #6b8a94;
  font-size: 15px;
}

/* Hover effect: text turns green when hovering over the item */
.contact-item:hover .contact-text {
  color: var(--green);
}

/* --- OFFICE CARD CLASSES --- */
.office-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.office-card {
  background: #fff;
  border-radius: 28px;
  padding: 42px;
  border: 1px solid rgba(33, 77, 97, .10);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  transition: all 0.35s ease;
}

.office-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(33, 77, 97, .12);
}

.office-row {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 15px;
  color: var(--blue);
  padding: 6px 0;
}

/* Small icons inside the card details */
.office-row svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  stroke-width: 1.8;
  fill: none;
}

/* Map Link Style */
.office-map {
  margin-top: 26px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

.office-map svg {
  width: 18px;
  height: 18px;
}

/* --- FORM BUTTON & INPUTS --- */
.send-btn {
  margin-top: 26px;
  width: 100%;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 14px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
}

.send-btn svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
}

/* ===== FOOTER – EXACT MATCH ===== */
.main-footer {
  background: #214d61;
  color: #cfdce2;
  padding: 90px 60px 30px;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr 1.2fr;
  gap: 60px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.footer-logo-icon {
  width: 18px;
  height: 18px;
  background: white;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.footer-logo-text {
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: white;
  margin-bottom: 26px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 320px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-col ul li a {
  color: #cfdce2;
  text-decoration: none;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-socials svg {
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
  stroke-width: 1.8;
}

/* OFFICES */
.footer-office {
  display: flex;
  gap: 14px;
  margin-bottom: 26px;
}

.footer-office svg {
  width: 22px;
  height: 22px;
  stroke: #80ad40;
  fill: none;
}

.footer-office strong {
  color: white;
  font-size: 15px;
  display: block;
}

.footer-office span {
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact div {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  stroke: #80ad40;
  fill: none;
}

/* BOTTOM BAR */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #aebcc2;
  font-size: 14px;
}

.footer-bottom a {
  color: #cfdce2;
  margin-left: 24px;
  text-decoration: none;
}

/* ===== FOOTER OFFICE LAYOUT ===== */
.footer-office-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

/* ICON */
.footer-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.footer-icon svg {
  width: 22px;
  height: 22px;
  stroke: #80AD40;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* TEXT */
.footer-text {
  color: #cfd9de;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  /* NOT bold */
}

/* ONLY titles are bold & white */
.footer-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-subtitle {
  font-size: 14px;
}

/* RESPONSIVE */
@media(max-width:900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
  }
}

/* RESPONSIVE UPDATES */
@media(max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-left h2 {
    font-size: 38px;
  }

  .contact-form-container {
    width: 100%;
  }
}

section {
  padding: 80px 24px;
}

.hero h1 {
  font-size: 36px;
}

/* FLOATING ACTION BUTTONS */
.floating-actions {
  position: fixed !important;
  right: 32px !important;
  bottom: 32px !important;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
  transition: transform .25s ease, box-shadow .25s ease;
}

.float-btn img {
  width: 26px;
  height: 26px;
}

.float-btn.whatsapp {
  background: #ffffff;
}

.float-btn.call {
  background: #ffffff;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .3);
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 1024px) {
  :root {
    --hero-title-size: 80px;
    /* Scale down the 150px title */
  }

  .about-grid {
    grid-template-columns: 1fr;
    /* Stack about section */
    gap: 40px;
  }

  .about-cards-tailwind {
    flex-direction: column;
    /* Stack the cards */
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== THE ABSOLUTE FINAL MOBILE FIX - PLACE AT BOTTOM ===== */
@media (max-width: 768px) {
  :root {
    --hero-title-size: 40px !important;
  }

  /* 1. Header Cleanup - Stop Overlap */
  header {
    height: 72px !important;
    padding: 0 15px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
  }

  header img {
    max-height: 160px !important;
    /* width: auto !important; */
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    display: flex !important;
    flex-direction: column;
    gap: 18px;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    z-index: 999;
  }

  nav.active {
    transform: translateY(0);
  }

  nav a {
    margin: 0;
    font-size: 16px;
    text-align: center;
  }

  nav a.btn-primary {
    margin-top: 10px;
  }

  /* 2. Hero Section - Force Visibility */
  .hero {
    height: auto !important;
    min-height: 100vh !important;
    padding: 110px 20px 60px !important;
    display: flex !important;
    align-items: center !important;
    text-align: center !important;
  }

  .badge.hero-badge {
    font-size: 12px;
    padding: 8px 18px;
  }

  #about .container {
    text-align: center;
  }

  #about .badge {
    display: inline-flex;
    justify-content: center;
  }

  /* 3. About Content - Centering the Red Rectangle */
    .lifted { transform: none; }
    .about-cards-grid { gap: 15px; }

  .about-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 30px !important;
    width: 100% !important;
  }

  .about-content {
    text-align: center !important;
    width: 100% !important;
  }

  /* Red Rectangle Fix (List items) */
  .about-features {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    /* Left aligns items together */
    width: fit-content !important;
    margin: 30px auto !important;
    /* Centers the whole list block */
    gap: 15px !important;
  }

  .feature-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  /* 4. About Grid - Fix Red Arrows (Overlap & Gaps) */

  .about-cards-tailwind {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
    max-width: 360px;
    margin: 0 auto;
  }

  /* RESET all cards */
  .about-cards-tailwind > div {
    height: auto !important;
    padding: 18px !important;
    border-radius: 22px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  /* 1️⃣ & 4️⃣ — TALLER + LIFTED */
  .about-cards-tailwind > div:nth-child(1),
  .about-cards-tailwind > div:nth-child(4) {
    min-height: 170px;
    transform: translateY(-8px);
  }

  /* 2️⃣ & 3️⃣ — SHORTER */
  .about-cards-tailwind > div:nth-child(2),
  .about-cards-tailwind > div:nth-child(3) {
    min-height: 140px;
  }



  /* .about-cards-tailwind {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap:1px !important;
    max-width: 360px;
    margin: 0 auto;
  } */

  /* .about-cards-tailwind > div {
    aspect-ratio: 1 / 1.1;
    border-radius: 8px !important;
  } */

  /* Font scaling for grid cards */
  .about-cards-tailwind span,
  .about-cards-tailwind p {
    font-size: 11px !important;
    line-height: 1.2 !important;
    margin-top: 6px !important;
  }

  .about-cards-tailwind [style*="height"] {
    height: auto !important;
    min-height: unset !important;
  }

  .about-cards-tailwind [style*="padding"] {
    padding: 20px !important;
  }

  .about-card.quote {
    font-size: 14px !important;
    line-height: 1.3 !important;
    background: #214D61 !important;
    color: white !important;
  }

  /* 5. Contact Section - Compact Cards */
  .contact-section {
    padding: 40px 20px !important;
  }

  .contact-wrapper {
    flex-direction: column !important;
    gap: 30px !important;
  }

  .contact-grid-cards {
    gap: 10px !important;
    margin-top: 15px !important;
  }

  .contact-info-card {
    padding: 12px 16px !important;
    gap: 12px !important;
    border-radius: 12px !important;
  }

  .info-icon-box {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
  }

  /* 6. Office Cards Fix */
  .office-grid {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
  }

    .form-input-row{
      grid-template-columns: 1fr;
      gap:18px;
    }
    .form-group{
      margin-bottom:10px;
    }
  
    .form-field{
      margin-bottom:0;
    }
  
    .form-input-row{
      gap:10px;
    }
  
    textarea.form-field{
      min-height:120px;
    }
    .form-field{
      padding:12px;
    }

  .office-card {
    height: auto !important;
    padding: 25px 20px !important;
  }

  .floating-actions {
    right: 32px;
    bottom: 32px;
  }

  .floating-actions {
    right: 16px !important;
    bottom: 16px !important;
    gap: 10px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }

  .float-btn svg {
    width: 20px;
    height: 20px;
  }

  html, body {
    overflow-x: hidden;
  }

  /* ===== FOOTER MOBILE FIX ===== */
  .main-footer {
    padding: 60px 20px 30px;
  }

  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  /* Center brand section */
  .footer-brand {
    text-align: center;
  }

  .footer-logo-wrap {
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
  }

  /* Section headings spacing */
  .footer-col h4 {
    margin-bottom: 18px;
    text-align: center;
  }

  /* Center lists */
  .footer-col ul {
    text-align: center;
  }

  .footer-col ul li {
    margin-bottom: 10px;
  }

  /* Office items stack nicely */
  .footer-office-item {
    align-items: flex-start;
  }

  .footer-text {
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
  }

  /* Bottom bar */
  .footer-bottom {
    font-size: 13px;
    margin-top: 30px;
  }

  .footer-office-item {
    background: rgba(255,255,255,0.04);
    padding: 14px 16px;
    border-radius: 14px;
  }

}

#formMessage{
  margin-top:15px;
  font-size:14px;
  font-weight:500;
  }
  
  .success-message{
  color:#2e7d32;
  background:#e8f5e9;
  padding:10px 14px;
  border-radius:6px;
  }
  
  .error-message{
  color:#c62828;
  background:#ffebee;
  padding:10px 14px;
  border-radius:6px;
  }

  .toast{
    position:fixed;
    bottom:30px;
    right:30px;
    background:#214D61;
    color:white;
    padding:14px 22px;
    border-radius:8px;
    font-size:14px;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
    opacity:0;
    transform:translateY(20px);
    transition:all .35s ease;
    z-index:9999;
    }
    
    .toast.show{
    opacity:1;
    transform:translateY(0);
    }
    
    .toast.success{
    background:#2e7d32;
    }
    
    .toast.error{
    background:#c62828;
    }

    /* MODAL BACKDROP */
.product-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

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

/* MODAL BOX */
.modal-box {
  background: white;
  border-radius: 24px;
  width: 90%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  max-height: 90vh;   /* 🔥 limit height */
  overflow: hidden;   /* prevent overflow */
}

/* HEADER */
.modal-header {
  padding: 15px 20px;
  display: flex;
  justify-content: flex-end; /* keeps it right */
  align-items: center;
  flex-shrink: 0;
}
/* BODY (SCROLLABLE AREA) */
.modal-body {
  padding: 0 20px 20px;
  overflow-y: auto;   /* 🔥 scroll here */
}

/* FOOTER (FIXED BUTTON) */
.modal-footer {
  padding: 15px 20px 20px;
  border-top: 1px solid #eee;
  flex-shrink: 0;
  background: white;

  display: flex;
  justify-content: center;   /* 🔥 center horizontally */
}

/* OPTIONAL: Smooth scroll */
.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

@keyframes fadeUp {
  from {transform: translateY(30px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

/* IMAGE */
.modal-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
}

.close-modal {
  font-size: 22px;
  cursor: pointer;
  color: var(--blue);
}

/* TABS */
.tabs {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  border-bottom: 1px solid #eee;
}

.tab-btn {
  flex: 1;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  color: var(--blue);
}

.tab-btn.active {
  color: var(--green);
  border-bottom: 2px solid var(--green);
}

/* CONTENT */
.tab-content {
  display: none;
  padding: 15px 5px;
  font-size: 14px;
  color: #6b8a94;
  text-align: left;
}

.tab-content.active {
  display: block;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 10px 20px;          /* 🔥 more breathing space */
  border-radius: 999px;        /* 🔥 pill shape */
  
  background: var(--green);    /* your theme green */
  color: white;
  text-decoration: none;

  font-size: 15px;
  font-weight: 500;

  transition: all 0.3s ease;
}

/* Hover effect (premium feel) */
.whatsapp-btn:hover {
  background: #6f9e33;         /* slightly darker green */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(128, 173, 64, 0.3);
}

/* Icon */
.wa-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: currentColor;
}


/* BENEFITS LIST */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* EACH POINT */
.benefits-list li {
  position: relative;
  padding-left: 26px;   /* space for dot */
  margin-bottom: 12px;
  font-size: 15px;
  color: #6b8a94;
  line-height: 1.6;
}

/* GREEN DOT */
.benefits-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: bold;
}
