/* CSS Variables - Already in critical.css */

/* Link Underline Animation Styles */
a {
  position: relative;
  text-decoration: none;
}

a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: currentColor;
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

.btn {
  display: inline-block;
  padding: 18px 24px;
  min-width: 200px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary:hover {
  background: #8a1a1e;
  transform: translateY(-2px);
}

.btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

/* Override for specific link types that shouldn't have the underline animation */
.btn::after,
.btn-primary::after,
.btn-secondary::after,
.consultation-btn::after,
#cta-262 .cs-button-solid::after,
#reviews-607 .cs-button-solid::after,
#content-page-713 .cs-button-solid::after,
.service-card::after,
.feature-card::after,
.testimonial-card::after,
.contact-card::after,
.area-card::after,
.about-image .cs-cta::after,
.dropdown-menu li a::after,
.form-feature::after,
.checkbox-label::after,
.nav-brand a::after,
.cs-logo::after {
  display: none;
}

/* Special styling for navigation links to maintain their existing hover effects */
.nav-link::after {
  background-color: #ae2024;
}

/* Special styling for footer links */
#cs-footer-710 .cs-link::after,
#cs-footer-710 .cs-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ae2024;
  transition: width 0.3s ease;
}

#cs-footer-710 .cs-link:hover::after,
#cs-footer-710 .cs-nav-link:hover::after {
  width: 100%;
}

/* Ensure contact links also get the underline effect */
#cs-footer-710 .cs-contact-ul .cs-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ae2024;
  transition: width 0.3s ease;
}

#cs-footer-710 .cs-contact-ul .cs-link:hover::after {
  width: 100%;
}

#cs-footer-710 .cs-copyright-link::after {
  display: none;
}

/* Special styling for contact method links */
.contact-method a::after {
  background-color: var(--primary);
}

/* Special styling for contact card links */
.contact-card a::after {
  background-color: #2d5a8b;
}

/* Reset and Base Styles - Already in critical.css */

/* Skip Link - Already in critical.css */

/* Header Styles - Already in critical.css */

/* Navigation - Already in critical.css */

/* Button Styles - Already in critical.css */

/* Hero Section - Already in critical.css */

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

/* Style for "Our Painting Services" text */
.section-header p:first-of-type {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ae2024;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

/* Style for section subtitles (like "Featured Service") */
.section-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ae2024;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

/* Services Overview */
.services-overview {
  padding: 80px 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.service-card {
  background: #f8f9fa;
  padding: 30px;
  border: none;
  text-align: left;
  transition: all 0.6s ease;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 0;
  transform: scale(1);
}

.service-card:hover::before {
  opacity: 1;
  transform: scale(1.1);
}

/* Service card background images */
.service-card-exterior::before {
  background-image: url('/images/exterior-home-painting.webp');
}

.service-card-interior::before {
  background-image: url('/images/interior-home-painting.webp');
}

.service-card-fence::before {
  background-image: url('/images/deck-installation.webp');
}

.service-card-flooring::before {
  background-image: url('/images/flooring-installation.webp');
}

.service-card:hover {
  border-color: #ae2024;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(174, 32, 36, 0.9);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-content {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.service-card .service-content h3 {
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.6s ease;
}

.service-card .service-content h4 {
  color: #333;
}

.service-card .service-content p {
  color: #666;
}

.service-card:hover .service-content h3 {
  color: white;
}

.service-card:hover .service-content h4 {
  color: white;
}

.service-card:hover .service-content p {
  color: rgba(255, 255, 255, 0.9);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: transparent;
  border: 2px solid #ae2024;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px 0;
  border-radius: 0;
  transition: all 0.6s ease;
}

.service-icon {
  position: relative;
}

.service-icon img {
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.6s ease;
}

.service-icon .icon-colored {
  opacity: 1;
}

.service-icon .icon-white {
  opacity: 0;
}

.service-card:hover .service-icon {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.service-card:hover .service-icon .icon-colored {
  opacity: 0;
}

.service-card:hover .service-icon .icon-white {
  opacity: 1;
}

.service-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.6s ease;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  transition: color 0.6s ease;
}

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

/* Responsive design for services grid */
@media (max-width: 1400px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: end;
    align-items: stretch;
    max-width: 750px;
    margin: 0 auto;
    margin-bottom: 60px;
  }

  .service-card {
    aspect-ratio: auto;
    min-height: auto;
    height: auto;
  }
}

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

  .services-overview {
    padding: 60px 0;
  }
}

/* Featured Service */
.featured-service {
  padding: 80px 0;
  background: #f5f5f5;
  overflow: hidden;
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12vw;
  align-items: center;
}

@media (max-width: 768px) {
  .featured-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .featured-content .featured-text {
    order: 1;
  }

  .featured-content .featured-image {
    order: 2;
    /* margin: 20px; */
  }
}

