@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@400;500;600;700&display=swap');

/* Reset / Base CSS */

* {

    margin: 0;
    padding: 0;

}

html {

  font-size: 10px;
  margin: 0;
  padding: 0;

}

:root {

  --color-bg-dark: #2b2b2b;        /* warm charcoal (NOT black) */
  --color-bg-dark-2: #3a3a3a;      /* cards / layers */

  /* === LIGHT === */
  --color-bg-light: #ffffff;
  --color-bg-light-soft: #f4f4f4;

  /* === ACCENT === */
  --color-accent: #e6b800;         /* contractor gold */
  --color-accent-hover: #c79f00;

  /* === TEXT === */
  --color-text-main: #f1f1f1;
  --color-text-muted: #c7c7c7;
  --color-text-dark: #1a1a1a;

  /* === HEADINGS === */
  --color-heading: #ffffff;
  --color-heading-dark: #1a1a1a;

  /* === UI === */
  --color-border: #4a4a4a;
  --color-border-light: #e5e5e5;

  /* === SHADOW === */
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.2);
  --shadow-pop: 0 15px 40px rgba(0,0,0,0.3);

}

body {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
}

/* End Reset / Base CSS */

/* Misc --------------------------- */

  #contact04 {

    scroll-margin-top: 20rem;

  }

  #ourwork {

    scroll-margin-top: 20rem;

  }


  #services {

    scroll-margin-top: 20rem;

  }

  #about {

    scroll-margin-top: 20rem;

  }

/* End Misc ---------- */

/* Nav -------------------------------- */

.container-808 {
  max-width: 1170px;
  margin: auto;
  padding: 0 15px;
}

.header-808 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 10px 0;
  z-index: 10;
    background-color: var(--color-bg-dark);
}

.header-808 .container-808 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-808 .logo-808 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-heading);
  text-transform: capitalize;
}

.header-808 .menu-btn-808 {
  display: none;
    background-color: var(--color-bg-dark);
}

.header-808 .menu-808 li {
  display: inline-block;
}

.header-808 .menu-808 li + li {
  margin-left: 40px;
}

.header-808 .menu-808 a {
  font-size: 16px;
  display: block;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text-main);
  font-weight: 500;
  position: relative;
  transition: color 0.5s;
}

.header-808 .menu-808 a::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: var(--color-accent);
  transform: scale(0);
  transition: 0.5s;
}

.header-808 .menu-808 a:hover {
  color: var(--color-accent);
}

.header-808 .menu-808 a:hover::after {
  transform: scale(1);
}

@media (max-width: 991px) {
  .header-808 {
    padding: 8px 0;
  }

  .header-808 .menu-btn-808 {
    height: 36px;
    width: 44px;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  .header-808 .menu-btn-808 .line-808 {
    position: absolute;
    height: 2px;
    width: 30px;
    background-color: var(--color-heading);
    transition: transform 0.5s;
  }

  .header-808 .menu-btn-808 .line-1-808 {
    transform: translateY(-8px);
  }

  .header-808 .menu-btn-808 .line-3-808 {
    transform: translateY(8px);
  }

  .header-808 .menu-btn-808.active .line-2-808 {
    transform: rotate(-45deg);
  }

  .header-808 .menu-btn-808.active .line-1-808,
  .header-808 .menu-btn-808.active .line-3-808 {
    transform: translateY(0) rotate(-135deg);
  }

  .header-808 .menu-808 {
    position: fixed;
    left: 100%;
    top: 0;
    height: 100%;
    width: 280px;
    padding: 62px 0 30px;
    background-color: var(--color-bg-dark);
    border-left: 1px solid var(--color-border);
    transition: transform 0.5s;
  }

  .header-808 .menu-808.open {
    transform: translateX(-100%);
  }

  .header-808 .menu-808::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 62px;
    box-sizing: border-box;
    border-bottom: 1px solid var(--color-border);
    background-color: var(--color-bg-dark);
  }

  .header-808 .menu-808 > ul {
    max-height: 100%;
    overflow-y: auto;
  }

  .header-808 .menu-808 li {
    display: block;
  }

  .header-808 .menu-808 li + li {
    margin: 0;
  }

  .header-808 .menu-808 a {
    padding: 12px 30px;
    color: var(--color-text-main);
  }

  .header-808 .menu-808 a::after {
    content: none;
  }

  .header-808 .menu-808 a:hover {
    color: var(--color-accent);
    background-color: var(--color-bg-dark-2);
  }
}

/* End nav ---------------------------- */

/* Hero Section ---------------------------------------------------------------------- */

