@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto+Condensed&display=swap');







* {

    margin: 0;
    padding: 0;

}

/* Color Palette */
:root {
  --primary: #a6d8f3;       /* angelic light blue */
  --secondary: #f9c7d9;     /* soft pink */
  --accent: #ffffff;        /* pure white */
  --text-dark: #2b2b2b;
  --text-light: #5e5e5e;
  --btn-dark: #2e4a62;
  --btn-light: #d86d97;
}


html {

    font-size: 10px;
    background-color: #f1f8f6;
}

/* Reset & base */
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
}

body {
  color: #333;
  line-height: 1.6;
  max-width: 1550px;
  margin: auto;
  border-left: 3px solid rgba(0, 0, 0, 0.08);
  border-right: 3px solid rgba(0, 0, 0, 0.08);
    font-family: 'Roboto Condensed', sans-serif;
    background-color: 	#F5F7F6;
}

h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* NAV -------------------------------------------------------- */

header a {
  text-decoration: none;
}

header {
  padding: 1.5rem 2rem;
  height: auto;
  position: relative;
background-color: #1c1b19;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6vh;


  /* Sticky Header */

  position: sticky;
  top: 0;
  z-index: 999;

  /* Sticky Header End */

}

.header-wrap {

  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.nav-logo /* Logo img header */ {

  width: 5rem;
  border-radius: 1.5rem;

}

/* Header Logo Test Style 2 */

#brand {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 2.5rem;
  font-weight: 600;
  color: #e0e0e0;
}

#brand img {
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 8px;
  object-fit: cover;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.3));
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65); /* subtle shadow */
}

#brand a {
  color: #f05a28;
  text-transform: uppercase;
  letter-spacing: .3px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

#brand a:hover {
  opacity: 0.7;
}


/* Header Logo Test Style 2 End */


/* General Link Styling --------------------------------------------------- */

ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 1.6rem;
  padding: 1rem 0;
  gap: 1.5rem;

}

ul li {
  padding: 0.5rem 1rem;
  transition: transform 0.3s ease;
  border-radius: 6px;
}

ul li a {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  color: #e6e6e6;

}

ul li:hover {
  transform: scale(1.08);
  background-color: rgba(255, 255, 255, 0.05);
}

ul li:hover a {
  color: #f05a28;
}








/* End General Link Styling --------------------------------------------------- */

/* CONTACT BUTTON ---------------------------------------------------------- */

#contactus {

  border-radius: 8px;
  padding: 8px 16px;
  border: 2px solid #f05a28;
  background-color: transparent;
  transition: all 0.3s ease;


}

#contactus:hover {
  background-color: #f05a28;
  transform: scale(1.05);
}

#contactus a {
  color: #f05a28;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

#contactus:hover a {
  color: white;
}

/* END CONTACT BUTTON ----------------------------------------------------------- */

/* Structures & Background Functionality ---------------------------------------- */


#hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
}

#hamburger-icon div /* Makes the 3 lines */ {
  width: 35px;
  height: 3px;
  background-color: white;
  margin: 6px 0;
  transition: 0.4s;
}


/* Open Animation */

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}


/* Open animation link structure */
.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* End Open Animation */

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;

  height: auto;
  background-color: #1d1f1dee; /* Or your nav background color */


}

/* End Structures & Background Functionality ---------------------------------------- */


/* Mobile LI STYLING ------------------------------------------------------------------ */

  .mobile-menu li {
  margin-bottom: 12px;
  width: 80%;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
  border-radius: 6px;
}

.mobile-menu li a {
  display: inline-block;
  width: 100%;
  padding: 10px 0;
  font-weight: 600;
  color: white;
  background-color: transparent;
  border: 2px solid transparent;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.mobile-menu li:hover {
  transform: scale(1.05);
}

/* Contact Excluded due to its own border style */
.mobile-menu li:not(#contactus) a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid #f05a28;
  color: #f05a28;
}

/* END Mobile LI STYLING --------------------------------------------------------------- */

/* Media Queries --------------------------------------------- */

@media only screen and (max-width: 900px) {
  header nav {
    display: none;
  }

  #hamburger-icon {
    display: block;
  }
}

@media ( max-width: 899px) {

  .header-wrap {

    justify-content: space-between;

  }

}

/* End Media Queries ------------------------------------------------ */

/* Animations -------------------------------------------------------- */

/* Nav Links PC */

