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

:root {
    --primary-green: #10b981;
    --dark-green: #047857;
    --light-green: #d1fae5;
    --pale-green: #f0fdf4;
    --accent-green: #34d399;
    --gray-900: #1f2937;
    --gray-800: #374151;
    --gray-700: #4b5563;
    --gray-600: #6b7280;
    --gray-500: #9ca3af;
    --gray-400: #d1d5db;
    --gray-300: #e5e7eb;
    --gray-200: #f3f4f6;
    --gray-100: #f9fafb;
    --gray-50: #f9fafb;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

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

/* Sections */
.section {
    padding: 4rem 0;
}

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

.bg-gray {
    background-color: var(--gray-50);
}

.bg-green-light {
    background-color: var(--pale-green);
}

/* Header */
#header {
    background-color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
     width: 280px;
  height: 280px;
  object-fit: contain;
}


.logo-text h1 {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin: 0;
}

.tagline {
    font-size: 1rem;
    color: var(--gray-600);
    margin: 0;
    white-space: nowrap;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-links a.active {
    color: var(--primary-green);
    font-weight: 600;
    position: relative;
}


.nav-buttons {
    display: none;
    gap: 1rem;
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--gray-900);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--gray-900);
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid var(--gray-200);
    position: absolute;
    top: 100%; /* same as header height */
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
}

.mobile-menu-btn.active .hamburger {
    background-color: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
}

.mobile-menu a {
    padding: 0.75rem 0;
    color: var(--gray-700);
    font-weight: 500;
}

.mobile-menu a:hover {
    color: var(--primary-green);
}

.mobile-menu .btn {
    margin-top: 1rem;
    width: 100%;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-buttons {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    .tagline {
        display: block;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.2s;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--dark-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--gray-50);
}

.btn-outline {
    background-color: transparent;
    color: var(--dark-green);
    border: 2px solid var(--primary-green);
}

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Page Management */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--pale-green) 0%, var(--light-green) 100%);
    padding: 3rem 0;
    text-align: center;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* Grids */
.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.two-column-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.steps-grid {
    display: grid;
    gap: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefits-grid {
    display: grid;
    gap: 2rem;
}

.ourvaluessteps {
    display: grid;
    gap: 2rem;
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
}

.values-grid {
    display: grid;
    gap: 2rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}




@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .two-column-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .ourvaluessteps {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
 
}


/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--pale-green) 0%, var(--light-green) 100%);
    padding: 2rem 0;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

.text-green {
    color: var(--primary-green);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-image img {
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-buttons {
        flex-direction: row;
    }
}


.store-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .store-buttons {
    flex-direction: row;
  }
}

.store-btn {
  position: relative;
  background: #95D5B2;
  color: #102c1e;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.store-btn:hover {
  background: #95D5B2;
}

.store-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: #fff;
}

/* Apple Icon style */
.store-icon.apple {
  background: url('/assets/images/apple.png') center/contain no-repeat;
}

/* Google Play Icon style */
.store-icon.google {
  background: url('/assets/images/playstore.png') center/contain no-repeat;
}

.store-text .store-small {
  font-size: 0.75rem;
}

.store-text .store-large {
  font-size: 1.25rem;
  font-weight: 700;
}

/* Coming Soon overlay */
.coming-soon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #102c1e;
  color: #95D5B2;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 1.1rem;
  font-weight: 700;
}

.store-btn:hover .coming-soon {
  opacity: 1;
}


/* Cards */
.card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.step-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-icon {
  background-color: var(--light-green);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  overflow: hidden;
}

.step-icon img {
  width: 2.5rem;   
  height: 2.5rem; 
  object-fit: contain;
}



.howitworks-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.howitworks-icon {
  background-color: var(--light-green);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  overflow: hidden; /* IMPORTANT */
}

.howitworks-icon img {
  width: 2.5rem;   /* reduce image size */
  height: 2.5rem;  /* reduce image size */
  object-fit: contain;
}

.howitworks-card h3 {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

.ourvalues-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.ourvalues-icon {
  background-color: var(--light-green);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  overflow: hidden; /* IMPORTANT */
}

.ourvalues-icon img {
  width: 2.5rem;   
  height: 2.5rem;  
  object-fit: contain;
}

.ourvalues-card h3 {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

/* Process Steps */
.ourvaluessteps {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .ourvaluessteps {
        grid-template-columns: repeat(5, 1fr);
    }
}


.service-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.service-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 2rem;
    background-color: var(--light-green);
    color: var(--primary-green);
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}


.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.ourvaluessteps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}



.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



/* Testimonials */
.testimonial-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--gray-900);
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.cta-box {
    background-color: #e7faee;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    color: #102c1e;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(16, 44, 30, 0.38);
}


/* Stats */
.stats-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--gray-700);
}

/* Process Steps */
.howitworkssteps {
    display: grid;
    gap: 1.5rem;
}