@media (max-width: 480px) {
  .featured-content {
    gap: 2rem;
  }

  .featured-image {
    margin: 10px !important;
  }
}

.featured-content .featured-text {
  order: 1;
}

.featured-content .featured-image,
.featured-content .cs-image-group {
  order: 2;
}

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

.featured-text .section-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ae2024;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.featured-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-text h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.featured-text p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
}

.featured-image {
  position: relative;
  margin: 40px;
}

.featured-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #bababa;
  z-index: 0;
  transform: rotate(15deg);
}

.featured-image img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

/* Why Choose Us */
.why-choose-us {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('/images/view-of-neighborhood.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
}

.why-choose-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.why-choose-text .section-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.why-choose-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-choose-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: transparent;
  padding: 40px 30px;
  box-shadow: none;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
}

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

.feature-icon {
  width: 90px;
  height: 90px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 1.8rem;
  color: #ae2024;
}

.feature-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.feature-card p {
  color: white;
  line-height: 1.6;
}

/* Additional Services */
.additional-services {
  padding: 80px 0;
  background: white;
}

.additional-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.additional-services .service-card {
  background: #f8f9fa;
  padding: 30px;
  border: none;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: auto;
  position: relative;
  overflow: visible;
  transform: translateY(0);
}

.additional-services .service-card:hover {
  transform: translateY(-8px);
}

.additional-services .service-card::before {
  display: none;
}

.additional-services .service-icon {
  width: 70px;
  height: 70px;
  background: #ae2024;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.additional-services .service-icon i {
  font-size: 1.8rem;
  color: white;
}

.additional-services .service-icon-img {
  width: 1.8rem;
  height: 1.8rem;
}

.additional-services .service-card:hover .service-icon {
  background: #ae2024;
  border-radius: 0;
}

.additional-services .service-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

.additional-services .service-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Remodel Section */
.remodel-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.remodel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.remodel-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 10px;
}

.remodel-text h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.remodel-text p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.remodel-images img {
  width: 100%;
  height: auto;
}

/* FAQ Section */
#faq-326 {
  padding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
  background: white;
}

.cs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.cs-content {
  text-align: center;
  margin-bottom: 3rem;
}

.cs-topper {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(0.8125rem, 1.6vw, 1rem);
  color: #ae2024;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  display: block;
}

.cs-title {
  font-size: clamp(1.9375rem, 3.9vw, 3.0625rem);
  color: #1a1a1a;
  font-weight: 700;
  margin: 0;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cs-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cs-flex-group {
  width: 100%;
}

.cs-faq-group {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cs-faq-item {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cs-faq-item:hover {
}

.cs-button {
  width: 100%;
  background: #f9fafb;
  border: none;
  padding: 1.25rem;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cs-button:hover {
  background: #f3f4f6;
}

.cs-faq-item.active .cs-button {
  background: #ae2024;
}

.cs-button-text {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex: 1;
  padding-right: 1rem;
  transition: color 0.3s ease;
}

.cs-faq-item.active .cs-button-text {
  color: white;
}

.cs-button::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: bold;
  color: #6b7280;
  transition: all 0.3s ease;
  min-width: 20px;
  text-align: center;
}

.cs-faq-item.active .cs-button::after {
  transform: rotate(45deg);
  color: white !important;
}

.cs-item-p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
  background: white;
  padding: 0 1.25rem 0 1.25rem;
  margin: 0;
  color: #4e4b66;
  line-height: 1.7;
  font-size: 1rem;
  opacity: 0;
}

.cs-faq-item.active .cs-item-p {
  max-height: 500px;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  opacity: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cs-flex {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cs-button-text {
    font-size: 1rem;
  }

  .cs-button {
    padding: 1rem;
  }

  .cs-item-p {
    padding: 0 1rem 0 1rem;
  }

  .cs-faq-item.active .cs-item-p {
    padding: 1rem 1rem 1rem 1rem;
    max-height: 600px;
  }
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.testimonial-card {
  background: white;
  padding: 30px;
  position: relative;
}

.testimonial-icon {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 30px;
  height: 30px;
  background: #fbbf24;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-icon i {
  color: white;
  font-size: 0.9rem;
}

.testimonial-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 15px;
  margin-top: 10px;
}

.testimonial-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  color: #666;
  text-align: right;
}

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

/* New Testimonials Section Styles */
#reviews-607 {
  padding: var(--sectionPadding);
  background-color: #f7f7f7;
}

#reviews-607 .cs-container {
  width: 100%;
  max-width: 80rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(3rem, 6vw, 4rem);
}

@media (max-width: 768px) {
  #reviews-607 .cs-container {
    padding: 0;
  }
}

#reviews-607 .cs-content {
  text-align: center;
  max-width: 43.75rem;
}

#reviews-607 .cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  display: block;
}

#reviews-607 .cs-title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

#reviews-607 .cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}

