/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../img/hero-depot.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: white;
  padding: 0 1rem;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(8, 16, 10, 0.70) 0%, rgba(5, 12, 6, 0.65) 50%, rgba(10, 15, 10, 0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 1rem;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.25;
  color: #FFFFFF;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 2px 6px rgba(0, 0, 0, 0.9);
  perspective: 800px;
  overflow: visible;
}

.hero-word {
  display: inline-block;
  white-space: nowrap;
  vertical-align: baseline;
}

.hero-char {
  display: inline-block;
  will-change: transform, opacity, filter;
  transform-origin: 50% 100%;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 500;
  margin-bottom: 2.25rem;
  line-height: 1.6;
  color: #FFFFFF;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.9);
  will-change: transform, opacity;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions .btn-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.hero-actions .btn-secondary:hover {
  background-color: white;
  color: var(--primary-color, #2C5E3A);
}

/* Postal Widget Section */
.postal-widget-section {
  padding: 4rem 1rem;
  background-color: var(--bg-color, #F5F0EB);
}

.postal-widget {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  max-width: 600px;
  margin: -8rem auto 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.postal-widget h2 {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color, #2C5E3A);
}

.input-group {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
  margin: 0 auto 1rem;
}

.input-group input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'Raleway', sans-serif;
}

.input-group button {
  white-space: nowrap;
}

.postal-result {
  font-weight: 600;
  min-height: 1.5rem;
  font-size: 1.1rem;
}
.postal-result.success { color: #2C5E3A; }
.postal-result.warning { color: #D4722A; }
.postal-result.error { color: #e74c3c; }

@media (max-width: 480px) {
  .input-group {
    flex-direction: column;
  }
}

/* Engagements Section */
.engagements-section {
  padding: 6rem 1rem;
  background-color: white;
}

.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: #1A3C24;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

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

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.engagement-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(44, 94, 58, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.engagement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.engagement-img-wrapper {
  height: 200px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #e5e0d8;
}

.engagement-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.engagement-card:hover .engagement-img {
  transform: scale(1.06);
}

.engagement-body {
  padding: 1.75rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  position: relative;
}

.engagement-icon {
  margin-top: -46px;
  background: #FFFFFF;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.14);
  color: var(--primary-color, #2C5E3A);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  border: 2px solid #F5F0EB;
}

.engagement-title {
  font-size: 1.35rem;
  font-family: 'Lora', serif;
  margin-bottom: 0.75rem;
  color: #1A3C24;
  font-weight: 700;
}

.engagement-desc {
  line-height: 1.6;
  color: #374151;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Featured Products Section */
.products-section {
  padding: 6rem 1rem;
  background-color: var(--bg-color, #F5F0EB);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-header .section-title {
  margin-bottom: 0;
}

.link-more {
  color: var(--accent-color, #D4722A);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
}

.link-more:hover {
  text-decoration: underline;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Product Card */
.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent-color, #D4722A);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 2;
}

.product-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  color: var(--primary-color, #2C5E3A);
  margin-bottom: 0.5rem;
}

.product-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  color: #666;
  font-size: 0.95rem;
}

.product-specs li {
  margin-bottom: 0.25rem;
}

.product-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color, #2C5E3A);
}

/* Glassmorphism hover */
.product-card .btn-primary {
  position: relative;
  overflow: hidden;
}

.product-card .btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
}

.product-card .btn-primary:hover::after {
  left: 150%;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 1rem;
  background-color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Reviews Summary Header */
.reviews-summary {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.summary-score-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-color, #F5F0EB);
  padding: 1rem 2rem;
  border-radius: 99px;
  border: 1px solid var(--border-light, #e2dcd5);
}

.avg-score {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color, #2C5E3A);
}

.stars-large {
  color: var(--accent-color, #D4722A);
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.total-count {
  font-size: 0.95rem;
  color: #666;
  border-left: 1px solid #ccc;
  padding-left: 1rem;
}

.testimonial-card {
  position: relative;
  background-color: var(--bg-color, #F5F0EB);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(44, 94, 58, 0.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.stars {
  color: var(--accent-color, #D4722A);
  font-size: 1.25rem;
}

.testimonial-date {
  font-size: 0.8rem;
  color: #888;
}

.testimonial-text {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #333;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-color, #2C5E3A);
}

.testimonial-city {
  font-weight: 400;
  color: #777;
}

/* Add Review Form Styling */
.add-review-container {
  margin-top: 4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.add-review-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  border: 1px solid var(--border-light, #e2dcd5);
  text-align: left;
}

.add-review-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  color: var(--primary-color, #2C5E3A);
  margin-bottom: 0.5rem;
}

.add-review-title svg {
  color: var(--accent-color, #D4722A);
}

.add-review-subtitle {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.review-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.review-form .form-group {
  margin-bottom: 1.25rem;
}

.review-form .form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 0.4rem;
}

.review-form .form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.review-form .form-control:focus {
  outline: none;
  border-color: var(--primary-color, #2C5E3A);
}

.star-rating-input {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.star-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #ccc;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s ease, transform 0.15s ease;
}

.star-btn.active {
  color: var(--accent-color, #D4722A);
}

.star-btn:hover {
  transform: scale(1.2);
}

.rating-value-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color, #2C5E3A);
  margin-left: 0.5rem;
}

.review-success-msg {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background-color: #e8f5e9;
  color: #2e7d32;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--primary-color, #2C5E3A);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 90;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  background-color: #1a3c24;
}

/* ═══════════════════════════════════════════
   STERE CALCULATOR SECTION
   ═══════════════════════════════════════════ */
.calculator-section {
  padding: 6rem 1rem;
  background-color: #FFFFFF;
  position: relative;
}

.section-tag {
  display: inline-block;
  background: rgba(44, 94, 58, 0.1);
  color: var(--primary-color, #2C5E3A);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 0.75rem;
}

.calculator-card {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg-color, #F5F0EB);
  border-radius: 20px;
  border: 1px solid rgba(44, 94, 58, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.calc-tabs {
  display: flex;
  background: #e9e2d8;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.calc-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 1.1rem 1.5rem;
  background: transparent;
  border: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.25s ease;
}

.calc-tab:hover {
  color: var(--primary-color, #2C5E3A);
  background: rgba(255, 255, 255, 0.4);
}

.calc-tab.active {
  background: var(--bg-color, #F5F0EB);
  color: var(--primary-color, #2C5E3A);
  font-weight: 700;
  border-top: 3px solid var(--accent-color, #D4722A);
}

.calc-body {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2.5rem;
  padding: 2.5rem;
}

@media (max-width: 900px) {
  .calc-body {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}

.calc-panel {
  display: none;
}

.calc-panel.active {
  display: block;
}

.calc-field {
  margin-bottom: 1.75rem;
}

.calc-field-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.calc-field-header label,
.calc-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-color, #2C5E3A);
}

.calc-value-badge {
  background: var(--primary-color, #2C5E3A);
  color: #FFFFFF;
  padding: 2px 10px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.9rem;
}

.calc-range-slider {
  width: 100%;
  height: 8px;
  border-radius: 99px;
  background: #d5cbbf;
  outline: none;
  -webkit-appearance: none;
  margin: 10px 0 6px;
}

.calc-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-color, #D4722A);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(212, 114, 42, 0.5);
  transition: transform 0.15s ease;
}

.calc-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #888;
}

.calc-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.calc-pill {
  padding: 8px 14px;
  border: 1.5px solid #d0c5b7;
  background: #FFFFFF;
  color: #444;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calc-pill:hover {
  border-color: var(--primary-color, #2C5E3A);
  color: var(--primary-color, #2C5E3A);
}

.calc-pill.active {
  background: var(--primary-color, #2C5E3A);
  border-color: var(--primary-color, #2C5E3A);
  color: #FFFFFF;
  box-shadow: 0 2px 6px rgba(44, 94, 58, 0.25);
}

.calc-dimensions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 1.5rem;
}

.calc-num-input {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #d0c5b7;
  border-radius: 8px;
  background: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color, #2C5E3A);
  outline: none;
}

.calc-num-input:focus {
  border-color: var(--accent-color, #D4722A);
}

.calc-info-note {
  font-size: 0.78rem;
  color: #777;
  margin-top: 8px;
  line-height: 1.4;
}

/* Result Card */
.calc-result-box {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(44, 94, 58, 0.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.calc-result-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed #e0d8cd;
  margin-bottom: 1.25rem;
}

.calc-result-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-color, #D4722A);
}

.calc-stere-number {
  font-family: 'Lora', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color, #2C5E3A);
  line-height: 1.1;
  margin: 6px 0;
  transition: transform 0.2s ease;
}

.calc-stere-unit {
  font-size: 0.95rem;
  font-weight: 600;
  color: #666;
}

.calc-metrics-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.calc-metric-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 6px 10px;
  background: var(--bg-color, #F5F0EB);
  border-radius: 6px;
}

.metric-label {
  color: #666;
}

.metric-val {
  font-weight: 700;
  color: var(--primary-color, #2C5E3A);
}

.calc-recommendation-box {
  background: rgba(212, 114, 42, 0.08);
  border: 1px solid rgba(212, 114, 42, 0.25);
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.rec-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-color, #D4722A);
  margin-bottom: 4px;
}

.rec-desc {
  font-size: 0.88rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* ═══ STATS PROOF BAR ═══ */
.stats-proof-section {
  padding: 3rem 1rem;
  background: #1E3F27;
  color: #FFFFFF;
}

.stats-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: var(--max-width-xl, 1280px);
  margin: 0 auto;
  text-align: center;
}

.stat-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-proof-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #E8833A;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-proof-label {
  font-size: 0.95rem;
  color: #E5DDD4;
  font-weight: 500;
}

/* ═══ TEAM & HUMAN TRUST SECTION ═══ */
.team-section {
  padding: 5rem 1rem;
  background: #FAF8F5;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: var(--max-width-xl, 1280px);
  margin: 3rem auto 0;
}

.team-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid #E5DDD4;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.team-img-wrapper {
  height: 220px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

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

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

.team-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(30, 63, 39, 0.85);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
}

.team-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #1E3F27;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.85rem;
  font-weight: 700;
  color: #D4722A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.92rem;
  color: #4B5563;
  line-height: 1.55;
  margin: 0;
}

/* ═══ DEPOT & DELIVERY ZONES MAP SECTION ═══ */
.depot-map-section {
  padding: 5rem 1rem;
  background: #FFFFFF;
}

.depot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width-xl, 1280px);
  margin: 3rem auto 0;
  align-items: center;
}

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

.depot-info-card {
  background: #FAF8F5;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid #E5DDD4;
}

.depot-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: #1E3F27;
  margin-bottom: 1rem;
}

.depot-desc {
  font-size: 0.98rem;
  color: #4B5563;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.depot-zones-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.zone-tag {
  background: #FFFFFF;
  border: 1px solid #D5CEBE;
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1E3F27;
  display: flex;
  align-items: center;
  gap: 6px;
}

.zone-tag.active {
  background: #1E3F27;
  color: #FFFFFF;
  border-color: #1E3F27;
}

.depot-details-box {
  border-top: 1px solid #E5DDD4;
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: #374151;
}

.depot-detail-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.map-container-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid #E5DDD4;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  height: 420px;
  width: 100%;
}

.map-container-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   Equipa Local em Cascais (Showcase)
   ============================================ */
.team-grid-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 960px) {
  .team-grid-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .team-showcase-section {
    padding: 3rem 1rem !important;
  }
  .team-grid-container {
    gap: 1.5rem !important;
  }
  .team-grid-container > div:first-child > div {
    height: 280px !important;
  }
  .team-grid-container .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   Processo 3 Passos WhatsApp (#comoFunciona)
   Modelo Limpo & Original Silva Dias
   ============================================ */
.whatsapp-process-section {
  padding: 4rem 1.5rem;
  background: var(--surface-elevated);
  border-bottom: 1px solid var(--border);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width-xl);
  margin: 2.5rem auto 0;
}

.process-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
}

@media (min-width: 992px) {
  .process-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 45px;
    right: -16px;
    width: 28px;
    height: 2px;
    border-top: 2px dashed var(--primary);
    opacity: 0.5;
    z-index: 3;
    pointer-events: none;
  }
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.process-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(200, 90, 50, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.process-card.highlight .process-icon-box {
  background: rgba(37, 211, 102, 0.15);
  color: var(--whatsapp-dark);
}

.process-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.process-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}





