/* ===== GrabLoco Global Styles ===== */
:root {
  --primary: #00b774;
  --primary-dark: #009b5f;
  --dark: #0f172a;
  --gray: #64748b;
  --light: #f8fafc;
  --border: #e2e8f0;
  --radius: 18px;
  --radius-sm: 14px;
  --radius-full: 999px;
  --shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

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

/* ===== Typography ===== */
h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
}

/* ===== Hero Section ===== */
.gl-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.gl-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.gl-hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

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

.gl-hero-badge {
  display: inline-block;
  background: rgba(0, 183, 116, 0.1);
  color: var(--primary-dark);
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 183, 116, 0.2);
}

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

.gl-btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

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

.gl-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.gl-btn-secondary {
  background: white;
  color: var(--dark);
  border: 1px solid var(--border);
}

.gl-btn-secondary:hover {
  background: var(--light);
  transform: translateY(-2px);
}

/* ===== Features ===== */
.gl-features {
  padding: 4rem 0;
  background: white;
}

.gl-features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.gl-features-sub {
  text-align: center;
  color: var(--gray);
  margin-bottom: 3rem;
}

.gl-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.gl-feature-card {
  text-align: center;
  padding: 2rem;
}

.gl-feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 183, 116, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.gl-feature-card h3 {
  margin-bottom: 0.5rem;
}

.gl-feature-card p {
  color: var(--gray);
}

/* ===== Steps ===== */
.gl-steps {
  padding: 4rem 0;
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gl-steps h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

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

.gl-step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.gl-step h3 {
  margin-bottom: 0.5rem;
}

.gl-step p {
  color: var(--gray);
}

/* ===== Vendor Grid ===== */
.gl-home-vendors {
  padding: 4rem 0;
  background: white;
}

.gl-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.gl-section-header h2 {
  font-size: 2rem;
}

.gl-view-all {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.gl-view-all:hover {
  background: rgba(0, 183, 116, 0.1);
}

.gl-vendor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .gl-vendor-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 440px) {
  .gl-vendor-grid {
    grid-template-columns: 1fr;
  }
}

.gl-vendor-card {
  display: block;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  transition: all 0.2s;
}

.gl-vendor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.gl-vendor-media {
  aspect-ratio: 16/9;
  background: var(--light);
  overflow: hidden;
}

.gl-vendor-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gl-vendor-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark), var(--primary));
  color: white;
  font-size: 2rem;
  font-weight: 800;
}

.gl-vendor-body {
  padding: 1rem;
}

.gl-vendor-body h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.gl-vendor-location {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.gl-vendor-cat {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ===== Cities Grid ===== */
.gl-home-cities {
  padding: 4rem 0;
  background: var(--light);
}

.gl-cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

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

.gl-city-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
}

.gl-city-card.active:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.gl-city-card.coming-soon {
  opacity: 0.7;
  cursor: default;
  background: var(--light);
}

.gl-city-name {
  font-weight: 700;
  color: var(--dark);
  text-align: center;
}

.gl-city-badge {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* ===== Pricing ===== */
.gl-pricing {
  padding: 4rem 0;
  background: white;
}

.gl-pricing h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.gl-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.gl-pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  background: white;
  position: relative;
}

.gl-pricing-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: scale(1.05);
}

.gl-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}

.gl-pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.gl-pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.gl-pricing-header p {
  color: var(--gray);
  font-size: 0.875rem;
}

.gl-price {
  text-align: center;
  margin-bottom: 2rem;
}

.gl-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
}

.gl-period {
  color: var(--gray);
  font-size: 0.875rem;
}

.gl-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.gl-pricing-features li {
  padding: 0.5rem 0;
  color: var(--dark);
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
}

.gl-pricing-features li:last-child {
  border-bottom: none;
}

/* ===== FAQ ===== */
.gl-faq {
  padding: 4rem 0;
  background: var(--light);
}

.gl-faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.gl-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.gl-faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.gl-faq-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.gl-faq-item p {
  color: var(--gray);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ===== CTA ===== */
.gl-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
  color: white;
  text-align: center;
}

.gl-cta h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.gl-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.gl-cta .gl-btn {
  background: white;
  color: var(--dark);
}

.gl-cta .gl-btn:hover {
  background: var(--light);
}

/* ===== Footer ===== */
.gl-footer {
  background: white;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

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

.gl-footer-col h4 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.gl-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gl-footer-col ul li {
  margin-bottom: 0.75rem;
}

.gl-footer-col a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.gl-footer-col a:hover {
  color: var(--primary);
}

.gl-footer-contact p {
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.gl-footer-contact strong {
  color: var(--dark);
}

.gl-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--gray);
  font-size: 0.875rem;
}

.gl-footer-address {
  font-style: normal;
  line-height: 1.6;
}
