/* ============================================
   South Shore Injector - Main Stylesheet
   Colors: #414242 (dark bg), #ED6D5A (coral), #D1D3D4 (light text)
   Fonts: Oswald (headings), Quicksand (body), Abel (accents)
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Quicksand', sans-serif;
  background-color: #414242;
  color: #D1D3D4;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: #ED6D5A;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #f4958a;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

/* --- Utility --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background-color: #393a3a;
}

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

.text-coral {
  color: #ED6D5A;
}

.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn--primary {
  background-color: #ED6D5A;
  color: #fff;
}

.btn--primary:hover {
  background-color: #d95c4a;
  color: #fff;
}

.btn--outline {
  background-color: transparent;
  color: #ED6D5A;
  border: 2px solid #ED6D5A;
}

.btn--outline:hover {
  background-color: #ED6D5A;
  color: #fff;
}

/* --- Header / Nav --- */
.header {
  background-color: #363737;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #4a4b4b;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
}

.logo {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 55px;
  width: auto;
  border-radius: 4px;
}

.hero-logo {
  max-width: 500px;
  width: 85%;
  margin: 0 auto 30px;
}

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

.nav a {
  font-family: 'Abel', sans-serif;
  font-size: 0.95rem;
  color: #D1D3D4;
  padding: 20px 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 3px solid transparent;
}

.nav a:hover,
.nav a.active {
  color: #ED6D5A;
  border-bottom-color: #ED6D5A;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #D1D3D4;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- Hero --- */
.hero {
  text-align: center;
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #363737 0%, #414242 100%);
}

.hero h1 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 16px;
}

.hero h1 .text-coral {
  display: block;
}

.hero .subtitle {
  font-family: 'Abel', sans-serif;
  font-size: 1.2rem;
  color: #a0a2a3;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.hero .location {
  font-family: 'Abel', sans-serif;
  font-size: 1rem;
  color: #808282;
  margin-bottom: 36px;
}

.hero .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Section Headings --- */
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 12px;
}

.section-heading p {
  font-size: 1.05rem;
  color: #a0a2a3;
  max-width: 600px;
  margin: 0 auto;
}

.section-heading .divider {
  width: 60px;
  height: 3px;
  background-color: #ED6D5A;
  margin: 16px auto 0;
  border-radius: 2px;
}

/* --- Service Lists --- */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.service-list h3 {
  font-size: 1.3rem;
  color: #ED6D5A;
  margin-bottom: 20px;
}

.service-list ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list li {
  padding-left: 22px;
  position: relative;
  font-size: 1rem;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.service-list--yes li::before {
  background-color: #ED6D5A;
}

.service-list--no li::before {
  background-color: #888;
}

.service-note {
  margin-top: 30px;
  padding: 20px;
  background-color: #4a4b4b;
  border-left: 3px solid #ED6D5A;
  border-radius: 4px;
  font-size: 0.95rem;
  color: #b0b2b3;
}

/* --- Process Steps --- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.process-step {
  background-color: #4a4b4b;
  padding: 30px;
  border-radius: 8px;
  position: relative;
}

.process-step .step-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: #ED6D5A;
  opacity: 0.3;
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
}

.process-step h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.95rem;
  color: #b0b2b3;
}

/* --- Pricing --- */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.pricing-card {
  background-color: #4a4b4b;
  padding: 36px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #555;
}

.pricing-card h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 16px;
}

.pricing-card .price {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  color: #ED6D5A;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-card .price-unit {
  font-family: 'Abel', sans-serif;
  font-size: 1rem;
  color: #a0a2a3;
}

.pricing-notes {
  background-color: #4a4b4b;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.pricing-notes ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-notes li {
  padding-left: 22px;
  position: relative;
  font-size: 0.95rem;
}

.pricing-notes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: #ED6D5A;
  border-radius: 50%;
}

.pricing-examples {
  margin-top: 30px;
}

.pricing-examples h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 16px;
}

.pricing-example {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #393a3a;
  padding: 16px 24px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.pricing-example .scenario {
  font-size: 0.95rem;
}

.pricing-example .total {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: #ED6D5A;
}

/* --- Calculator --- */
.calculator {
  background-color: #4a4b4b;
  padding: 40px;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
}

.calculator h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc-field label {
  font-family: 'Abel', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #a0a2a3;
}

.calc-field input,
.calc-field select {
  background-color: #393a3a;
  border: 1px solid #555;
  color: #D1D3D4;
  padding: 12px;
  border-radius: 4px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
}

.calc-field input:focus,
.calc-field select:focus {
  outline: none;
  border-color: #ED6D5A;
}

.calc-field select option {
  background-color: #393a3a;
  color: #D1D3D4;
}

.calc-result {
  margin-top: 30px;
  text-align: center;
  padding: 24px;
  background-color: #393a3a;
  border-radius: 6px;
}

.calc-result .result-value {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  color: #ED6D5A;
}

.calc-result .result-label {
  font-family: 'Abel', sans-serif;
  font-size: 0.95rem;
  color: #a0a2a3;
  margin-top: 4px;
}

.calc-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #808282;
  text-align: center;
}

