:root {
  --red-primary: #C62828;
  --red-dark: #8B1F1F;
  --green-primary: #4CAF50;
  --green-dark: #2E7D32;
  --cream: #F5E6D3;
  --dark-bg: #1a1a1a;
  --gold: #FFD700;
}

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

/* GLOBAL RULE: All text in forms must be black */
form * {
  color: #000 !important;
}

/* Estimate box - make text black for visibility */
.estimate-box * {
  color: #000 !important;
}

/* Exception: Keep submit button text white */
form button[type="submit"] {
  color: white !important;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--dark-bg);
  color: #fff;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Navigation Styles */
nav {
  background: var(--red-primary);
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.4rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.nav-brand a:hover {
  color: var(--gold);
}

/* Hamburger Menu - Hidden on Desktop */
.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger-menu span {
  width: 30px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Desktop Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  font-size: 1.05rem;
}

.nav-menu a:hover {
  color: var(--gold);
}

/* Mobile CTA Button - Hidden on Desktop */
.mobile-cta-button {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--red-dark);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6), 0 0 40px rgba(212, 175, 55, 0.4);
  z-index: 999;
  animation: pulse-glow 2s ease-in-out infinite;
  text-align: center;
  white-space: nowrap;
}

.hero {
  background: linear-gradient(135deg, rgba(0,50,30,0.85), rgba(0,20,10,0.9)),
              url('/christmas_lights_on__6f77e781.jpg') center/cover;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  border-bottom: 5px solid var(--red-primary);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: repeating-linear-gradient(
    90deg,
    #FF0000 0px,
    #FF0000 20px,
    #00FF00 20px,
    #00FF00 40px,
    #FFD700 40px,
    #FFD700 60px,
    #0000FF 60px,
    #0000FF 80px
  );
  opacity: 0.8;
}

.hero-logo {
  max-width: 600px;
  width: 90%;
  height: auto;
  margin: 3rem 0 2rem;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.7));
  z-index: 10;
}

.hero h2 {
  font-size: 2.5rem;
  margin: 1.5rem 0;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.cta-button {
  background: var(--red-primary);
  color: white;
  padding: 1.2rem 3rem;
  font-size: 1.5rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(198, 40, 40, 0.4);
}

.cta-button:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 40, 40, 0.6);
}

.glow-button {
  background: var(--gold);
  color: var(--green-primary);
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1.5rem 3.5rem;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.8), 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: glow-pulse 2s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.glow-button:hover {
  background: #c9a548;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 40px rgba(212, 175, 55, 1), 0 8px 25px rgba(0, 0, 0, 0.4);
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8), 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 50px rgba(212, 175, 55, 1), 0 4px 15px rgba(0, 0, 0, 0.3);
  }
}

.cta-button-section {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem 0;
}

/* Countdown Banner */
.countdown-banner {
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  padding: 1.5rem 2rem;
  text-align: center;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: urgency-pulse 3s ease-in-out infinite;
}

@keyframes urgency-pulse {
  0%, 100% {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  }
  50% {
    background: linear-gradient(135deg, #ff5555 0%, #dd0000 100%);
  }
}

.countdown-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.countdown-icon {
  font-size: 2.5rem;
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.countdown-text {
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.countdown-number {
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 900;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 2px 8px rgba(0, 0, 0, 0.5);
  padding: 0 0.5rem;
  animation: number-glow 2s ease-in-out infinite;
}

@keyframes number-glow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 2px 8px rgba(0, 0, 0, 0.5);
  }
  50% {
    text-shadow: 0 0 40px rgba(212, 175, 55, 1), 0 0 20px rgba(255, 255, 255, 0.8), 0 2px 8px rgba(0, 0, 0, 0.5);
  }
}

.countdown-label {
  color: white;
}

/* Why Choose Section */
.why-choose-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 245, 245, 0.98) 100%);
  padding: 3rem 2rem;
  border-bottom: 4px solid var(--gold);
}

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

