/* Aulo Bros - Professional Trucking & Waste Services
   Color Palette derived from logo: Royal Blue tones with neutral grays
   Primary: #2B5BA6 (Royal Blue)
   Secondary: #1E3A5F (Dark Navy)
   Accent: #4A7BC8 (Light Blue)
   Text: #1A1A2E (Near Black)
   Light: #F8F9FA (Off White)
*/

/* CSS Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #2B5BA6;
  --primary-dark: #1E3A5F;
  --primary-light: #4A7BC8;
  --accent: #E8A54B;
  --text-dark: #1A1A2E;
  --text-medium: #4A4A5A;
  --text-light: #6B7280;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --bg-dark: #1E3A5F;
  --border-light: #E5E7EB;
  --success: #059669;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--bg-white);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--text-dark);
}

.btn-accent:hover {
  background-color: #D4952F;
  transform: translateY(-1px);
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-light);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 48px;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.logo-text span {
  color: var(--primary);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-medium);
  padding: 8px 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 20px;
  background-color: var(--primary);
  color: var(--bg-white);
  border-radius: 6px;
  font-weight: 600;
}

.nav-cta:hover {
  background-color: var(--primary-dark);
}

/* Mobile Navigation */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  overflow: hidden;
}

/* When hero image is added, use this class on the hero section */
.hero.has-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay for hero image to ensure text readability */
.hero.has-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(43, 91, 166, 0.75) 100%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.02) 10px,
    rgba(255, 255, 255, 0.02) 20px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 64px 0;
}

.hero h1 {
  color: var(--bg-white);
  font-size: 3rem;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero .btn-primary {
  background-color: var(--accent);
  color: var(--text-dark);
}

.hero .btn-primary:hover {
  background-color: #D4952F;
}

.hero .btn-secondary {
  border-color: var(--bg-white);
  color: var(--bg-white);
}

.hero .btn-secondary:hover {
  background-color: var(--bg-white);
  color: var(--primary-dark);
}

/* Stats Bar */
.stats-bar {
  background-color: var(--bg-light);
  padding: 32px 0;
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 16px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-header h2 {
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-medium);
  font-size: 1.125rem;
}

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

.section-dark {
  background-color: var(--primary-dark);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--bg-white);
}

.section-dark p {
  opacity: 0.9;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  border-radius: 8px;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--bg-white);
}

.service-card h3 {
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-medium);
  font-size: 0.9375rem;
  margin-bottom: 16px;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
}

.service-card .learn-more:hover {
  gap: 10px;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

.features-content h2 {
  margin-bottom: 24px;
}

.features-list {
  margin-top: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--success);
  border-radius: 50%;
  margin-top: 2px;
}

.feature-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--bg-white);
}

.feature-item p {
  margin-bottom: 0;
  color: var(--text-medium);
}

.features-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.features-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--bg-white);
  font-weight: 600;
  text-align: center;
  padding: 32px;
  min-height: 300px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--bg-white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-section .btn-accent {
  font-size: 1.125rem;
  padding: 16px 32px;
}

/* About Page Styles */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0 64px;
  text-align: center;
}

.page-hero h1 {
  color: var(--bg-white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-intro-content h2 {
  margin-bottom: 24px;
}

.about-intro-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.value-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  border-radius: 50%;
  margin: 0 auto 20px;
}

.value-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--bg-white);
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* Recycling Section */
.recycling-section {
  background-color: var(--bg-light);
}

.recycling-content {
  max-width: 800px;
  margin: 0 auto;
}

.recycling-content h2 {
  text-align: center;
  margin-bottom: 32px;
}

.recycling-content > p {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 40px;
}

.materials-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.material-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background-color: var(--bg-white);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

.material-item svg {
  width: 20px;
  height: 20px;
  fill: var(--success);
  flex-shrink: 0;
}

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

/* Services Page Styles */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-detail-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.service-detail-image {
  height: 200px;
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-content {
  padding: 28px;
}

.service-detail-content h3 {
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.service-detail-content p {
  margin-bottom: 20px;
}

.service-detail-content ul {
  margin-bottom: 20px;
}

.service-detail-content li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-medium);
}

