@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;500;600;700;800&display=swap');

/* ==========================================
   BABY PARTY HIRE - MAIN STYLESHEET
   ========================================== */

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

:root {
  --primary-color: #fe9c9c;
  --secondary-color: #9391ff;
  --accent-color: #87CEEB;
  --text-dark: #2C3E50;
  --text-light: #6C757D;
  --bg-light: #fcf5eb;
  --white: #FFFFFF;
  --border-color: #DEE2E6;
  --success-color: #28A745;
  --danger-color: #DC3545;
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-hover: 0 4px 16px rgba(0,0,0,0.15);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

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

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.site-header {
  background: #fe9c9c; /* Your primary brand pink */
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo a {
  color: #ffffff;
  text-decoration: none;
  display: block;
}

.site-logo {
  max-height: 60px; /* Adjust this value to make logo bigger/smaller */
  width: auto;
  display: block;
}

/* Nav Links Container */
.nav-links {
  display: flex;
  gap: 2.5rem; /* Increased gap slightly for the underlines */
  align-items: center;
}

/* --- THE NAV ITEM (Links and Labels) --- */
.nav-item {
  font-weight: 500;
  color: #ffffff !important; /* Forces white text even if generic 'a' tags are pink */
  text-decoration: none;
  position: relative;
  padding: 5px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: opacity 0.3s ease;
}

/* Hover Underline Effect */
.nav-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.nav-item:hover::after {
  width: 100%;
}

.nav-item:hover {
  opacity: 0.9;
}

/* --- DROPDOWN NAVIGATION --- */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

/* Arrow rotates when the 'is-active' class is added via JS */
.nav-dropdown.is-active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none; /* Hidden by default */
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 240px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-radius: 12px;
  padding: 0.75rem 0;
  z-index: 1000;
  margin-top: 1rem;
  border: 1px solid rgba(0,0,0,0.05);
}

/* Show dropdown only when active class is present */
.nav-dropdown.is-active .dropdown-content {
  display: block;
  animation: navFadeUp 0.2s ease-out;
}

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

/* Links inside the dropdown (Dark text for white background) */
.dropdown-content a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark) !important;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.2s ease;
}

.dropdown-content a:hover {
  background: var(--bg-light);
  color: var(--primary-color) !important;
  padding-left: 1.8rem; /* Subtle sliding motion */
  text-decoration: none;
}

/* Keep admin link styled as a button */
.nav-links .admin-link {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 0.85rem;
  color: #ffffff !important;
}

.nav-links .admin-link::after {
  display: none; /* No underline for the button-style link */
}

/* MOBILE TOGGLE */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger animation when active */
.mobile-menu-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;  /* Changed from 80px */
    left: -100%;
    width: 100%;
    height: 100vh;  /* Full viewport height */
    background: #fe9c9c;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 20px 20px 20px;  /* Top padding to clear header */
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 998;  /* Below header */
    gap: 0;
  }
  
  .site-header {
    z-index: 999;  /* Ensure header stays on top */
  }
  
  .nav-links.is-active {
    left: 0;
  }
  
  .nav-item {
    width: 100%;
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }
  
  .nav-item::after {
    display: none;  /* Remove underline effect on mobile */
  }
  
  .nav-dropdown {
    width: 100%;
  }
  
  .dropdown-content {
    position: static;
    box-shadow: none;
    margin-top: 0.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
  }
  
  .dropdown-content a {
    color: #ffffff !important;
  }
  
  .dropdown-content a:hover {
    background: rgba(255,255,255,0.2);
  }
  
  body.menu-open {
    overflow: hidden;
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  background: #fcf5eb;
  color: var(--text-dark);
  padding: 3.5rem 0 0rem 0;
}

.hero .container {
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 65%;
  text-align: left;
  animation: slideInLeft 0.8s ease-out;
}

.hero h1,
.page-header h1,
.profile-header h1 {
  font-family: 'DM Serif Display', sans-serif;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
}

