
:root {
  --font-primary: "Outfit", sans-serif;
  --font-heading: Georgia, serif;
  --color-primary: #B22C31;
}

body {
  font-family: var(--font-primary);
  background: #F3F1ED;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

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

h1 {
  font-size: 54px;
  font-weight: 400;
}

h1 span{
  color: var(--color-primary);
}

h2 {
  font-size: 36px;
  font-weight: 400;
}

h3 {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
}

p.tag {
  color: var(--color-primary);
  font-size: 12px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 2.4px;
}

p.tag::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}

.section {
  padding-top: 80px;
}

.mt-8{
  margin-top: 80px;
}

.py-8{
  padding: 80px 0px;
}

/* Buttons */
.btn-red,
.btn-white,
.btn-outline-white {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 18px;
  padding: 13px 32px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

.btn-red {
  border: none;
  background: #D63A41;
  color: #fff;
}

.btn-white {
  border: 1px solid #000;
  background: #FFF;
  color: #000;
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
}

.btn-red:hover,
.btn-white:hover,
.btn-outline-white:hover, .call-btn:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}

header.fixed-top {
  transition: transform 0.3s ease;
}

header.fixed-top.scrolled {
  transform: translateY(-100%);
}

/* Header: social icons + call pill */
.social-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
}

.header-bar {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.10);
  padding: 5px 30px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.header-tagline {
  font-size: 24px;
  color: #000;
  font-weight: 400;
}

