@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');


*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {

    font-size: 10px;
    scroll-behavior: smooth;

}

body {

  font-family: 'Barlow', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;


}


:root {
  /* BASE BACKGROUNDS */
  --color-bg-light: #f4f6f8;
  --color-bg-dark: #0a0e12;

  /* CORE BRAND */
  --color-primary: #0a0e12;
  --color-secondary: #f8fafc;

  /* ACCENT (POP COLOR) */
  --color-accent: #00d1b2;
  --color-accent-strong: #00a896;

  /* TEXT */
  --color-heading-light: #0b0f14;
  --color-text-light: #4b5563;

  --color-heading-dark: #f1f5f9;
  --color-text-dark: #aeb8c4;

  /* UI */
  --color-border-light: rgba(0,0,0,0.08);
  --color-border-dark: rgba(255,255,255,0.10);

  /* STATES */
  --color-hover-dark: #05080c;
  --color-hover-accent: #009e88;
  --color-white: #ffffff;
}

/* Misc */


#home {

    scroll-margin-top: 10rem;

}

#contact04 {

    scroll-margin-top: 10rem;

}


#testimonials {

    scroll-margin-top: 10rem;

}


#ourwork {

    scroll-margin-top: 10rem;

}


#services{

    scroll-margin-top: 10rem;

}


#about {

    scroll-margin-top: 10rem;

}

#footerul {

  padding-top: 0rem;

}

#li1 {

    margin-top: 0rem;
}

/* Rework */

.process {
  padding: 6rem 2rem;
  background: var(--color-bg-light);
}

.process-container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
}

.process-header {
  max-width: 70rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.process-title {
  margin-bottom: 1.6rem;
  color: var(--color-heading-light);
  font-size: 3.2rem;
  line-height: 1.1;
}

.process-text {
  color: var(--color-text-light);
  font-size: 1.6rem;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.process-card {
  padding: 2.8rem;
  background: #ffffff;
  border: 0.1rem solid var(--color-border-light);
  border-radius: 1.6rem;
  text-align: center;
}

.process-number {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.8rem;
  border-radius: 50%;
  background: var(--color-accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
}

.process-card-title {
  margin-bottom: 1rem;
  color: var(--color-heading-light);
  font-size: 2rem;
  line-height: 1.2;
}

.process-card-text {
  margin: 0;
  color: var(--color-text-light);
  font-size: 1.5rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .process {
    padding: 8rem 3rem;
  }

  .process-header {
    margin-bottom: 5rem;
  }

  .process-title {
    font-size: 4rem;
  }

  .process-text {
    font-size: 1.7rem;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }

  .process-card {
    padding: 3.2rem;
  }
}

@media (min-width: 1600px) {
  .process {
    padding: 10rem 4rem;
  }

  .process-container {
    max-width: 132rem;
  }

  .process-title {
    font-size: 4.8rem;
  }

  .process-text {
    font-size: 1.8rem;
  }

  .process-card-title {
    font-size: 2.2rem;
  }

  .process-card-text {
    font-size: 1.6rem;
  }

    .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
  }
}


/* End Rework */

/* NAV Section ------------------------------------- */



.container-808{
  max-width: 1470px;
  margin: auto;
  padding: 0 15px;
  padding-bottom: 12px;
  padding-top: 6px;

  padding-left: 3rem;
  padding-right: 3rem;
  
}
.header-808{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 10px 0;
  z-index: 10;
  background-color: var(--color-bg-dark); /* BG For Entire Nav ( When Closed / PC - Note 9 */
  border-bottom: 1px solid var(--color-border-dark);
}
.header-808 .container-808{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-808 .logo-808{
  font-size: 18px;
  font-weight: 600;
  color: hsl(0, 0%, 100%);
  text-transform: capitalize;
}
.header-808 .menu-btn-808{
  display: none;
}
.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: hsl(0, 0%, 100%);
  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: hsl(72, 87%, 51%); /* Controls Click Color for Ul Links - Note 10 */
  transform: scale(0);
  transition: 0.5s;
}
.header-808 .menu-808 a:hover{
  color: hsl(72, 87%, 51%); /* Controls Hover Color for Ul Links - Note 11 */
}
.header-808 .menu a:hover::after{
  transform: none;
}

@media(max-width: 1050px){
  .header-808{
    padding: 8px 0;
    padding-bottom: 0;
  }
  .header-808 .menu-btn-808{
    height: 36px;
    width: 44px;
    background-color: transparent;
    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: hsl(0, 0%, 100%);
    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: 100%;
    padding: 62px 0 30px;
    transition: transform 0.5s;
     backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.75); /* BG COlOR FOR OPEN NAV - Note 8 */
    border-bottom: 1px solid var(--color-border-dark);


  } 
  .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 hsla(0, 0%, 100%, 0.15);
  }
  .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;
  }
  .header-808 .menu-808 a::after{
    content: none;
  }

  /* */