@keyframes slideInLeft {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Animate desktop nav links on first load */
header nav ul li {
  opacity: 0; /* Hidden before animation */
  animation: slideInLeft 0.6s ease forwards;
}

/* Optional: Staggered delay for a smooth cascade */
header nav ul li:nth-child(1) { animation-delay: 0.1s; }
header nav ul li:nth-child(2) { animation-delay: 0.2s; }
header nav ul li:nth-child(3) { animation-delay: 0.3s; }
header nav ul li:nth-child(4) { animation-delay: 0.4s; }
header nav ul li:nth-child(5) { animation-delay: 0.5s; }

/* End Nav Links PC */

/* Nav Links Mobile */

  @keyframes slideDownFade {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.open .mobile-menu li {
  animation: slideDownFade 0.4s ease forwards;
  opacity: 0; /* ensures it fades in cleanly */
}

/* Staggered delay for cascade effect */
.open .mobile-menu li:nth-child(1) { animation-delay: 0.1s; }
.open .mobile-menu li:nth-child(2) { animation-delay: 0.2s; }
.open .mobile-menu li:nth-child(3) { animation-delay: 0.3s; }
.open .mobile-menu li:nth-child(4) { animation-delay: 0.4s; }
.open .mobile-menu li:nth-child(5) { animation-delay: 0.5s; }


.mobile-menu {
  transition: opacity 0.3s ease;
}

/* Nav Mobile Close Animation */

@keyframes slideUpFadeOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-20px);
    opacity: 0;
  }
}

/* Closing animation class */
.closing .mobile-menu li {
  animation: slideUpFadeOut 0.3s ease forwards;
}

/* End Nav Mobile Close Animation */

/* End Nav Links Mobile */


/* End Animations ----------------------------------------------------- */

/* END NAV ------------------------------------------------------ */



/* Hero */
.hero {
  position: relative;
  background: url('temp3-heromobile.webp') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 80%;
}

.hero-prefix {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.hero-cta {
  font-size: 1.6rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 1.2rem 2.4rem;
  border-radius: 0.4rem;
}

.btn-primary {
  background-color: #F05A28;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.2);
  font-size: 1.6rem;
  padding: 1.2rem 2.4rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Hover state */
.btn-primary:hover {
  background-color: #d94a1c; /* Slightly darker orange */
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Active (click) state */
.btn-primary:active {
  transform: scale(0.98);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}




/* About Section */
.about-section {

  max-width: 100%;

}

.container-two {
    max-width: 100%;
    padding: 3rem;
    padding-top: 0;


    display: flex;
    justify-content: center;

      box-shadow: 
    inset 0 -1px 3px rgba(119, 119, 119, 0.3);  /* Bottom */



}

.about-wrapper {


    height: 40rem;
    width: 80%;
    display: flex;
    justify-content: center;
    border-radius: 1rem;

    z-index: 1;
    margin-top: -25rem;


}



.about-text {
  background: #fff;
  width: 60%;

  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

.label {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: #F05A28;
  color: #a8422d;

}

#about-label {

      position: static;
  display: inline-block;
  margin-bottom: 1rem;

}

.about-title {

    font-size: 1.8rem;

}

.about-copy {
  font-size: 1.6rem;

  color: #555;
  margin-bottom: 1.5rem;
}

.about-cta {
  font-size: 1.4rem;
}

.about-image {

    width: 60%;
    height: 100%;

    display: none;

}

.about-image img {

    width: 100%;
    height: 100%;

}

/* End About Section ---------------------------------- */

/* Service Section -------------------------------------------- */

  /* Base section styling */
#services {
  padding: 40px 20px;
  margin: 0 auto;
     background-color: #f2f2f2; 

       box-shadow: 
    inset 0 -1px 3px rgba(119, 119, 119, 0.3);  /* Bottom */

    scroll-margin-top: 30rem;
}

/* Container holds all content in a vertical stack */
.container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Header styling */
#services h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-align: center;

}

#services p {
  font-size: 1.375rem;
  line-height: 1.6;
}

/* Service list wraps each service block vertically */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Individual service blocks */
.service {
  padding: 20px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);

border-left: 4px solid #f05a28; /* or a muted version for less flash */
padding-left: 1rem;

}



  .service:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-left-color: #d84a1c; /* slightly darker orange */
  transition: all 0.2s ease;
}



.service h3 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
}


.service p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.5;
}


/* End Service Section */

/* Swiper Section */
#results {

  scroll-margin-top: 20rem;

}

.swipe-background {
background-color: #f9fafb;
}

/* Text above */

.section-title {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-align: center;
}

.section-subtext {
  font-size: 1.6rem;
  max-width: 60ch;
  margin: 0 auto 3.5rem auto;
  text-align: center;
  line-height: 1.6;
}

/* Text Above End */

.swipe-master {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  width: 100%;
  overflow-x: hidden;
}