.why-choose-section .section-title {
  color: var(--green-primary);
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  border-color: var(--gold);
}

.why-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.why-item p {
  margin: 0;
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}

.why-item strong {
  color: var(--green-primary);
  display: block;
  font-size: 1.05rem;
}

.light-options-section {
  padding: 4rem 2rem;
  background: var(--dark-bg);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.service-card {
  background: var(--cream);
  color: #333;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255,215,0,0.4);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--red-dark);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* Pricing Packages Section */
.pricing-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #0f3a2e 100%);
  text-align: center;
}

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

.pricing-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  color: var(--cream);
  line-height: 1.8;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: stretch;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
  border-color: var(--gold);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.5);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red-primary);
  color: white;
  padding: 0.4rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pricing-badge.featured-badge {
  background: var(--gold);
  color: var(--green-primary);
  font-size: 0.95rem;
  padding: 0.5rem 2rem;
}

.pricing-card h3 {
  color: var(--green-primary);
  font-size: 2rem;
  margin: 1rem 0 1.5rem;
}

.pricing-amount {
  margin-bottom: 1rem;
}

.price-from {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.price-value {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  color: var(--red-primary);
  line-height: 1;
}

.pricing-description {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  color: #333;
  padding: 0.6rem 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-note {
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.pricing-btn {
  background: var(--green-primary);
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(30, 86, 49, 0.3);
  margin-top: auto;
}

.pricing-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 86, 49, 0.5);
}

.pricing-btn.featured-btn {
  background: var(--gold);
  color: var(--green-primary);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.pricing-btn.featured-btn:hover {
  background: #c9a548;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.pricing-footer {
  max-width: 700px;
  margin: 3rem auto 0;
  padding: 2rem 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--gold);
  border-radius: 12px;
  color: var(--cream);
}

.pricing-footer p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.pricing-footer p:first-child {
  font-size: 1.3rem;
  color: var(--gold);
}

.pricing-calc-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
}

.pricing-calc-link:hover {
  color: #ffd700;
  transform: translateX(10px);
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: scale(1);
    order: -1;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 3rem 1rem;
  }
  
  .pricing-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .pricing-card h3 {
    font-size: 1.7rem;
  }
  
  .price-value {
    font-size: 2.5rem;
  }
  
  .pricing-footer {
    padding: 1.5rem 2rem;
  }
  
  .pricing-footer p:first-child {
    font-size: 1.1rem;
  }
}

.contact-section {
  background: linear-gradient(135deg, rgba(46,125,50,0.2), rgba(198,40,40,0.2));
  padding: 4rem 2rem;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.95);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.form-container h2 {
  color: var(--red-primary);
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
}

.form-container h3 {
  color: var(--green-dark);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 400;
}

