@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&display=swap");
.site-header {
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .navbar {
  padding: 1rem 0;
}
.site-header .navbar-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-header .navbar-brand img {
  height: 48px;
  width: auto;
}
.site-header .navbar-brand .brand-text .brand-name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a3a52;
  margin: 0;
  line-height: 1.2;
}
.site-header .navbar-brand .brand-text .brand-tagline {
  font-size: 0.75rem;
  color: #6c757d;
  margin: 0;
}
.site-header .navbar-nav .nav-link {
  color: #333333;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}
.site-header .navbar-nav .nav-link:hover {
  color: #1a3a52;
}
.site-header .navbar-nav .nav-link.active {
  color: #1a3a52;
}
.site-header .header-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-header .header-contact .phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1a3a52;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.site-header .header-contact .phone-link:hover {
  opacity: 0.8;
}
.site-header .header-contact .phone-link i {
  font-size: 1.25rem;
}
.site-header .btn-quote {
  background: #e67e22;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.site-header .btn-quote:hover {
  background: rgb(191.3536585366, 101.3048780488, 21.6463414634);
  color: #ffffff;
}
.site-header .navbar-toggler {
  border: none;
  padding: 0.5rem;
}
.site-header .navbar-toggler:focus {
  box-shadow: none;
}
@media (max-width: 991px) {
  .site-header .navbar-collapse {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
  }
  .site-header .header-contact {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
  }
  .site-header .header-contact .btn-quote {
    width: 100%;
  }
}

.site-footer {
  background: #1a3a52;
  color: #ffffff;
  padding: 3rem 0 0;
}
.site-footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.site-footer .footer-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}
.site-footer .footer-logo .brand-text .brand-name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}
.site-footer .footer-logo .brand-text .brand-tagline {
  font-size: 0.75rem;
  opacity: 0.9;
  margin: 0;
}
.site-footer .footer-description {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}
.site-footer .social-links {
  display: flex;
  gap: 1rem;
}
.site-footer .social-links a {
  color: #ffffff;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}
.site-footer .social-links a:hover {
  opacity: 0.8;
}
.site-footer .footer-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-links li {
  margin-bottom: 0.75rem;
}
.site-footer .footer-links li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.site-footer .footer-links li a:hover {
  opacity: 0.8;
}
.site-footer .footer-services {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-services li {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}
.site-footer .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-contact li {
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.site-footer .footer-contact li i {
  width: 20px;
  margin-right: 0.5rem;
}
.site-footer .footer-contact li a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.site-footer .footer-contact li a:hover {
  opacity: 0.8;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 3rem;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.9;
}

.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8rem 0;
  color: #ffffff;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 58, 82, 0.85);
  z-index: 1;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-section .hero-content {
  max-width: 800px;
}
.hero-section .hero-content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hero-section .hero-content .hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}
.hero-section .hero-content .hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-section .hero-content .hero-phone {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-section .hero-content .hero-phone a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.hero-section .hero-content .hero-phone a:hover {
  color: #e67e22;
}
.hero-section .hero-content .hero-phone i {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 5rem 0;
  }
  .hero-section .hero-content h1 {
    font-size: 2rem;
  }
  .hero-section .hero-content .hero-subtitle {
    font-size: 1.125rem;
  }
  .hero-section .hero-content .hero-buttons {
    flex-direction: column;
  }
  .hero-section .hero-content .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

.page-header {
  background: #1a3a52;
  color: #ffffff;
  padding: 5rem 0;
  text-align: center;
}
.page-header h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.page-header p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page-header {
    padding: 3rem 0;
  }
  .page-header h1 {
    font-size: 2rem;
  }
  .page-header p {
    font-size: 1rem;
  }
}

.services-section {
  padding: 5rem 0;
  background: #ffffff;
}
.services-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.services-section .section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
}
.services-section .section-header p {
  font-size: 1.25rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}
.services-section .service-card {
  height: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
  background: #ffffff;
}
.services-section .service-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.services-section .service-card .service-icon {
  font-size: 2.5rem;
  color: #e67e22;
  margin-bottom: 1.5rem;
}
.services-section .service-card .service-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 1rem;
}
.services-section .service-card .service-description {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.services-section .service-card .service-link {
  color: #1a3a52;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.services-section .service-card .service-link:hover {
  opacity: 0.8;
}
.services-section .service-card .service-link i {
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .services-section {
    padding: 3rem 0;
  }
  .services-section .section-header h2 {
    font-size: 2rem;
  }
}

.service-detail {
  padding: 5rem 0;
}
.service-detail .service-content .service-icon-large {
  font-size: 3rem;
  color: #e67e22;
  margin-bottom: 1.5rem;
}
.service-detail .service-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1.5rem;
}
.service-detail .service-content p {
  font-size: 1.125rem;
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.service-detail .service-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 1.5rem;
}
.service-detail .service-content .feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.service-detail .service-content .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #6c757d;
}
.service-detail .service-content .feature-list li i {
  color: #e67e22;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.service-detail .service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .service-detail {
    padding: 3rem 0;
  }
  .service-detail .service-content h2 {
    font-size: 2rem;
  }
  .service-detail .service-image {
    margin-top: 2rem;
  }
}

