/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
.top-header {
  background: #F4C430;
  color: #000;
  padding: 10px 0;
  font-size: 15px;
}

.main-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #104382;
}
/*
.logo img {
  height: 50px;
  width: auto;
}*/

.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.nav-menu a {
  font-size: 1.8rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #104382;
}

/* Hero */
.hero-section {
  background: #F4C430;
  color: #000;
  padding: 60px 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-section p {
  font-size: 2rem;
}

/* Search */
.search-container {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.search-box {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 15px;
}

.search-input {
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
}

.search-btn {
  background: #104382;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* Section Title */
.section-titleH {
  text-align: center;
  margin-bottom: 50px;
}

.section-titleH h2 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 10px;
}

.section-titleH p {
  color: #666;
  font-size: 2rem;
}

.section-titleH .view-all-btn {
  float: right;
  color: #104382;
  text-decoration: none;
  font-weight: 600;
}

/* Categories */
.category-section {
  padding: 60px 0;
  background: #f9f9f9;
}

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

.category-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

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

.category-icon {
  font-size: 3rem;
  color: #104382;
  margin-bottom: 15px;
}

.category-card h3 {
  font-size: 1.7rem;
  color: #333;
  margin-bottom: 10px;
}

.category-card p {
  color: #666;
  font-size: 14px;
}

/* Top Lists */
.top-lists-section {
  padding: 60px 0;
  background: #fff;
}

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

.list-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.list-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.list-header {
  background: #F4C430;
  color: #000;
  padding: 20px;
  font-size: 1.6rem;
  font-weight: 600;
}

.list-items {
  padding: 20px;
}

.list-item {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.list-item:last-child {
  border-bottom: none;
}

.rank-badge {
  background: #104382;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

/* Featured Businesses */
.featured-businesses {
  padding: 60px 0;
  background: #f9f9f9;
}

.business-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.business-card-featured {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
  position: relative;
}

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

.business-card-featured img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.premium-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #333;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.business-info {
  padding: 20px;
}

.business-location {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

/* FAQ */
.faq-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #333;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f9f9f9;
}

.faq-toggle {
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 20px 20px;
  color: #666;
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
}
/* Stats */
.stats-section {
  background: #F4C430;
  color: #000;
  padding: 60px 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.stat-item h3 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* CTA */
.cta-section {
  background: #F4C430;
  color: #000;
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-btn {
  background: #fff;
  color: #104382;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: transform 0.3s;
}

.cta-btn:hover {
  transform: scale(1.05);
  color: #104382;
}

.news-section {
  padding: 60px 0;
  background: white;
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.featured-news {
  display: grid;
  gap: 30px;
}

.news-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.news-card:hover {
  transform: translateY(-3px);
}

.news-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
}

.news-content time {
  color: #999;
  font-size: 14px;
}

.news-content h3 {
  margin: 10px 0;
  font-size: 1.3rem;
}

.news-content h3 a {
  color: #333;
  text-decoration: none;
}

.news-content p {
  color: #666;
  line-height: 1.6;
}

.news-tags {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-tags .tag {
  background: #f0f0f0;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  color: #555;
}

.news-sidebar {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
}

.news-sidebar h3 {
  margin-bottom: 20px;
  color: #333;
}

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

.news-list li {
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.news-list li:last-child {
  border-bottom: none;
}

.news-list a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.news-list time {
  display: block;
  color: #999;
  font-size: 12px;
  margin-top: 5px;
}

.see-all-link {
  display: block;
  margin-top: 20px;
  color: #104382;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .business-carousel {
    grid-template-columns: 1fr;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .search-box,
  .news-grid,
  .business-carousel {
    grid-template-columns: 1fr;
  }

  .hero-section h1 {
    font-size: 1.8rem;
  }

  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}



/* CONTACT US PAGE */

/* Contact Page Styles */
.contact-hero {
  background: #104382;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 1.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb-section {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 10px;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li::after {
  content: '›';
  margin-left: 10px;
  color: #999;
}

.breadcrumb li:last-child::after {
  content: '';
}

.breadcrumb a {
  color: #104382;
  text-decoration: none;
}

.contact-section {
  padding: 60px 0;
  background: #e3e0d1;
}

.contact-card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.contact-card h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 10px;
}

.contact-card p {
  color: #666;
  margin-bottom: 30px;
}

.alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
  font-size: 14px;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: inherit;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(135deg, #FF6F00 0%, #FF8F00 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4);
}

.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.recaptcha-wrapper {
  margin-bottom: 20px;
}

.recaptcha-error {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
}

/* Contact Info Card */
.contact-info {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  height: 100%;
}

.contact-info h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
}

.info-section {
  margin-bottom: 30px;
}

.info-section h4 {
  color: #104382;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.info-item {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 12px;
  color: #555;
  line-height: 1.6;
}

.info-item i {
  color: #FF6F00;
  margin-top: 3px;
  font-size: 18px;
  width: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #f0f0f0;
  border-radius: 50%;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: #FF6F00;
  color: white;
  transform: translateY(-3px);
}

/* Map Section */
.map-section {
  margin-top: 60px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.map-container {
  width: 100%;
  height: 400px;
  background: #f0f0f0;
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .contact-card {
    padding: 25px;
  }
}



/* MEMBER HOME */

/* Dashboard Styles */
.dashboard-hero {
  background: #104382;
  color: white;
  padding: 40px 0;
}

.dashboard-hero h1 {
  font-size: 2rem;
  margin-bottom: 5px;
}

.dashboard-hero p {
  opacity: 0.9;
}

.dashboard-container {
  padding: 40px 0;
  background: #f8f9fa;
}

.sidebar {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 80px;
  margin-bottom: 30px;
}

.dashboard-content {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.alert-success {
  background: #d4edda;
  color: #155724;
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid #c3e6cb;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.welcome-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.welcome-section h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 10px;
}

.welcome-section p {
  color: #666;
  font-size: 1.5rem;
}

/* Statistics Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: #104382;
  color: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

.stat-card.orange {
  background: linear-gradient(135deg, #FF6F00 0%, #FF8F00 100%);
}

.stat-card.green {
  background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
}

.stat-card.blue {
  background: linear-gradient(135deg, #2196F3 0%, #42A5F5 100%);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  opacity: 0.9;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

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

/* Quick Actions */
.quick-actions {
  margin-bottom: 40px;
}

.quick-actions h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 20px;
}

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

.action-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}

.action-card:hover {
  border-color: #FF6F00;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-decoration: none;
}

.action-icon {
  font-size: 3rem;
  color: #FF6F00;
  margin-bottom: 15px;
}

.action-title {
  font-size: 1.6rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
}

.action-description {
  color: #666;
  font-size: 1.5rem;
}

/* Recent Businesses */
.recent-businesses {
  margin-bottom: 40px;
}

.recent-businesses h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 20px;
}

.business-list {
  list-style: none;
  padding: 0;
}

.business-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: all 0.3s;
}

.business-item:hover {
  border-color: #FF6F00;
  background: #fff8f0;
}

.business-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.business-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  background: #f0f0f0;
}

.business-details h4 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 3px;
}

.business-status {
  font-size: 1.5rem;
  color: #666;
}

.status-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 1.5rem;
  font-weight: 600;
}

