/* Non-critical CSS styles */

/* Font Loading Optimization */
/* Default fallback fonts for all elements */
* {
  font-family: Arial, Helvetica, sans-serif;
  font-display: swap;
}

/* Apply custom fonts when loaded */
.fonts-loaded * {
  font-family: 'Big Shoulders Text', 'Lato', Arial, Helvetica, sans-serif;
}

/* Specific font overrides for elements that should use Lato */
.fonts-loaded .form-note,
.fonts-loaded .trust-item,
.fonts-loaded .testimonial-text,
.fonts-loaded .testimonial-author,
.fonts-loaded .form-header p,
.fonts-loaded .form-section p {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

/* Navigation styles */
.nav-link {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--brick);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--brick);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile navigation */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1001;
  overflow-y: auto;
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-mobile-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nav-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.nav-mobile-logo {
  height: 50px;
}

.nav-mobile-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--charcoal);
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.nav-mobile-close:hover {
  color: var(--brick);
}

.nav-mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.nav-mobile-link {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
  transition: color 0.3s ease;
  font-size: 1.1rem;
}

.nav-mobile-link:hover {
  color: var(--brick);
}

.nav-mobile-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--brick), #d32f2f);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  margin-top: 1rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(178, 34, 34, 0.3);
}

.nav-mobile-btn:hover {
  background: linear-gradient(135deg, #8b1a1a, var(--brick));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(178, 34, 34, 0.4);
}

/* Get Started Section styles */
.section-get-started {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.section-get-started::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.get-started-wrapper {
  position: relative;
  z-index: 1;
}

.get-started-header {
  text-align: center;
  margin-bottom: 3rem;
}

.get-started-badge {
  display: inline-block;
  background: rgba(178, 34, 34, 0.1);
  color: var(--brick);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  border: 1px solid rgba(178, 34, 34, 0.2);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.get-started-subtitle {
  font-size: 1.2rem;
  color: var(--charcoal);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.get-started-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.get-started-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--brick);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.info-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brick), #d32f2f);
  border-radius: 12px;
  color: white;
  box-shadow: 0 4px 15px rgba(178, 34, 34, 0.2);
}

.info-icon svg {
  width: 24px;
  height: 24px;
}

.info-card h3 {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--brick);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-family: 'Big Shoulders Text', 'Lato', Arial, Helvetica, sans-serif;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.5;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.contact-form-container {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f0f0f0;
}

.form-header h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--brick);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-family: 'Big Shoulders Text', 'Lato', Arial, Helvetica, sans-serif;
}

