/* HEADER */
.site-header {
  background: #ffffff;
  border-bottom: 3px solid #0a4b78;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.inside-header {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  justify-content: space-between;
}

.main-title {
  color: #0a4b78;
  font-weight: 900;
  font-size: 22px;
  text-decoration: none;
  padding: 15px 0;
  display: block;
}

.main-navigation {
  background: #27ae60;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.main-navigation ul li a {
  display: block;
  padding: 14px 20px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.main-navigation ul li a:hover {
  background: #083a5e;
}

.nav-phone a {
  background: #27ae60;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #27ae60;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    justify-content: flex-end;
  }
  .main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #27ae60;
  }
  .main-navigation.open {
    display: block;
  }
  .main-navigation ul {
    flex-direction: column;
  }
  .main-navigation ul li a {
    padding: 15px 20px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  background: #f7f8f9;
}

/* MASTER WRAPPER */
.hcr-master-wrapper {
  font-family: Arial, sans-serif;
  color: #333;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* HERO */
.hcr-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 40, 85, 0.55) 0%, rgba(0, 77, 38, 0.55) 100%), url("/assets/images/hero-before.webp") left center/50% auto no-repeat, url("/assets/images/hero-after.webp") right center/50% auto no-repeat !important;
  padding: 140px 40px 60px 40px;
  text-align: right;
  color: white;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hcr-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hcr-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0;
  text-align: right;
}

.hcr-hero-h1 {
  color: #ffffff !important;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.hcr-hero-p {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  color: white;
}

.hcr-carousel {
  overflow: hidden;
  position: relative;
}

.hcr-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.hcr-carousel-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hcr-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.hcr-carousel-btn {
  background: #27ae60;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 6px;
}

.hcr-carousel-counter {
  font-size: 16px;
  font-weight: bold;
  color: #0a4b78;
}