.process-step {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.process-icon {
  background-color: var(--light-green);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  overflow: hidden; /* IMPORTANT */
}

@media (min-width: 768px) {
    .howitworkssteps {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Benefits List */
.benefits-list {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-row {
    background-color: var(--light-green);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    color: var(--gray-700);
}

@media (min-width: 768px) {
    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Services Page */
.search-box {
    max-width: 600px;
    margin: 2rem auto 0;
    display: flex;
    gap: 0.75rem;
    background-color: var(--white);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--gray-700);
}

.category-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.category-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.category-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.category-icon.blue { background-color: #dbeafe; }
.category-icon.purple { background-color: #e9d5ff; }
.category-icon.orange { background-color: #fed7aa; }
.category-icon.red { background-color: #fecaca; }
.category-icon.green { background-color: var(--light-green); }
.category-icon.indigo { background-color: #e0e7ff; }
.category-icon.pink { background-color: #fce7f3; }
.category-icon.yellow { background-color: #fef3c7; }

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

/* Popular Services */
.popular-services {
    display: grid;
    gap: 1rem;
}

.popular-service-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s;
}

.popular-service-item:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.service-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-icon-small {
    background-color: var(--light-green);
    color: var(--primary-green);
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.service-info h4 {
    font-size: 1.125rem;
    margin: 0 0 0.25rem 0;
}

.service-info p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

.text-link {
    color: var(--primary-green);
    font-weight: 600;
}

.text-link:hover {
    color: var(--dark-green);
}

@media (min-width: 768px) {
    .popular-services {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Check List */
.check-list {
    list-style: none;
}

.check-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--white);
    background-color: var(--primary-green);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.check-list-large {
    list-style: none;
}

.check-list-large li {
    padding: 0.75rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.125rem;
}

.check-list-large li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--white);
    background-color: var(--primary-green);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Become Worker Page */
.benefit-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.benefit-icon-large {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.requirements-list {
    list-style: none;
}

.requirements-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-700);
}

.requirements-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-size: 1.5rem;
}

.application-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

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

.app-number {
    background-color: var(--primary-green);
    color: var(--white);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 0.75rem;
}

.app-step h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.app-step p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

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

/* Forms */
.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.application-form,
.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px var(--light-green);
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.file-upload {
    border: 2px dashed var(--gray-300);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s;
    position: relative;
}

.file-upload:hover {
    border-color: var(--primary-green);
}

.upload-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.file-upload p {
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.file-upload small {
    color: var(--gray-500);
}

.file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.875rem;
    margin: 0;
}

.checkbox-group a {
    color: var(--primary-green);
    text-decoration: underline;
}


.contact-info-grid {
    display: grid;
    gap: 2rem;
}

 .contact-info-grid {
        grid-template-columns: repeat(4, 1fr);
    }

.contact-info-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}


.contact-info-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

.contact-icon {
  background-color: var(--light-green);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  overflow: hidden; /* IMPORTANT */
}

.contact-icon img {
  width: 2.5rem;   /* reduce image size */
  height: 2.5rem;  /* reduce image size */
  object-fit: contain;
}

.follow-icon {
  background-color: var(--light-green);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.follow-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}




/* Contact Page */


.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icon {
    background-color: var(--light-green);
    color: var(--primary-green);
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.2s;
}

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

.map-placeholder {
    background-color: var(--gray-200);
    height: 200px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gray-500);
}

/* FAQ Page */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    margin-bottom: 2rem;
}

.faq-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--gray-900);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--gray-400);
    transition: transform 0.2s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--primary-green);
}

.faq-answer {
    display: none;
    padding-top: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}



.post-category {
    background-color: var(--light-green);
    color: var(--dark-green);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 1rem 0;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.category-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 1.5rem;
    font-weight: 500;
    background-color: var(--white);
    color: var(--gray-700);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

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


.post-author strong {
    display: block;
    font-size: 0.875rem;
}

.post-author small {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.newsletter-box {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    color: var(--white);
}

.newsletter-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.newsletter-box h2 {
    margin-bottom: 1rem;
}

.newsletter-box p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 0.75rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.highlight-card {
    background-color: var(--light-green);
    border: 2px solid var(--accent-green);
}


.contact-list li {
    margin-bottom: 0.75rem;
}


/* Utility Classes */
.text-center {
    text-align: center;
}

.text-green-bold {
    color: var(--primary-green);
    font-weight: 600;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

.rounded-img {
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.content-text p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.visionmission-title {
    font-size: 2.5rem;
    color: #102c1e;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 700;

}


.missionvision-text {
    font-size: 1.25rem;
    color: var(--gray-700);
    max-width: 800px;
    margin: 0 auto;
}

.value-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;

}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Responsive Typography */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.75rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 3rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page.active {
    animation: fadeIn 0.3s ease-in-out;
}


.footer-bottom {
  background-color: #102c1e;
  padding: 8px 0;        /* thin padding */
  text-align: center;    /* center the text */
}

.footer-bottom p {
  color: #B7E4C7;
  margin: 0;
}

.footer-bottom .d-flex {
  justify-content: center !important;
}


/* ---- App Download ---- */
.download-app {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.download-app img {
  max-width: 150px;
}

#header .nav-container a,
#header .nav-links a,
#header .mobile-menu a {
  text-decoration: none !important;
}