.stats-section {
  padding: 3rem 0;
  background: #f5f5f5;
}
.stats-section .stat-item {
  text-align: center;
}
.stats-section .stat-item .stat-value {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1a3a52;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.stats-section .stat-item .stat-label {
  color: #6c757d;
  font-weight: 500;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .stats-section .stat-item {
    margin-bottom: 2rem;
  }
  .stats-section .stat-item:last-child {
    margin-bottom: 0;
  }
  .stats-section .stat-item .stat-value {
    font-size: 2.5rem;
  }
}

.why-choose-section {
  padding: 5rem 0;
  background: #f5f5f5;
}
.why-choose-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.why-choose-section .section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
}
.why-choose-section .section-header p {
  font-size: 1.25rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}
.why-choose-section .reason-card {
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  border: 1px solid #e0e0e0;
}
.why-choose-section .reason-card .reason-icon {
  width: 64px;
  height: 64px;
  background: rgba(230, 126, 34, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.why-choose-section .reason-card .reason-icon i {
  font-size: 2rem;
  color: #e67e22;
}
.why-choose-section .reason-card .reason-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 1rem;
}
.why-choose-section .reason-card .reason-description {
  color: #6c757d;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .why-choose-section {
    padding: 3rem 0;
  }
  .why-choose-section .section-header h2 {
    font-size: 2rem;
  }
  .why-choose-section .reason-card {
    margin-bottom: 1.5rem;
  }
}

.projects-section {
  padding: 5rem 0;
  background: #ffffff;
}
.projects-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.projects-section .section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
}
.projects-section .section-header p {
  font-size: 1.25rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}
.projects-section .project-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
  background: #ffffff;
}
.projects-section .project-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.projects-section .project-card:hover .project-image img {
  transform: scale(1.05);
}
.projects-section .project-card .project-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}
.projects-section .project-card .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.projects-section .project-card .project-image .project-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #e67e22;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.projects-section .project-card .project-info {
  padding: 1.5rem;
}
.projects-section .project-card .project-info .project-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.5rem;
}
.projects-section .project-card .project-info .project-location {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0.75rem;
}
.projects-section .project-card .project-info .project-description {
  color: #6c757d;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .projects-section {
    padding: 3rem 0;
  }
  .projects-section .section-header h2 {
    font-size: 2rem;
  }
  .projects-section .project-card {
    margin-bottom: 1.5rem;
  }
}

.before-after-section {
  padding: 5rem 0;
  background: #f5f5f5;
}
.before-after-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.before-after-section .section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
}
.before-after-section .section-header p {
  font-size: 1.25rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}
