/* ============================================
   HM Demo and Hauling - Main Stylesheet
   ============================================ */

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

:root {
  --primary: #1a1a2e;
  --secondary: #e77d11;
  --accent: #16213e;
  --light: #f5f5f5;
  --white: #ffffff;
  --green: #2d6a4f;
  --text: #333333;
  --text-light: #666666;
  --shadow: 0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
  --radius: 8px;
  --transition: 0.3s ease;
}

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

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

a:hover {
  color: #c56a0a;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', Impact, sans-serif;
  color: var(--primary);
  line-height: 1.2;
}

h1 { font-size: 2.8rem; font-weight: 700; text-transform: uppercase; }
h2 { font-size: 2.2rem; font-weight: 700; text-transform: uppercase; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

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

/* --- Utility --- */
.text-center { text-align: center; }
.text-orange { color: var(--secondary); }
.bg-dark { background: var(--primary); color: var(--white); }
.bg-light { background: var(--light); }
.bg-accent { background: var(--accent); color: var(--white); }

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-top: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

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

.btn-primary:hover {
  background: #c56a0a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

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

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

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

.btn-lg {
  padding: 18px 40px;
  font-size: 1.25rem;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--primary);
  box-shadow: var(--shadow);
  transition: background var(--transition);
}

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

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

.nav-logo img {
  height: 50px;
  filter: brightness(1.3);
}

.nav-logo-text {
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
}

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

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

.nav-links a {
  color: var(--white);
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition);
}

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

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary) !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  overflow: hidden;
  padding-top: 70px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('../images/junk-pile-before-cleanup.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.hero h1 span {
  color: var(--secondary);
}

.hero-tagline {
  color: rgba(255,255,255,0.9);
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 300;
}

.hero-price {
  color: var(--secondary);
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-badge {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badge i {
  color: var(--secondary);
  font-size: 1.2rem;
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-top: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--secondary);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 10px;
}

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

.service-price {
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 1.2rem;
  color: var(--secondary);
  font-weight: 600;
}

/* --- Pricing Section --- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-table thead {
  background: var(--primary);
  color: var(--white);
}

.pricing-table th,
.pricing-table td {
  padding: 15px 20px;
  text-align: left;
}

.pricing-table th {
  font-family: 'Oswald', Impact, sans-serif;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.pricing-table tbody tr {
  border-bottom: 1px solid #eee;
  transition: background var(--transition);
}

.pricing-table tbody tr:hover {
  background: var(--light);
}

.pricing-table .price {
  font-family: 'Oswald', Impact, sans-serif;
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.1rem;
}

/* --- Why Choose Us --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-card {
  text-align: center;
  padding: 30px 20px;
}

.why-card i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

.why-card h3 {
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-light);
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, #c56a0a 100%);
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.cta-banner p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  margin-bottom: 25px;
}

/* --- Quote Form --- */
.quote-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 700px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-family: 'Oswald', Impact, sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: var(--radius);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition);
}

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

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

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

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
}

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

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--light);
  min-height: 400px;
}

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

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 15px;
  padding-top: 20px;
}

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

.testimonial-stars {
  color: var(--secondary);
  margin-bottom: 5px;
}

/* --- Price Estimator --- */
.estimator-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.estimator-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 25px;
}

.estimator-section {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.estimator-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.estimator-section h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.item-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.item-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--light);
  border: 2px solid transparent;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition);
  user-select: none;
}

.item-chip:hover {
  border-color: var(--secondary);
}

.item-chip:has(input:checked) {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.item-chip input {
  display: none;
}

.estimator-select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: var(--radius);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  background: var(--white);
  cursor: pointer;
}

.estimator-select:focus {
  outline: none;
  border-color: var(--secondary);
}

.estimate-result {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 35px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.estimate-label {
  font-family: 'Oswald', Impact, sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 5px;
}

.estimate-price {
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 5px;
}

.estimate-range {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 15px;
}

.estimate-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .estimator-form {
    padding: 20px;
  }

  .estimate-price {
    font-size: 2.8rem;
  }

  .item-chip {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}

/* --- Quantity Controls --- */
.qty-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.qty-row span {
  font-size: 0.95rem;
  color: var(--text);
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 5px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: 2px solid #ddd;
  border-radius: 50%;
  background: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--primary);
}

.qty-btn:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.qty-input {
  width: 40px;
  text-align: center;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  background: transparent;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* --- What We Take --- */
.take-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.take-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.take-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.take-card h3 i {
  margin-right: 8px;
}

.take-yes h3 i {
  color: var(--green);
}

.take-no h3 i {
  color: #dc3545;
}

.take-card ul {
  list-style: none;
  padding: 0;
}

.take-card ul li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  color: var(--text-light);
}

.take-card ul li:last-child {
  border-bottom: none;
}

.take-note {
  margin-top: 20px;
  font-style: italic;
  color: var(--text-light);
  font-size: 0.9rem;
}

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

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-caption {
  background: var(--white);
  padding: 12px 15px;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

/* --- Service Areas --- */
.areas-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px 30px;
  list-style: none;
}

.areas-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 8px;
}

.areas-list li i {
  color: var(--secondary);
}

/* --- Footer --- */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 20px;
}

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

.footer h4 {
  color: var(--white);
  font-family: 'Oswald', Impact, sans-serif;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-about p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

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

.footer-contact li {
  list-style: none;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--secondary);
  width: 20px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

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

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

/* --- Responsive --- */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  h1 { font-size: 2.2rem; }
  .hero h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--primary);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: var(--shadow);
  }

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

  .mobile-toggle {
    display: flex;
  }

  .hero h1 { font-size: 2.2rem; }
  .hero-tagline { font-size: 1.1rem; }
  .hero-price { font-size: 1.4rem; }

  .hero-badges {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .section {
    padding: 50px 0;
  }

  .quote-form {
    padding: 25px;
  }
}

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

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 25px;
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}

.faq-item summary:hover {
  background: var(--light);
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--secondary);
  font-weight: 700;
  transition: transform var(--transition);
}

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

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

.faq-item p {
  padding: 0 25px 18px;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Back to Top Button --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #c56a0a;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 70px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* --- Sticky Mobile Call Button --- */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--secondary);
  color: var(--white);
  text-align: center;
  padding: 16px;
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.mobile-call-btn:hover {
  background: #c56a0a;
  color: var(--white);
}

.mobile-call-btn i {
  margin-right: 8px;
}

@media (max-width: 768px) {
  .mobile-call-btn {
    display: block;
  }

  body {
    padding-bottom: 56px;
  }

  /* Move back-to-top above the call button */
  .back-to-top {
    bottom: 70px;
  }

  /* Pricing table font size */
  .pricing-table th,
  .pricing-table td {
    padding: 10px 8px;
    font-size: 0.85rem;
  }

  .pricing-table .price {
    font-size: 1rem;
  }

  /* Estimator chips smaller on mobile */
  .item-chip {
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  /* Estimate result */
  .estimate-result {
    padding: 25px 15px;
  }

  .estimate-price {
    font-size: 2.5rem;
  }

  /* Gallery 2 columns on tablet */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* FAQ padding */
  .faq-item summary {
    padding: 15px 18px;
    font-size: 1rem;
  }

  .faq-item p {
    padding: 0 18px 15px;
    font-size: 0.9rem;
  }
}

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

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

  .btn-lg {
    padding: 14px 30px;
    font-size: 1.1rem;
  }

  /* Gallery single column on small phones */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* CTA banner buttons stack */
  .cta-banner .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* About stats smaller */
  .stat-number {
    font-size: 1.8rem;
  }
}