.form-header p {
  color: var(--charcoal);
  font-size: 0.9rem;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-section h4 {
  font-size: 1rem;
  font-weight: bold;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  font-family: 'Big Shoulders Text', 'Lato', Arial, Helvetica, sans-serif;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-group {
  flex: 1;
  min-width: 200px;
}

.form-group.full-width {
  flex: 1 1 100%;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  background: #fafafa;
  color: var(--charcoal);
  transition: all 0.3s ease;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brick);
  background: white;
  box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

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

.form-actions {
  text-align: center;
  padding-top: 1rem;
  border-top: 2px solid #f0f0f0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brick), #d32f2f);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(178, 34, 34, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: Arial, Helvetica, sans-serif;
  font-display: swap;
  text-align: center;
}

/* Font loading optimization for buttons */
.fonts-loaded .btn-primary {
  font-family: 'Big Shoulders Text', Arial, Helvetica, sans-serif;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #8b1a1a, var(--brick));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(178, 34, 34, 0.4);
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon svg {
  width: 20px;
  height: 20px;
}

.form-note {
  font-size: 0.8rem;
  color: #555;
  margin-top: 1rem;
  line-height: 1.4;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.get-started-footer {
  text-align: center;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--charcoal);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brick);
}

.trust-icon svg {
  width: 20px;
  height: 20px;
}

/* Contact Form styles (legacy) */
.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-wrapper .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-wrapper .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-form-wrapper .form-row input,
.contact-form-wrapper .form-row textarea {
  flex: 1;
  min-width: 200px;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 1.1rem;
  background: white;
  color: var(--charcoal);
}

.contact-form-wrapper .form-row input::placeholder,
.contact-form-wrapper .form-row textarea::placeholder {
  color: #666;
}

.contact-form-wrapper .form-row input:focus,
.contact-form-wrapper .form-row textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
}

.contact-form-wrapper .form-row textarea {
  min-height: 120px;
  resize: vertical;
}

/* Section styles */
.section {
  padding: 4rem 0;
}

.section-brick {
  background: var(--brick);
  color: white;
}

.section-cta {
  background: var(--cta);
}

/* Estimate page specific styles */
.estimate-header {
  text-align: center;
  margin-bottom: 4rem;
}

.estimate-badge {
  display: inline-block;
  background: rgba(178, 34, 34, 0.1);
  color: var(--brick);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  border: 1px solid rgba(178, 34, 34, 0.2);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.estimate-subtitle {
  font-size: 1.3rem;
  color: var(--charcoal);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 500;
}

.estimate-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(178, 34, 34, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brick), #d32f2f);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  border-color: rgba(178, 34, 34, 0.3);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brick), #d32f2f);
  border-radius: 20px;
  color: white;
  box-shadow: 0 8px 24px rgba(178, 34, 34, 0.3);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(178, 34, 34, 0.4);
}

.benefit-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
  font-family: 'Big Shoulders Text', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.benefit-card p {
  color: #555;
  line-height: 1.7;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin: 0;
}

/* Estimate services section */
.estimate-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-category {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.service-category h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brick);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Big Shoulders Text', Arial, Helvetica, sans-serif;
  border-bottom: 2px solid rgba(178, 34, 34, 0.2);
  padding-bottom: 0.5rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  padding: 0.75rem 0;
  color: var(--charcoal);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1rem;
  line-height: 1.5;
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li::before {
  content: '✓';
  color: var(--brick);
  font-weight: bold;
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

/* Process steps styling */
.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.process-step {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(178, 34, 34, 0.1);
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brick), #d32f2f);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  font-family: 'Big Shoulders Text', Arial, Helvetica, sans-serif;
  box-shadow: 0 8px 24px rgba(178, 34, 34, 0.3);
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
  font-family: 'Big Shoulders Text', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-content p {
  color: #555;
  line-height: 1.6;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  margin: 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--brick);
  margin-bottom: 1rem;
  font-family: 'Big Shoulders Text', Arial, Helvetica, sans-serif;
}

.section-subtitle {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #d35400;
  margin-bottom: 2rem;
  font-family: 'Big Shoulders Text', Arial, Helvetica, sans-serif;
}

/* About section styles */
.section-about {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.section-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e9ecef" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e9ecef" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23e9ecef" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23e9ecef" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23e9ecef" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.about-header {
  text-align: left;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.about-header .section-title {
  text-align: left;
}

.about-badge {
  display: inline-block;
  background: rgba(178, 34, 34, 0.1);
  color: var(--brick);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  border: 1px solid rgba(178, 34, 34, 0.2);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.about-subtitle {
  font-size: 1.3rem;
  color: var(--charcoal);
  max-width: 700px;
  margin: 0;
  line-height: 1.6;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 500;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.about-image-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

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

.stat-item {
  background: white;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--brick);
  margin-bottom: 0.5rem;
  font-family: 'Big Shoulders Text', 'Lato', Arial, Helvetica, sans-serif;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--charcoal);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--charcoal);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 500;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brick), #d32f2f);
  border-radius: 8px;
  color: white;
  box-shadow: 0 4px 15px rgba(178, 34, 34, 0.2);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-text h3 {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--brick);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-family: 'Big Shoulders Text', 'Lato', Arial, Helvetica, sans-serif;
}

.feature-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.about-closing {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--charcoal);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 1.5rem;
  background: rgba(178, 34, 34, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--brick);
}

.about-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.about-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  font-family: 'Big Shoulders Text', 'Lato', Arial, Helvetica, sans-serif;
  border-radius: 4px;
}