.hero-subtitle {
  font-family: 'Public Sans', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: var(--text-light);
  text-align: left;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    max-width: 100%;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==========================================
   FILTERS & SUPPLIER LISTINGS
   ========================================== */

.filter-group {
  flex: 1;
  min-width: 200px;
  max-width: 350px;
  display: inline-block;
  vertical-align: top;
}

.filter-group label {
  font-family: 'Public Sans', sans-serif;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.filter-select {
  font-family: 'Public Sans', sans-serif;
  width: 100%;
  padding: 0.7rem;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.results-info {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 6px;
  text-align: center;
}

.results-info p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

#countDisplay {
  font-weight: 600;
  color: var(--primary-color);
}

/* Supplier Listings Section */
.supplier-listings-section {
  padding: 3rem 0;
  background: var(--bg-light); /* This makes the "floor" beige */
}

.supplier-listings-section .container {
  background: var(--white);
  padding: 2rem;               /* Adds space inside the white box */
  border-radius: 12px;         /* Rounds the corners of the white box */
  box-shadow: var(--shadow);   /* Optional: adds a soft lift from the beige */
}

.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.supplier-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  flex-direction: column;
  height: 100%;
}

.card-main-link {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.view-supplier-btn {
  margin-top: auto;
}

.supplier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.supplier-card h3 {
  font-family: 'Public Sans', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.supplier-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.supplier-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--bg-light);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.supplier-description {
  font-family: 'Public Sans', sans-serif;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.supplier-categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.category-badge {
  font-family: 'Public Sans', sans-serif;
  padding: 0.25rem 0.5rem;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

.view-supplier-btn {
  width: 100%;
  padding: 0.75rem;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.view-supplier-btn:hover {
  background: var(--secondary-color);
}

/* Pagination */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.page-btn {
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.page-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.page-btn.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Loading & No Results States */
.loading-state,
.no-results-state {
  text-align: center;
  padding: 3rem;
  color: var(--text-light);
}

.loading-state {
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .filters-wrapper {
    flex-direction: column;
  }
  
  .filter-group {
    width: 100%;
  }
  
  .suppliers-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   SEARCH SECTION
   ========================================== */

.search-section {
  background: #fcf5eb;
  padding: 0rem 0 2rem 0;
}

/* ==========================================
   CONTENT SECTIONS
   ========================================== */

.content-section,
.events-section,
.vendors-section,
.trust-section,
.locations-section,
.faq-section {
  padding: 4rem 0;
}

.content-section h2,
.events-section h2,
.vendors-section h2,
.trust-section h2,
.locations-section h2,
.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.content-section {
  background: var(--bg-light);
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* ==========================================
   CARD GRIDS
   ========================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.event-card,
.vendor-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

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

.event-card h3,
.vendor-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.card-link:hover {
  color: var(--secondary-color);
}

/* ==========================================
   VENDOR LISTINGS
   ========================================== */

.vendor-list {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.vendor-item {
  background: var(--white);
  padding: 1.5rem;
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.vendor-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.vendor-item p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

/* ==========================================
   TRUST SECTION
   ========================================== */

.trust-list {
  list-style: none;
  margin-top: 2rem;
}

.trust-list li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.8;
}

.trust-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
  font-size: 1.3rem;
}

.trust-list strong {
  color: var(--text-dark);
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq-item {
  background: var(--white);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ==========================================
   PAGE HEADERS
   ========================================== */

.page-header {
  background: var(--bg-light);
  padding: 3rem 0;
  border-bottom: 3px solid var(--primary-color);
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.page-header .intro {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 800px;
}

.breadcrumbs {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--text-light);
}

.breadcrumbs span {
  color: var(--text-dark);
  font-weight: 500;
}

/* ==========================================
   SEO CONTENT BLOCKS
   ========================================== */

.seo-content {
  padding: 3rem 0;
  background: var(--white);
}

.content-block h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.content-block h3 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.content-block p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* ==========================================
   ARTICLES PAGE
   ========================================== */

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

.article-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.article-card h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.article-card ul {
  list-style: none;
  padding-left: 0;
}

.article-card ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.article-card ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* ==========================================
   VENDOR LISTING CARDS
   ========================================== */

.vendor-listings {
  padding: 3rem 0;
  background: var(--bg-light);
}

.vendors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.vendor-listing-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.vendor-listing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.vendor-suburb {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.vendor-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.vendor-website {
  margin-bottom: 1rem;
}

.vendor-website a {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.contact-vendor-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-vendor-btn:hover {
  background: var(--secondary-color);
  transform: scale(1.02);
}

.no-vendors {
  text-align: center;
  padding: 3rem 0;
  color: var(--text-light);
}

/* ==========================================
   RELATED LINKS
   ========================================== */

.related-vendors,
.related-events {
  padding: 3rem 0;
}

.category-links,
.event-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.category-link,
.event-link {
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-link:hover,
.event-link:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* ==========================================
   MODAL
   ========================================== */

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.modal-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
}

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

.close-modal {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--text-dark);
}

.modal-content h2 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

/* ==========================================
   FORMS
   ========================================== */

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group input[type="date"],
.form-group input[type="password"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
  background: var(--secondary-color);
  transform: scale(1.02);
}

#formMessage {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
  display: none;
}

#formMessage.success {
  display: block;
  background: #D4EDDA;
  color: #155724;
  border: 1px solid #C3E6CB;
}

#formMessage.error {
  display: block;
  background: #F8D7DA;
  color: #721C24;
  border: 1px solid #F5C6CB;
}

/* ==========================================
   LEAD VIEW PAGE
   ========================================== */

.lead-view-page {
  background: var(--bg-light);
  min-height: 100vh;
  padding: 2rem 0;
}

.lead-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
}

.lead-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.lead-header h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.lead-date {
  opacity: 0.9;
  font-size: 0.9rem;
}

.lead-details {
  padding: 2rem;
}

.detail-group {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.detail-group:last-child {
  border-bottom: none;
}

.detail-group h2 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.detail-group p {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--text-dark);
}

.detail-group strong {
  color: var(--text-dark);
  margin-right: 0.5rem;
}

.detail-group a {
  color: var(--primary-color);
  font-weight: 500;
}

.message-text {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 6px;
  line-height: 1.6;
  color: var(--text-dark);
}

.lead-actions {
  display: flex;
  gap: 1rem;
  padding: 0 2rem 2rem 2rem;
}

.action-btn {
  flex: 1;
  padding: 1rem;
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-btn {
  background: var(--success-color);
  color: var(--white);
}

.email-btn {
  background: var(--accent-color);
  color: var(--white);
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.lead-footer {
  background: var(--bg-light);
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border-color);
}

.lead-footer p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}


/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 0rem;
}

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

.footer-col h3,
.footer-col h4 {
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-col p {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col a {
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* ==========================================
   ERROR PAGE
   ========================================== */

.error-page {
  text-align: center;
  padding: 6rem 0;
}

.error-page h1 {
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.error-page p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .vendors-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
  
  .lead-actions {
    flex-direction: column;
  }
  
  .vendor-table {
    font-size: 0.85rem;
  }
  
  .vendor-table th,
  .vendor-table td {
    padding: 0.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .content-section h2,
  .events-section h2,
  .vendors-section h2 {
    font-size: 1.5rem;
  }
  
  .modal-content {
    padding: 1.5rem;
  }
}

/* ==========================================
   CASCADING FILTER STYLES
   ========================================== */

.filters-wrapper {
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
    flex-wrap: wrap;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;  /* ADD THIS */
}

/* Individual filter groups */
.filter-group {
    flex: 1;
    min-width: 200px;
    max-width: 350px;
    display: inline-block;
    vertical-align: top;
    transition: all 0.3s ease;
}

/* Specific styling for the region group to animate in */
#regionGroup {
    animation: fadeInSlide 0.4s ease forwards;
}

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

/* Make selects look consistent with your brand */
.filter-select {
    width: 100%;
    padding: 0.57rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--white);
    color: var(--text-dark);
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.filter-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(254, 156, 156, 0.1);
    outline: none;
}

/* Custom Location Select Container */
.custom-select {
    position: relative;
    width: 100%;
}

.select-button {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    background: var(--white);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.select-button::after {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.select-button.open::after {
    transform: rotate(180deg);
}

/* The Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

.dropdown-menu.open {
    display: block;
}

.dropdown-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: var(--bg-light);
}

/* Nested Region Styling */
.dropdown-item.region {
    display: none; /* Hidden until state expanded */
    padding-left: 30px;
    font-size: 0.9rem;
    color: #666;
    border-left: 2px solid var(--primary-color);
    margin-left: 10px;
}

.dropdown-item.region.visible {
    display: block;
}

.dropdown-item.state {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}

.dropdown-item.state::after {
    content: '+';
    color: var(--primary-color);
}

.dropdown-item.state.expanded::after {
    content: '−';
}

.dropdown-item.selected {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .filters-wrapper {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .filter-group {
        width: 100%;
    }
    
    .filter-select {
        padding: .57rem; /* Larger touch targets for mobile */
    }
}

/* ==========================================
   VENDOR PROFILE PAGE
   ========================================== */

.vendor-profile-container {
  max-width: 1200px;
  margin: 2rem auto;
}

.profile-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}

/* Breadcrumbs Styling */
.breadcrumb {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--primary-color);
  font-weight: 500;
}

/* Main Profile Content */
.profile-main {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.profile-header h1 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.profile-tags {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tag-location, .tag-price {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--border-color);
}

.profile-section {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-color);
}

.profile-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.description-text {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

.website-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* Sidebar Contact Card */
.contact-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 2px solid var(--bg-light); /* Subtle frame */
  position: sticky;
  top: 120px; /* Adjust based on your header height */
}

.contact-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  margin-bottom: 1rem;
}

.form-group input:focus {
  border-color: var(--primary-color);
  outline: none;
}

.submit-btn {
  width: 100%;
  border: none;
  background: var(--primary-color);
  color: var(--white);
  padding: 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.submit-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Mobile Adjustments */
@media (max-width: 992px) {
  .profile-layout {
    grid-template-columns: 1fr;
  }
  
  .contact-card {
    position: static;
    margin-top: 2rem;
  }
}

/* ==========================================
   MOBILE NAVIGATION - MUST BE LAST
   ========================================== */

/* MOBILE TOGGLE */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex !important;
  }
  
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100vh !important;
    background: #fe9c9c !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    padding: 100px 20px 20px 20px !important;
    transition: left 0.3s ease !important;
    overflow-y: auto !important;
    z-index: 1000 !important;
    gap: 0 !important;
    display: flex !important;
  }
  
  .nav-links.is-active {
    left: 0 !important;
  }
  
  .site-header {
    z-index: 1001 !important;
  }
  
  .nav-item {
    width: 100% !important;
    padding: 15px 10px !important;
    border-bottom: 1px solid rgba(255,255,255,0.2) !important;
    text-align: right !important;
    justify-content: flex-end !important;
  }
  
  .nav-item::after {
    display: none !important;
  }
  
  .nav-dropdown {
    width: 100% !important;
    text-align: right !important;
  }
  
  .dropdown-content {
    position: static !important;
    box-shadow: none !important;
    margin-top: 0.5rem !important;
    background: rgba(255,255,255,0.1) !important;
    border-radius: 8px !important;
    text-align: right !important;
  }
  
  .dropdown-content a {
    color: #ffffff !important;
    text-align: right !important;
  }
  
  .dropdown-content a:hover {
    background: rgba(255,255,255,0.2) !important;
  }
  
  body.menu-open {
    overflow: hidden !important;
  }
}

/* ==========================================
   IMAGE CAROUSEL & LIGHTBOX
   ========================================== */

/* Image Carousel */
.image-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-light);
}

.carousel-track-container {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  display: none;
  cursor: pointer;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.carousel-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.carousel-btn:hover {
  background: rgba(254, 156, 156, 0.95);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}

.carousel-indicators .indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-indicators .indicator.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.carousel-indicators .indicator:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

#lightbox-image {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--text-dark);
  line-height: 1;
  padding: 0;
}

.lightbox-close:hover {
  background: var(--danger-color);
  color: white;
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 40px;
}

.lightbox-next {
  right: 40px;
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .carousel-slide img {
    height: 300px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .prev-btn {
    left: 10px;
  }
  
  .next-btn {
    right: 10px;
  }
  
  .carousel-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
  
  #lightbox-image {
    max-width: 95%;
    max-height: 80vh;
  }
  
  .lightbox-counter {
    bottom: 20px;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}

/* ==========================================
   CARD MINI CAROUSEL
   ========================================== */

.card-carousel {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: var(--bg-light);
  margin-bottom: 0;
}

.card-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.card-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.card-carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.card-carousel-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.card-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card Carousel Buttons */
.card-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  opacity: 0;
}

.card-carousel:hover .card-carousel-btn {
  opacity: 1;
}

.card-carousel-btn:hover {
  background: rgba(254, 156, 156, 0.95);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.card-prev {
  left: 8px;
}

.card-next {
  right: 8px;
}

/* Card Carousel Dots */
.card-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.card-dot.active {
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.3);
}

/* Adjust card content spacing when carousel exists */
.supplier-card:has(.card-carousel) .card-main-link {
  padding-top: 1rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .card-carousel {
    height: 200px;
  }
  
  .card-carousel-btn {
    width: 28px;
    height: 28px;
  }
  
  .card-carousel-btn svg {
    width: 14px;
    height: 14px;
  }
}

/* ==========================================
   NESTED CITIES DROPDOWN STYLES
   Add this to your style.css (replace the existing cities dropdown CSS)
   ========================================== */

/* Cities dropdown container */
.dropdown-content-cities {
  min-width: 320px;
  max-width: 350px;
  max-height: 500px;
  overflow-y: auto;
  padding: 0.5rem 0;
}

/* State group container */
.city-state-group {
  margin-bottom: 0.5rem;
}

/* State header (clickable to expand) */
.city-state-header {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: var(--text-dark) !important;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  border-left: 3px solid transparent;
}

.city-state-header:hover {
  background: var(--bg-light);
  border-left-color: var(--primary-color);
  padding-left: 1.8rem;
}

.state-toggle {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

/* Regions list (hidden by default) */
.city-regions-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.02);
}

.city-regions-list.expanded {
  max-height: 500px; /* Large enough for all regions */
}

/* Individual city/region links */
.city-region-link {
  display: block;
  padding: 0.6rem 1.5rem 0.6rem 2.5rem;
  color: var(--text-light) !important;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
  margin-left: 1rem;
}

.city-region-link:hover {
  background: var(--bg-light);
  color: var(--primary-color) !important;
  padding-left: 2.8rem;
  border-left-color: var(--primary-color);
}

/* Scrollbar styling for cities dropdown */
.dropdown-content-cities::-webkit-scrollbar {
  width: 8px;
}

.dropdown-content-cities::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-radius: 4px;
}

.dropdown-content-cities::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

.dropdown-content-cities::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .dropdown-content-cities {
    min-width: 100%;
    max-width: 100%;
    position: static !important;
    text-align: right; /* Aligns text to the right */
  }

  .state-toggle {
    color: #ffffff !important; /* Forces the plus sign to white */
  }
  
  .city-state-header {
    color: #ffffff !important;
    flex-direction: row-reverse; /* Flips the label and the arrow/toggle */
    border-left: none;
    border-right: 3px solid var(--primary-color); /* Moves accent line to the right */
    padding-right: 1.5rem;
  }
  
  .city-regions-list {
    background: rgba(255, 255, 255, 0.05);
  }
  
  .city-region-link {
    color: rgba(255, 255, 255, 0.9) !important;
    border-left: none;
    border-right: 2px solid transparent;
    margin-left: 0;
    margin-right: 1rem;
    padding: 0.6rem 1.5rem 0.6rem 0.5rem; /* Adjust padding for right alignment */
  }
  
  .city-region-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    border-right-color: var(--primary-color);
  }
}

.footer-bottom .disclaimer {
  font-size: 0.85em;
  color: #888;
  margin-bottom: 10px;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
