* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  line-height: 1.6;
  color: #333;
  background-color: #fcf9f2;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #333;
}

/* Scroll Animation Utilities */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.in-view {
  opacity: 1;
  transform: scale(1);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Header */
.header {
  background: #fcf9f2;
  padding: 5px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.logo img {
  height: 100%;
  width: 100%;
  max-width: 200px;
  max-height: 100px;
}

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

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

.order-btn {
  background: #fcf9f2;
  color: #333;
  padding: 12px 30px;
  border: 1px solid #333;
  font-size: clamp(0.3rem, 3vw, 0.9rem);
  ;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  /* align-self: flex-start; */
  text-decoration: none;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.order-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ba9f38;
  transition: left 0.3s ease;
  z-index: -1;
}

.order-btn:hover::before {
  left: 0;
}

.order-btn:hover {
  color: #f8f6f3;
  transform: translateY(-2px);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../media/bay_area_charcuterie.webp') no-repeat center;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: #fcf9f2;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.hero-content {
  padding: 3rem;
  max-width: 800px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease;
  margin-bottom: 2rem;
}

.hero-content h1 {
  font-size: clamp(1rem, 5vw, 3rem);
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-content p {
  font-family: 'Cormorant Garamond';
  font-size: clamp(0.5rem, 3vw, 1.5rem);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero a {
  margin-top: 0px;
  display: inline-block;
}

.hero-logo {
  margin-bottom: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  animation: fadeInDown 1s ease;
}

/* .hero-logo h1 {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 3px;
  animation: fadeInUp 1s ease 0.2s backwards;
} */

.hero-logo p {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 300;
}

.hero-logo img {
  max-width: 500px;
  min-width: 120px;
  max-height: 500px;
  margin: 0;
  display: block;
  margin-bottom: -10px;
}

.welcome-banner {
  background-color: #ba9f38;
  padding: 1.5rem 2rem;
  text-align: center;
  width: 100%;
}

.welcome-banner p {
  color: #fcf9f2;
  font-size: clamp(0.875rem, 2vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.6;
}

/* Services Section*/
.services-section {
  padding: 60px 20px;
  background: #fcf9f2;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin: 1rem 10px;
  max-width: 1400px;
  padding: 2rem;
}

.service-card {
  background: #fcf9f2;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  min-width: 0;
}

.service-grid a {
  text-decoration: none;
}

.service-card :hover {
  opacity: 0.8;
  color: #ba9f38;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 1.2rem;
  color: #333;
  line-height: 1.3;
  transition: color 0.3s ease;
  text-align: center;
}

.service-title :hover {
  color: #ba9f38;
}

.service-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-image {
  transform: scale(1.08);
}

/* Placeholder images - simpler, cleaner style */
.curated-boards {
  background-image: url('./../media/curatedBoards.webp');
}

.minis {
  background-image: url('./../media/Canapes.webp');
}

.grazing-tables {
  background-image: url('./../media/tiered.jpg');
}
.card-harvest-runner { 
  background-image: url('./../media/thanksgiving-small-bites-san-jose.webp');
}
.card-football-board {
  background-image: url('./../media/game-day-board.webp');
}

/* Categories */
.categories {
  padding: 20px;
  text-align: center;
  background: #fcf9f2;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  border-bottom: 2px solid #f0f0f0;
}

.category-tab {
  padding: 15px 0;
  cursor: pointer;
  font-weight: bold;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}

.category-tab.active {
  border-bottom-color: #ba9f38;
  color: #ba9f38;
}

.question-section {
  position: relative;
  padding: 20px 20px;
  text-align: center;
  overflow: hidden;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0
}

.question-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../media/thanksgiving_charcuterie_1.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(3px);
  opacity: 0.3;
  z-index: 1;
}

/* Overlay for additional fade effect */
.question-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(232, 223, 212, 0.2);
  z-index: 2;
}

.content-wrapper {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}

.question-section p {
  max-width: 800px;
  margin: 0 auto 10px;
  line-height: 1.8;
  color: #2c2c2c;
  font-size: 1rem;
  /* text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5); */
}

.button-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.booking-process {
  background-color: #fcf9f2;
  padding: 60px 20px;
  text-align: center;
}

.booking-container {
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 60px;
  font-style: italic;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 0;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #ba9f38;
  border-radius: 50%;
  color: white;
}

.step-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
  stroke-width: 1.5;
  fill: none;
}

.step-number {
  display: block;
  font-size: 5rem;
  color: #ba9f38;
  margin-bottom: 15px;
  font-weight: 400;
  line-height: 1;
}

.step p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Catering Notice */
.catering-notice {
  background: #e8f4fd;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #666;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #e1cc96 0%, #d9c185 100%);
  color: #2C2C34;
  padding: 60px 20px;
}

/* Structured Data - Hidden but SEO-friendly */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  text-align: right;
}

.footer-section-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2C2C34;
  margin: 0;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #2C2C34;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 3px;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2C2C34;
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

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

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-address {
  margin: 0;
  font-size: 0.95rem;
  color: #2C2C34;
  text-align: right;
}

.footer-phone {
  color: #2C2C34;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-phone:hover {
  color: #333;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(44, 44, 52, 0.15);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  background: rgba(44, 44, 52, 0.3);
  transform: translateY(-5px);
}

.footer-icon {
  width: 22px;
  height: 22px;
  fill: #2C2C34;
  transition: fill 0.3s ease;
}

.footer-social-link:hover .footer-icon {
  fill: #333;
}


/* Mobile styles for sticky footer */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
    min-height: 400px;
  }

  .hero-content {
    padding: 2rem;
  }

  .welcome-banner {
    padding: 1.25rem 1.5rem;
  }

  .welcome-banner p {
    letter-spacing: 1.5px;
  }

  .question-section {
    padding: 50px 15px;
    min-height: 300px;
  }


  .question-section p {
    font-size: 0.9rem;
  }

  .button-group {
    align-items: center;
  }

  .footer-social {
    order: 1;
    gap: 25px;
  }

  .footer-actions {
    order: 2;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .footer-address {
    text-align: left;
  }

  .footer-phone {
    text-align: left;
  }

  .email-signup {
    order: 3;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .email-input {
    width: 100%;
    max-width: 250px;
  }

  .service-cities {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .city-item {
    padding: 3px;
  }

  /* body {
    padding-bottom: 120px;
  } */
}

@media (max-width: 480px) {
  .hero {
    height: 70svh;
    min-height: 350px;
    max-height: 500px;
    /* Prevents it from being too tall */
    background-position: center 30%;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero-content h1 {
    margin-bottom: 0.1rem;
  }

  .hero-content p {
    margin-bottom: 1.5rem;
  }

  .welcome-banner {
    padding: 1rem 1rem;
  }

  .welcome-banner p {
    letter-spacing: 1px;
    line-height: 1.5;
  }

  .order-btn {
    font-weight: 100;
    padding: 8px 15px;
  }

  .footer-social {
    gap: 40px;
  }

  .footer-social a {
    font-size: 18px;
  }

  .footer-address {
    text-align: left;
  }

  .footer-phone {
    text-align: left;
  }

  .footer-btn {
    font-size: 20px;
    padding: 6px 12px;
  }

  /* body {
    padding-bottom: 140px;
  } */
}


/* Workshop */
.workshop-info {
  padding: 40px 60px;
  text-align: center;
  align-items: center;
  margin-bottom: 50px;
  background-color: #fcf9f2;
}

.workshop-info img {
  max-width: 100%;
  width: 500px;
  padding: 10px 40px;
}

.workshop-text {
  padding: 40px 20px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.workshop-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: #333;
  line-height: 1.3;
}

.workshop-text p {
  padding: 10px 10px;
}


/* About Section */
.about-section {
  background-color: #fcf9f2;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.about-container {
  display: flex;
  min-height: 600px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

.about-image {
  flex: 1;
  background-image: url('./../media/ace_and_olive_founders.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 400px;
}

.about-content {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fcf9f2;
}

.about-subtitle {
  font-size: 0.9rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 500;
}

.about-title {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 30px;
  font-family: 'Georgia', serif;
  font-weight: 400;
  line-height: 1.2;
}

.about-description {
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: justify;
}

.about-description:last-of-type {
  margin-bottom: 20px;
}

.about-btn {
  background: transparent;
  color: #333;
  padding: 12px 30px;
  border: 1px solid #333;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: flex-start;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.about-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ba9f38;
  transition: left 0.3s ease;
  z-index: -1;
}

.about-btn:hover::before {
  left: 0;
}

.about-btn:hover {
  background: #ba9f38;
  color: #f8f6f3;
  transform: translateY(-2px);
}

/* Instagram Section */
.instagram-section {
  background-color: #fcf9f2;
  padding: 60px 20px;
}

.instagram-container {
  max-width: 1400px;
  margin: 0 auto;
}

.instagram-header {
  text-align: center;
  margin-bottom: 20px;
}

.instagram-title {
  font-size: 1.8rem;
  color: #333;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instagram-item:hover img {
  transform: scale(1.05);
}

.instagram-follow-btn {
  display: inline-block;
  background: transparent;
  color: #333;
  padding: 12px 30px;
  border: 1px solid #333;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.instagram-follow-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ba9f38;
  transition: left 0.3s ease;
  z-index: -1;
}

.instagram-follow-btn:hover::before {
  left: 0;
}

.instagram-follow-btn:hover {
  background: #ba9f38;
  color: #fcf9f2;
  transform: translateY(-2px);
}

/* TABLET RESPONSIVE - 1024px and below */
@media (max-width: 1024px) {
  .hero {
    height: 90vh;
  }

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

  .service-image {
    height: 300px;
  }

  .about-container {
    min-height: 500px;
  }

  .about-content {
    padding: 60px 40px;
  }

  .about-title {
    font-size: 2.4rem;
  }

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

  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-area-title {
    font-size: 2rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fcf9f2;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-logo {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }


  .category-tabs {
    flex-direction: column;
    gap: 10px;
  }

  .product-image {
    width: 100%;
    height: 200px;
    border-radius: 10px 10px 0 0;
  }

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

  .services-container {
    padding: 20px 10px;
  }

  .service-image {
    height: 250px;
  }

  .service-title {
    font-size: 1.1rem;
    margin-top: 0.8rem;
  }

  .about-container {
    flex-direction: column;
    min-height: auto;
  }

  .about-image {
    min-height: 400px;
    order: 1;
  }

  .about-content {
    order: 2;
    padding: 40px 20px;
  }

  .about-title {
    font-size: 2rem;
  }

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

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

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

  .footer {
    padding: 40px 20px;
  }

  .footer-left {
    gap: 15px;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-right {
    align-items: flex-start;
  }

  .email-signup {
    order: 3;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .email-input {
    width: 100%;
    max-width: 250px;
  }

  .service-area-section {
    padding: 60px 20px;
  }

  .service-area-title {
    font-size: 1.8rem;
  }

  .service-area-subtitle {
    font-size: 1rem;
  }

  .service-cities {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 40px;
  }

  .city-item {
    font-size: 0.9rem;
    padding: 12px 15px;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 1.8rem;
  }

  .services-container {
    padding: 15px 5px;
  }

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

  .service-title {
    font-size: 1rem;
    margin-top: 0.6rem;
  }

  .service-image {
    height: 200px;
  }

  .about-content {
    padding: 30px 15px;
  }

  .about-title {
    font-size: 1.8rem;
  }

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

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }

  .question-section {
    min-height: 250px;
  }

  .question-section p {
    font-size: 0.85rem;
  }

  .about-btn {
    font-weight: 100;
    padding: 8px 15px;
  }

  .footer-content {
    gap: 30px;
  }

  .footer {
    padding: 30px 15px;
  }

  .footer-section-title {
    font-size: 1rem;
  }

  .footer-links {
    gap: 15px;
  }

  .footer-social {
    gap: 15px;
  }

  .footer-social-link {
    width: 40px;
    height: 40px;
  }

  .footer-icon {
    width: 20px;
    height: 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    padding: 0.5rem;
  }

  .service-image {
    height: 180px;
  }

  .service-area-title {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }

  .service-cities {
    grid-template-columns: 1fr;
  }
}

/* Hide inactive categories */
.category-content {
  display: none;
}

.category-content.active {
  display: block;
}

/* Service Area Section */
.service-area-section {
  background-color: #e8dfd4;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.service-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Mobile responsive layout */
@media (max-width: 768px) {
  .service-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-text {
    order: 1;
  }
  
  .map-container {
    order: 2;
  }
}

.service-text {
  text-align: justify;
}

.service-text .eyebrow {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 15px;
}

.service-text h2 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 25px;
  color: #333;
  line-height: 1.2;
}

.service-text p {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 15px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 600px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 20px;
  z-index: 1;
  margin: 0 auto;
  max-width: 100%;
}

#map {
  flex: 1;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  min-height: 300px;
  position: relative;
}

/* Tablet and smaller screens */
@media (max-width: 1024px) {
  .map-container {
    height: 500px;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .map-container {
    flex-direction: column;
    height: auto;
    gap: 10px;
    margin: 0 10px;
    border-radius: 6px;
  }
  
  #map {
    height: 400px;
    border-radius: 6px;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .map-container {
    margin: 0 5px;
    gap: 8px;
    border-radius: 4px;
  }
  
  #map {
    height: 300px;
    border-radius: 4px;
  }
}

/* Very small screens */
@media (max-width: 320px) {
  .map-container {
    margin: 0 2px;
  }
  
  #map {
    height: 250px;
  }
}

.map-marker-custom {
  background-color: #c41e3a;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}