.service-detail-content li svg {
  width: 18px;
  height: 18px;
  fill: var(--success);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Service Areas */
.service-areas {
  background-color: var(--bg-light);
}

.areas-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.areas-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-medium);
}

.areas-list li svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}

.areas-map {
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 350px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  border: 2px dashed var(--border-light);
  color: var(--text-light);
  text-align: center;
  padding: 32px;
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  fill: var(--primary);
  opacity: 0.5;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-section {
  padding: 32px;
  background-color: var(--bg-light);
  border-radius: 8px;
}

.contact-info-section h2 {
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  border-radius: 8px;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--bg-white);
}

.contact-details h3 {
  margin-bottom: 4px;
  font-size: 1.125rem;
}

.contact-details p {
  margin-bottom: 0;
  color: var(--text-medium);
}

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

.contact-details a:hover {
  text-decoration: underline;
}

.contact-map-section {
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hours-section {
  margin-top: 32px;
}

.hours-section h3 {
  margin-bottom: 16px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

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

.hours-item span:first-child {
  font-weight: 500;
  color: var(--text-dark);
}

.hours-item span:last-child {
  color: var(--text-medium);
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-brand .logo-text {
  color: #ffffff;
}

.footer-brand .logo-text span {
  color: rgba(255, 255, 255, 0.9);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: var(--bg-white);
}

.footer h4 {
  color: var(--bg-white);
  margin-bottom: 20px;
  font-size: 1rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
}

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

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  margin-bottom: 12px;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-bottom-links a:hover {
  color: var(--bg-white);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-list {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .nav-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-cta {
    text-align: center;
    margin-top: 16px;
  }

  .hero {
    min-height: 450px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.125rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .section {
    padding: 48px 0;
  }

  .services-grid,
  .services-detail-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .about-intro,
  .areas-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .features-image {
    order: -1;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .materials-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    padding: 24px 20px;
  }

  .areas-list {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-white {
  color: var(--bg-white);
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-0 {
  margin-bottom: 0;
}

.hidden {
  display: none;
}

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

.animate-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

/* Utility Classes for Images */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-section {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.img-map {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 8px;
}

/* Utility Text Classes */
.text-small {
  font-size: 0.875rem;
}

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

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

.text-link:hover {
  text-decoration: underline;
}

/* Map Container */
.map-container {
  padding: 0;
  background: transparent;
  border: none;
}

.map-section-content {
  height: 100%;
  min-height: 400px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.map-caption {
  margin-top: 16px;
  text-align: center;
  width: 100%;
}

.map-caption h3 {
  color: var(--text-dark);
  margin-bottom: 8px;
  text-align: center;
}

.map-caption p {
  color: var(--text-medium);
  max-width: 400px;
  margin: 0 auto;
}

/* Button Icon */
.btn-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Google Map Container */
.google-map-container {
  height: 100%;
  min-height: 400px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.google-map-container iframe {
  flex: 1;
  min-height: 300px;
}

.google-map-container .map-caption {
  margin-top: 16px;
  text-align: center;
}

/* Headquarters Image */
.headquarters-image {
  margin: 24px 0;
  border-radius: 8px;
  overflow: hidden;
}

.headquarters-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.img-rounded {
  border-radius: 8px;
}

/* Content Block Styles for Location Pages */
.content-block {
  max-width: 800px;
  margin: 0 auto 48px auto;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block h2 {
  color: var(--color-primary);
  margin-bottom: 16px;
  font-size: 1.75rem;
}

.content-block p {
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.content-block a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.content-block a:hover {
  text-decoration: underline;
}

.content-list {
  list-style: none;
  margin: 24px 0;
  padding-left: 0;
}

.content-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--color-text);
  line-height: 1.6;
}

.content-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

/* Simple Areas Grid for Location Pages */
.areas-grid-simple {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.areas-grid-simple li {
  background-color: var(--color-light);
  padding: 12px 16px;
  border-radius: 4px;
  color: var(--color-text);
  font-weight: 500;
  text-align: center;
}

/* CTA Phone Link */
.cta-phone {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}

.cta-phone:hover {
  color: var(--color-accent);
}

/* Local Service Links - Discrete SEO links */
.local-service-links {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.local-service-links p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.local-service-links a {
  color: #666;
  text-decoration: none;
}

.local-service-links a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