form label {
  display: block;
  color: #000 !important;
  background: transparent !important;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form select,
form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

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

form fieldset {
  border: 2px solid var(--green-primary);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  background: var(--red-primary);
}

form legend {
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0 0.5rem;
}

form fieldset label {
  display: flex;
  align-items: center;
  margin: 0.8rem 0;
  font-weight: 500;
  color: #000;
  cursor: pointer;
}

form input[type="checkbox"] {
  width: auto;
  margin-right: 0.8rem;
  cursor: pointer;
  transform: scale(1.2);
}

form button[type="submit"] {
  background: var(--green-primary);
  color: white;
  padding: 1rem 3rem;
  font-size: 1.3rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  margin-top: 2rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

form button[type="submit]:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

/* Photo upload section - red background with black text */
.photo-section {
  background: var(--red-primary);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  border: 2px solid var(--green-primary);
}

form h4 {
  color: #000 !important;
  font-weight: 600;
}

form h4 + p,
form h4 + p small {
  color: #000 !important;
}

/* All paragraph text in forms should be black */
form p {
  color: #000 !important;
}

form p strong {
  color: #000 !important;
}

form p small {
  color: #000 !important;
}

/* Ensure all text within fieldsets is black */
form fieldset p {
  color: #000 !important;
}

form fieldset p strong {
  color: #000 !important;
}

form fieldset p small {
  color: #000 !important;
}

.estimate-box {
  background: var(--gold);
  color: #000;
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  border: 3px solid var(--green-primary);
}

.estimate-box h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.estimate-box p {
  font-size: 1.3rem;
  margin: 0.5rem 0;
}

.estimate-box strong {
  font-size: 2rem;
  color: #000;
}

footer {
  background: var(--red-dark);
  color: white;
  text-align: center;
  padding: 3rem 2rem 2rem;
  margin-top: 3rem;
  border-top: 3px solid var(--gold);
}

.footer-cta {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.photo-upload-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

@media (max-width: 768px) {
  nav {
    padding: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  
  nav li {
    font-size: 0.9rem;
  }
  
  .hero-logo {
    max-width: 280px;
  }
  
  .hero h2 {
    font-size: 1.5rem;
    padding: 0 1rem;
  }
  
  .hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-icon {
    font-size: 2.5rem;
  }
  
  .form-container {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .form-container h2 {
    font-size: 1.8rem;
  }
  
  .form-container h3 {
    font-size: 1.2rem;
  }
  
  .estimate-box {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }
  
  .estimate-box h3 {
    font-size: 1.5rem;
  }
  
  .estimate-box strong {
    font-size: 1.5rem;
  }
  
  .estimate-box p {
    font-size: 1.1rem;
  }
  
  input, select, textarea {
    font-size: 16px !important;
  }
  
  footer {
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .glow-button {
    font-size: 1.3rem;
    padding: 1.2rem 2.5rem;
  }
  
  .cta-button-section {
    padding: 1.5rem 0;
    margin-top: 2rem;
  }
  
  .footer-cta {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
  
  .countdown-banner {
    padding: 1.2rem 1rem;
  }
  
  .countdown-content {
    gap: 1rem;
  }
  
  .countdown-icon {
    font-size: 2rem;
  }
  
  .countdown-text {
    font-size: 1.1rem;
  }
  
  .countdown-number {
    font-size: 2rem;
  }
  
  .why-choose-section {
    padding: 2.5rem 1.5rem;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .why-item {
    padding: 1rem;
  }
  
  .why-icon {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    max-width: 240px;
  }
  
  .hero h2 {
    font-size: 1.3rem;
  }
  
  .glow-button {
    font-size: 1.1rem;
    padding: 1rem 2rem;
  }
  
  .get-quote-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/* Our Process Section */
.process-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--dark-bg) 100%);
  text-align: center;
}

.process-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  color: var(--cream);
  line-height: 1.8;
}

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

.process-step {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  backdrop-filter: blur(10px);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  border-color: var(--green-primary);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--green-primary));
  color: var(--dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.process-step h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.process-step p {
  color: #fff;
  line-height: 1.7;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .process-section {
    padding: 3rem 1rem;
  }
  
  .process-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .process-step {
    padding: 1.5rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .process-step h3 {
    font-size: 1.2rem;
  }
}

/* Gallery Section */
.gallery-section {
  padding: 4rem 2rem;
  background: var(--dark-bg);
  text-align: center;
}

.gallery-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  color: var(--cream);
  line-height: 1.8;
}

.before-after-container {
  max-width: 1000px;
  margin: 0 auto 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 2px solid var(--gold);
}

.before-after-container h3 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.comparison-slider {
  position: relative;
}

.comparison-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.comparison-images img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.before-image {
  border: 3px solid #888;
}

.after-image {
  border: 3px solid var(--green-primary);
}

.comparison-caption {
  color: #fff;
  font-size: 1.1rem;
  font-style: italic;
  margin-top: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  border-color: var(--gold);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

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

.gallery-caption {
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
  color: #fff;
  text-align: left;
}

.gallery-caption h4 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.gallery-caption p {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 3rem 1rem;
  }
  
  .gallery-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .before-after-container {
    padding: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .before-after-container h3 {
    font-size: 1.5rem;
  }
  
  .comparison-images {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gallery-item img {
    height: 250px;
  }
  
  .gallery-caption {
    padding: 1rem;
  }
  
  .gallery-caption h4 {
    font-size: 1.1rem;
  }
}

/* Safety & Warranty Section */
.safety-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  text-align: center;
}

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

.safety-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.safety-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}

.safety-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.safety-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
}

.safety-card h3 {
  color: var(--green-primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.safety-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.safety-cta {
  background: linear-gradient(135deg, var(--green-primary), var(--green-secondary));
  color: white;
  padding: 2rem 3rem;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(30, 86, 49, 0.3);
}

.safety-cta p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  line-height: 1.8;
}

.safety-cta p:first-child {
  font-size: 1.3rem;
  color: var(--gold);
}

@media (max-width: 1024px) {
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .safety-section {
    padding: 3rem 1rem;
  }
  
  .safety-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .safety-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .safety-card {
    padding: 1.5rem;
  }
  
  .safety-icon {
    font-size: 3rem;
  }
  
  .safety-card h3 {
    font-size: 1.2rem;
  }
  
  .safety-cta {
    padding: 1.5rem 2rem;
  }
  
  .safety-cta p:first-child {
    font-size: 1.1rem;
  }
  
  .safety-cta p {
    font-size: 1rem;
  }
}

/* Design Preview Tool Section */
.preview-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  text-align: center;
}

.preview-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  color: var(--cream);
  line-height: 1.8;
}

.preview-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.preview-controls {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.upload-area,
.color-options {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--gold);
}

.upload-area h3,
.color-options h3,
.preview-display h3 {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.upload-area input[type="file"] {
  display: none;
}

.upload-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--green-primary), var(--green-secondary));
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 128, 0, 0.3);
}

.upload-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 128, 0, 0.5);
  background: linear-gradient(135deg, var(--green-secondary), var(--green-primary));
}