.header-808 .logo-808{
  transition: opacity 0.3s ease;

}

.header-808.menu-open .logo-808{
  opacity: 0;
  pointer-events: none;

}

  .header-808 .logo-808.logo-in-menu{
    position: fixed;
    top: 22px;
    left: 24px;
    z-index: 12;
    color: #fff;
    font-size: 18px; /* Font Size For Company Name Inside Nav - Note 6 */
    line-height: 1;
    pointer-events: none;
  }

  .header-808 .menu-btn-808{
    position: fixed;
    top: 14px; /* Unknown Use - Doesnt Do anything */
    right: 18px; /* Controls X Axis of Hamburger Icon - Note 7 */
    z-index: 13;
  }

  .menu-btn-808 {

    padding-bottom: 1.6rem; /* Controls Y Axis of Hamburger Icon - Note 1 */

  }

  .header-808 .menu-btn-808.menu-open-adjust {
  transform: translateY(26%); /* Controls Y Axis Of X in open Menu - Note 2 */
}

.header-808 .menu-808::before{
  height: 80px; /* Controls Height Of Open Nav - Note 4*/
}

.header-808 .logo-808.logo-in-menu{
  top: 28px; /* Controls Y Axis Of Company Name In Open Nav - Note 3 */
}

.header-808 .menu-btn-808{
  top: 20px; /* Controls Y Axis In Hamburger Menu */
  /* This effects the hamburger icon and X - Use note 1 & 2 for better adjustments */
}

ul {

    padding-top: 3rem; /* Controls Space Between Header and Link List - Note 5 */

}
  
}

.header-808 .logo-808{
  transition: opacity 0.3s ease;
}

/* End Nav Section ---------------------------------------- */

/* ===== HERO ===== */

.hero-102 {
  width: 100%;
  background-color: var(--color-bg-dark);
}

