/* Base Styles */
:root {
  --primary-teal: #2C787E;
  --secondary-aqua: #5EC4CC;
  --accent-orange: #FF8550;
  --dark-text: #222222;
  --light-bg: #F8F8F8;
  --pure-white: #FFFFFF;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Lora', serif;
}

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

body {
  font-family: var(--font-primary);
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-secondary);
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--primary-teal);
  z-index: 1000;
  height: 80px;
  transition: height 0.3s ease;
}

header.scrolled {
  height: 60px;
}

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

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

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: var(--pure-white);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--accent-orange);
  transition: all 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
  left: 0;
}

.nav-links a:hover {
  color: var(--secondary-aqua);
}

.cta-button {
  background: var(--accent-orange);
  color: var(--pure-white);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #E87A4A;
  transform: scale(1.05);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--pure-white);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--primary-teal);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu ul li {
  margin: 20px 0;
}

.mobile-menu ul li a {
  color: var(--pure-white);
  font-size: 24px;
}

.mobile-menu .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--pure-white);
  font-size: 32px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--secondary-aqua) 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.hero-problem {
  position: relative;
}

.hero-problem img {
  width: 100%;
  border-radius: 10px;
  filter: blur(2px) grayscale(30%);
  opacity: 0.8;
}

.hero-problem-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--pure-white);
}

.hero-problem-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.hero-solution {
  position: relative;
}

.hero-solution img {
  width: 100%;
  border-radius: 10px;
}

.hero-solution-content {
  text-align: center;
  padding: 30px;
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-solution-content h1 {
  font-size: 36px;
  color: var(--primary-teal);
  margin-bottom: 15px;
}

.hero-solution-content p {
  font-size: 16px;
  color: var(--dark-text);
  margin-bottom: 20px;
}

/* Problem Statement Section */
.problem-statement {
  background: var(--light-bg);
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.problem-statement h2 {
  font-size: 42px;
  color: var(--primary-teal);
  position: relative;
  display: inline-block;
}

/* Service Overview */
.service-overview {
  padding: 80px 20px;
  background: var(--pure-white);
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: var(--primary-teal);
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--pure-white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  color: var(--primary-teal);
  margin-bottom: 15px;
}

.service-card p {
  font-size: 14px;
  color: var(--dark-text);
  margin-bottom: 15px;
}

.service-card a {
  color: var(--secondary-aqua);
  font-weight: 600;
}

/* Why Choose Us Section */
.why-choose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.why-choose-image {
  position: relative;
}

.why-choose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

.why-choose-content {
  padding: 80px 40px;
  background: var(--light-bg);
}

.why-choose-content h2 {
  font-size: 32px;
  color: var(--primary-teal);
  margin-bottom: 30px;
}

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

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.feature-list li .icon {
  width: 40px;
  height: 40px;
  background: var(--primary-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.feature-list li .icon svg {
  width: 20px;
  height: 20px;
  fill: var(--pure-white);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 20px;
  background: var(--secondary-aqua);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../images/testimonial-bg.png');
  background-size: cover;
  opacity: 0.3;
}

.testimonials-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
}

.testimonial-card {
  min-width: 350px;
  background: var(--pure-white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  scroll-snap-align: start;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--primary-teal);
}

/* Process Section */
.process {
  padding: 80px 20px;
  background: var(--light-bg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 18px;
  color: var(--primary-teal);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: var(--dark-text);
}

/* Service Areas */
.service-areas {
  padding: 80px 20px;
  background: var(--pure-white);
}

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

.service-areas-grid img {
  width: 100%;
  border-radius: 10px;
}

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

.areas-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light-bg);
  font-size: 16px;
}

/* Emergency CTA */
.emergency-cta {
  background: var(--primary-teal);
  padding: 60px 20px;
  text-align: center;
  color: var(--pure-white);
}

.emergency-cta h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.emergency-cta .phone-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}

.emergency-cta .cta-button {
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 133, 80, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(255, 133, 80, 0); }
}

/* Footer */
footer {
  background: var(--primary-teal);
  color: var(--pure-white);
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--secondary-aqua);
}

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

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

.footer-col ul li a {
  color: var(--pure-white);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--accent-orange);
}

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