#reviews-607 .cs-card-group {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 1fr;
  gap: 2rem;
  max-width: 1200px;
}

#reviews-607 .cs-item {
  text-align: left;
  list-style: none;
  width: 100%;
  max-width: 25rem;
  margin: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  background: white;
  border-radius: 0;
  height: 100%;
  min-height: 350px;
  transition: transform 0.3s ease;
}

#reviews-607 .cs-item:hover {
  transform: translateY(-5px);
}

#reviews-607 .cs-icon {
  width: clamp(2.5rem, 4vw, 3.75rem);
  height: auto;
  margin: 0 0 1.5rem 0;
  display: block;
  align-self: flex-start;
}

#reviews-607 .cs-h3 {
  font-size: 1.3rem;
  line-height: 1.2em;
  font-weight: 700;
  text-align: left;
  margin: 1rem 0;
  color: var(--headerColor);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#reviews-607 .cs-item-text {
  font-size: var(--bodyFontSize);
  line-height: 1.6em;
  text-align: left;
  width: 100%;
  margin: 0 0 1.5rem 0;
  color: var(--bodyTextColor);
  font-style: italic;
  flex-grow: 1;
}

#reviews-607 .cs-name {
  font-size: 1.4rem;
  line-height: 1.2em;
  font-weight: 400;
  text-align: left;
  margin: 0;
  color: #000;
  text-transform: none;
  letter-spacing: 0;
  margin-top: auto;
}

#reviews-607 .cs-button-solid {
  display: inline-block;
  padding: 18px 24px;
  min-width: 200px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
  background: #ae2024;
  color: white;
}

#reviews-607 .cs-button-solid:hover {
  background: #8a1a1e;
  transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: #ae2024;
  color: white;
  text-align: left;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
  color: white;
  flex: 1;
  max-width: 500px;
}

.cta-section .btn-primary {
  background: white;
  color: black;
  flex-shrink: 0;
}

.cta-section .btn-primary:hover {
  background: #f8f9fa;
  color: black;
  transform: translateY(-2px);
}

/* Footer */
#cs-footer-710 {
  font-size: 100%;
  font-family: 'Oswald', Arial, sans-serif;
  color: var(--bodyTextColor);
  margin: 0;
  box-sizing: border-box;
  padding: var(--sectionPadding);
  padding-bottom: 3.125rem;
  background-color: var(--headerColor);
  position: relative;
  z-index: 1;
}

#cs-footer-710 .cs-container {
  width: 100%;
  max-width: 80rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.125rem;
}

#cs-footer-710 .cs-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  width: 100%;
}

#cs-footer-710 .cs-logo-wrapper {
  width: 100%;
  max-width: 13.125rem;
}

#cs-footer-710 .cs-logo {
  display: block;
  width: 100%;
  max-width: 16rem;
  height: auto;
}

#cs-footer-710 .cs-logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

#cs-footer-710 .cs-flex {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 3.125rem;
  flex: 1;
}

#cs-footer-710 .cs-ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

#cs-footer-710 .cs-li {
  list-style: none;
  margin: 0;
  padding: 0;
}

#cs-footer-710 .cs-header {
  font-size: 1.125rem;
  line-height: 1.2em;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 0.5rem;
  display: block;
  font-family: 'Oswald', sans-serif;
}

#cs-footer-710 .cs-link {
  font-size: 1rem;
  line-height: 1.5em;
  color: var(--bodyTextColorWhite);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

#cs-footer-710 .cs-link:hover {
  color: #ae2024;
}

#cs-footer-710 .cs-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  color: white;
}

#cs-footer-710 .cs-contact-ul .cs-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

#cs-footer-710 .cs-middle {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid var(--accent);
  padding: 1.25rem 0;
}

#cs-footer-710 .cs-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

#cs-footer-710 .cs-nav-li {
  list-style: none;
  margin: 0;
  padding: 0;
}

#cs-footer-710 .cs-nav-link {
  font-size: 1rem;
  line-height: 1.5em;
  color: var(--bodyTextColorWhite);
  transition: color 0.3s ease;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: 'Oswald', sans-serif;
  position: relative;
}

#cs-footer-710 .cs-nav-link:hover {
  color: #ae2024;
}

#cs-footer-710 .cs-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#cs-footer-710 .cs-copyright {
  font-size: 1rem;
  line-height: 1.5em;
  color: var(--bodyTextColorWhite);
  text-align: center;
}

#cs-footer-710 .cs-copyright-link {
  color: var(--secondaryLight);
  transition: color 0.3s ease;
  position: relative;
}

#cs-footer-710 .cs-copyright-link:hover {
  color: #ae2024;
}

#cs-footer-710 .cs-copyright-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ae2024;
  transition: width 0.3s ease;
}

#cs-footer-710 .cs-copyright-link:hover::after {
  width: 100%;
}

