/* Mobile sections styling */

/* General mobile section styles */
.mobile-section {
  padding: 2rem 1rem;
}

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

.mobile-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.mobile-section-subtitle {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* City Expert Section */
.mobile-app-view .mobile-cities-section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.mobile-app-view .mobile-city-card {
  height: 140px;
  min-width: 140px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mobile-app-view .mobile-city-button {
  font-size: 0.7rem;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
}

.mobile-app-view .mobile-nav-button {
  height: 30px;
  width: 30px;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Travel Expert Section */
.mobile-app-view .mobile-experts-section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.mobile-app-view .mobile-expert-card {
  min-width: 150px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.mobile-app-view .mobile-expert-image {
  height: 100px;
}

.mobile-app-view .mobile-expert-info {
  padding: 0.75rem;
}

/* Community Section */
.mobile-app-view .mobile-community-section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.mobile-app-view .mobile-meetup-card {
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Testimonials Section */
.mobile-app-view .mobile-testimonials-section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.mobile-app-view .mobile-testimonial-card {
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1rem;
}

.mobile-testimonial {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1rem 0;
  text-align: center;
}

.mobile-testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.mobile-testimonial-author {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Call to Action Section */
.mobile-app-view .mobile-cta-section {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.mobile-app-view .mobile-cta-button {
  width: 100%;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* Destinations Section */
.mobile-app-view .mobile-destinations-section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.mobile-app-view .mobile-destination-card {
  min-width: 140px;
  height: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* General mobile app styling */
.mobile-app-view section h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.mobile-app-view section h3 {
  font-size: 1rem;
}

.mobile-app-view .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.mobile-app-view .see-all-link {
  font-size: 0.75rem;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.mobile-app-view .see-all-link svg {
  height: 0.75rem;
  width: 0.75rem;
  margin-left: 0.25rem;
}

/* Touch feedback */
.mobile-app-view .touch-feedback:active {
  transform: scale(0.98);
  opacity: 0.9;
}

/* Grid and Stats */
.mobile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

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

.mobile-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

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

.mobile-stats {
  display: flex;
  justify-content: space-around;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
}

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

.mobile-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
  display: block;
}

.mobile-stat-label {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.25rem;
}

/* Card Styles */
.mobile-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.mobile-card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.mobile-card-content {
  padding: 1rem;
}

.mobile-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.mobile-card-description {
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Button Styles */
.mobile-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
  .mobile-section {
    padding: 1.5rem 0.75rem;
  }

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

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