.hero {
  padding: 8.5rem 1.8rem 4.5rem;
  background-color: var(--color-bg-light);
}

.hero-container {
  max-width: 60rem;
  margin: 0 auto;
}

.hero-text {
  margin-bottom: 2.8rem;
}

.hero-eyebrow {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.22rem;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.3rem;
}

.hero h1 {
  font-size: 3.4rem;
  line-height: 1.05;
  letter-spacing: -0.09rem;
  color: var(--color-heading-dark);
  margin-bottom: 1.8rem;
  font-weight: 700;
}

.hero-description {
  font-size: 1.38rem;
  line-height: 1.8;
  color: var(--color-text-dark);
  margin-bottom: 2.5rem;
  max-width: 52rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.45rem;
  font-weight: 700;
  padding: 1.15rem 1.9rem;
  border-radius: 0.95rem;
  transition: all 0.25s ease;
}

/* PRIMARY CTA */
.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-bg-dark);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-0.2rem);
  box-shadow: var(--shadow-pop);
}

/* SECONDARY CTA */
.btn-secondary {
  background-color: transparent;
  color: var(--color-accent);
  border: 0.15rem solid var(--color-accent);
}

.btn-secondary:hover {
  background-color: var(--color-accent);
  color: var(--color-bg-dark);
  transform: translateY(-0.2rem);
}

.hero-image-wrap {
  position: relative;
  margin-top: 3.2rem;
}

.hero-image {
  display: block;
  width: 100%;
  height: 28vh;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: var(--shadow-pop);
}

.hero-badge {
  position: absolute;
  left: 1.6rem;
  bottom: -1.8rem;
  background-color: var(--color-bg-light);
  border-radius: 1.4rem;
  padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow-soft);
  max-width: 21rem;
  border: 1px solid var(--color-border-light);
}

.badge-number {
  display: block;
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.badge-text {
  display: block;
  font-size: 1.22rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ===== HERO TABLET ===== */

@media (min-width: 48em) {
  .hero {
    padding: 10.5rem 2.4rem 5.5rem;
  }

  .hero-container {
    max-width: 72rem;
  }

  .hero-text {
    margin-bottom: 3.2rem;
  }

  .hero h1 {
    font-size: 5rem;
    max-width: 58rem;
    margin-left: auto;
    margin-right: auto;
    margin-left: 0;
  }

  .hero-description {
    font-size: 1.75rem;
    max-width: 56rem;
  }

  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.4rem;
  }

  .btn {
    min-width: 18rem;
  }

  .hero-image {
    height: 38rem;
  }

  .hero-badge {
    left: 2rem;
    bottom: -2rem;
    padding: 1.5rem 1.7rem;
    max-width: 22rem;
  }

  .badge-number {
    font-size: 2.3rem;
  }
}
@media (min-width: 1000px) {
  .hero {
    padding: 12rem 2.4rem 7rem;
  }

  .hero-container {
    max-width: 120rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 6rem;
  }

  .hero-text {
    text-align: left;
    margin-bottom: 0;
  }

  .hero h1 {
    max-width: 58rem;
    font-size: 6.2rem;
    line-height: 1.02;
  }

  .hero-description {
    max-width: 54rem;
    margin: 0 0 2.8rem 0;
    font-size: 1.9rem;
    line-height: 1.75;
  }

  .hero-buttons {
    justify-content: flex-start;
    gap: 1.4rem;
  }

  .btn {
    min-width: 22rem;
  }

  .hero-image-wrap {
    margin-top: 0;
    justify-self: end;
    width: 100%;
    max-width: 48rem;
  }

  .hero-image {
    height: 52rem;
    width: 100%;
  }

  .hero-badge {
    left: 2rem;
    bottom: -2rem;
    max-width: 24rem;
  }
}

/* About Section -------------------------------------------------------- */

.about {
  padding: 3.5rem 0 1.5rem;
  background-color: var(--color-bg-light);
}

.about .container {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 1.8rem;
}

.about-text {
  margin-bottom: 3rem;
}

.about-text h2 {
  font-size: 2.5rem;
  line-height: 1.15;
  letter-spacing: -0.04rem;
  margin-bottom: 1.4rem;
  color: var(--color-heading-dark);
  font-weight: 700;
}

.about-text p {
  font-size: 1.46rem;
  line-height: 1.8;
  color: var(--color-text-dark);
  margin-bottom: 2rem;
  max-width: 52rem;
}

.about-btn {
  display: inline-block;
  padding: 1.15rem 1.8rem;
  background-color: var(--color-accent);
  color: var(--color-bg-dark);
  text-decoration: none;
  font-size: 1.45rem;
  font-weight: 700;
  border-radius: 0.9rem;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-soft);
}