.labeled-image {

  border: 1px solid #d1d5db; /* Light gray, adjust as needed */
  border-radius: 0.6rem;     /* Match your site’s radius style */
  overflow: hidden;          /* Keeps images from overflowing corners */
  background-color: white;   /* Optional, helps define against gray backgrounds */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04); /* Optional soft depth */

}

.swiper {
  width: 90%;
  max-width: 400px;
  height: 300px;
  margin: 2rem auto;
  padding: 1rem;
  box-sizing: border-box;
    overflow-x: hidden;
}

.swiper-slide {
  border: 1px solid #ddd;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  box-sizing: border-box;
}

.swiper-slide:hover {
  transform: scale(1.01);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Before After Swiper Slide */

.labeled-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.labeled-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}

.label {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  font-size: 1.2rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.3rem 0.6rem;
  border-radius: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}




/* Middle Call-to-Action Section */


.cta-section-banner {

/* background: linear-gradient(135deg, #e0f2f1 0%, #f1f8f6 100%); */
  box-shadow: 
    inset 0 -1px 3px rgba(119, 119, 119, 0.3);  /* Bottom */
padding: 3rem 0;


  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.493), rgba(255, 255, 255, 0.363));
  background-size: cover;
  background-repeat: repeat;
  background-blend-mode: multiply;



}

#section-title-cta {

  color: #1A1A1A;
  text-shadow: 0 1px 2px rgba(255,255,255,0.25);

}


.mid-cta-content {
  position: relative;
  text-align: center;
    
}

.mid-cta-content .prefix {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  margin-bottom: 1rem;
}

.prefix {

  margin-top: 2rem;
  color: #F05A28;
  color: #a8422d;

}

#cta-prefix {

  color: #B13A00; /* deep rust orange */
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.2px;
  font-size: 1rem;
  text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.2);
  display: block;
  background-color: #ffffff8a;
  border: 1px solid #B13A00;
  padding: 1.75rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-radius: .3rem;
  letter-spacing: 1px;

}

.mid-cta-content .section-title {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.mid-cta-content .btn-primary {
  font-size: 1.6rem;
  padding: 1.2rem 2.4rem;
}

/* End MCTA SECTION --------------------------------------- */

/* Value Proposition Section */

#why-us {

  scroll-margin-top: 20rem;

}

.value-prop-section {
  padding: 4rem 0;
  background-color: #f2f2f2;
  box-shadow:     inset 0 -1px 3px rgba(119, 119, 119, 0.3);  /* Bottom */;
}

.value-prop-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.value-prop-wrapper > :nth-child(1) {

    margin-top: auto;
    margin-bottom: auto;

}



/* Left column */

.value-prop-text {

    display: flex;
    flex-direction: column;
    align-items: center;

}

.value-prop-text .prefix {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
color: #a8422d;
  margin-bottom: 1rem;
}

.value-prop-text .section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.value-prop-text .subhead {
  font-size: 1.6rem;
  color: #555;
  line-height: 1.6;
}

.prefix {

  margin-top: 0;

}

/* Right column */
.value-prop-list .value-prop-item {
  padding: 2rem 0;
}

.value-prop-list .value-prop-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.value-prop-list .value-prop-copy {
  font-size: 1.6rem;
  color: #555;
  line-height: 1.6;
}


.icon-and-text {

  display: flex;
  gap: .75rem;
  align-items: center;
  justify-content: left;

}

.icon {

width: 2.75rem;


}

.value-prop-title {

  align-self: center;
  margin-bottom: 0 !important;


}

/* Divider */
.value-prop-list hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2rem 0;
}

/* End Value Prop Section -------------------------------------- */

/* Testimonials Section */

#testimonials {

  scroll-margin-top: 20rem;

}

.testimonials-section {
   background-color:#fff; 
  padding: 6rem 0;
  text-align: center;
  
}

.testimonials-section .section-title {
  font-size: 3.5rem;
  margin-bottom: 0rem;
}

/* Grid layout for testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 4rem;
}

/* Individual testimonial cards */
.testimonial-item {
  background: #f2f2f2;
  padding: 3rem;
  padding-top: 3rem;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  border-radius: 1rem;;
}

/* Quote icon styling */
.quote-icon {
  font-size: 4rem;
  line-height: 1;
  color: #D97A5B;
  display: block;
  height: 2rem;
}