/* --- Why Clean / Benefits --- */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 50px;
}

.benefit-card {
  background-color: #4a4b4b;
  padding: 28px;
  border-radius: 8px;
  border-top: 3px solid #ED6D5A;
}

.benefit-card h3 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #b0b2b3;
}

.signs-list {
  max-width: 600px;
  margin: 0 auto;
}

.signs-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  border-bottom: 1px solid #4a4b4b;
  font-size: 1rem;
}

.signs-list li::before {
  content: '⚠';
  position: absolute;
  left: 0;
  font-size: 0.9rem;
}

.unique-box {
  background-color: #4a4b4b;
  padding: 36px;
  border-radius: 8px;
  margin-top: 50px;
  border-left: 4px solid #ED6D5A;
}

.unique-box h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 14px;
}

.unique-box p {
  font-size: 0.95rem;
  color: #b0b2b3;
  margin-bottom: 16px;
}

.unique-box ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.unique-box li {
  padding-left: 22px;
  position: relative;
  font-size: 0.95rem;
}

.unique-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: #ED6D5A;
  border-radius: 50%;
}

/* --- Slideshow --- */
.slideshow {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
}

.slideshow-track {
  position: relative;
  width: 100%;
  height: 400px;
}

.slideshow-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slideshow-slide.active {
  opacity: 1;
}

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

.slideshow-slide .photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #D1D3D4;
  padding: 20px 16px 12px;
  font-family: 'Abel', sans-serif;
  font-size: 0.95rem;
  text-align: center;
  border-radius: 0 0 8px 8px;
  margin: 0;
}

.slideshow-prev,
.slideshow-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #D1D3D4;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 2;
}

.slideshow-prev:hover,
.slideshow-next:hover {
  background: rgba(237,109,90,0.7);
}

.slideshow-prev {
  left: 12px;
}

.slideshow-next {
  right: 12px;
}

.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-top: 12px;
  margin-bottom: 10px;
}

.slideshow-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #555;
  border: 8px solid transparent;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 0;
  box-sizing: content-box;
  background-clip: content-box;
}

.slideshow-dot.active {
  background-color: #ED6D5A;
}

/* --- Reviews Section --- */
.reviews-section {
  text-align: center;
}

.reviews-embed {
  max-width: 800px;
  margin: 0 auto;
}

.reviews-placeholder {
  background-color: #4a4b4b;
  border: 2px dashed #555;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.reviews-placeholder p {
  color: #808282;
  font-size: 0.95rem;
}

.reviews-placeholder code {
  display: inline-block;
  background-color: #393a3a;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 8px;
  font-size: 0.85rem;
  color: #ED6D5A;
}

@media (max-width: 768px) {
  .slideshow-track {
    height: 280px;
  }
}

/* --- Photo Gallery --- */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.photo-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #4a4b4b;
}

.photo-grid .photo-wide {
  grid-column: 1 / -1;
  height: 320px;
}

.photo-caption {
  font-family: 'Abel', sans-serif;
  font-size: 0.85rem;
  color: #808282;
  text-align: center;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid img {
    height: 220px;
  }

  .photo-grid .photo-wide {
    height: 220px;
  }
}

/* --- Order / Form Page --- */
.fillout-embed {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  min-height: 700px;
}

.order-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px;
}

.order-intro p {
  font-size: 1.05rem;
  color: #a0a2a3;
}