.about-btn:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-0.2rem);
  box-shadow: var(--shadow-pop);
}

.about-image img {
  display: block;
  width: 100%;
  height: 26vh;
  object-fit: cover;
  border-radius: 1.8rem;
  max-width: 60rem;
  box-shadow: var(--shadow-pop);

}

  .about-image {

    padding-bottom: 3rem;

  }

@media (min-width: 768px) {
  .about {
    padding: 5rem 0 4.5rem;
  }

  .about-flex {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;

  }



  .about-text {
    max-width: 45rem;
    margin: 0 auto;
    padding-bottom: 2.8rem;
    text-align: center;
  }

  .about-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-image img {
    margin: 0 auto;
    height: 30vh;
    max-width: 44rem;
  }
}

@media (min-width: 1000px) {
  .about {
    padding: 5.5rem 0 5rem;
  }

  .about-text {
    max-width: 54rem;
    padding-bottom: 3.2rem;
  }

  .about-text h2 {
    font-size: 2.8rem;
  }

  .about-text p {
    font-size: 1.5rem;
    max-width: 54rem;
  }

  .about-image img {
    height: 46vh;
    max-width: 48rem;
  }
}

/* End About Section ---------------------------------------------------- */

/* Services Section -------------------------------------------------------------- */

.services {
  padding: 5.5rem 0;
  background-color: var(--color-bg-dark);
}

.services .container01 {
  max-width: 150rem;
  margin: 0 auto;
  padding: 0 1.8rem;
}



.section-header {
  text-align: center;
  margin-bottom: 3.4rem;
}

#service-eyebrow {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.45rem;
  line-height: 1.15;
  letter-spacing: -0.03rem;
  margin-bottom: 1rem;
  color: var(--color-heading);
  font-weight: 700;
}

.section-header p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 58rem;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  gap: 1.8rem;
}

.service-card {
  background: linear-gradient(
    145deg,
    var(--color-bg-dark-2),
    #3f3f3f
  );
  padding: 2.4rem 2rem;
  border-radius: 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: var(--shadow-pop);
  border-color: var(--color-accent);
}


.service-card h3 {
  font-size: 1.85rem;
  line-height: 1.25;
  margin-bottom: 0.9rem;
  color: var(--color-heading);
  font-weight: 700;
}

.service-card h3 {
  display: inline-block;
  position: relative;
  padding-bottom: 0.6rem;
}

.service-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0.6); /* controls length */
  transform-origin: left;
}

.service-card p {
  font-size: 1.42rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin: 0;
}

@media(min-width: 1400px) {

    .services-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

}



/* End Services Section ------------------------------------------------------ */
/* Why Us Section ---------------------------------------------- */

.why-us {
  padding: 5rem 0;
  background-color: var(--color-bg-dark);
}

.why-us .container {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 1.8rem;
}

.why-us-header {
  text-align: center;
  margin-bottom: 3.2rem;
}

.why-us-header h2 {
  font-size: 2.6rem;
  line-height: 1.15;
  letter-spacing: -0.03rem;
  margin-bottom: 0.8rem;
  color: var(--color-heading);
  font-weight: 700;
}

.why-us-header p {
  font-size: 1.45rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 52rem;
  margin: 0 auto;
}

.why-us-img {
  width: 100%;
  height: 30vh;
  object-fit: cover;
  border-radius: 1.4rem;
  margin-top: 2.4rem;
  box-shadow: var(--shadow-soft);
}

.why-us-list {
  display: grid;
  gap: 2.2rem;
  width: 90%;
  margin: 0 auto;
}

.why-item {
  border-left: 4px solid var(--color-accent);
  padding-left: 1.8rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.why-item:hover {
  transform: translateX(0.3rem);
  border-color: var(--color-accent-hover);
}

.why-item h3 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
  color: var(--color-heading);
  font-weight: 700;
}