.about-actions .btn-primary {
  background: linear-gradient(135deg, var(--brick), #d32f2f);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(178, 34, 34, 0.3);
  border-radius: 4px;
}

.about-actions .btn-primary:hover {
  background: linear-gradient(135deg, #8b1a1a, var(--brick));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(178, 34, 34, 0.4);
}

.about-actions .btn-secondary {
  background: transparent;
  color: var(--brick);
  border: 2px solid var(--brick);
  border-radius: 4px;
}

.about-actions .btn-secondary:hover {
  background: var(--brick);
  color: white;
}

.about-actions .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-actions .btn-icon svg {
  width: 20px;
  height: 20px;
}

/* Legacy About section styles - removed conflicting styles */

/* Services section styles */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--brick);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--brick);
  font-family: 'Big Shoulders Text', 'Lato', Arial, Helvetica, sans-serif;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: bold;
}

/* Promise section styles */
.promise-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}

.promise-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.promise-text .section-title {
  margin-bottom: 0;
  text-align: left;
}

.promise-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.promise-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.promise-image {
  flex: 1;
}

.promise-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.promises-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.promise-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.promise-icon {
  flex-shrink: 0;
  width: 75px;
  height: 75px;
}

.promise-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.promise-details h3 {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--brick);
  font-family: 'Big Shoulders Text', 'Lato', Arial, Helvetica, sans-serif;
}

.promise-details p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: bold;
}

/* Testimonials section styles */
.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.stars {
  font-size: 2rem;
  color: #d35400;
  margin-bottom: 1rem;
}

.testimonials-container {
  position: relative;
  margin: 0 -1rem;
  padding: 0 1rem;
}

.testimonials-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding: 1rem 0;
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  scroll-snap-type: x mandatory;
}

.testimonials-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.testimonial-card {
  flex: 0 0 350px;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brick), #d32f2f);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--brick);
  margin-bottom: 1rem;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  flex-grow: 1;
}

.testimonial-author {
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--brick);
  text-align: right;
  font-family: 'Big Shoulders Text', 'Lato', Arial, Helvetica, sans-serif;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Scroll indicators */
.scroll-indicators {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
}

.scroll-progress {
  width: 200px;
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.scroll-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--brick);
  border-radius: 2px;
  transition: width 0.3s ease;
  width: var(--scroll-progress, 0%);
}

.scroll-text {
  font-size: 0.9rem;
  color: var(--charcoal);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  text-align: center;
}

/* Navigation arrows */
.testimonials-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.nav-arrow {
  background: linear-gradient(135deg, var(--brick), #d32f2f);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(178, 34, 34, 0.2);
}

.nav-arrow:hover {
  background: linear-gradient(135deg, #8b1a1a, var(--brick));
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(178, 34, 34, 0.3);
}

.nav-arrow:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.nav-arrow svg {
  width: 20px;
  height: 20px;
}

/* Service Areas section styles */
.section-areas {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.section-areas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.areas-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.areas-badge {
  display: inline-block;
  background: rgba(178, 34, 34, 0.1);
  color: var(--brick);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  border: 1px solid rgba(178, 34, 34, 0.2);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.areas-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.areas-map-container {
  position: relative;
}

.areas-map {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: visible;
}

.service-area-map {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  object-fit: cover;
  object-position: center;
}

.map-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.coverage-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.coverage-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brick);
  font-family: 'Big Shoulders Text', 'Lato', Arial, Helvetica, sans-serif;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--charcoal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.areas-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.areas-description h3 {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--brick);
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: 'Big Shoulders Text', 'Lato', Arial, Helvetica, sans-serif;
}

.areas-description p {
  font-size: 1.1rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.service-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 3px solid var(--brick);
}

.highlight-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brick), #d32f2f);
  border-radius: 6px;
  color: white;
  flex-shrink: 0;
}

.highlight-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.areas-cities h4 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brick);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-family: 'Big Shoulders Text', 'Lato', Arial, Helvetica, sans-serif;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.city-group h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Big Shoulders Text', 'Lato', Arial, Helvetica, sans-serif;
}