/* Testimonial text */
.testimonial-text {
  font-size: 1.6rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Author attribution */
.testimonial-author {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  text-align: right;
}


/* End Testimonials ------------------------------------------ */

/* Footer Call-to-Action Section */
.footer-cta {
  position: relative;
  padding: 8rem 0;
  color: #fff;

background: linear-gradient(180deg, #555555 0%, #1e1e1e 100%);

box-shadow: inset 0 8px 12px -8px rgba(0, 0, 0, 0.4);
box-shadow: inset 0 -6px 10px -6px rgba(0, 0, 0, 0.25);

background: linear-gradient(to bottom, #3a3a3a, #1a1a1a);






background-size: cover;
background-position: center;

}


.footer-cta-content {
  position: relative;
  text-align: center;
}

.footer-cta-content .prefix {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  margin-bottom: 1rem;
  color: #ccc;
}

.footer-cta-title {
  font-size: 3rem;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.footer-cta-btn {
  font-size: 1.6rem;
  padding: 1.2rem 2.4rem;
}




.contact-section {
  background-color: #ffffff;
  padding: 5rem 2rem;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-label {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #45513c;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.contact-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #21322f;
  margin-bottom: 0.5rem;
}

.contact-header p {
  color: #6c7a69;
  font-size: 1.2rem;
}

.contact-form {
  background-color: #f5f9f7;
  padding: 2rem;
  border-radius: 1rem;

  max-width: 60rem;
  margin: auto;
box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
border: 4px solid #cccccc;




}

.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #21322f;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 500;
  font-size: 1rem;
  color: #21322f;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.submit-btn {
  margin-top: 1rem;
  padding: 0.9rem 2rem;
  background-color: #1C1C1C;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1875rem;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;

  background: transparent;
border: 2px solid #F05A28;
color: #F05A28;
}

.submit-btn:hover {
  background-color: #5e80ad;
}


#f1f8f6


.sib-form {

    background: #f1f8f6;

}


/* FOOTER */

.footer-03 {
  background-color: #1b1b1b;
  color: #e0e0e0;
  padding: 4rem 2rem 2rem;
  font-family: 'Poppins', sans-serif;
}

.footer-wrap-03 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1280px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: nowrap; /* forces row */
}


.footer-wrap-03 >:nth-child(2) {


  height: 100%;
  margin: auto;

}

.footer-wrap-03 >:nth-child(3) {


  height: 100%;
  margin: auto;

}

.footer-col-03 {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

#brand-info h2 {
  font-size: 2.625rem;
  color: #ff5722;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

#brand-info p {
  font-size: 1.375rem;
  margin: 0.25rem 0;
}

.footer-title-03 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.footer-info-03 p {
  font-size: 1rem;
  margin: 0.25rem 0;
}

.phone-03 a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-03 a:hover {
  color: #ff5722;
}

.footer-social-03 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social-03 li {
  margin-bottom: 0.5rem;
}

.footer-social-03 a {
  font-size: 1.25rem;
  color: #cfcfcf;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-03 a:hover {
  color: #ff5722;
  padding-left: 4px;
}

.footer-areas-03 {
  font-size: 1.25rem;
  color: #cfcfcf;
  line-height: 1.6;
  margin-top: -.275rem;
}

.footer-bottom-03 {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.9rem;
  color: #aaaaaa;
}

.floating-call-btn {

  display: none;

}

/* Media Queries */

@media (max-width: 3000px) {

  /* Hero Section */

    .hero {

        height: 50vh;
        padding-bottom: 15rem;

    }

    #hero-button {

      width: 20%;
      margin: auto;
      padding: 1.5rem 3rem;
      font-size: 1.75rem;

    }

    /* About Box */

    .about-wrapper {




        border: 4px solid #333333;

        gap: 0;

    }

    .about-image {

      display: block;
      height: 100%;


    }

    /* Services */

    .service-list {

      display: grid;
      grid-template-columns: 1fr 1fr;

    }

    #services-h2 {

      margin-bottom: 0 !important;

    }

    #services-p {

      text-align: center;


    }

    .service-list >:nth-child(2) {

      border-left: 1.5px solid #ccc;
      border-right: 4px solid #f05a28; /* or a muted version for less flash */

    }

        .service-list >:nth-child(4) {

      border-left: 1.5px solid #ccc;
      border-right: 4px solid #f05a28; /* or a muted version for less flash */
      
    }


    
/* CTA Section */

.cta-section-banner {

  background: #fff;

}

  .mid-cta-content {

    max-width: 800px;

    }

    #section-title-cta {

      margin-bottom: 0;

    }

#cta-prefix {

  width: 50%;
  margin:auto;

}

#cta-button {

  max-width: 50%;
  margin: auto;

}

/* Value Prop */

#value-prop-container {

  width: 90%;
  max-width: none;

}