/* BUTTONS */
.hcr-cta-flex {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.hcr-btn-green {
  display: inline-block;
  background: #27ae60;
  color: white !important;
  padding: 20px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  min-width: 250px;
  text-align: center;
}

.hcr-btn-white {
  display: inline-block;
  background: #ffffff;
  color: #0a4b78 !important;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  min-width: 240px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

/* IMAGE GRID */
.hcr-image-grid {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.hcr-image-card {
  flex: 1 1 300px;
  max-width: 380px;
}

.hcr-image-card img {
  width: 100%;
  height: auto;
  min-height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: block;
}

/* SERVICES GRID */
.hcr-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 30px auto 50px;
}

.hcr-service-card {
  background: #ffffff;
  color: #333333;
  border-radius: 10px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  text-align: center;
  padding: 25px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border: 2px solid #d0dce8;
  transition: all 0.3s ease;
}

.hcr-service-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #0a4b78 !important;
  font-weight: 800;
}

.hcr-service-card p {
  font-size: 15px;
  margin-bottom: 0;
  flex-grow: 1;
  line-height: 1.5;
  color: #333333;
}

.hcr-service-btn {
  background: #27ae60;
  color: #ffffff !important;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  font-size: 15px;
} /* FOOTER */
.hcr-footer {
  background: #f0f4f8;
  padding: 50px 20px;
  border-top: 5px solid #0a4b78;
  margin-top: 40px;
}

.hcr-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.hcr-footer h3 {
  color: #0a4b78;
  font-size: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #0a4b78;
  display: inline-block;
  padding-bottom: 4px;
}

.hcr-footer ul {
  list-style: none;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.hcr-footer a {
  color: #0a4b78;
  text-decoration: none;
}

.hcr-footer .phone-link {
  color: #28a745;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
}

/* SITE FOOTER BAR */
.site-footer-bar {
  background: #ffffff;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #eee;
}

.site-footer-bar a {
  color: #222222;
  text-decoration: underline;
}

/* STICKY CALL BUTTON */
.hcr-call-btn-fixed {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  background: #1a6b3a;
  color: #ffffff !important;
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.hcr-call-btn-fixed:hover {
  background: #145c30;
}

.hcr-call-btn-fixed svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

@media (max-width: 768px) {
  .hcr-hero {
    padding: 0 !important;
    display: block !important;
    align-items: unset !important;
    min-height: unset !important;
  }
  .hcr-hero-overlay {
    display: none;
  }
  .hcr-hero::before {
    content: "";
    display: block;
    width: 100%;
    height: 220px;
    background: inherit;
  }
  .hcr-hero-content {
    background: #0a4b78;
    padding: 25px 20px;
    text-align: right;
    margin: 0;
  }
  .hcr-hero-h1 {
    font-size: 26px !important;
    color: #ffffff !important;
    text-shadow: none;
  }
  .hcr-hero-p {
    font-size: 16px !important;
    color: #ffffff !important;
    text-shadow: none;
  }
  .hcr-btn-green, .hcr-btn-navy {
    width: 100%;
    min-width: 100%;
  }
}
/* LOCATION SERVICE BUTTONS */
.hcr-location-service-btn {
  display: block;
  background: #ffffff;
  color: #0a4b78 !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 18px;
  border-radius: 8px;
  border: 2px solid #b8960c;
  box-shadow: 0 4px 12px rgba(184, 150, 12, 0.25);
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.hcr-location-service-btn:hover {
  background: #27ae60;
  color: #ffffff !important;
  border-color: #b8960c;
  box-shadow: 0 6px 18px rgba(184, 150, 12, 0.4);
}

/* BREADCRUMB */
.hcr-breadcrumb {
  max-width: 1200px;
  margin: 10px auto 0;
  padding: 0 20px;
  font-size: 14px;
  color: #555;
}

.hcr-breadcrumb a {
  color: #0a4b78;
  text-decoration: none;
}

/* TRUST BANNER */
.hcr-trust-banner {
  background: #0a4b78;
  padding: 30px 20px;
  margin-bottom: 40px;
}

.hcr-trust-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.hcr-trust-pill {
  background: #ffffff;
  color: #0a4b78;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 8px;
  text-align: center;
}

/* SECTION UTILITIES */
.hcr-section-padded {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.hcr-section-title {
  color: #0a4b78;
  font-size: 28px;
  margin-bottom: 15px;
  text-align: center;
}

.hcr-section-intro {
  text-align: center;
  color: #555;
  font-size: 17px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hcr-text-center {
  text-align: center;
}

/* CARDS GRID */
.hcr-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  justify-items: center;
}

/* WHY US */
.hcr-why-us-section {
  background: #f5f7fa;
  padding: 50px 20px;
  margin: 50px 0;
}

.hcr-why-us-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hcr-why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: left;
  margin-top: 30px;
}

.hcr-why-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #0a4b78;
}

.hcr-why-card strong {
  color: #0a4b78;
  display: block;
  margin-bottom: 8px;
}

.hcr-why-card p {
  font-size: 15px;
  color: #333;
}

/* FAQ */
.hcr-faq-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hcr-faq-item h3 {
  color: #0a4b78;
  font-size: 18px;
  margin-bottom: 8px;
}

.hcr-faq-item p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* LOCATION SERVICES GRID */
.hcr-location-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

/* CTA FOOTER */
.hcr-cta-footer-section {
  background: #0a4b78;
  padding: 50px 20px;
  text-align: center;
  margin-top: 50px;
}

.hcr-cta-footer-section h2 {
  color: #ffffff;
  font-size: 30px;
  margin-bottom: 15px;
}

.hcr-cta-footer-section p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 25px;
}

/* BEFORE & AFTER GALLERY */
.hcr-before-after-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

.hcr-before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.hcr-before-after-card {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.hcr-before-after-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.hcr-before-after-card figcaption {
  padding: 15px;
  font-size: 16px;
  color: #333;
  background: #f5f7fa;
}

.hcr-before-after-card figcaption strong {
  color: #0a4b78;
}

/* PROCESS SECTION */
.hcr-process-section {
  background: #f5f7fa;
  padding: 50px 20px;
  margin: 50px 0;
}

.hcr-process-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hcr-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.hcr-process-step {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.hcr-process-step .hcr-step-number {
  display: inline-block;
  background: #27ae60;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  line-height: 48px;
  margin-bottom: 15px;
}

.hcr-process-step h3 {
  color: #0a4b78;
  font-size: 18px;
  margin-bottom: 8px;
}

.hcr-process-step p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

/* PRICING SECTION */
.hcr-pricing-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

.hcr-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.hcr-pricing-card {
  background: #ffffff;
  border: 2px solid #0a4b78;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
}

.hcr-pricing-card h3 {
  color: #0a4b78;
  font-size: 17px;
  margin-bottom: 10px;
}

.hcr-pricing-card .hcr-price {
  font-size: 26px;
  font-weight: 900;
  color: #0a4b78;
}

.hcr-pricing-card p {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
}

/* TESTIMONIALS */
.hcr-testimonials-section {
  background: #27ae60;
  padding: 50px 20px;
  margin: 50px 0;
}

.hcr-testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hcr-testimonials-inner .hcr-section-title {
  color: #ffffff;
}

.hcr-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.hcr-testimonial-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  text-align: left;
}

.hcr-testimonial-item .hcr-stars {
  color: #b8960c;
  font-size: 20px;
  margin-bottom: 10px;
}

.hcr-testimonial-item p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.hcr-testimonial-item cite {
  display: block;
  margin-top: 12px;
  font-weight: 700;
  color: #0a4b78;
  font-style: normal;
}

/* CONTACT SECTION */
.hcr-contact-section {
  background: #f5f7fa;
  padding: 50px 20px;
  margin: 50px 0;
}

.hcr-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .hcr-contact-inner {
    grid-template-columns: 1fr;
  }
}
/* FORM */
.hcr-contact-form-wrap .hcr-section-title {
  text-align: left;
}

.hcr-contact-form-wrap .hcr-section-intro {
  text-align: left;
  margin-left: 0;
}

.hcr-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hcr-form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hcr-form-row-2 {
  flex-direction: row;
}

@media (max-width: 600px) {
  .hcr-form-row-2 {
    flex-direction: column;
  }
}
.hcr-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.hcr-form-group label {
  font-weight: 700;
  color: #0a4b78;
  font-size: 15px;
}

.hcr-form-group input, .hcr-form-group textarea {
  padding: 12px 14px;
  border: 2px solid #d0dce8;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  width: 100%;
}

.hcr-form-group input:focus, .hcr-form-group textarea:focus {
  outline: none;
  border-color: #0a4b78;
}

.hcr-required {
  color: #cc0000;
  margin-left: 3px;
}

.hcr-optional {
  color: #888;
  font-weight: 400;
  font-size: 13px;
  margin-left: 5px;
}

.hcr-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.hcr-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #333;
  cursor: pointer;
}

.hcr-checkbox-label input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.hcr-form-submit {
  background: #27ae60;
  color: #ffffff;
  font-weight: 800;
  font-size: 17px;
  padding: 16px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
}

.hcr-form-submit:hover {
  background: #083a5e;
}

/* MAP */
.hcr-map-wrap .hcr-section-title {
  text-align: left;
}

/* THANK YOU PAGE */
.hcr-thankyou-section {
  max-width: 700px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.hcr-thankyou-inner {
  background: #ffffff;
  border-radius: 16px;
  padding: 50px 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.hcr-thankyou-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.hcr-thankyou-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.hcr-thankyou-links a {
  background: #f5f7fa;
  border: 2px solid #d0dce8;
  color: #0a4b78;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
}

.hcr-thankyou-links a:hover {
  background: #27ae60;
  color: #ffffff;
}

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