/* Responsive Footer */
@media only screen and (max-width: 63.9375rem) {
  #cs-footer-710 {
    padding: 2rem 1rem 3rem;
  }

  #cs-footer-710 .cs-container {
    gap: 2rem;
  }

  #cs-footer-710 .cs-top {
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 3rem;
  }

  #cs-footer-710 .cs-flex {
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    width: 100%;
  }

  #cs-footer-710 .cs-ul {
    min-width: 200px;
    align-items: flex-start;
  }

  #cs-footer-710 .cs-nav {
    gap: 1rem;
    justify-content: flex-start;
  }
}

@media only screen and (max-width: 47.9375rem) {
  #cs-footer-710 {
    padding: 1.5rem 1rem 2.5rem;
  }

  #cs-footer-710 .cs-container {
    gap: 1.5rem;
  }

  #cs-footer-710 .cs-top {
    gap: 2.5rem;
  }

  #cs-footer-710 .cs-logo-wrapper {
    max-width: 14rem;
    margin-bottom: 1.5rem;
  }

  #cs-footer-710 .cs-logo {
    max-width: 14rem;
  }

  #cs-footer-710 .cs-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 3.5rem;
    width: 100%;
  }

  #cs-footer-710 .cs-ul {
    width: 100%;
    max-width: 280px;
    align-items: flex-start;
  }

  #cs-footer-710 .cs-header {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  #cs-footer-710 .cs-link {
    font-size: 1.1rem;
    padding: 0.4rem 0;
    min-height: 40px;
    justify-content: flex-start;
  }

  #cs-footer-710 .cs-contact-ul .cs-link {
    justify-content: flex-start;
    text-align: left;
    font-size: 1.1rem;
  }

  #cs-footer-710 .cs-nav {
    flex-direction: row;
    gap: 0.5rem;
    width: 100%;
    align-items: flex-start;
  }

  #cs-footer-710 .cs-nav-link {
    text-align: left;
    padding: 0.6rem 0;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: background-color 0.3s ease;
    font-size: 1.1rem;
  }

  #cs-footer-710 .cs-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  #cs-footer-710 .cs-copyright {
    font-size: 1rem;
    line-height: 1.6em;
    padding: 0 1rem;
  }
}

@media only screen and (max-width: 31.25rem) {
  #cs-footer-710 {
    padding: 1rem 0.75rem 2rem;
  }

  #cs-footer-710 .cs-container {
    gap: 1.25rem;
  }

  #cs-footer-710 .cs-top {
    gap: 2rem;
  }

  #cs-footer-710 .cs-logo-wrapper {
    max-width: 12rem;
    margin-bottom: 1.25rem;
  }

  #cs-footer-710 .cs-logo {
    max-width: 12rem;
  }

  #cs-footer-710 .cs-flex {
    gap: 3rem;
  }

  #cs-footer-710 .cs-ul {
    max-width: 250px;
  }

  #cs-footer-710 .cs-header {
    font-size: 1.2rem;
  }

  #cs-footer-710 .cs-link {
    font-size: 1rem;
    padding: 0.35rem 0;
  }

  #cs-footer-710 .cs-nav-link {
    font-size: 1rem;
    padding: 0.5rem 0;
  }

  #cs-footer-710 .cs-copyright {
    font-size: 0.9rem;
  }
}

/* Desktop dropdown styles - move to style.css */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  color: #333;
  transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
  background-color: #f8f9fa;
  color: #ae2024;
}

