/* CSS Variables */
:root {
  --flowmart-green: hsl(155, 100%, 33%);
  --flowmart-black: hsl(0, 0%, 0%);
  --flowmart-white: hsl(0, 0%, 100%);
  --flowmart-gray: hsl(0, 0%, 96%);
  --flowmart-dark-gray: hsl(0, 0%, 20%);
  --flowmart-green-dark: hsl(155, 100%, 28%);
}

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

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--flowmart-black);
  background: var(--flowmart-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--flowmart-black);
}

.section-description {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 2rem;
}

/* Utility Classes */
.text-green { color: var(--flowmart-green); }
.text-black { color: var(--flowmart-black); }
.text-red { color: #ef4444; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 48px;
}

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

.btn-primary:hover {
  background: var(--flowmart-green-dark);
}

.btn-secondary {
  background: var(--flowmart-black);
  color: white;
}

.btn-secondary:hover {
  background: var(--flowmart-dark-gray);
}

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

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--flowmart-black);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-image {
  height: 3rem;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #555;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 0.025em;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--flowmart-green), var(--flowmart-green-dark));
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--flowmart-green);
  background: rgba(34, 197, 94, 0.05);
  transform: translateY(-1px);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 80%;
}

.nav-link.active {
  color: var(--flowmart-green);
  background: rgba(34, 197, 94, 0.08);
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.nav-actions .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
  transition: all 0.3s ease;
  letter-spacing: 0.025em;
}

.nav-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 2px solid transparent;
  font-size: 1.5rem;
  cursor: pointer;
  color: #555;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  outline: none;
}

.mobile-menu-btn:hover {
  color: var(--flowmart-green);
  background: rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.2);
}

.mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(34, 197, 94, 0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.mobile-menu-content {
  padding: 2rem 1rem;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: #555;
  font-weight: 600;
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.mobile-nav-link:hover {
  color: var(--flowmart-green);
  background: rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.1);
  transform: translateX(5px);
}

.mobile-nav-link.active {
  color: var(--flowmart-green);
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
  font-weight: 700;
}

.mobile-download-btn {
  margin-top: 2rem;
  width: 100%;
  padding: 1rem;
  font-weight: 700;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background: white;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.phone-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 250px;
  height: 500px;
  background: black;
  border-radius: 2rem;
  padding: 0.5rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.phone-notch {
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 0.25rem;
  background: #333;
  border-radius: 1rem;
}

.phone-camera {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  width: 1.5rem;
  height: 0.75rem;
  background: #333;
  border-radius: 0.25rem;
}

.floating-phone {
  position: absolute;
  opacity: 0.8;
}

.floating-phone-1 {
  top: 4rem;
  right: -2rem;
  transform: rotate(12deg);
}

.floating-phone-2 {
  top: 8rem;
  left: -1.5rem;
  transform: rotate(-12deg);
}

.phone-frame-small {
  width: 120px;
  height: 200px;
  background: black;
  border-radius: 1rem;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.phone-image-small {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 0.75rem;
  background: white;
}

/* Get Started Section */
.get-started {
  padding: 4rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.get-started-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.get-started-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.get-started-card:hover {
  transform: translateY(-5px);
}

.business-owner-card {
  border: 2px solid var(--flowmart-green);
}

.buyer-card {
  border: 2px solid var(--flowmart-black);
}

.card-icon {
  width: 4rem;
  height: 4rem;
  background: var(--flowmart-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.card-icon-black {
  background: var(--flowmart-black);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--flowmart-black);
}

.card-description {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.card-btn {
  width: 100%;
}

/* Features Highlight */
.features-highlight {
  padding: 4rem 0;
  background: var(--flowmart-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--flowmart-green);
  color: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--flowmart-black);
}

.feature-description {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: #666;
}

.feature-list i {
  color: var(--flowmart-green);
  margin-right: 0.75rem;
}

/* How It Works */
.how-it-works {
  padding: 4rem 0;
  background: white;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.how-it-works-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.how-it-works-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--flowmart-green);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 0.5rem;
}

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--flowmart-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-number-black {
  background: var(--flowmart-black);
}

.step-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--flowmart-black);
}

.step-description {
  color: #666;
  line-height: 1.5;
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  background: var(--flowmart-gray);
}

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

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  background: var(--flowmart-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
}

.testimonial-name {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: var(--flowmart-black);
}

.testimonial-role {
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.testimonial-stars {
  color: var(--flowmart-green);
}

.testimonial-content {
  color: #666;
  font-style: italic;
  line-height: 1.6;
}

/* About Section */
.about {
  padding: 4rem 0;
  background: white;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.mission-vision-card {
  background: var(--flowmart-gray);
  padding: 2rem;
  border-radius: 1rem;
}

.founders {
  margin-bottom: 4rem;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

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

.founder-avatar {
  width: 8rem;
  height: 8rem;
  background: #ccc;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.founder-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--flowmart-black);
}

.founder-role {
  color: var(--flowmart-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.founder-description {
  color: #666;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-left: 4px solid var(--flowmart-green);
  text-align: center;
}

.value-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--flowmart-green);
  color: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.25rem;
}

.value-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--flowmart-black);
}

.value-description {
  color: #666;
  line-height: 1.6;
}

/* Features Detail */
.features-detail {
  padding: 4rem 0;
  background: var(--flowmart-gray);
}

.feature-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.feature-detail-reverse {
  direction: rtl;
}

.feature-detail-reverse > * {
  direction: ltr;
}

.mockup-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mockup-header {
  background: var(--flowmart-green);
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.mockup-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: bold;
}

.mockup-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mockup-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  background: var(--flowmart-gray);
  border-radius: 0.5rem;
}

.mockup-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.product-image {
  height: 4rem;
  background: #e5e5e5;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.product-vegetables {
  background: #dcfce7;
}

.product-rice {
  background: #fef3c7;
}

.product-name {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.product-price {
  font-size: 0.875rem;
  color: var(--flowmart-green);
}

.bulk-discount {
  background: #dcfce7;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
}

.discount-title {
  font-weight: 600;
  color: #166534;
  margin-bottom: 0.25rem;
}

.discount-text {
  font-size: 0.875rem;
  color: #166534;
}

.wallet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  color: #666;
}

.wallet-balance {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: var(--flowmart-black);
}

.wallet-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.wallet-actions .btn {
  flex: 1;
}

.wallet-transactions {
  border-top: 1px solid #e5e5e5;
  padding-top: 1rem;
}

.transaction-title {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.transaction-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-stat {
  background: var(--flowmart-green);
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
}

.admin-stat-value {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.admin-stat-label {
  font-size: 0.75rem;
}

.admin-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  background: var(--flowmart-gray);
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

.feature-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.feature-header .feature-icon {
  margin-right: 1rem;
  margin-bottom: 0;
}

/* Download Section */
.download {
  padding: 4rem 0;
  background: white;
}

.download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.download-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--flowmart-black);
}

.download-description {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.app-download-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.app-store-btn {
  display: flex;
  align-items: center;
  background: black;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.app-store-btn:hover {
  background: #333;
}

.app-store-btn i {
  font-size: 2rem;
  margin-right: 1rem;
}

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

.btn-large-text {
  font-size: 1.125rem;
  font-weight: 600;
}

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

.qr-code p {
  color: #666;
  margin-bottom: 1rem;
}

.qr-code-box {
  width: 8rem;
  height: 8rem;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 3rem;
}

.phone-mockup-large {
  display: flex;
  justify-content: center;
}

.phone-mockup-large .phone-frame {
  width: 220px;
  height: 440px;
}

.app-screenshots {
  margin-bottom: 4rem;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.screenshot-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.screenshot-header {
  background: var(--flowmart-green);
  color: white;
  padding: 0.75rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.screenshot-image {
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  overflow: hidden;
  position: relative;
}

.screenshot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
}

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

.screenshot-description {
  padding: 1rem;
  font-size: 0.875rem;
  color: #666;
  text-align: center;
}

.app-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

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

.app-feature-icon {
  width: 3rem;
  height: 3rem;
  background: var(--flowmart-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
}

.app-feature-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--flowmart-black);
}

.app-feature-description {
  color: #666;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Branch Locator */
.branch-locator {
  padding: 4rem 0;
  background: var(--flowmart-gray);
}

.branch-locator-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

.search-card,
.coverage-stats {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 1.5rem;
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--flowmart-black);
}

.form-group input,
.form-group select {
  padding: 0.75rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.search-btn {
  width: 100%;
}

.stats-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-container {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 1.5rem;
}

.map-placeholder {
  height: 24rem;
  background: var(--flowmart-gray);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--flowmart-green);
  margin-bottom: 1rem;
}

.map-placeholder h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--flowmart-black);
}

.map-placeholder p {
  color: #666;
  margin-bottom: 1rem;
  text-align: center;
}

.map-dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

.map-dot {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--flowmart-green);
  border-radius: 50%;
}

.map-dot:nth-child(1) { top: 1rem; left: 1rem; }
.map-dot:nth-child(2) { top: 3rem; right: 2rem; }
.map-dot:nth-child(3) { bottom: 2rem; left: 3rem; }
.map-dot:nth-child(4) { bottom: 4rem; right: 1rem; }
.map-dot:nth-child(5) { top: 50%; left: 33%; }

.branches-list {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.branch-card {
  border: 1px solid #e5e5e5;
  padding: 1rem;
  border-radius: 0.5rem;
}

.branch-name {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--flowmart-black);
}

.branch-address {
  color: #666;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.branch-phone {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 0.875rem;
}

.branch-phone i {
  margin-right: 0.5rem;
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
}

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

.submit-btn {
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card,
.map-card,
.quick-help {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-info-card {
  background: var(--flowmart-gray);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--flowmart-green);
  color: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--flowmart-black);
}

.contact-details p {
  color: #666;
  margin-bottom: 0.25rem;
}

.map-embed {
  height: 16rem;
}

.map-placeholder-small {
  height: 100%;
  background: var(--flowmart-gray);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.map-placeholder-small i {
  font-size: 2rem;
  color: var(--flowmart-green);
  margin-bottom: 0.5rem;
}

.map-placeholder-small p {
  color: #666;
  text-align: center;
  margin-bottom: 0.25rem;
}

.small-text {
  font-size: 0.875rem;
}

.help-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.help-link {
  display: flex;
  align-items: center;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.help-link:hover {
  color: var(--flowmart-green);
}

.help-link i {
  margin-right: 0.75rem;
}

/* Footer */
.footer {
  background: var(--flowmart-black);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo .logo-icon {
  margin-right: 0.75rem;
}

.footer-description {
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255,255,255,0.2);
  color: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: rgba(255,255,255,0.3);
}

.footer-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: white;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.newsletter-description {
  color: #ccc;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-form input {
  padding: 0.75rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: #ccc;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: #ccc;
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

/* Toast Notification */
.toast {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 1rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 10000;
}

.toast.show {
  transform: translateX(0);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toast-icon {
  font-size: 1.25rem;
}

.toast.success .toast-icon {
  color: var(--flowmart-green);
}

.toast.error .toast-icon {
  color: #ef4444;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .nav-links,
  .nav-actions {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .mobile-menu.show {
    display: block;
  }
  
  .logo-text {
    display: none;
  }
  
  .logo-text-mobile {
    display: block;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .floating-phone {
    display: none;
  }
  
  .get-started-cards {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .how-it-works-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
  }
  
  .founders-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .feature-detail-reverse {
    direction: ltr;
  }
  
  .download-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .app-download-buttons {
    align-items: center;
  }
  
  .branch-locator-content {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .toast {
    right: 1rem;
    left: 1rem;
    top: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .get-started-card,
  .feature-card,
  .how-it-works-card {
    padding: 1.5rem;
  }
  
  .phone-frame {
    width: 160px;
    height: 320px;
  }
  
  .phone-mockup-large .phone-frame {
    width: 180px;
    height: 360px;
  }
  
  .phone-frame-small {
    width: 80px;
    height: 140px;
  }
  
  .screenshot-image {
    height: 6rem;
  }
  
  .mockup-stats {
    grid-template-columns: 1fr;
  }
  
  .admin-stats {
    grid-template-columns: 1fr;
  }
  
  .wallet-actions {
    flex-direction: column;
  }
  
  .app-download-buttons {
    gap: 0.75rem;
  }
  
  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .app-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .branches-grid {
    grid-template-columns: 1fr;
  }
  
  .workflow-grid {
    grid-template-columns: 1fr;
  }
  
  .status-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 404 Not Found */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  padding: 2rem 0;
}

.not-found-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

.not-found-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.not-found-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.not-found-header i {
  font-size: 2rem;
  color: #ef4444;
}

.not-found-header h1 {
  font-size: 1.5rem;
  color: var(--flowmart-black);
  margin: 0;
}

.not-found-description {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.not-found-btn {
  width: 100%;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: opacity 0.3s ease;
}

.loading-overlay.hide {
  opacity: 0;
  pointer-events: none;
}

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

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--flowmart-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

.loading-spinner p {
  color: var(--flowmart-black);
  font-weight: 600;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: var(--flowmart-green);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top.show {
  transform: translateY(0);
  opacity: 1;
}

.scroll-to-top:hover {
  background: var(--flowmart-green-dark);
  transform: translateY(-2px);
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 1000;
}

.chat-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 2rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  font-weight: 600;
}

.chat-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.chat-btn i {
  font-size: 1.25rem;
}

.chat-text {
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .chat-widget {
    bottom: 5rem;
    left: 1rem;
  }
  
  .chat-text {
    display: none;
  }
  
  .chat-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }
}

/* Workflow Section */
.workflow-section {
  padding: 4rem 0;
  background: white;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.workflow-card {
  background: var(--flowmart-gray);
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid var(--flowmart-green);
}

.workflow-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--flowmart-green);
  color: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.workflow-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--flowmart-black);
}

.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.workflow-step {
  padding: 0.75rem;
  background: white;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  color: #555;
  border-left: 3px solid var(--flowmart-green);
}

.status-legend {
  background: var(--flowmart-gray) !important;
  padding: 2rem !important;
  border-radius: 1rem !important;
  margin-top: 2rem !important;
}

.legend-title {
  text-align: center !important;
  margin-bottom: 1.5rem !important;
  color: var(--flowmart-black) !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
}

.status-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
  gap: 1.5rem !important;
}

.status-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 0.75rem !important;
  padding: 1rem !important;
  background: white !important;
  border-radius: 0.5rem !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

.status-badge {
  padding: 0.5rem 1rem !important;
  border-radius: 1rem !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: white !important;
  display: inline-block !important;
  text-align: center !important;
  min-width: 120px !important;
}

.status-badge.pending {
  background: #f59e0b !important;
}

.status-badge.assigned {
  background: #3b82f6 !important;
}

.status-badge.awaiting {
  background: #8b5cf6 !important;
}

.status-badge.active {
  background: #22c55e !important;
}

.status-badge.completed {
  background: #10b981 !important;
}

.status-badge.cancelled {
  background: #ef4444 !important;
}

.status-desc {
  font-size: 0.875rem !important;
  color: #666 !important;
  font-weight: 500 !important;
  margin: 0 !important;
}

/* Privacy Policy */
.privacy-policy {
  padding: 4rem 0;
  background: white;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.effective-date {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  color: var(--flowmart-green);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--flowmart-green);
  padding-bottom: 0.5rem;
}

.policy-section p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.policy-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-section li {
  color: #555;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.contact-section {
  background: var(--flowmart-gray);
  padding: 2rem;
  border-radius: 1rem;
  margin: 2rem 0;
}

.contact-section h2 {
  color: var(--flowmart-black);
  margin-bottom: 1rem;
}

.contact-details p {
  margin-bottom: 0.5rem;
  color: #555;
}

.last-updated {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.animate-fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out;
}