.city-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.city-item {
  font-size: 0.95rem;
  color: var(--charcoal);
  padding: 0.5rem 0.75rem;
  background: white;
  border-radius: 6px;
  border-left: 3px solid rgba(178, 34, 34, 0.3);
  transition: all 0.3s ease;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.city-item:hover {
  background: rgba(178, 34, 34, 0.05);
  border-left-color: var(--brick);
  transform: translateX(4px);
}

.city-item.highlighted {
  background: rgba(178, 34, 34, 0.1);
  border-left-color: var(--brick);
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(178, 34, 34, 0.2);
}

.areas-cta {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-note {
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-top: 1rem;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

/* Footer styles */
.footer {
  background: var(--charcoal);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  flex: 1;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1.5rem;
}

/* Consistent typography hierarchy for footer */
.footer-section h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  font-family: 'Big Shoulders Text', 'Lato', Arial, Helvetica, sans-serif;
  color: white;
}

.footer-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: rgba(255, 255, 255, 0.85);
}

/* Remove margin from last paragraph in each section */
.footer-section p:last-child {
  margin-bottom: 0;
}

/* Reduce spacing between company name and address */
.footer-section p + p {
  margin-top: 0.25rem;
}

/* Remove margin from company name paragraph */
.footer-section .company-name {
  margin-bottom: 0.25rem;
}

.footer-links h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  font-family: 'Big Shoulders Text', 'Lato', Arial, Helvetica, sans-serif;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

.footer-links a:hover {
  color: #ff6b35;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-form input,
.footer-form textarea {
  padding: 0.75rem;
  border: 1px solid #555;
  border-radius: 4px;
  background: #444;
  color: white;
  font-size: 1rem;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: #ccc;
  font-size: 1rem;
}

.footer-form input:focus,
.footer-form textarea:focus {
  outline: none;
  border-color: var(--brick);
}

.footer-form textarea {
  min-height: 100px;
  resize: vertical;
}

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

.footer-bottom p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom p:last-child {
  margin-bottom: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: white;
  text-decoration: underline;
}

.map {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  margin-top: 1.5rem;
  overflow: hidden;
}

/* Responsive design */
@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
  }

  .about-buttons {
    flex-direction: row;
  }

  .promise-content {
    flex-direction: row;
  }

  .promise-buttons {
    flex-direction: row;
  }

  .areas-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-content {
    flex-direction: row;
  }

  .testimonials-slide {
    flex: 0 0 50%;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 3rem;
  }

  .section-subtitle {
    font-size: 2rem;
  }

  /* Get Started Section Tablet Styles */
  .get-started-content {
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
  }

  .trust-indicators {
    gap: 1.5rem;
  }

  /* About Section Tablet Styles */
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .about-stats {
    gap: 0.75rem;
  }

  .stat-item {
    padding: 1.25rem 0.75rem;
  }

  .about-actions {
    flex-direction: row;
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .testimonials-slide {
    flex: 0 0 33.333%;
  }

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

@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.2rem;
  }

  .areas-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .areas-map {
    padding: 1.5rem;
  }

  .service-area-map {
    height: 300px;
  }

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

  .map-overlay {
    position: static;
    margin-top: 1rem;
  }

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

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

  .promise-item {
    flex-direction: column;
    text-align: center;
  }

  .promise-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row input,
  .form-row textarea {
    min-width: 100%;
  }

  /* Get Started Section Mobile Styles */
  .get-started-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .get-started-info {
    order: 2;
  }

  .contact-form-container {
    order: 1;
    padding: 1.5rem;
  }

  .info-card {
    padding: 1rem;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }

  .trust-item {
    justify-content: center;
  }

  .get-started-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

  .get-started-subtitle {
    font-size: 1rem;
  }

  .form-header h3 {
    font-size: 1.3rem;
  }

  .form-section h4 {
    font-size: 0.9rem;
  }

  .btn-primary {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  /* About Section Mobile Styles */
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image-container {
    order: 1;
  }

  .about-text-content {
    order: 2;
  }

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

  .stat-item {
    padding: 1rem 0.5rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .about-actions {
    flex-direction: column;
  }

  .about-actions .btn {
    justify-content: center;
  }

  .about-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

  .about-subtitle {
    font-size: 1.1rem;
  }

  .about-intro {
    font-size: 1.1rem;
  }

  .feature-item {
    gap: 0.75rem;
  }

  .feature-icon {
    width: 35px;
    height: 35px;
  }

  .feature-icon svg {
    width: 18px;
    height: 18px;
  }

  /* Testimonials responsive */
  .testimonial-card {
    flex: 0 0 300px;
    padding: 1.5rem;
    min-height: 250px;
  }

  .testimonial-quote {
    font-size: 2.5rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .testimonial-author {
    font-size: 1rem;
  }

  .scroll-progress {
    width: 150px;
  }

  .testimonials-nav {
    display: none;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    flex: 0 0 280px;
    padding: 1.25rem;
    min-height: 220px;
  }

  .testimonial-quote {
    font-size: 2rem;
  }

  .testimonial-text {
    font-size: 0.85rem;
  }

  .testimonial-author {
    font-size: 0.9rem;
  }

  .scroll-progress {
    width: 120px;
  }

  .testimonials-scroll {
    gap: 1rem;
    padding: 0.5rem 0;
  }

  .scroll-indicators {
    margin-top: 1.5rem;
  }

  .scroll-text {
    font-size: 0.8rem;
  }

  /* Estimate page mobile styles */
  .estimate-benefits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .estimate-services {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .estimate-header {
    margin-bottom: 2.5rem;
  }

  .estimate-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

  .estimate-subtitle {
    font-size: 1.1rem;
  }

  .benefit-card {
    padding: 1.5rem;
  }

  .benefit-card h3 {
    font-size: 1.2rem;
  }

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

  .service-category {
    padding: 1.5rem;
  }

  .service-category h3 {
    font-size: 1.1rem;
  }

  .service-list li {
    font-size: 0.95rem;
    padding: 0.5rem 0;
  }

  .process-step {
    padding: 1.5rem;
  }

  .process-step .step-content h3 {
    font-size: 1.1rem;
  }

  .process-step .step-content p {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.2rem;
  }
}

/* Loading states */
.btn.loading {
  position: relative;
  color: transparent;
}

.btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--brick);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .nav,
  .btn,
  .testimonials-controls,
  .footer-form {
    display: none !important;
  }

  .hero {
    height: auto;
    min-height: 300px;
  }

  .hero video {
    display: none;
  }

  .section {
    padding: 2rem 0;
    page-break-inside: avoid;
  }
}

/* Inspection Page Styles */
.inspection-header {
  text-align: center;
  margin-bottom: 3rem;
}

.inspection-badge {
  display: inline-block;
  background: rgba(178, 34, 34, 0.1);
  color: var(--brick);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  border: 1px solid rgba(178, 34, 34, 0.2);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.inspection-subtitle {
  font-size: 1.2rem;
  color: var(--charcoal);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.inspection-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.inspection-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.checklist-category {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--brick);
}

.checklist-category h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--brick);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Big Shoulders Text', 'Lato', Arial, Helvetica, sans-serif;
}

.checklist-items {
  list-style: none;
  padding: 0;
}

.checklist-items li {
  padding: 0.5rem 0;
  color: var(--charcoal);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  border-bottom: 1px solid #f0f0f0;
}

.checklist-items li:last-child {
  border-bottom: none;
}

.process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brick), #d32f2f);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(178, 34, 34, 0.3);
}

