@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Georgia:wght@400;700&display=swap');

/* Mountain Septic Professional Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background-color: #f7f4f1;
}

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

.septic-hero-banner {
  background: linear-gradient(135deg, #004499 0%, #0070f3 50%, #36a8ff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.septic-hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 44, 153, 0.3);
  z-index: 1;
}

.septic-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}

.mountain-heading-xl {
  font-family: 'Georgia', serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.mountain-heading-lg {
  font-family: 'Georgia', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #004499;
}

.mountain-heading-md {
  font-family: 'Georgia', serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #0070f3;
}

.septic-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(45deg, #9c6b4a, #b08366);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(156, 107, 74, 0.3);
  white-space: nowrap;
  min-width: fit-content;
}

.septic-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(156, 107, 74, 0.4);
  background: linear-gradient(45deg, #8a5a3e, #9c6b4a);
  color: white;
  text-decoration: none;
}

.septic-button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: white;
  padding: 16px 32px;
  border: 2px solid white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: fit-content;
}

.septic-button-secondary:hover {
  background: white;
  color: #004499;
  text-decoration: none;
}

.mountain-navigation {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mountain-nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mountain-logo {
  font-family: 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #004499;
  text-decoration: none;
}

.mountain-nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.mountain-nav-links a {
  color: #2d3748;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.mountain-nav-links a:hover,
.mountain-nav-links a.active {
  color: #0070f3;
}

.mountain-nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #0070f3;
}

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

.septic-service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #0070f3;
}

.septic-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.septic-service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #0070f3, #36a8ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.septic-service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #9c6b4a;
  margin-top: 1rem;
}

.mountain-section {
  padding: 4rem 0;
}

.mountain-section-alt {
  background: white;
  padding: 4rem 0;
}

.mountain-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.mountain-team-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.mountain-team-card:hover {
  transform: translateY(-3px);
}

.mountain-team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid #e0efff;
}

.mountain-contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 2rem auto;
}

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

.mountain-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2d3748;
}

.mountain-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.mountain-form-input:focus {
  outline: none;
  border-color: #0070f3;
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.1);
}

.mountain-footer {
  background: #2d3748;
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

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

.mountain-footer-section h4 {
  color: #36a8ff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.mountain-footer-section a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mountain-footer-section a:hover {
  color: #36a8ff;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  border-left: 4px solid #0070f3;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.cookie-consent-banner.show {
  display: block;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.cookie-accept {
  background: #0070f3;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.cookie-accept:hover {
  background: #004499;
}

.cookie-decline {
  background: transparent;
  color: #2d3748;
  border: 1px solid #e2e8f0;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-decline:hover {
  background: #f7f4f1;
  border-color: #cbd5e0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .mountain-heading-xl {
    font-size: 2.5rem;
  }
  
  .mountain-heading-lg {
    font-size: 2rem;
  }
  
  .mountain-nav-links {
    display: none;
  }
  
  .septic-service-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .mountain-team-grid {
    grid-template-columns: 1fr;
  }
  
  .mountain-section {
    padding: 2rem 0;
  }
  
  .mountain-section-alt {
    padding: 2rem 0;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 480px) {
  .mountain-heading-xl {
    font-size: 2rem;
  }
  
  .mountain-container {
    padding: 0 15px;
  }
  
  .septic-button-primary,
  .septic-button-secondary {
    width: 100%;
    justify-content: center;
    margin: 0.5rem 0;
  }
}

/* Custom animations */
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

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

.form-success {
  background: #e6fffa;
  border: 1px solid #38a169;
  color: #22543d;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  display: none;
}

.form-success.show {
  display: block;
}

.hidden {
  display: none;
}

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

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

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.py-2 { padding: 0.5rem 0; }
.py-4 { padding: 1rem 0; }
.px-4 { padding: 0 1rem; }

.grid { display: grid; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

.w-full { width: 100%; }
.h-auto { height: auto; }

.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }

.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }

.transition { transition: all 0.3s ease; }