/* Mobile First Styles */
@media (max-width: 767px) {
  .nav-links, .header-cta {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .hero-problem {
    display: none;
  }
  
  .hero-solution-content h1 {
    font-size: 28px;
  }
  
  .why-choose {
    grid-template-columns: 1fr;
  }
  
  .why-choose-image {
    height: 300px;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .service-areas-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  header {
    height: 68px;
  }
  
  .logo img {
    height: 30px;
  }
  
  .hero {
    padding-top: 68px;
  }
  
  .testimonial-card {
    min-width: 300px;
  }
  
  .page-hero {
    margin-top: 68px;
  }
  
  .mission-grid,
  .service-split,
  .results-grid,
  .hours-location-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-split.reverse {
    direction: ltr;
  }
  
  .team-grid,
  .quality-grid,
  .awards-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .sewer-services {
    grid-template-columns: 1fr;
  }
  
  .contact-blocks {
    grid-template-columns: 1fr;
  }
  
  .hero-overlay h1 {
    font-size: 32px;
  }
  
  .hero-overlay p {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .emergency-cta h2 {
    font-size: 24px;
  }
  
  .emergency-cta .phone-number {
    font-size: 28px;
  }
  
  .process-steps-horizontal {
    flex-direction: column;
  }
  
  .process-step-item {
    min-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .nav-links {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .cta-button {
    display: none;
  }
  
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mission-grid {
    grid-template-columns: 1fr;
  }
  
  .service-split {
    grid-template-columns: 1fr;
  }
  
  .service-split.reverse {
    direction: ltr;
  }
  
  .team-grid,
  .quality-grid,
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .results-grid {
    grid-template-columns: 1fr;
  }
  
  .sewer-services {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hours-location-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

/* Page Hero Section */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  margin-top: 80px;
  overflow: hidden;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--pure-white);
  width: 90%;
}

.hero-overlay h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-overlay p {
  font-size: 20px;
}

/* Mission & Values */
.mission-values {
  padding: 80px 20px;
  background: var(--light-bg);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-statement blockquote {
  font-size: 22px;
  font-style: italic;
  color: var(--primary-teal);
  border-left: 4px solid var(--accent-orange);
  padding-left: 20px;
  line-height: 1.8;
}

.values-list h2 {
  margin-bottom: 30px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.value-icon {
  width: 30px;
  height: 30px;
  background: var(--primary-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  margin-right: 15px;
  flex-shrink: 0;
}

/* Timeline Section */
.about-history {
  padding: 80px 20px;
  background: var(--pure-white);
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--secondary-aqua);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 40px;
}

.timeline-marker {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 18px;
  background: var(--accent-orange);
  border-radius: 50%;
}

.timeline-content h3 {
  color: var(--primary-teal);
  margin-bottom: 10px;
}

/* Team Section */
.team-section {
  padding: 80px 20px;
  background: var(--light-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: var(--pure-white);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  border-bottom: 3px solid var(--accent-orange);
}

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.team-card h3 {
  color: var(--primary-teal);
  margin-bottom: 5px;
}

.team-card .title {
  color: var(--secondary-aqua);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-card .bio {
  font-size: 14px;
  color: var(--dark-text);
}

/* Quality Section */
.quality-commitment {
  padding: 80px 20px;
  background: var(--pure-white);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.quality-item {
  text-align: center;
  padding: 30px;
}

.quality-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

/* Awards Section */
.awards-section {
  padding: 80px 20px;
  background: var(--light-bg);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.award-item {
  text-align: center;
  background: var(--pure-white);
  padding: 30px;
  border-radius: 10px;
}

.award-item img {
  width: 150px;
  height: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  margin-bottom: 15px;
}

.award-item:hover img {
  filter: grayscale(0%);
}

/* Services Detail Page */
.services-overview {
  padding: 60px 20px;
  background: var(--light-bg);
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.service-link {
  padding: 12px 24px;
  background: var(--pure-white);
  border: 2px solid var(--secondary-aqua);
  border-radius: 4px;
  color: var(--primary-teal);
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-link:hover {
  background: var(--secondary-aqua);
  color: var(--pure-white);
}

.service-detail {
  padding: 80px 20px;
  background: var(--pure-white);
}

.service-detail.alternate {
  background: var(--light-bg);
}

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

.service-split.reverse {
  direction: rtl;
}

.service-split.reverse > * {
  direction: ltr;
}

.service-image img {
  width: 100%;
  border-radius: 10px;
}

.service-text h2 {
  color: var(--primary-teal);
  margin-bottom: 20px;
}

.service-text ul {
  list-style: none;
  margin-top: 20px;
}

.service-text ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light-bg);
}

.service-text ul li::before {
  content: '✓';
  color: var(--accent-orange);
  margin-right: 10px;
}

.sewer-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.sewer-item {
  background: var(--pure-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.sewer-item h3 {
  color: var(--primary-teal);
  margin-bottom: 10px;
}

.other-services {
  padding: 80px 20px;
  background: var(--light-bg);
}

/* Why Choose Us Page */
.advantages {
  padding: 80px 20px;
  background: var(--light-bg);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.advantage-card {
  background: var(--pure-white);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-10px);
}

.advantage-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.process-detail {
  padding: 80px 20px;
  background: var(--pure-white);
}

.process-steps-horizontal {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
}

.process-step-item {
  min-width: 200px;
  text-align: center;
  padding: 20px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--accent-orange);
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 15px;
}

.results-section {
  padding: 80px 20px;
  background: var(--light-bg);
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-large {
  background: var(--pure-white);
  padding: 40px;
  border-radius: 10px;
  font-size: 18px;
  font-style: italic;
}

.testimonial-large .author {
  display: block;
  margin-top: 20px;
  color: var(--primary-teal);
  font-weight: 600;
}

.before-after {
  text-align: center;
}

.before-after img {
  width: 100%;
  border-radius: 10px;
}

.caption {
  margin-top: 10px;
  color: var(--secondary-aqua);
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  background: var(--pure-white);
}

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

.faq-item {
  border-bottom: 1px solid var(--light-bg);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-teal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--accent-orange);
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

/* Contact Page */
.contact-methods {
  padding: 60px 20px;
  background: var(--primary-teal);
}

.contact-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-block {
  background: rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  color: var(--pure-white);
  transition: all 0.3s ease;
}

.contact-block:hover {
  background: rgba(255,255,255,0.2);
}

.contact-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.contact-link {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--pure-white);
  margin: 15px 0;
}

.contact-link:hover {
  color: var(--accent-orange);
}

.contact-form-section {
  padding: 80px 20px;
  background: var(--light-bg);
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--pure-white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--light-bg);
  border-radius: 4px;
  font-family: var(--font-primary);
  transition: border-color 0.3s ease;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  border: none;
  cursor: pointer;
}

.hours-location {
  padding: 80px 20px;
  background: var(--pure-white);
}

.hours-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.hours-list {
  margin-top: 30px;
}

.hours-item {
  margin-bottom: 25px;
}

.hours-item h4 {
  color: var(--primary-teal);
  margin-bottom: 5px;
}

.map-section img {
  width: 100%;
  border-radius: 10px;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-teal);
  border-radius: 5px;
}