.why-item p {
  font-size: 1.38rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

@media (min-width: 1000px) {
  .why-us-list {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
  }

  .why-item {
    padding-left: 2rem;
  }

  .why-item h3 {
    font-size: 1.9rem;
  }

  .why-item p {
    font-size: 1.45rem;
  }
}


/* End Why Us Section -------------------------------------------------- */


/* Our Work Section ---------------------------------------------------- */

.project-gallery-011 {
  padding: 4.5rem 0 5rem;
  background-color: var(--color-bg-light);
}

.project-gallery-011 .container-011 {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 1.8rem;
}

.project-gallery-011 .section-header-011 {
  text-align: center;
  margin-bottom: 3.2rem;
  display: flex;
  flex-direction: column;
}

/* HEADER TEXT */
.project-gallery-011 .hero-eyebrow-011 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.project-gallery-011 .title-011 {
  font-size: 2.9rem;
  line-height: 1.1;
  letter-spacing: -0.04rem;
  color: var(--color-heading-dark);
  font-weight: 700;
}

.title-p-011 {
  font-size: 1.55rem;
  line-height: 1.75;
  color: #6b6b6b;
  max-width: 56rem;
  margin: 1.2rem auto 0;
}

/* CARD WRAP */
.project-gallery-content-011 {
  background-color: var(--color-bg-light);
  border-radius: 1.8rem;
  padding: 1.6rem 1.6rem 2.6rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
}

/* GALLERY ITEMS */
.project-gallery-item {
  background-color: var(--color-bg-light);
  border-radius: 1.5rem;
  overflow: hidden;
}

.project-gallery-item img,
.project-img {
  display: block;
  width: 100%;
  height: 32rem;
  object-fit: cover;
  border-radius: 1.4rem;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.project-gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.03);
}

/* PAGINATION */
.project-gallery-011 .swiper-pagination {
  position: relative;
  margin-top: 2.6rem;
}

.project-gallery-011 .swiper-pagination-bullet {
  width: 0.95rem;
  height: 0.95rem;
  background-color: var(--color-border-light);
  opacity: 1;
  transition: all 0.3s ease;
}

.project-gallery-011 .swiper-pagination-bullet-active {
  width: 2.4rem;
  border-radius: 999rem;
  background-color: var(--color-accent);
}

/* FIXED HEIGHT TITLE (kept intentionally) */
.title-011 {
  display: block;
  height: 2.8rem;
  margin-bottom: 3rem;
  margin-top: 1rem;
}

/* End Our Work Section --------------------------------------- */

.testimonials,
.gallery,
.swiper,
.swiper-wrapper,
.swiper-slide,
.swiper-pagination {
  position: relative !important;
  z-index: 1 !important;
}

/* Testimonials Section -------------------------------------------------------- */

#testimonials {
  scroll-margin-top: 20rem;
}

.testimonials-section {
  background-color: var(--color-bg-dark);
  padding: 5rem 0;
  text-align: center;
}

.testimonials-section .container {
  max-width: 93rem;
  margin: 0 auto;
  padding: 0 1.8rem;
}

/* HEADER */
.testimonials-section .hero-eyebrow {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.testimonials-section .section-title {
  font-size: 2.6rem;
  line-height: 1.12;
  letter-spacing: -0.03rem;
  margin-bottom: 3rem;
  color: var(--color-heading);
  font-weight: 700;
}

/* GRID */
.testimonials-grid {
  display: grid;
  gap: 1.8rem;
  max-width: 56rem;
  margin: 0 auto;
}

/* CARD */
.testimonial-item {
  background-color: var(--color-bg-dark-2);
  padding: 2rem 1.8rem;
  border-radius: 1.4rem;
  text-align: left;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testimonial-item:hover {
  transform: translateY(-0.35rem);
  box-shadow: var(--shadow-pop);
  border-color: var(--color-accent);
}

/* QUOTE ICON */
.quote-icon {
  display: block;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

/* TEXT */
.testimonial-text {
  font-size: 1.42rem;
  line-height: 1.8;
  color: var(--color-text-main);
  margin: 0 0 1.4rem;
}

/* AUTHOR */
.testimonial-author {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-heading);
  margin: 0;
  text-align: right;
}

@media (min-width: 768px) {
  .testimonials-section {
    padding: 5.5rem 0;
  }

  .testimonials-section .section-title {
    font-size: 2.9rem;
    margin-bottom: 3.2rem;
  }

  .testimonials-grid {
    max-width: 62rem;
  }

  .testimonial-item {
    padding: 2.2rem 2rem;
  }

  .testimonial-text {
    font-size: 1.48rem;
  }
}

@media (min-width: 1000px) {
  .testimonials-section {
    padding: 6rem 0;
  }

  .testimonials-grid {
    max-width: 68rem;
    gap: 2rem;
  }

  .testimonials-section .section-title {
    font-size: 3.1rem;
  }
}
/* End Testimonials ------------------------------------------ */


/* Contact Form  --------------------------------------------------- */

.footer-cta {
  position: relative;
  padding: 5rem 0;
  background-color: var(--color-bg-light);
  border-top: 1px solid var(--color-border-light);
  color: var(--color-text-dark);
}

.footer-cta-content {
  position: relative;
  text-align: center;
}

/* HEADER */
.footer-cta-content .prefix {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
  font-weight: 700;
}

.footer-cta-title {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 3rem;
  color: var(--color-heading-dark);
  font-weight: 700;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* FORM WRAP */
.contact-form {
  background-color: var(--color-bg-light-soft);
  padding: 2.4rem 2rem;
  border-radius: 1.4rem;
  width: 85%;
  max-width: 60rem;
  margin: auto;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border-light);
}

.contact-form h3 {
  font-size: 1.7rem;
  margin-bottom: 1.6rem;
  color: var(--color-heading-dark);
  font-weight: 700;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

/* INPUTS */
.contact-form label {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-text-dark);
}

.contact-form input,
.contact-form textarea {
  padding: 1rem 1.1rem;
  border: 1px solid var(--color-border-light);
  border-radius: 0.7rem;
  font-size: 1.05rem;
  font-family: inherit;
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(230, 184, 0, 0.15);
}

/* BUTTON */
.submit-btn {
  margin-top: 1.2rem;
  padding: 1.1rem 2.2rem;
  background-color: var(--color-accent);
  color: var(--color-bg-dark);
  font-weight: 700;
  font-size: 1.25rem;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-soft);
}

.submit-btn:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-0.15rem);
  box-shadow: var(--shadow-pop);
}