/* Additional responsive styles for non-critical content */
@media (max-width: 1024px) {
  .nav-menu {
    transition: right 0.3s ease; /* Move transition here */
  }

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

  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    margin-top: 10px;
    padding: 10px;
  }

  .featured-content,
  .remodel-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .featured-content .featured-image,
  .featured-content .cs-image-group {
    order: 1;
  }

  .featured-image {
    margin-top: 0 !important;
    margin: 0 auto;
  }

  .remodel-images {
    grid-template-columns: 1fr;
  }

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

  .section-header h2 {
    font-size: 2rem;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  /* Hero and container styles - Already in critical.css */

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

  .section-header h2 {
    font-size: 1.8rem;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  /* Contact page responsive */
  .contact-hero-content h1 {
    font-size: 2rem;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 30px 20px;
  }

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

  .contact-form-content h2 {
    font-size: 2rem;
  }
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(135deg, #1a365d 0%, #2d5a8b 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.contact-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.contact-card {
  background: white;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card .contact-icon {
  width: 60px;
  height: 60px;
  background: #1a365d;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-card .contact-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a365d;
}

.contact-card p {
  color: #666;
  margin-bottom: 5px;
}

.contact-card a {
  color: #1a365d;
  font-weight: 600;
}

.contact-card a:hover {
  color: #2d5a8b;
}

.contact-form-section {
  padding: 80px 0;
  background: white;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 20px;
}

.contact-form-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.7;
}

.form-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-feature i {
  color: #28a745;
  font-size: 1rem;
}

.form-feature span {
  font-weight: 500;
  color: #333;
}

.contact-form {
  background: #f8f9fa;
  padding: 40px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e9ecef;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a365d;
}

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

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
}

.checkbox-label input[type='checkbox'] {
  width: auto;
  margin-top: 2px;
}

.service-areas {
  padding: 80px 0;
  background: #f8f9fa;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.area-card {
  background: white;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.area-card:hover {
  transform: translateY(-5px);
}

.area-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a365d;
}

.area-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.why-choose-contact {
  padding: 80px 0;
  background: white;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

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

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

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

/* CS Image Group Styling */
.cs-image-group {
  position: relative;
  width: 100%;
  max-width: 521px;
  margin: 0 auto;
  overflow: hidden;
}

.cs-picture {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.cs-picture img {
  width: 100%;
  height: auto;
  margin-left: 0;
  object-fit: cover;
}

.cs-number:before {
  content: '';
  width: clamp(11.5rem, 45vw, 18.375rem);
  height: clamp(11.5rem, 45vw, 18.375rem);
  opacity: 1;
  background-color: #fff;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.cs-box .cs-desc {
  display: block;
  font-size: 1.2rem;
  color: black;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}

.cs-box-picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.cs-box-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  box-shadow: none;
}

/* Banner Section Styling */
#banner-559 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 400px;
  overflow: hidden;
}

#banner-559 .cs-container {
  position: relative;
  z-index: 10;
  text-align: left;
  color: white;
  padding: 2rem;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 !important;
  margin-left: 100px !important;
}

@media (max-width: 768px) {
  #banner-559 .cs-container {
    margin-left: 2rem !important;
    padding: 1rem;
  }

  #banner-559 .cs-int-topper::before {
    left: -60px;
    width: 50px;
  }

  #banner-559 .cs-int-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  #banner-559 .cs-container {
    margin-left: 1rem !important;
    padding: 0.5rem;
  }

  #banner-559 .cs-int-topper::before {
    display: none;
  }

  #banner-559 .cs-int-title {
    font-size: 2rem;
  }
}

#banner-559 .cs-int-topper {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Oswald', sans-serif;
  position: relative;
}

#banner-559 .cs-int-topper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -120px;
  width: 100px;
  height: 3px;
  background-color: var(--primary);
  transform: translateY(-50%);
}

#banner-559 .cs-int-title {
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Oswald', sans-serif;
}

#banner-559 .cs-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#banner-559 .cs-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

#banner-559 .cs-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

/* CTA Section with Background Image */
#cta-262 {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background-color: #f7f7f7;
  margin: 0 2rem;
}

#cta-262 .cs-container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 80rem;
  margin: 0 auto;
  padding: 100px 100px;
}

@media (max-width: 768px) {
  #cta-262 .cs-container {
    flex-direction: column;
    text-align: center;
    padding: 60px 2rem;
    gap: 30px;
  }

  #cta-262 .cs-content {
    text-align: center;
  }

  #cta-262 .cs-header,
  #cta-262 .cs-p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  #cta-262 .cs-container {
    padding: 40px 1rem;
  }
}

#cta-262 .cs-left-section {
  flex: 1;
  max-width: 500px;
  position: relative;
  z-index: 10;
}

#cta-262 .cs-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  max-width: 300px;
}

#cta-262 .cs-button-solid {
  display: inline-block;
  font-family: 'Oswald';
  background: var(--primary);
  color: white;
  padding: 15px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

#cta-262 .cs-button-solid:hover {
  background: #8a1a1e;
  transform: translateY(-2px);
}

#cta-262 .cs-content {
  flex: 1;
  max-width: 300px;
  color: white;
  position: relative;
  z-index: 10;
  text-align: right;
}

#cta-262 .cs-header {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#cta-262 .cs-p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

#cta-262 .cs-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

#cta-262 .cs-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

#cta-262 .cs-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

/* Responsive Design for CTA Section */
@media (max-width: 768px) {
  #cta-262 .cs-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  #cta-262 .cs-left-section,
  #cta-262 .cs-content {
    max-width: 100%;
  }

  #cta-262 .cs-title {
    font-size: 2rem;
    max-width: 300px;
  }

  #banner-559 .cs-int-title {
    font-size: 1.9rem;
  }
}

/* Portfolio Section Styles */
#portfolio-607 {
  padding: var(--sectionPadding);
  background-color: #f7f7f7;
}

#portfolio-607 .cs-container {
  width: 100%;
  max-width: 80rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(3rem, 6vw, 4rem);
}

#portfolio-607 .cs-content {
  text-align: center;
  max-width: 43.75rem;
}

#portfolio-607 .cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  display: block;
}

#portfolio-607 .cs-title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

#portfolio-607 .cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}