.before-after-section .transformation-card {
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 2rem;
  height: 100%;
}
.before-after-section .transformation-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 1rem;
}
.before-after-section .transformation-card p {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.before-after-section .transformation-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.testimonials-section {
  padding: 5rem 0;
  background: #1a3a52;
  color: #ffffff;
}
.testimonials-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.testimonials-section .section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.testimonials-section .section-header p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}
.testimonials-section .testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  padding: 2rem;
  height: 100%;
}
.testimonials-section .testimonial-card .stars {
  margin-bottom: 1rem;
}
.testimonials-section .testimonial-card .stars i {
  color: #e67e22;
  font-size: 1.125rem;
  margin-right: 0.25rem;
}
.testimonials-section .testimonial-card .testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.testimonials-section .testimonial-card .testimonial-author {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
}
.testimonials-section .testimonial-card .testimonial-author .author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.testimonials-section .testimonial-card .testimonial-author .author-location {
  font-size: 0.875rem;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .testimonials-section {
    padding: 3rem 0;
  }
  .testimonials-section .section-header h2 {
    font-size: 2rem;
  }
  .testimonials-section .testimonial-card {
    margin-bottom: 1.5rem;
  }
}

.testimonials-page .testimonial-stats {
  padding: 3rem 0;
  background: #f5f5f5;
}
.testimonials-page .testimonial-stats .stat-item {
  text-align: center;
}
.testimonials-page .testimonial-stats .stat-item .stat-icon {
  margin-bottom: 1rem;
}
.testimonials-page .testimonial-stats .stat-item .stat-icon i {
  font-size: 2rem;
  color: #e67e22;
}
.testimonials-page .testimonial-stats .stat-item .stat-value {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5rem;
}
.testimonials-page .testimonial-stats .stat-item .stat-label {
  color: #6c757d;
  font-size: 1rem;
}
.testimonials-page .testimonials-grid {
  padding: 5rem 0;
}
.testimonials-page .testimonials-grid .testimonial-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 2rem;
  height: 100%;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}
.testimonials-page .testimonials-grid .testimonial-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.testimonials-page .testimonials-grid .testimonial-card .stars {
  margin-bottom: 1rem;
}
.testimonials-page .testimonials-grid .testimonial-card .stars i {
  color: #e67e22;
  font-size: 1.125rem;
  margin-right: 0.25rem;
}
.testimonials-page .testimonials-grid .testimonial-card .testimonial-text {
  color: #6c757d;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.testimonials-page .testimonials-grid .testimonial-card .testimonial-author {
  border-top: 1px solid #e0e0e0;
  padding-top: 1rem;
}
.testimonials-page .testimonials-grid .testimonial-card .testimonial-author .author-name {
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.25rem;
}
.testimonials-page .testimonials-grid .testimonial-card .testimonial-author .author-location {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
}
.testimonials-page .testimonials-grid .testimonial-card .testimonial-author .service-type {
  font-size: 0.875rem;
  color: #e67e22;
  font-weight: 500;
}
.testimonials-page .trust-indicators {
  padding: 5rem 0;
  background: #f5f5f5;
}
.testimonials-page .trust-indicators .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.testimonials-page .trust-indicators .section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
}
.testimonials-page .trust-indicators .section-header p {
  font-size: 1.25rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}
.testimonials-page .trust-indicators .trust-card {
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  height: 100%;
}
.testimonials-page .trust-indicators .trust-card .trust-value {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #e67e22;
  margin-bottom: 0.5rem;
}
.testimonials-page .trust-indicators .trust-card .trust-label {
  color: #6c757d;
}

.cta-section {
  padding: 5rem 0;
  background: #e67e22;
  color: #ffffff;
  text-align: center;
}
.cta-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.cta-section p {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.cta-section .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cta-section .cta-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.cta-section .cta-buttons .btn-light {
  background: #ffffff;
  color: #e67e22;
  border: none;
}
.cta-section .cta-buttons .btn-light:hover {
  background: rgb(242.25, 242.25, 242.25);
  color: #e67e22;
}
.cta-section .cta-buttons .phone-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cta-section .cta-buttons .phone-link:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .cta-section {
    padding: 3rem 0;
  }
  .cta-section h2 {
    font-size: 2rem;
  }
  .cta-section p {
    font-size: 1rem;
  }
  .cta-section .cta-buttons {
    flex-direction: column;
  }
  .cta-section .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

.contact-cards {
  padding: 3rem 0;
  background: #f5f5f5;
}
.contact-cards .contact-card {
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  height: 100%;
  border: 1px solid #e0e0e0;
}
.contact-cards .contact-card .contact-icon {
  font-size: 2rem;
  color: #e67e22;
  margin-bottom: 1rem;
}
.contact-cards .contact-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}
.contact-cards .contact-card a {
  color: #6c757d;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-cards .contact-card a:hover {
  color: #1a3a52;
}
.contact-cards .contact-card p {
  color: #6c757d;
  margin: 0;
}

