/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Bar Styles */
.top-bar {
  background: #2c3e50;
  color: white;
  padding: 0.5rem 0;
  font-size: 0.8rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  gap: 1.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.top-bar-item .icon {
  font-size: 0.7rem;
}

.top-bar-item a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.top-bar-item a:hover {
  color: #28a745;
}

/* Header Styles */
.header {
  background: #fff;
  border-bottom: 2px solid #e9ecef;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Scrolled Header Effect */
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(233, 236, 239, 0.8);
}

.header.scrolled .navbar {
  padding: 0.7rem 0;
}

.header.scrolled .logo-icon {
  font-size: 2.2rem;
}

.header.scrolled .logo-text h1 {
  font-size: 1.6rem;
}

.navbar {
  padding: 1rem 0;
}

.navbar .container {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 2rem;
  align-items: center;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #2c5aa0 0%, #28a745 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text h1 {
  color: #2c5aa0;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.logo-text span {
  color: #28a745;
}

.logo-tagline {
  color: #666;
  font-size: 0.75rem;
  margin: 0;
  font-weight: 400;
  line-height: 1;
}

/* Quick Search */
.quick-search {
  max-width: 400px;
  width: 100%;
}

.header-search-form {
  display: flex;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.3s;
}

.header-search-form:focus-within {
  border-color: #2c5aa0;
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.search-input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  outline: none;
}

.search-input::placeholder {
  color: #999;
}

.search-btn {
  background: #2c5aa0;
  border: none;
  padding: 0.7rem 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.search-btn:hover {
  background: #1e3d72;
}

.search-icon {
  color: white;
  font-size: 0.9rem;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  gap: 0.5rem;
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-decoration: none;
  color: #666;
  font-weight: 500;
  font-size: 0.8rem;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  transition: all 0.3s;
  position: relative;
}

.nav-link:hover {
  color: #2c5aa0;
  background: #f8f9fa;
}

.nav-link.active {
  color: #2c5aa0;
  background: #e3f2fd;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #2c5aa0;
  border-radius: 50%;
}

.nav-icon {
  font-size: 1.1rem;
}

/* Navigation Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background 0.3s;
}

.nav-toggle:hover {
  background: #f8f9fa;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Header */
@media (max-width: 1024px) {
  .navbar .container {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }

  .nav-actions {
    display: none;
  }

  .quick-search {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .navbar .container {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }

  .quick-search {
    display: none;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    border-top: 1px solid #e9ecef;
    padding: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 0;
    border-bottom: 1px solid #f8f9fa;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .logo-text h1 {
    font-size: 1.5rem;
  }

  .logo-tagline {
    display: none;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.8rem 0;
  }

  .logo {
    gap: 0.5rem;
  }

  .logo-icon {
    font-size: 2rem;
  }

  .logo-text h1 {
    font-size: 1.3rem;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .top-bar-left,
  .top-bar-right {
    gap: 1rem;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2c5aa0 0%, #28a745 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.search-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.form-group {
  flex: 1;
  min-width: 180px;
}

.form-control {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
}

.btn {
  padding: 0.6rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.3s;
}

.btn-primary {
  background: #28a745;
  color: white;
  border-color: #28a745;
}

.btn-primary:hover {
  background: #218838;
  border-color: #218838;
}

.btn-secondary {
  background: #6c757d;
  color: white;
  border-color: #6c757d;
}

.btn-outline {
  background: transparent;
  border: 1px solid #2c5aa0;
  color: #2c5aa0;
}

.btn-outline:hover {
  background: #2c5aa0;
  color: white;
}

.btn-small {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
}

/* Categories Section */
.categories {
  padding: 3rem 0;
  background: white;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h1,
.section-title h2 {
  font-size: 2rem;
  color: #2c5aa0;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid #e9ecef;
  text-align: center;
  transition: transform 0.3s;
  text-decoration: none;
  color: inherit;
}

.category-card:hover {
  transform: translateY(-2px);
  border-color: #2c5aa0;
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  color: #28a745;
}

/* Service Stats */
.service-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.8rem;
}

.category-count {
  background: #28a745;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
}

.avg-rating {
  color: #ffc107;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Services Descriptions */
.services-descriptions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.service-description {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.service-description h3 {
  color: #2c5aa0;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

/* Cities Styles */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.city-card {
  background: white;
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid #e9ecef;
  text-decoration: none;
  color: inherit;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.city-card:hover {
  transform: translateY(-2px);
  border-color: #2c5aa0;
}

.city-card h4 {
  color: #2c5aa0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.city-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.5rem 0;
  font-size: 0.8rem;
}

.city-stats span {
  background: #f8f9fa;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  border: 1px solid #e9ecef;
}

/* Cities by State */
.state-section {
  background: white;
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.state-section h3 {
  color: #2c5aa0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.city-link {
  background: #f8f9fa;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  border: 1px solid #e9ecef;
  text-decoration: none;
  color: #2c5aa0;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.city-link:hover {
  background: #2c5aa0;
  color: white;
}

/* About Page Styles */
.about-page {
  padding: 3rem 0;
}

.mission-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.mission-point {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.mission-point h4 {
  color: #2c5aa0;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.value-item {
  background: #f8f9fa;
  padding: 1.2rem;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.value-item h4 {
  color: #2c5aa0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* Contact Page Styles */
.contact-page {
  padding: 3rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.contact-form {
  margin-top: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: #333;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: #2c5aa0;
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

.business-hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid #f1f3f4;
  font-size: 0.9rem;
}

.quick-links {
  list-style: none;
}

.quick-links li {
  margin-bottom: 0.5rem;
}

.quick-links a {
  color: #2c5aa0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.quick-links a:hover {
  color: #28a745;
}

/* Company Cards */
.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.company-card {
  background: white;
  border-radius: 6px;
  padding: 1.2rem;
  border: 1px solid #e9ecef;
  transition: transform 0.3s;
}

.company-card:hover {
  transform: translateY(-2px);
  border-color: #2c5aa0;
}

.company-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.company-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c5aa0;
  text-decoration: none;
}

.featured-badge {
  background: #ffc107;
  color: #000;
  padding: 0.2rem 0.4rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
}

.company-info {
  margin-bottom: 0.8rem;
}

.company-info p {
  margin-bottom: 0.4rem;
  color: #666;
  font-size: 0.9rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.stars {
  color: #ffc107;
  font-size: 0.9rem;
}

/* Company Profile Page */
.breadcrumb {
  background: #f8f9fa;
  padding: 0.8rem 0;
  border-bottom: 1px solid #e9ecef;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.breadcrumb-nav a {
  color: #2c5aa0;
  text-decoration: none;
}

.breadcrumb-nav span {
  color: #666;
}

.company-profile {
  padding: 1.5rem 0;
}

.profile-header {
  background: white;
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid #e9ecef;
  margin-bottom: 1.5rem;
}

.profile-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.profile-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}

.profile-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.profile-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: white;
  padding: 1.2rem;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.info-card h3 {
  color: #2c5aa0;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  font-weight: 600;
}

.info-card h4 {
  color: #333;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.features-list {
  list-style: none;
}

.features-list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid #f1f3f4;
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.9rem;
}

.features-list li:before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
}

/* Star Rating */
.star-rating {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.8rem;
}

.star {
  font-size: 1.2rem;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s;
}

.star:hover,
.star.active {
  color: #ffc107;
}

/* Reviews Section */
.reviews-section {
  margin-top: 1.5rem;
}

.review-item {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 0.8rem;
  border: 1px solid #e9ecef;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.reviewer-name {
  font-weight: 600;
  color: #2c5aa0;
  font-size: 0.9rem;
}

.review-date {
  color: #666;
  font-size: 0.8rem;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 2.5rem 0 1rem;
  margin-top: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 0.8rem;
  color: #28a745;
  font-size: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.4rem;
}

.footer-section a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: #28a745;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 0.8rem;
  text-align: center;
  color: #bdc3c7;
  font-size: 0.9rem;
}

/* Alert Messages */
.alert {
  padding: 0.8rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Data Tables */
.data-table {
  width: 100%;
  background: white;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.data-table th,
.data-table td {
  padding: 0.8rem;
  text-align: left;
  border-bottom: 1px solid #f1f3f4;
  font-size: 0.9rem;
}

.data-table th {
  background: #f8f9fa;
  font-weight: 600;
}

/* FAQ Section */
.faq-item {
  margin-bottom: 1rem;
}

.faq-item h4 {
  color: #2c5aa0;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.faq-item p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

/* How It Works Section */
.how-it-works {
  padding: 3rem 0;
  background: #f8f9fa;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.step-card {
  background: white;
  padding: 2rem;
  border-radius: 6px;
  border: 1px solid #e9ecef;
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #2c5aa0;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 auto 1rem;
}

.step-card h3 {
  color: #2c5aa0;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.step-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Featured Section */
.featured-section {
  padding: 3rem 0;
  background: white;
}

/* Cities Section */
.cities-section {
  padding: 3rem 0;
  background: #f8f9fa;
}

/* Services Overview */
.services-overview {
  padding: 3rem 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid #e9ecef;
  text-align: center;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: #28a745;
}

.feature-card h3 {
  color: #2c5aa0;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.feature-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Latest Section */
.latest-section {
  padding: 3rem 0;
  background: #f8f9fa;
}

/* New Badge */
.new-badge {
  background: #28a745;
  color: white;
  padding: 0.2rem 0.4rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

/* Company Actions */
.company-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid #e9ecef;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #2c5aa0;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #2c5aa0 0%, #28a745 100%);
  color: white;
  text-align: center;
  margin-top: 3rem;
  border-radius: 6px;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-outline {
  border-color: white;
  color: white;
}

.cta-buttons .btn-outline:hover {
  background: white;
  color: #2c5aa0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 60px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    border-top: 1px solid #e9ecef;
    padding: 1.5rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .search-form {
    flex-direction: column;
  }

  .profile-content {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .companies-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cities-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-content h2 {
    font-size: 1.6rem;
  }

  .company-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .section-title h1,
  .section-title h2 {
    font-size: 1.6rem;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .services-descriptions {
    grid-template-columns: 1fr;
  }

  .mission-points {
    grid-template-columns: 1fr;
  }

  .values-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 2rem 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .profile-header {
    padding: 1rem;
  }

  .info-card {
    padding: 1rem;
  }

  .step-card,
  .feature-card {
    padding: 1rem;
  }

  .cities-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .company-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .city-stats {
    flex-direction: column;
    gap: 0.2rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex;
}
.justify-center {
  justify-content: center;
}
.justify-space-between {
  justify-content: space-between;
}
.align-center {
  align-items: center;
}
.gap-1 {
  gap: 0.5rem;
}
.gap-2 {
  gap: 1rem;
}