.status-active {
  background: #d4edda;
  color: #155724;
}

.status-pending {
  background: #fff3cd;
  color: #856404;
}

.business-actions {
  display: flex;
  gap: 10px;
}

.btn-small {
  padding: 6px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: normal;
  transition: all 0.3s;
}

.btn-primary {
  background: #FF6F00;
  color: white;
}

.btn-primary:hover {
  background: #e56300;
  text-decoration: none;
  color: white;
}

.btn-secondary {
  background: #f0f0f0;
  color: #333;
}

.btn-secondary:hover {
  background: #e0e0e0;
  text-decoration: none;
  color: #333;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-state i {
  font-size: 4rem;
  color: #ddd;
  margin-bottom: 20px;
}

.empty-state h4 {
  color: #666;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .action-grid {
    grid-template-columns: 1fr;
  }
  
  .business-item {
    flex-direction: column;
    gap: 15px;
  }
  
  .business-actions {
    width: 100%;
  }
}



/* MANAGE BUSINESS STYLES */

.dashboard-container {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 30px 0;
}

.page-header {
    background: #104382;
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-header h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.business-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.business-card-header {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    align-items: flex-start;
    gap: 20px;
}

.business-image {
    flex-shrink: 0;
}

.business-image img {
    width: 180px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid #f8f9fa;
}

.business-info {
    flex: 1;
}

.business-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.business-title a {
    color: #104382;
    text-decoration: none;
    transition: color 0.3s ease;
}

.business-title a:hover {
    color: #764ba2;
}

.status-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.status-badge.active {
    background: #d4edda;
    color: #155724;
}

.status-badge.inactive {
    background: #f8d7da;
    color: #721c24;
}

.business-details {
    padding: 20px;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #6c757d;
    font-size: 14px;
}

.detail-row i {
    width: 20px;
    margin-right: 10px;
    color: #104382;
    margin-top: 2px;
}

.detail-row span {
    flex: 1;
}

.subscription-info {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px;
    border-radius: 4px;
}

.subscription-info.expired {
    background: #f8d7da;
    border-left-color: #dc3545;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    background: #f8f9fa;
}

.btn-action {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #104382;
    color: white;
}

.btn-primary:hover {
    background: #5568d3;
    color: white;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    color: white;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
    color: white;
}

.counter-badge {
    background: #e9ecef;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #495057;
}

.payment-section {
    padding: 20px;
    background: #F4C430;
    color: white;
    margin: 20px;
    border-radius: 8px;
}

.payment-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.payment-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.payment-card .price {
    font-size: 36px;
    font-weight: 700;
    color: #104382;
    margin: 15px 0;
}

.payment-card .price span {
    font-size: 18px;
}

.payment-card .duration {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-pay {
    background: #104382;
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-pay:hover {
    transform: scale(1.05);
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.no-businesses {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
}

.no-businesses i {
    font-size: 64px;
    color: #e9ecef;
    margin-bottom: 20px;
}

.no-businesses h4 {
    color: #6c757d;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .business-card-header {
        flex-direction: column;
    }
    
    .business-image img {
        width: 100%;
        max-width: 300px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-action {
        width: 100%;
        justify-content: center;
    }
}



/* FOOTER */

/* Footer Styles */
.site-footer {
  background: #FFC107;
  color: #333;
  padding: 60px 0 20px;
}

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

.footer-column {
  animation: fadeIn 0.6s ease-in;
}

.footer-logo {
  margin-bottom: 20px;
  max-width: 180px;
}

.footer-description {
  color: #333;
  line-height: 1.8;
  font-size: 16px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #333;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #000;
  transform: translateX(5px);
}

.footer-address {
  color: #333;
  line-height: 1.8;
  font-style: normal;
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-phone {
  margin: 15px 0;
  font-size: 14px;
}

.footer-phone a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.footer-phone a:hover {
  color: #000;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: #333;
  font-size: 20px;
  transition: all 0.3s ease;
  display: inline-block;
}

.social-links a:hover {
  color: #000;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  color: #333;
}

.copyright {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-legal {
  margin: 15px 0;
  font-size: 14px;
}

.footer-legal a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #000;
  text-decoration: underline;
}

.separator {
  margin: 0 10px;
  color: #555;
}

.powered-by {
  font-size: 13px;
  margin-top: 10px;
}

.powered-by a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.powered-by a:hover {
  color: #000;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 20px;
  }
  
  .footer-content {
    gap: 30px;
  }
  
  .footer-heading {
    font-size: 16px;
  }
}




/* Professional Profile Styling */
.profile-wrapper {
    min-height: 100vh;
    padding: 40px 0;
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
}

.profile-header {
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.profile-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color:#333;
}

.profile-header p {
    font-size: 16px;
    opacity: 0.9;
    color:#333;
}

.profile-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    overflow: hidden;
}

.sidebar {
    background: #f8f9fa;
    padding: 30px 20px;
    border-right: 1px solid #e9ecef;
}

.profile-main {
    padding: 40px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: #667eea;
}

.section-subtitle {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 30px;
}

/* Alert Messages */
.alert {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-success i {
    color: #28a745;
    font-size: 20px;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-danger i {
    color: #dc3545;
    font-size: 20px;
}

/* Form Styling */
.profile-form {
    max-width: 700px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-label i {
    margin-right: 8px;
    color: #667eea;
    width: 18px;
    text-align: center;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
    color: #2c3e50;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-control::placeholder {
    color: #adb5bd;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.password-input-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #667eea;
}

.form-help {
    font-size: 13px;
    color: #6c757d;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-help i {
    font-size: 12px;
}

/* Button Styling */
.btn-group {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary {
    background: #104382;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #e9ecef;
    color: #495057;
}

.btn-secondary:hover {
    background: #dee2e6;
}

/* Info Card */
.info-card {
    background: #104382;
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
}

.info-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card p {
    font-size: 14px;
    opacity: 0.95;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-main {
        padding: 25px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 24px;
    }
}

/* Loading State */
.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-primary.loading {
    position: relative;
    color: transparent;
}

.btn-primary.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}