.contact-section {
  padding: 5rem 0;
}
.contact-section .section-header {
  margin-bottom: 3rem;
}
.contact-section .section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
}
.contact-section .section-header p {
  font-size: 1.125rem;
  color: #6c757d;
  line-height: 1.6;
}
.contact-section .contact-form .form-label {
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.5rem;
}
.contact-section .contact-form .form-control,
.contact-section .contact-form .form-select {
  border: 1px solid #e0e0e0;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
}
.contact-section .contact-form .form-control:focus,
.contact-section .contact-form .form-select:focus {
  border-color: #1a3a52;
  box-shadow: 0 0 0 0.2rem rgba(26, 58, 82, 0.25);
}
.contact-section .contact-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}
.contact-section .contact-form .btn-submit {
  background: #e67e22;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}
.contact-section .contact-form .btn-submit:hover {
  background: rgb(191.3536585366, 101.3048780488, 21.6463414634);
}
.contact-section .contact-form .form-note {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 1rem;
}
.contact-section .contact-info .info-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
}
.contact-section .contact-info .info-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 1.5rem;
}
.contact-section .contact-info .info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-section .contact-info .info-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #6c757d;
}
.contact-section .contact-info .info-card ul li i {
  color: #e67e22;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.contact-section .contact-info .info-card ul li:last-child {
  margin-bottom: 0;
}
.contact-section .contact-info .info-card .social-links {
  display: flex;
  gap: 1rem;
}
.contact-section .contact-info .info-card .social-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-section .contact-info .info-card .social-links a:hover {
  color: #1a3a52;
}
.contact-section .contact-info .info-card .social-links a i {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }
  .contact-section .section-header h2 {
    font-size: 2rem;
  }
  .contact-section .contact-info {
    margin-top: 3rem;
  }
}

.service-areas {
  padding: 5rem 0;
  background: #f5f5f5;
  text-align: center;
}
.service-areas h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
}
.service-areas p {
  font-size: 1.125rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.service-areas .areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}
.service-areas .areas-grid .area-item {
  color: #6c757d;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .service-areas {
    padding: 3rem 0;
  }
  .service-areas h2 {
    font-size: 2rem;
  }
  .service-areas .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

body {
  font-family: "Open Sans", sans-serif;
  color: #333333;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}

a {
  transition: all 0.3s ease;
}

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

.btn {
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.card {
  border-radius: 0.5rem;
  border: 1px solid #e0e0e0;
}

.section-padding {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 3rem 0;
  }
}

.text-primary-navy {
  color: #1a3a52 !important;
}

.text-secondary-orange {
  color: #e67e22 !important;
}

.bg-primary-navy {
  background-color: #1a3a52 !important;
}

.bg-secondary-orange {
  background-color: #e67e22 !important;
}

.bg-accent-gray {
  background-color: #f5f5f5 !important;
}

html {
  scroll-behavior: smooth;
}

*:focus {
  outline: 0px solid #1a3a52;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 0px solid #1a3a52;
  outline-offset: 2px;
}

.btn {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: #e67e22;
  border: none;
}
.btn-primary:hover {
  background: rgb(191.3536585366, 101.3048780488, 21.6463414634);
}

.btn-outline-primary {
  border: 2px solid #e67e22;
  color: #e67e22;
}
.btn-outline-primary:hover {
  border-color: rgb(191.3536585366, 101.3048780488, 21.6463414634);
  background-color: rgb(191.3536585366, 101.3048780488, 21.6463414634);
  color: #fff;
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #ffffff;
}
.btn-outline-light:hover {
  background: rgb(255, 255, 255);
  color: #1a3a52;
}

/*# sourceMappingURL=main.css.map */