.hero-container-102 {
  max-width: 120rem;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;

  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* ===== CONTENT ===== */

.hero-content-102 {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.hero-eyebrow-102 {
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: var(--color-accent);
}

.hero-title-102 {
  font-size: 3.2rem;
  line-height: 1.2;
  color: var(--color-heading-dark);
}

.hero-description-102 {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--color-text-dark);
}

/* ===== BUTTONS ===== */

.hero-buttons-102 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-primary-102,
.btn-secondary-102 {
  display: inline-block;
  text-decoration: none;
  font-size: 1.4rem;
  padding: 1.2rem 2rem;
  border-radius: 0.4rem;
  text-align: center;
  transition: all 0.2s ease;
}

/* Primary */

.btn-primary-102 {
  background-color: var(--color-accent);
  color: #000;
}

.btn-primary-102:hover {
  opacity: 0.9;
}

/* Secondary */

.btn-secondary-102 {
  border: 0.1rem solid var(--color-heading-dark);
  color: var(--color-heading-dark);
}

.btn-secondary-102:hover {
  background-color: var(--color-heading-dark);
  color: var(--color-bg-dark);
}

/* ===== IMAGE ===== */

.hero-image-wrap-102 {
  width: 100%;
}

.hero-image-102 {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.6rem;
}

/* ===== TABLET (768px) ===== */

@media (min-width: 76.8rem) {

  .hero-container-102 {
    flex-direction: row;
    align-items: center;
    gap: 6rem;
  }

  .hero-content-102 {
    width: 50%;
  }

  .hero-image-wrap-102 {
    width: 50%;
  }

  .hero-title-102 {
    font-size: 4rem;
  }

  .hero-buttons-102 {
    flex-direction: row;
  }
}

/* ===== DESKTOP (1600px) ===== */

@media (min-width: 160rem) {

  .hero-title-102 {
    font-size: 4.8rem;
  }

  .hero-description-102 {
    font-size: 1.8rem;
  }
}

/* End Hero Section ------------------------------------ */

/* ===== SERVICES ===== */

.services-102 {
  width: 100%;
  background-color: var(--color-bg-dark);
  border-top: 0.1rem solid var(--color-border-dark);
  border-bottom: 0.1rem solid var(--color-border-dark);
}

.services-container-102 {
  max-width: 120rem;
  margin: 0 auto;
  padding: 8rem 2rem;
  padding-top: 4rem;

  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* HEADING */

.services-heading-102 {
  text-align: center;
}

.services-eyebrow-102 {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.services-title-102 {
  font-size: 2.8rem;
  color: var(--color-heading-dark);
}

/* GRID */

.services-grid-102 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}

/* CARD (dark + pop) */

.service-card-102 {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 2.2rem;
  border-radius: 0.6rem;

  border: 0.1rem solid var(--color-border-dark);
  border-right: .3rem solid var(--color-accent);

  display: flex;
  flex-direction: column;
  gap: 1rem;

  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card-102:hover {
  transform: translateY(-0.4rem);
  border-color: var(--color-accent);
}

/* TEXT */

.service-title-102 {
  font-size: 1.8rem;
  color: var(--color-heading-dark);
}

.service-text-102 {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color-text-dark);
}

/* ===== TABLET (768px) ===== */

@media (min-width: 76.8rem) {

  .services-grid-102 {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-title-102 {
    font-size: 3.4rem;
  }
}

/* ===== DESKTOP (1600px) ===== */

@media (min-width: 160rem) {

  .services-grid-102 {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-title-102 {
    font-size: 4rem;
  }

  .service-text-102 {
    font-size: 1.6rem;
  }
}

/* End Service Section ---------------------------- */


/* ===== ABOUT ===== */

.about-102 {
  width: 100%;
  background-color: var(--color-bg-dark);
  border-bottom: 1px solid var(--color-border-dark);
}

.about-container-102 {
  max-width: 120rem;
  margin: 0 auto;
  padding: 8rem 2rem;

  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* IMAGE */

.about-image-wrap-102 {
  width: 100%;
}

.about-image-102 {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.6rem;
}

/* CONTENT */

.about-content-102 {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.about-eyebrow-102 {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-accent);
}

.about-title-102 {
  font-size: 2.8rem;
  line-height: 1.3;
  color: var(--color-heading-dark);
}

.about-text-102 {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--color-text-dark);
}

/* BUTTON */

.about-btn-102 {
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  font-size: 1.4rem;
  padding: 1.2rem 2rem;
  background-color: var(--color-accent);
  color: #000;
  border-radius: 0.4rem;
  width: fit-content;
}

/* ===== TABLET (768px) ===== */

@media (min-width: 76.8rem) {

  .about-container-102 {
    flex-direction: row;
    align-items: center;
    gap: 6rem;
  }

  .about-image-wrap-102 {
    width: 50%;
  }

  .about-content-102 {
    width: 50%;
  }

  .about-title-102 {
    font-size: 3.4rem;
  }
}

/* ===== DESKTOP (1600px) ===== */

@media (min-width: 160rem) {

  .about-title-102 {
    font-size: 4rem;
  }

  .about-text-102 {
    font-size: 1.8rem;
  }
}

/* End About Section ------------------------------------- */

/* ===== TESTIMONIALS ===== */

.testimonials-102 {
  width: 100%;
  background-color: var(--color-bg-dark);
}

.testimonials-container-102 {
  max-width: 120rem;
  margin: 0 auto;
  padding: 8rem 2rem;
  padding-top: 6rem;
  padding-bottom: 4rem;

  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* HEADING */

.testimonials-heading-102 {
  text-align: center;
}

.testimonials-eyebrow-102 {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.testimonials-title-102 {
  font-size: 2.8rem;
  color: var(--color-heading-dark);
}

/* GRID */

.testimonials-grid-102 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}

/* CARD (blended) */

.testimonial-card-102 {
  padding: 1.6rem 0;

  display: flex;
  flex-direction: column;
  gap: 1rem;

  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.08);
}

.testimonial-card-102:last-child {
  border-bottom: none;
}

.testimonial-text-102 {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--color-text-dark);
}

.testimonial-name-102 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-heading-dark);
}

/* ===== TABLET (768px) ===== */

@media (min-width: 76.8rem) {

  .testimonials-grid-102 {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .testimonials-title-102 {
    font-size: 3.4rem;
  }

  .testimonial-card-102 {
    border-bottom: none;
  }
}

/* ===== DESKTOP (1600px) ===== */

@media (min-width: 160rem) {

  .testimonials-grid-102 {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-title-102 {
    font-size: 4rem;
  }

  .testimonial-text-102 {
    font-size: 1.6rem;
  }
}
/* End Testimonials ---------------------------------------- */

/* Our Work Section ---------------------------------------------------- */

.project-gallery-011 {
  padding: 4.5rem 0 5rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: var(--color-bg-dark);
  border-top: 0.1rem solid var(--color-border-dark);
}

.project-gallery-011 .container-011 {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.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.3rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.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;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

/* Paragraph */

.title-p-011 {
  color: var(--color-text-dark);
  font-size: 1.6rem;
  max-width: 60rem;
  margin: 0 auto;
}

/* CARD WRAP */

.project-gallery-content-011 {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 1.2rem;
  padding: 1.6rem 1.6rem 2.6rem;
  overflow: hidden;
  border: 0.1rem solid var(--color-border-dark);
}

/* GALLERY ITEMS */

.project-gallery-item {
  border-radius: 1rem;
  overflow: hidden;
}

.project-gallery-item img,
.project-img {
  display: block;
  width: 100%;
  height: 32rem;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.project-gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

/* PAGINATION */

.project-gallery-011 .swiper-pagination {
  position: relative;
  margin-top: 2.6rem;
}

.project-gallery-011 .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  background-color: var(--color-border-dark);
  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;
}

/* End Our Work Section --------------------------------------- */
.testimonials,
.gallery,
.swiper,
.swiper-wrapper,
.swiper-slide,
.swiper-pagination {
  position: relative !important;
  z-index: 1 !important;
}




















































































/* Contact Form ----------------------------------------------------------- */

.footer-cta {
  position: relative;
  padding: 6rem 2rem;
  background-color: var(--color-bg-light);
  border-top: 1px solid var(--color-border-light);
  color: var(--color-heading-light);
}

.footer-cta-content {
  position: relative;
  text-align: center;
  max-width: 120rem;
  margin: 0 auto;
}

.footer-cta-content .prefix {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.footer-cta-title {
  font-size: 3rem;
  margin-bottom: 3rem;
  line-height: 1.2;
  color: var(--color-heading-light);
}

/* FORM WRAP */

.contact-content {
  display: flex;
  justify-content: center;
}

.contact-form {
  background-color: var(--color-white);
  padding: 2.4rem;
  border-radius: 0.8rem;
  max-width: 60rem;
  width: 100%;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-border-light);
}

/* FORM TEXT */

.contact-form h3 {
  font-size: 2.2rem;
  margin-bottom: 1.6rem;
  color: var(--color-heading-light);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form label {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-text-light);
  text-align: left;
}

/* INPUTS */

.contact-form input,
.contact-form textarea {
  padding: 1rem 1.2rem;
  border: 1px solid var(--color-border-light);
  border-radius: 0.6rem;
  font-size: 1.4rem;
  font-family: inherit;
  background-color: var(--color-bg-light);
  color: var(--color-heading-light);
}

/* BUTTON */

.submit-btn {
  margin-top: 1.2rem;
  padding: 1.2rem 2rem;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.5rem;
  border: none;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--color-accent-strong);
}

/* End Contact Form --------------------------------------------------------- */

/* Footer -----------------------------------------------------------------------*/

.footer-wrapper {
  background: var(--color-bg-dark);
}

.site-footer {
  color: var(--color-heading-dark);
  padding: 4rem 1.8rem 6rem;
  max-width: 160rem;
  margin: auto;
}

/* BRAND */

.footer-brand {
  margin-bottom: 3rem;
}

.footer-brand h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.08rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--color-text-dark);
  margin: 0;
}

/* LINKS */

.footer-links {
  margin-bottom: 3rem;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: var(--color-heading-dark);
}

.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-dark);
  font-size: 1.5rem;
}

