/* style.css - Main Stylesheet for Tshwaranang Community Solution */

:root {
  --primary: #1a7b4a;
  --primary-dark: #0e5a38;
  --primary-light: #2e9b62;
  --secondary: #00c99c;
  --secondary-dark: #00b087;
  --accent: #ff8c42;
  --dark: #1a2a3a;
  --light: #f8f9fa;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --terra-blue: #2a5bd7;
  --flex-teal: #00c99c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--light);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.contact-info h2 {
  color: var(--primary-dark); /* #0e5a38 - dark green */
  font-size: 1.8rem;
}
.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.text-center {
  text-align: center;
}

/* Header */
header {
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.logo-placeholder {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
  font-family: "Raleway", sans-serif;
}

.logo-text {
  font-family: "Raleway", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.logo-text span {
  color: var(--secondary);
  font-weight: 600;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
  font-size: 1rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  padding: 8px;
}

/* Slideshow */
.hero-slider {
  position: relative;
  width: 100%;
}

.swiper {
  width: 100%;
  height: 550px;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.45));
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

.slide-overlay h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-overlay p {
  font-size: 1.2rem;
  max-width: 700px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: white !important;
}

/* Section Styles */
.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.section-title p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.bg-light {
  background-color: var(--light);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.stat-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: var(--gray);
  font-weight: 500;
}

/* Values Grid */
.values-grid,
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}

.value-card {
  background: white;
  padding: 2rem;
  text-align: center;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-card i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
}

/* Services Preview Grid */
.services-grid-preview,
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(26, 123, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon i {
  font-size: 28px;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.service-card p {
  color: var(--gray);
  line-height: 1.6;
}

/* Vision Mission Preview */
.vision-mission-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.vm-card {
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.vm-card:hover {
  transform: translateY(-5px);
}

.vm-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.vm-card h3 {
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.vm-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background: var(--dark);
  color: #e0e7e3;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary);
}

.footer-col p {
  color: #aaa;
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-links i {
  color: var(--secondary);
  width: 20px;
}

.copyright {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #aaa;
}

/* Toora Flex Link */
.tooraflex-link {
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  transition: all 0.3s ease;
}

.tooraflex-link:hover {
  transform: translateY(-1px);
}

.tooraflex-link .toora {
  color: var(--terra-blue);
  font-weight: 600;
}

.tooraflex-link .flex {
  color: var(--flex-teal);
  font-weight: 600;
}

.tooraflex-link:hover .toora,
.tooraflex-link:hover .flex {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Page Hero */
.page-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #e8f3ed 0%, #d4e8de 100%);
  text-align: center;
}

.page-hero-text h1 {
  font-size: 3rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.page-hero-text p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

/* About Page Specific */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.about-content-text h2 {
  color: var(--primary-dark);
  margin: 1.5rem 0 1rem;
}

.about-content-text h2:first-child {
  margin-top: 0;
}

.highlight-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.highlight-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.highlight-card h3 {
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
}

.mission-vision-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mission-detail h3,
.vision-detail h3 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mission-detail ul,
.vision-detail ul {
  list-style: none;
}

.mission-detail li,
.vision-detail li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--gray);
  line-height: 1.6;
}

.mission-detail i,
.vision-detail i {
  color: var(--primary);
  margin-top: 4px;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.team-member {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-8px);
}

.member-img {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #cfe3d4, #b8d4c4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--primary);
}

.member-info {
  padding: 1.5rem;
}

.member-info h4 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
}

.member-info .role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.member-info .bio {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Cert Grid */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.cert-card {
  text-align: center;
  padding: 1.8rem;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.cert-card:hover {
  transform: translateY(-5px);
}

.cert-card i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.cert-card h4 {
  color: var(--primary-dark);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.cert-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Partnerships Grid */
.partnerships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.partner-card,
.location-card {
  text-align: center;
  padding: 1.8rem;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.partner-card:hover,
.location-card:hover {
  transform: translateY(-5px);
}

.partner-card i,
.location-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.partner-card h3,
.location-card h3 {
  color: var(--primary-dark);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.partner-card p,
.location-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.info-item i {
  font-size: 1.3rem;
  color: var(--primary);
  width: 40px;
  height: 40px;
  background: rgba(26, 123, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item h3 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
}

.info-item p,
.info-item a {
  color: var(--gray);
  text-decoration: none;
}

.info-item a:hover {
  color: var(--primary);
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-form h2 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 123, 74, 0.1);
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.consent-checkbox input {
  width: auto;
  margin-top: 3px;
}

.consent-checkbox label {
  font-size: 0.85rem;
  color: var(--gray);
  cursor: pointer;
}

.social-links-section h3 {
  margin: 1.5rem 0 1rem;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(26, 123, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

/* Map Container */
.map-container {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.map-placeholder i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.map-placeholder p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}
/* Team Member Image Styles */
.team-member {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.member-img {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #e8f3ed, #d4e8de);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-img img {
  transform: scale(1.05);
}

.member-info {
  padding: 1.5rem;
}

.member-info h4 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
}

.member-info .role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.member-info .bio {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Responsive adjustments for team images */
@media (max-width: 768px) {
  .member-img {
    height: 260px;
  }

  .member-info h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .member-img {
    height: 240px;
  }

  .member-info {
    padding: 1.2rem;
  }
}
.logo-img {
  height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-img {
    height: 40px;
  }
}
.copyright p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
}

.tooraflex-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 4px;
}

.site-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
}
/* Partner Section Enhanced Styles */
.partners-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.partners-slider-container {
  padding: 20px 40px;
}

.partner-card-slide {
  background: white;
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.partner-card-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.partner-logo {
  width: 100%;
  height: 120px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 15px;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-card-slide:hover .partner-logo img {
  transform: scale(1.05);
}

.partner-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.partner-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.partner-info p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

/* Swiper Navigation Styling */
.partnersSwiper {
  padding: 10px 0 50px;
}

.partners-pagination {
  bottom: 0 !important;
}

.partners-pagination .swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

.partners-next,
.partners-prev {
  color: var(--primary) !important;
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.partners-next:after,
.partners-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.partners-next:hover,
.partners-prev:hover {
  background: var(--primary);
  color: white !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .partners-slider-container {
    padding: 20px 10px;
  }

  .partner-logo {
    height: 100px;
    padding: 10px;
  }

  .partner-info h3 {
    font-size: 1rem;
  }

  .partner-info p {
    font-size: 0.8rem;
  }

  .partners-next,
  .partners-prev {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .partner-logo {
    height: 85px;
  }

  .partner-card-slide {
    padding: 20px 15px;
  }
}
/* Health Hub Locations Enhanced Styles */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.location-card {
  text-align: center;
  padding: 0;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.location-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.location-card:hover .location-image img {
  transform: scale(1.05);
}

.location-card i.fa-map-marker-alt {
  font-size: 2rem;
  color: var(--primary);
  margin: 1.2rem 0 0.5rem;
  display: inline-block;
  background: rgba(26, 123, 74, 0.1);
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
}

.location-card h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin: 0.5rem 0 0.25rem;
  padding: 0 1rem;
}

.location-card p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.hub-features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 1rem 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: #f8f9fa;
}

.hub-features span {
  font-size: 0.75rem;
  color: var(--gray);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.hub-features i {
  font-size: 0.7rem;
  color: var(--primary);
  margin: 0;
  background: none;
  width: auto;
  height: auto;
  line-height: normal;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }

  .location-image {
    height: 180px;
  }

  .hub-features {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .location-image {
    height: 200px;
  }
}