.call-btn {
  background: var(--color-primary);
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 8px 20px 8px 8px;
  color: #fff;
  text-decoration: none;
  flex: 0 0 auto;
  box-shadow: 0 25px 15px 0 rgba(76, 73, 73, 0.25);
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

.call-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.call-number {
  font-weight: 700;
  font-size: 16px;
}


/* landing-banner */

.landing-banner{
  background: url('../img/banner-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 103px;
}

.landing-banner .content-area{
  padding: 180px 0px;
}

.landing-banner .usp-item{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.landing-banner .banner-form,
.landing-cta-form .banner-form {
  background: rgba(15, 20, 15, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid var(--color-primary);
  border-radius: 20px;
  padding: 32px;
}

.landing-banner .banner-form .content,
.landing-cta-form .banner-form .content {
  margin-bottom: 24px;
}

.landing-banner .banner-form .content h2,
.landing-cta-form .banner-form .content h2 {
  font-size: 28px;
}

.landing-banner .banner-form .form-label,
.landing-cta-form .banner-form .form-label {
  color: #fff;
  font-size: 13px;
  margin-bottom: 6px;
}

.landing-banner .banner-form .form-control,
.landing-cta-form .banner-form .form-control {
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
}

.landing-banner .banner-form textarea.form-control,
.landing-cta-form .banner-form textarea.form-control {
  resize: none;
  max-height: 80px;
}

/* landing-cta-form */

.landing-cta-form{
  position: relative;
  overflow: hidden;
  background: url('../img/cta-bottom-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.landing-cta-form .cta-bg-video{
  position: absolute;
  inset: 0;
  object-fit: cover;
  z-index: 0;
  height: 100%;
}

.landing-cta-form .cta-bg-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.landing-cta-form .container{
  position: relative;
  z-index: 2;
}

.landing-cta-form .content-area{
  padding: 100px 0px;
  position: relative;
  z-index: 100;
}

/* landing-behind-scenes */

.landing-behind-scenes .accordion-item {
  background: transparent;
  border: none;
}

.landing-behind-scenes .accordion-button {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 18px;
  color: #000;
  background: transparent;
  padding: 20px 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 0 !important;
  box-shadow: none;
}

.landing-behind-scenes .accordion-button:not(.collapsed) {
  color: #000;
  background: transparent;
  box-shadow: none;
}

.landing-behind-scenes .accordion-button:focus {
  box-shadow: none;
}

.landing-behind-scenes .accordion-button::after {
  content: "+";
  background-image: none;
  font-size: 22px;
  font-weight: 400;
}

.landing-behind-scenes .accordion-button:not(.collapsed)::after {
  content: "\2212";
  background-image: none;
}

.landing-behind-scenes .accordion-body {
  padding: 0 0 20px;
  color: #000;
}

/* landing-service-types */

.landing-service-types .item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.landing-service-types .item .content {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 0;
  top: 33%;
  padding: 30px;
  z-index: 1;
}

.landing-service-types .item .badge-label {
  display: inline-block;
  background: #000;
  color: #fff;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 10px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.landing-service-types .item .content p {
  color: #fff;
  margin-bottom: 0;
}

/* landing-cta */

.landing-cta{
  background: url('../img/cta-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.landing-cta .content-area{
  padding: 100px 0px;
}


/* landing-construction-capabilities */

.landing-construction-capabilities .item{
  background: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 10px;
}

.landing-construction-capabilities .item .content{
  padding: 30px;
}


.landing-construction-capabilities .item .image-area{
  height: 100%;
}

.landing-construction-capabilities .item .image-area img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* landing-project-coordination */

.landing-project-coordination .row{
  position: relative;
}

.landing-project-coordination .row::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 49.5%;
  width: 1px;
  background: #000;
}

/* landing-process */

.landing-process{
  background: #F8F6F2;
}

.landing-process .process-tabs{
  border-bottom: none;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.landing-process .process-tabs .nav-link{
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(0, 0, 0, 0.4);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 0 0 10px;
}

.landing-process .process-tabs .nav-link.active{
  color: #000;
  background: transparent;
  border-bottom: 2px solid var(--color-primary);
}

.landing-process .process-checklist li{
  margin-bottom: 12px;
}

.landing-process .process-checklist i{
  color: var(--color-primary);
}

/* landing-gallery-tabs */

.landing-gallery-tabs .gallery-tabs{
  border-bottom: none;
  gap: 40px;
  row-gap: 10px;
}

.landing-gallery-tabs .gallery-tabs .nav-link{
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 400;
  color: #000;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.landing-gallery-tabs .gallery-tabs .nav-link::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
}

.landing-gallery-tabs .gallery-tabs .nav-link.active{
  font-weight: 700;
}

.landing-gallery-tabs .gallery-tabs .nav-link.active::before{
  background: var(--color-primary);
}

.landing-gallery-tabs .gallery-row img{
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

/* landing-why-us */

.landing-why-us .why-us-checklist li{
  margin-bottom: 16px;
}

.landing-why-us .why-us-checklist i{
  color: var(--color-primary);
}

.landing-why-us .why-us-checklist p{
  margin-bottom: 4px;
}

.landing-why-us .item{
  border-radius: 100px;
  background: #FFF;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.16);
  padding: 14px 20px;
}

.landing-why-us .item i{
  color: var(--color-primary);
}

.landing-why-us .item p{
  margin-bottom: 0;
}

/* landing-faqs */

.landing-faqs .accordion-item{
  background: #FFF;
  border: none;
  border-radius: 12px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.08);
  margin-bottom: 16px;
  overflow: hidden;
}

.landing-faqs .accordion-button{
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  color: #000;
  background: transparent;
  padding: 20px 24px;
  box-shadow: none;
}

.landing-faqs .accordion-button:not(.collapsed){
  color: #000;
  background: transparent;
  box-shadow: none;
}

.landing-faqs .accordion-button:focus{
  box-shadow: none;
}

.landing-faqs .accordion-body{
  padding-top: 0;
}



/* landing-footer */

.landing-footer{
  background: #111111;
  padding-top: 80px;
}

.landing-footer .footer-logo{
  max-width: 220px;
}

.landing-footer .footer-contact{
  gap: 32px;
  row-gap: 10px;
}

.landing-footer .footer-contact .item{
  display: flex;
  align-items: center;
  gap: 8px;
}

.landing-footer .footer-contact i{
  color: var(--color-primary);
}

.landing-footer .footer-contact p{
  color: #fff;
}

.landing-footer hr{
  border-color: #fff;
  margin: 0;
  opacity: 1;
}

.landing-footer .footer-bottom p{
  font-size: 14px;
  color: #fff;
}

.landing-footer .footer-bottom strong{
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* WordPress: keep the fixed header clear of the admin toolbar when logged in */
.admin-bar header.fixed-top{
  top: 32px;
}

@media (max-width: 782px){
  .admin-bar header.fixed-top{
    top: 46px;
  }
}




.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output{
  color: #dc3232;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
  color: #ffb900;
}