#value-sec-title {

  font-size: 2.82rem;
  margin-top: .5rem;
  margin-bottom: 1.5rem;
  text-align: left;

}

  .swipe-text h2 {

    margin-top: 2rem;

  }



/* Testimonial Section */

#testimonial-container {

  max-width: none;

}

.testimonials-grid {

max-width: 100%;
margin: auto;

}

.testimonial-item {

  justify-self: center;

    padding: 3rem;
    padding-top: 3rem;

    text-align: left;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 2rem;
    width: 67.5%;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;





}

.testimonial-author {
  
  padding-bottom: 0;


}


  /* Contact */


  .contact-form {

    max-width: none;
    text-align: left;

  }
  .contact-form h3 {

  font-size: 2rem;
  font-weight: 800;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 2.5rem;
  border-left: 4px solid #f05a28;
  padding-left: 1rem;


  }

  .contact-form label {


      display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;


  }

  .submit-btn {

    border-radius: .4rem;
    color: #fff;
    background: #f95a28;
    border: none;

  }

}


@media (max-width: 1300px) {


.footer-links-mobile {

  display: flex;
  flex-direction: column;
  gap: 3rem;

}

.footer-links-mobile-col {

  align-items: center;

}

}

@media (max-width: 1140px) {

  .swipe-text h2 {

    margin-top: 2rem;

  }



      .testimonials-grid {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;

    width: 100%;

  }

  .testimonial-item {

    width: 60%;

  }

  .testimonials-grid >:nth-child(2) {


    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transform: scale(1.03);
    border: 2px solid #e8d9cf;
    border-radius: .5rem;
    background-color: #fff8f3;


  }

}

@media (max-width: 1000px) {

.about-wrapper {

    max-width: 100%;
    height: auto;


    display: flex;
    justify-content: center;


    z-index: 1;


}

.about-text {

  padding-top: 2rem;
  padding-bottom: 2rem;

}

@media (max-width: 900px) {


  .hero {

      height: 30vh;


  }

  #hero-button {

    font-size: 1.5rem;
    padding: 1rem 2rem;
  }

  .hero-title {

    font-size: 3.25rem;

  }


    .about-wrapper {
    flex-direction: column;
    align-items: center;
    width: 75%;

    margin-top: -15rem;
  }

  .about-text {
    width: 100%;

    box-sizing: border-box;
  }

.about-image {

  display: none;

}



}

.footer-wrap-03 >:nth-child(1) {

  align-items: center;
  justify-content: center;

}


.footer-wrap-03 {

  display: flex;
  flex-direction: column;
  align-items: center;

}
}

@media (max-width: 768px) {

    .hero {

        padding-bottom: 35rem;
        height: 10vh;

    }



    .hero-content {

      margin-top: 21.5rem;

    }

    .hero-title {

      font-size: 3rem;

      margin-top: 1rem;

    }

    #hero-button {

      font-size: 1.375rem;
      padding: 1.2rem 2.4rem;

    }

    /* Before & After Photos */

    .swipe-master {

      display: flex;
      flex-direction: column;

    }

    .swipe-text h2 {

      margin-top: 2rem;

    }


  /* Value Section */

  .value-prop-wrapper {


    display: flex;
    flex-direction: column;

  }


  .value-prop-list {


    display: flex;
    flex-direction: column;


  }


  /* Services */


  .service-list {

    display: flex;
    flex-direction: column;

  }

  .service-list >:nth-child(2) {

    border-right: 1.5px solid #ccc;
    border-left: 4px solid #f05a28;

  }

    .service-list >:nth-child(4) {

    border-right: 1.5px solid #ccc;
    border-left: 4px solid #f05a28;

  }

.floating-call-btn {


  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background-color: #fff;
  color: #fff;
  font-size: 1.8rem;
  border-radius: 50%;
  text-align: center;
  line-height: 56px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: background-color 0.2s ease-in-out;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.floating-call-btn:hover {
  transform: scale(1.1);
}

.floating-call-btn:active {
  transform: scale(1.1);
}


  @media (max-width: 500px) {

    .hero {

      height: 25vh;

    }


    #hero-button {

      padding: 1rem 2rem;
      font-size: 1.5rem;
      display: block;
      width: 50%;

    }

    .about-wrapper {


        border: 2px solid #333333;
        border-radius: 0;
        width: 100%;
        max-width: none;

    }

    .about-title {

      font-size: 2.25rem;

    }

  }

  @media (max-width: 450px) {

  .about-wrapper {

    margin-top: -12rem;

  }    

  #brand a {

    font-size: 1.75rem;

  }

  }





  


}

#privacy {

  text-decoration: none;
  color: #fff;

}