.form-placeholder {
  background-color: #4a4b4b;
  border: 2px dashed #555;
  border-radius: 8px;
  padding: 60px 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.form-placeholder p {
  color: #808282;
  font-size: 0.95rem;
}

.form-placeholder code {
  display: inline-block;
  background-color: #393a3a;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 8px;
  font-size: 0.85rem;
  color: #ED6D5A;
}

/* --- Content Block (homepage SEO content) --- */
.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block p {
  color: #b0b2b3;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* --- Blog --- */
.blog-empty {
  text-align: center;
  padding: 40px;
}

.blog-empty p {
  color: #808282;
  font-size: 1.05rem;
}

.blog-card {
  display: block;
  background-color: #393a3a;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  border: 1px solid #4a4b4b;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.blog-card:hover {
  border-color: #ED6D5A;
  background-color: #3e3f3f;
}

.blog-card h3 {
  font-size: 1.1rem;
  color: #ED6D5A;
  margin-bottom: 10px;
}

.blog-card p {
  color: #a0a2a3;
}

.blog-read-more {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  color: #ED6D5A;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card .blog-date {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 10px;
}

.blog-card p {
  color: #a0a2a3;
  font-size: 0.9rem;
  line-height: 1.7;
}

.blog-post {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post p {
  color: #b0b2b3;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.blog-post h2 {
  font-size: 1.3rem;
  color: #fff;
  margin-top: 36px;
  margin-bottom: 14px;
}

.blog-post h3 {
  font-size: 1.1rem;
  color: #ED6D5A;
  margin-top: 28px;
  margin-bottom: 10px;
}

.blog-post ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.blog-post ul li {
  color: #b0b2b3;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 6px;
}

.blog-post .blog-date {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 24px;
}

.blog-post .blog-cta {
  background-color: #393a3a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  margin-top: 40px;
  border: 1px solid #4a4b4b;
}

.blog-post .blog-cta h3 {
  color: #fff;
  margin-bottom: 10px;
}

.blog-post .blog-cta p {
  color: #a0a2a3;
  margin-bottom: 20px;
}

/* --- FAQ Section --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #4a4b4b;
  border-radius: 8px;
  margin-bottom: 12px;
  border: 1px solid #555;
  transition: border-color 0.3s ease;
}

.faq-item[open] {
  border-color: #ED6D5A;
}

.faq-item summary {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  color: #fff;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.5px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: #ED6D5A;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:hover {
  color: #ED6D5A;
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: #b0b2b3;
  line-height: 1.8;
}

.faq-answer a {
  color: #ED6D5A;
}

/* --- Inline-style replacements --- */
.overview-heading {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 14px;
}

.category-heading {
  font-size: 1rem;
  color: #ED6D5A;
  margin-bottom: 12px;
}

.muted-text {
  color: #b0b2b3;
}

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

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

/* --- Video Embed --- */
.video-embed {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.video-embed iframe {
  border-radius: 10px;
  max-width: 100%;
}

/* --- Footer Social Links --- */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.footer-socials a {
  font-size: 0.85rem;
  color: #808282;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #ED6D5A;
}

/* --- Footer --- */
.footer {
  background-color: #363737;
  padding: 40px 0;
  border-top: 1px solid #4a4b4b;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col h4 {
  font-size: 0.9rem;
  color: #ED6D5A;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.footer-col p,
.footer-col a {
  font-size: 0.9rem;
  color: #808282;
  line-height: 2;
}

.footer-col a:hover {
  color: #ED6D5A;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #4a4b4b;
  font-size: 0.85rem;
  color: #606262;
}

/* --- Responsive --- */

/* Tablet: prevent nav overflow */
@media (max-width: 900px) and (min-width: 769px) {
  .nav {
    gap: 2px;
  }

  .nav a {
    font-size: 0.85rem;
    padding: 20px 8px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #363737;
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 1px solid #4a4b4b;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 24px;
    border-bottom: none;
    font-size: 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .logo-img {
    height: 45px;
  }

  .hero {
    padding: 60px 0 50px;
  }

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

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

  .hero .location {
    font-size: 0.9rem;
  }

  /* H1 responsive sizing */
  .section-heading h1 {
    font-size: 1.7rem;
  }

  .service-grid,
  .process-grid,
  .pricing-cards,
  .benefits-grid,
  .calc-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 0;
  }

  .section-heading h2 {
    font-size: 1.7rem;
  }

  .section-heading p {
    font-size: 0.95rem;
  }

  /* Minimum font sizes for mobile readability */
  .process-step p,
  .benefit-card p,
  .unique-box p,
  .unique-box li,
  .service-note,
  .pricing-notes li {
    font-size: 0.95rem;
  }

  .calc-note,
  .photo-caption {
    font-size: 0.875rem;
  }

  .calc-field label {
    font-size: 0.95rem;
  }

  .process-step {
    padding: 24px;
  }

  .pricing-example {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  /* Prevent pricing text overflow */
  .pricing-example .total {
    font-size: 1rem;
    word-break: break-word;
  }

  .pricing-example .total small {
    display: block;
    margin-top: 2px;
  }

  .benefit-card {
    padding: 22px;
  }

  .unique-box {
    padding: 24px;
  }

  /* Constrain Elfsight widget */
  .reviews-embed {
    overflow: hidden;
  }

  /* Reduce Fillout form min-height on mobile */
  .fillout-embed {
    min-height: 500px;
  }

  .slideshow-prev,
  .slideshow-next {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .slideshow-prev {
    left: 6px;
  }

  .slideshow-next {
    right: 6px;
  }

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

  .footer-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col a {
    display: block;
    padding: 4px 0;
  }

  .footer-col p {
    text-align: center;
  }

  .footer-col br {
    display: none;
  }

  .calculator {
    padding: 24px;
  }
}

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

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

  .section-heading h1 {
    font-size: 1.4rem;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .hero .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .section-heading h2 {
    font-size: 1.4rem;
  }

  .slideshow-track {
    height: 220px;
  }

  .photo-grid img {
    height: 180px;
  }

  .container {
    padding: 0 16px;
  }
}