#portfolio-607 .cs-gallery {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 1rem;
  padding: 0;
}

#portfolio-607 .cs-gallery-item {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

#portfolio-607 .cs-gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

#portfolio-607 .cs-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#portfolio-607 .cs-gallery-item:hover img {
  transform: scale(1.05);
}

/* Gallery item sizes */
#portfolio-607 .cs-gallery-item.cs-large {
  grid-column: span 2;
  grid-row: span 2;
}

#portfolio-607 .cs-gallery-item.cs-wide {
  grid-column: span 2;
}

#portfolio-607 .cs-gallery-item.cs-tall {
  grid-row: span 2;
}

/* Responsive Design for Portfolio Section */
@media (max-width: 1024px) {
  #portfolio-607 .cs-gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  #portfolio-607 .cs-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 0.5rem;
  }

  #portfolio-607 .cs-gallery-item.cs-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  #portfolio-607 .cs-gallery-item.cs-wide {
    grid-column: span 2;
  }

  #portfolio-607 .cs-gallery-item.cs-tall {
    grid-row: span 2;
  }
}

@media (max-width: 480px) {
  #portfolio-607 .cs-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
    gap: 0.5rem;
  }

  #portfolio-607 .cs-gallery-item.cs-large,
  #portfolio-607 .cs-gallery-item.cs-wide,
  #portfolio-607 .cs-gallery-item.cs-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Contact Form Styles for Two-Column Layout */
.contact-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #232222;
}

/* Left Column - Contact Information */
.contact-info-column {
  padding: 3rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-heading {
  margin-bottom: 2rem;
  line-height: 1.2;
}

.contact-heading-main {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: white;
}

.contact-heading-accent {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  line-height: 1.1;
}

.contact-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 2rem;
}

.contact-separator {
  height: 1px;
  background: linear-gradient(to right, transparent, #666, transparent);
  margin: 2rem 0;
  border: none;
}

.contact-prompt {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: white;
  margin-bottom: 1rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-method {
  font-size: 1rem;
  color: white;
  margin: 0;
}

.contact-method a {
  color: white;
  transition: color 0.3s ease;
}

.contact-method a:hover {
  color: var(--primary);
}

/* Right Column - Consultation Form */
.consultation-form-column {
  background: white;
  padding: 1.5rem;
  margin: 3rem;
  display: flex;
  flex-direction: column;
}

.form-heading {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--headerColor);
  margin-bottom: 2rem;
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-grow: 1;
}

.consultation-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.consultation-form .form-group {
  display: flex;
  flex-direction: column;
}

.consultation-form label {
  font-size: 0.9rem;
  color: var(--headerColor);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.consultation-form input,
.consultation-form textarea {
  padding: 12px 16px;
  border: 1px solid #e1e5e9;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
  background: white;
}

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

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
  color: #999;
  font-weight: 200;
}

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

.consultation-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 18px 32px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: auto;
  width: 100%;
}

.consultation-btn:hover {
  background: #8a1a1e;
}

/* Testimonials Section for Contact Page */
#testimonials-contact {
  padding: var(--sectionPadding);
  background-color: #f7f7f7;
}

#testimonials-contact .cs-container {
  width: 100%;
  max-width: 80rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(3rem, 6vw, 4rem);
}

#testimonials-contact .cs-content {
  text-align: center;
  max-width: 43.75rem;
}

#testimonials-contact .cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  display: block;
}

#testimonials-contact .cs-title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

#testimonials-contact .cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}

#testimonials-contact .cs-card-group {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 1fr;
  gap: 2rem;
  max-width: 1200px;
}

#testimonials-contact .cs-item {
  text-align: left;
  list-style: none;
  width: 100%;
  max-width: 25rem;
  margin: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  background: white;
  border-radius: 0;
  height: 100%;
  min-height: 350px;
  transition: transform 0.3s ease;
}

#testimonials-contact .cs-item:hover {
  transform: translateY(-5px);
}

#testimonials-contact .cs-icon {
  width: clamp(2.5rem, 4vw, 3.75rem);
  height: auto;
  margin: 0 0 1.5rem 0;
  display: block;
  align-self: flex-start;
}

#testimonials-contact .cs-h3 {
  font-size: 1.3rem;
  line-height: 1.2em;
  font-weight: 700;
  text-align: left;
  margin: 1rem 0;
  color: var(--headerColor);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#testimonials-contact .cs-item-text {
  font-size: var(--bodyFontSize);
  line-height: 1.6em;
  text-align: left;
  width: 100%;
  margin: 0 0 1.5rem 0;
  color: var(--bodyTextColor);
  font-style: italic;
  flex-grow: 1;
}

#testimonials-contact .cs-name {
  font-size: 1.4rem;
  line-height: 1.2em;
  font-weight: 400;
  text-align: left;
  margin: 0;
  color: #000;
  text-transform: none;
  letter-spacing: 0;
  margin-top: auto;
}