/* 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.5rem;
  color: var(--color-text-dark);
  margin: 0;
}

.footer-contact p + p {
  margin-top: 1rem;
}

.footer-contact a {
  text-decoration: none;
  color: var(--color-text-dark);
}

/* BOTTOM */

.footer-bottom {
  padding-top: 2rem;
  border-top: 0.1rem solid var(--color-border-dark);
}

.footer-bottom p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.footer-bottom span {
  display: block;
  font-size: 1.2rem;
  color: var(--color-text-dark);
  opacity: 0.6;
}

@media (min-width: 1600px) {

  .site-footer {
    max-width: 180rem;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;

    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
    row-gap: 3rem;

    text-align: center; /* carried from 1000 */
  }

  /* Top section spans full width */
  .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;
    margin-top: -2rem;
    margin-bottom: 1rem;
  }

  .footer-links h3 {
    font-size: 2rem;
  }

  .footer-links ul {
    display: flex;
    justify-content: center;
    gap: 1.6rem;
  }

  .footer-links a {
    font-size: 1.6rem;
  }

  .footer-links li + li {
    margin-top: 0;
  }

  /* CONTACT */
  .footer-contact {
    margin-right: 5rem;
    margin-top: -2rem;
    margin-bottom: 1rem;

    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact ul {
    display: flex;
    flex-direction: row;
    gap: 3rem;
  }

  .footer-contact p,
  .footer-contact a {
    white-space: nowrap;
  }

  /* Footer bottom */
  .site-footer div:nth-child(4) {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 0;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
  }

  /* Paragraph spacing */
  #footerp {
    margin-bottom: 2rem;
  }

}

/* End Footer ---------------------------------------------------------------------- */

/* 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 */