.upload-hint {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}

.color-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.color-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
}

.color-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold);
  transform: translateX(5px);
}

.color-btn.active {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.color-swatch {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: block;
  flex-shrink: 0;
}

.preview-display {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--gold);
}

.canvas-container {
  position: relative;
  min-height: 400px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preview-canvas {
  display: none;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.preview-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #888;
  font-size: 1.2rem;
  padding: 3rem;
}

.preview-placeholder p:first-child {
  font-size: 4rem;
  margin: 0;
}

.preview-placeholder p:last-child {
  font-size: 1.1rem;
  margin: 0;
}

.preview-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.add-to-quote-btn,
.download-btn,
.reset-btn {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.add-to-quote-btn {
  background: linear-gradient(135deg, #1e5631, #2d7a47);
  color: white;
  border: 2px solid var(--gold);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.add-to-quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #2d7a47, #1e5631);
}

.download-btn {
  background: linear-gradient(135deg, var(--gold), #ffd700);
  color: #1a1a2e;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.reset-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.reset-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.preview-saved {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.2);
  border: 2px solid var(--gold);
  border-radius: 8px;
  color: var(--gold);
  font-weight: bold;
  text-align: center;
  animation: fadeIn 0.3s ease-in;
}

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

.preview-disclaimer {
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 1.5rem;
  background: rgba(255, 215, 0, 0.1);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

.preview-disclaimer p {
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
  text-align: center;
}

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

.faq-subtitle {
  font-size: 1.5rem;
  color: var(--gold);
  font-style: italic;
  margin: -1.5rem auto 3rem;
  font-weight: 400;
}

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

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 3px solid transparent;
  transition: all 0.3s ease;
  text-align: left;
}

.faq-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
  border-color: var(--gold);
}

.faq-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.faq-item h3 {
  color: var(--green-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.faq-item p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.faq-cta {
  max-width: 700px;
  margin: 3rem auto 0;
  padding: 2.5rem 3rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.faq-cta p {
  color: #333;
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.faq-cta p:first-child {
  font-size: 1.4rem;
  color: var(--green-primary);
  font-weight: bold;
}

.faq-btn {
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--gold);
  color: var(--green-primary);
  padding: 1rem 3rem;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.faq-btn:hover {
  background: #c9a548;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 1rem;
  }
  
  .faq-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .faq-item {
    padding: 1.5rem;
  }
  
  .faq-icon {
    font-size: 2.5rem;
  }
  
  .faq-item h3 {
    font-size: 1.3rem;
  }
  
  .faq-item p {
    font-size: 1rem;
  }
  
  .faq-cta {
    padding: 2rem;
  }
  
  .faq-cta p:first-child {
    font-size: 1.2rem;
  }
  
  .faq-btn {
    font-size: 1.1rem;
    padding: 0.9rem 2rem;
  }
}

@media (max-width: 1024px) {
  .preview-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .color-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .preview-section {
    padding: 3rem 1rem;
  }
  
  .preview-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .upload-area,
  .color-options,
  .preview-display {
    padding: 1.5rem;
  }
  
  .color-buttons {
    grid-template-columns: 1fr;
  }
  
  .color-btn {
    padding: 0.8rem;
  }
  
  .color-swatch {
    width: 40px;
    height: 40px;
  }
  
  .canvas-container {
    min-height: 300px;
  }
  
  .preview-placeholder p:first-child {
    font-size: 3rem;
  }
  
  .preview-disclaimer {
    margin-top: 2rem;
    padding: 1rem;
  }
}

/* Week Booking Section */
.week-booking-section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(212, 175, 55, 0.05);
  border: 2px solid var(--gold);
  border-radius: 8px;
}

.week-booking-section legend {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--green-primary);
  padding: 0 0.5rem;
}

.week-booking-section p {
  margin-bottom: 1.5rem;
}

.week-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.week-option {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: white;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.week-option:hover {
  border-color: var(--green-primary);
  background: rgba(30, 86, 49, 0.02);
  transform: translateX(3px);
}

.week-option input[type="radio"] {
  margin-right: 1rem;
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

.week-option input[type="radio"]:checked + .week-label {
  color: var(--green-primary);
  font-weight: bold;
}

.week-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.week-label strong {
  font-size: 1.05rem;
  color: #000;
}

.week-label small {
  color: #666;
  font-size: 0.9rem;
}

.week-option.rush-week {
  border-color: var(--gold);
  background: rgba(255, 215, 0, 0.03);
}

.week-option.rush-week:hover {
  border-color: var(--gold);
  background: rgba(255, 215, 0, 0.08);
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.rush-indicator {
  color: #d97706 !important;
  font-weight: bold !important;
  font-size: 0.95rem !important;
}

@media (max-width: 768px) {
  .week-booking-section {
    padding: 1rem;
  }
  
  .week-option {
    padding: 0.75rem;
  }
  
  .week-label strong {
    font-size: 1rem;
  }
  
  /* Mobile Navigation Hamburger Menu */
  nav {
    padding: 1rem;
  }
  
  /* Show hamburger menu on mobile */
  .hamburger-menu {
    display: flex;
  }
  
  /* Hide nav menu by default on mobile */
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--red-primary);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    border-bottom: 3px solid var(--gold);
  }
  
  /* Show nav menu when active */
  .nav-menu.active {
    max-height: 500px;
    padding: 1rem 0;
  }
  
  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .nav-menu a {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    display: block;
    width: 100%;
  }
  
  .nav-menu a:active {
    background: rgba(255,255,255,0.1);
  }
  
  /* Show mobile CTA button */
  .mobile-cta-button {
    display: block;
  }
  
  /* Mobile Hero Section */
  .hero {
    min-height: 60vh;
    padding: 3rem 1.5rem;
  }
  
  .hero-logo {
    max-width: 200px !important;
    margin-bottom: 1.5rem;
  }
  
  .hero h2 {
    font-size: 1.8rem !important;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.1rem !important;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  
  /* Touch-Friendly Buttons */
  .cta-button,
  .glow-button {
    min-height: 56px;
    padding: 1rem 2rem !important;
    font-size: 1.2rem !important;
    touch-action: manipulation;
  }
  
  button[type="submit"],
  .pricing-btn,
  .featured-btn {
    min-height: 56px;
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
    touch-action: manipulation;
  }
  
  /* Form Inputs - Touch Friendly */
  form input[type="text"],
  form input[type="email"],
  form input[type="tel"],
  form input[type="number"],
  form select,
  form textarea {
    min-height: 50px !important;
    font-size: 16px !important;
    padding: 0.8rem !important;
    -webkit-appearance: none;
    border-radius: 8px;
  }
  
  form label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  /* Gutter Cleaning Callout - Mobile */
  .gutter-cleaning-callout {
    padding: 2rem 1.5rem !important;
    margin: 2rem 0 !important;
  }
  
  .gutter-cleaning-callout h3 {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
  }
  
  .gutter-cleaning-callout p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }
  
  /* Countdown Banner */
  .countdown-banner {
    padding: 1rem 0.5rem !important;
  }
  
  .countdown-number {
    font-size: 2.5rem !important;
  }
  
  .countdown-label {
    font-size: 1rem !important;
  }
  
  /* Why Choose Grid */
  .why-choose-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  .why-item {
    padding: 1.5rem !important;
  }
  
  .why-icon {
    font-size: 2.5rem !important;
  }
  
  /* Cards Grid */
  .cards-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .service-card,
  .gallery-card {
    padding: 2rem 1.5rem !important;
  }
  
  /* Process Steps */
  .process-steps {
    gap: 2rem !important;
  }
  
  .process-step {
    padding: 2rem 1.5rem !important;
  }
  
  .step-number {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.5rem !important;
  }
  
  .process-step h3 {
    font-size: 1.3rem !important;
  }
  
  /* Safety & Warranty */
  .safety-section {
    padding: 3rem 1rem !important;
  }
  
  .safety-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  /* Section Titles */
  .section-title {
    font-size: 2rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  /* Form Container */
  .form-container {
    padding: 2rem 1.5rem !important;
  }
  
  .form-container h2 {
    font-size: 2rem !important;
  }
  
  /* Photo Upload Section */
  .photo-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  /* Estimate Box */
  .estimate-box {
    padding: 1.5rem !important;
  }
  
  #estimate-cost {
    font-size: 2.5rem !important;
  }
  
  /* Better Text Readability */
  body {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
  }
  
  p {
    line-height: 1.6;
  }
  
  /* Prevent Horizontal Scroll */
  body, html {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  * {
    max-width: 100%;
  }
}

/* Extra Small Devices (phones < 480px) */
@media (max-width: 480px) {
  .hero h2 {
    font-size: 1.5rem !important;
  }
  
  .hero p {
    font-size: 1rem !important;
  }
  
  .countdown-number {
    font-size: 2rem !important;
  }
  
  .section-title {
    font-size: 1.8rem !important;
  }
  
  .pricing-card h3,
  .service-card h3 {
    font-size: 1.5rem !important;
  }
  
  .price-value {
    font-size: 2.2rem !important;
  }
  
  .gutter-cleaning-callout h3 {
    font-size: 1.3rem !important;
  }
  
  .form-container {
    padding: 1.5rem 1rem !important;
  }
  
  nav {
    padding: 0.75rem;
  }
}