/* Responsive Design for Two-Column Layout */
@media (max-width: 1024px) {
  .contact-two-column {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-info-column {
    padding: 2rem;
  }

  .consultation-form-column {
    padding: 1.5rem;
    margin: 3rem 0;
  }
}

@media (max-width: 768px) {
  .contact-heading-accent {
    font-size: 2rem;
  }

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

  .contact-info-column,
  .consultation-form-column {
    padding: 1.5rem;
  }

  .consultation-form-column {
    margin: 3rem 1rem;
  }

  #reviews-607 .cs-item {
    max-width: none;
  }

  #testimonials-contact .cs-item {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .contact-heading-accent {
    font-size: 1.5rem;
  }

  .contact-info-column,
  .consultation-form-column {
    padding: 1.5rem;
  }

  .consultation-form-column {
    margin: 2rem 1rem;
  }
}

@media (min-width: 760px) {
  .consultation-form-column {
    margin: 2rem;
  }
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: #1c1c1c;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 2rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 1rem;
  }
}

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

.stat-icon {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 15px;
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  display: block;
}

.stat-card .stat-label {
  font-size: 1rem;
  color: white;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Content Section */
.about-content {
  padding: 80px 0;
  background: #f5f5f5;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

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

@media (max-width: 480px) {
  .about-grid {
    gap: 30px;
  }
}

.about-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-text p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Service Cards in About Section */
.service-cards {
  list-style: none;
  width: 100%;
  padding: 0;
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 768px) {
  .service-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 60px;
  }
}

@media (max-width: 480px) {
  .service-cards {
    gap: 15px;
    margin-top: 40px;
  }
}

.service-cards .cs-item {
  list-style: none;
  width: 100%;
  padding: 0 clamp(1.5rem, 2vw, 3.75rem) 2.5rem;
  border: 1px solid #b4b2c7;
  box-shadow: 0px 24px 54px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: border-color 0.3s;
  background: white;
}

.service-cards .cs-item:before {
  content: '';
  width: 100%;
  height: 100%;
  background: transparent;
  box-sizing: border-box;
  border: 3px solid var(--primary);
  pointer-events: none;
  opacity: 0;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  transition: opacity 0.3s;
}

.service-cards .cs-item:hover:before {
  opacity: 1;
}

.service-cards .cs-icon-wrap {
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: clamp(3.75rem, 7vw, 6.875rem);
  height: clamp(3.75rem, 7vw, 6.875rem);
  margin-top: calc(clamp(3.75rem, 7vw, 6.875rem) * -0.5);
  margin-bottom: clamp(1.875rem, 5vw, 2.5rem);
  background-color: #fff;
  border: 2px solid #b4b2c7;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  transition: transform 0.3s;
}

.service-cards .cs-item:hover .cs-icon-wrap {
  transform: scale(1.1);
}

.service-cards .cs-icon {
  font-size: 30px;
  color: #ae2024;
}

.service-cards .cs-h3 {
  list-style: none;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Oswald';
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.2em;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  color: var(--headerColor);
  text-align: center;
}

.service-cards .cs-item-text {
  list-style: none;
  padding: 0;
  box-sizing: border-box;
  font-size: 1rem;
  line-height: 1.5em;
  margin: 0 0 1.5rem 0;
  color: var(--bodyTextColor);
  text-align: center;
}

.service-cards .cs-link {
  font-family: 'Oswald', Arial, sans-serif;
  list-style: none;
  padding: 0;
  box-sizing: border-box;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.5em;
  text-transform: uppercase;
  font-weight: 700;
  margin: auto 0 0 0;
  color: var(--primary);
  position: relative;
  display: block;
}

.about-image {
  position: relative;
  margin-right: calc(-50vw + 50%);
  width: 50vw;
  height: 100%;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Image Overlay */
.about-image {
  position: relative;
}

.about-image .cs-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  display: flex;
  align-items: flex-end;
  gap: 15px;
  color: white;
  transition: all 0.3s ease;
}

.about-image .cs-cta:hover {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.about-image .cs-arrow-wrap {
  flex-shrink: 0;
}

.about-image .cs-arrow {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.about-image .cs-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-image .cs-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-image .cs-desc {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

/* Responsive Design for Stats and About Sections */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    width: 100%;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .service-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-card .stat-number {
    font-size: 2rem;
  }

  .stat-icon {
    font-size: 2rem;
  }
}

/* Content Page Styles */
#content-page-713 {
  --primary: #ae2024;
  --primaryLight: #001f3f;
  --secondary: #182a54;
  --secondaryLight: #d87d2b;
  --secondaryDark: #0c152a;
  --headerColor: #1a1a1a;
  --bodyTextColor: #4e4b66;
  --bodyTextColorWhite: #fafbfc;
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
  --dark: #121212;
  --medium: #282828;
  --accent: #404040;
  font-size: 100%;
  font-family: 'font1', Arial, sans-serif;
  color: var(--bodyTextColor);
  margin: 0;
  box-sizing: border-box;
  padding: var(--sectionPadding);
  background-color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

#content-page-713 .cs-container {
  width: 100%;
  max-width: 80rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(3rem, 6vw, 4rem);
}

#content-page-713 .cs-content {
  text-align: left;
  width: 100%;
  max-width: 46.125rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#content-page-713 .cs-title {
  font-size: var(--headerFontSize);
  font-weight: 700;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

#content-page-713 .cs-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2em;
  text-align: inherit;
  margin: 2rem 0 1rem 0;
  color: var(--headerColor);
}

#content-page-713 .cs-content h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.2em;
  text-align: inherit;
  margin: 1.5rem 0 0.75rem 0;
  color: var(--headerColor);
}