@media (min-width: 768px) {

  .footer-cta-title {

    width: 90%;
    margin-left: auto;
    margin-right: auto;

  }

}

/* End Contact Form -------------------------------------------------------- */

/* ===== FOOTER ===== */

.footer-wrapper {
  background: var(--color-bg-dark);
}

.site-footer {
  color: var(--color-text-main);
  padding: 6rem 1.8rem 8rem;
  max-width: 160rem;

  margin: auto;
}

/* BRAND */
.footer-brand {
  margin-bottom: 3rem;
}

.footer-brand h2 {
  font-size: 2.8rem;
  letter-spacing: -0.03rem;
  margin-bottom: 1rem;
  color: var(--color-heading);
}

.footer-brand p {
  font-size: 1.45rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
}

/* LINKS */
.footer-links {
  margin-bottom: 3rem;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
  color: var(--color-heading);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 1rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: 1.45rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
}

/* CONTACT */
.footer-contact {
  margin-bottom: 3rem;
}

.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact p {
  font-size: 1.45rem;
  color: var(--color-text-muted);
  margin: 0;
}

.footer-contact a {
  text-decoration: none;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--color-accent);
}

/* BOTTOM */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.footer-bottom p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.footer-bottom span {
  display: block;
  font-size: 1.2rem;
  color: var(--color-text-muted);
  opacity: 0.7;
}

/* ===== 1000px ===== */
@media (min-width: 1000px) {

  .site-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    text-align: center;
    padding-bottom: 2.5rem;
  }

  .site-footer div:nth-child(1) {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
  }

  /* LINKS */
  .footer-links {
    margin-right: 5rem;
  }

  .footer-links h3 {
    font-size: 2rem;
  }

  .footer-links ul {
    display: flex;
    justify-content: center;
    gap: 1.6rem;
  }

  .footer-links a {
    font-size: 1.6rem;
  }

  /* CONTACT */
  .footer-contact {
    margin-right: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact ul {
    flex-direction: row;
    gap: 3rem;
  }

  .site-footer div:nth-child(4) {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    border: none;
  }

   .footer-links li + li {
    margin-top: 0;
  }

  #footerp {

    margin-bottom: 2rem;

  }

}

/* ===== 1600px ===== */
@media (min-width: 1600px) {

  .site-footer {
    padding: 4rem 2rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    row-gap: 4rem;
  }

  .site-footer > div:nth-child(1) {
    grid-column: 1;
  }

  .site-footer > div:nth-child(2) {
    grid-column: 2;
    margin: 0;
  }

  .site-footer > div:nth-child(3) {
    grid-column: 3;
    margin: 0;
  }

  .site-footer > div:nth-child(4) {
    grid-column: 1 / -1;
    text-align: center;
    justify-self: center;
    border-top: 1px solid var(--color-border);
  }

  .footer-bottom {
    padding-top: 1rem;
  }

  #footerp {

    text-align: left;
    margin-left: 6.5rem;

  }

  #footerh2 {

    text-align: left;

  }
}


/* Floating Call */

.floating-call-btn {

  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background-color: #f5f5f3;
  color: #2F3E4F;
  font-size: 1.8rem;
  border-radius: 50%;
  text-align: center;
  line-height: 56px;
  box-shadow: 0 4px 12px var(--logo-shadow);
  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);
}

/* End Floating Call */