.step-content h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--charcoal);
  margin-bottom: 1rem;
  font-family: 'Big Shoulders Text', 'Lato', Arial, Helvetica, sans-serif;
}

.step-content p {
  color: #555;
  line-height: 1.6;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 3rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--brick);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-item h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--brick);
  margin-bottom: 1rem;
  font-family: 'Big Shoulders Text', 'Lato', Arial, Helvetica, sans-serif;
}

.faq-item p {
  color: var(--charcoal);
  line-height: 1.6;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

/* Mobile responsiveness for inspection page */
@media (max-width: 768px) {
  .inspection-benefits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .inspection-checklist {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-card,
  .checklist-category,
  .process-step,
  .faq-item {
    padding: 1.5rem;
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}

/* Mobile Navigation Responsive Styles */
@media (max-width: 768px) {
  .nav-mobile {
    width: 70%;
  }

  .nav-mobile-content {
    padding: 1.5rem;
  }

  .nav-mobile-header {
    margin-bottom: 1.5rem;
  }

  .nav-mobile-logo {
    height: 40px;
  }

  .nav-mobile-link {
    padding: 1.25rem 0;
    font-size: 1rem;
  }

  .nav-mobile-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-mobile {
    width: 80%;
  }

  .nav-mobile-content {
    padding: 1rem;
  }

  .nav-mobile-link {
    padding: 1rem 0;
    font-size: 0.95rem;
  }

  .nav-mobile-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }
}