#content-page-713 .cs-content p {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0 0 1rem 0;
  color: inherit;
}

#content-page-713 .cs-content ul,
#content-page-713 .cs-content ol {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 1rem 0;
  padding-left: 2rem;
  color: inherit;
}

#content-page-713 .cs-content li {
  margin-bottom: 0.5rem;
}

#content-page-713 .cs-button-solid {
  font-size: 1rem;
  line-height: clamp(0.7em, 1.5vw, 1.2em);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.05em;
  padding: clamp(0.875rem, 1.5vw, 1.25rem) clamp(1.5rem, 2.5vw, 2rem);
  background-color: var(--primary);
  color: #fff;
  border: none;
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
  margin-top: 1rem;
}

#content-page-713 .cs-button-solid:hover {
  color: #fff;
  background-color: var(--primaryLight);
}

#content-page-713 .cs-image-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

#content-page-713 .cs-picture {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: auto;
  padding: 1rem;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#content-page-713::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background-color: #333;
  z-index: -1;
}

#content-page-713 .cs-picture img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#content-page-713 .cs-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

#content-page-713 .cs-background img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media only screen and (min-width: 48rem) {
  #content-page-713 .cs-container {
    flex-direction: row;
    align-items: flex-start;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }

  #content-page-713 .cs-content {
    width: 100%;
  }

  #content-page-713 .cs-image-group {
    width: 100%;
  }
}

@media only screen and (max-width: 47.9375rem) {
  #content-page-713 .cs-content {
    text-align: center;
    align-items: center;
  }

  #content-page-713 .cs-content h2,
  #content-page-713 .cs-content h3 {
    text-align: center;
  }

  #content-page-713 .cs-content p,
  #content-page-713 .cs-content ul,
  #content-page-713 .cs-content ol {
    text-align: left;
  }

  #content-page-713::after {
    display: none;
  }
}

/* Custom FontAwesome replacement using self-hosted SVG icons */

/* Base icon styles */
.fas {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

/* Individual icon definitions */
.fa-star {
  background-image: url('../icons/star-solid-full.svg');
}

.fa-shield-alt {
  background-image: url('../icons/shield-halved-solid-full.svg');
}

.fa-book-open {
  background-image: url('../icons/book-open-solid-full.svg');
}

.fa-key {
  background-image: url('../icons/key-solid-full.svg');
}

.fa-home {
  background-image: url('../icons/house-chimney-solid-full.svg');
}

.fa-paint-brush {
  background-image: url('../icons/paintbrush-solid-full.svg');
}

.fa-hammer {
  background-image: url('../icons/hammer-solid-full.svg');
}

.fa-tools {
  background-image: url('../icons/screwdriver-wrench-solid-full.svg');
}

.fa-heart {
  background-image: url('../icons/heart-solid-full.svg');
}

.fa-toolbox {
  background-image: url('../icons/toolbox-solid-full.svg');
}

.fa-award {
  background-image: url('../icons/trophy-solid-full.svg');
}

.fa-wrench {
  background-image: url('../icons/wrench-solid-full.svg');
}

.fa-utensils {
  background-image: url('../icons/utensils-solid-full.svg');
}

.fa-bath {
  background-image: url('../icons/bath-solid-full.svg');
}

.fa-door-open {
  background-image: url('../icons/door-open-solid-full.svg');
}

.fa-tree {
  background-image: url('../icons/tree-solid-full.svg');
}

.fa-building {
  background-image: url('../icons/building-solid-full.svg');
}

.fa-chevron-down {
  background-image: url('../icons/caret-down-solid-full.svg');
}

.fa-bars {
  background-image: url('../icons/bars-solid-full.svg');
}

.fa-times {
  background-image: none;
  position: relative;
}

.fa-times::before {
  content: '×';
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Icon sizing utilities */
.fa-lg {
  width: 1.25em;
  height: 1.25em;
}

.fa-2x {
  width: 2em;
  height: 2em;
}

.fa-3x {
  width: 3em;
  height: 3em;
}
