@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;500;700&display=swap');


*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {

    font-size: 10px;
    scroll-behavior: smooth;

}

body {

  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;


}


:root {
  /* BASE BACKGROUNDS */
  --color-bg-light: #ffffff;
  --color-bg-dark: #0a0a0a;

  /* CORE BRAND */
  --color-primary: #0a0a0a;
  --color-secondary: #ffffff;

  /* ACCENT (TEAL) */
  --color-accent: #14b8a6;
  --color-accent-strong: #0f766e;

  /* TEXT */
  --color-heading-light: #0a0a0a;
  --color-text-light: #4b5563;

  --color-heading-dark: #ffffff;
  --color-text-dark: #d1d5db;

  /* UI */
  --color-border-light: rgba(0,0,0,0.12);
  --color-border-dark: rgba(255,255,255,0.18);

  /* STATES */
  --color-hover-dark: #000000;
  --color-hover-accent: #0d9488;

  --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;

}

#process {

  scroll-margin-top: 10rem;

}




/* NAV Section ------------------------------------- */



.container-808{
  max-width: 1470px;
  margin: auto;
  padding: 0 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border-dark);
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 8px;
  
}
.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 */

}
.header-808 .container-808{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-808 .logo-808{
  font-family: 'Bebas Neue';
  font-size: 30px;
  letter-spacing: .1rem;
  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: 30px; /* 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: 0rem; /* Controls Y Axis of Hamburger Icon - Note 1 */
    margin-top: .225rem;

  }

  .header-808 .menu-btn-808.menu-open-adjust {
  transform: translateY(12%); /* 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 JTL ===== */

.hero-jtl {
  width: 100%;
  background-color: var(--color-bg-dark);
  background: url(jtl-hero-3.png);
  background-size: cover;
  padding: 12rem 2rem 6rem;
}

.hero-wrap-jtl {
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* ===== CONTENT ===== */

.hero-content-jtl {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-eyebrow-jtl {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--color-accent);
  font-weight: 500;
}

.hero-title-jtl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.2rem;
  line-height: 1.1;
  color: var(--color-heading-dark);
}

.hero-text-jtl {
  font-size: 1.6rem;
  color: var(--color-text-dark);
  max-width: 50rem;
}

/* ===== BUTTONS ===== */

.hero-actions-jtl {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-btn-jtl {
  font-size: 1.4rem;
  padding: 1.2rem 2.2rem;
  padding-top: 1.325rem;
  padding-bottom: 1.1rem;
  text-decoration: none;
  font-weight: 500;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Primary */

.hero-btn-primary-jtl {
  background-color: var(--color-accent);
  color: #ffffff;
}

.hero-btn-primary-jtl:hover {
  background-color: var(--color-accent-strong);
}

/* Secondary */

.hero-btn-secondary-jtl {
  border: 0.1rem solid var(--color-border-dark);
  color: var(--color-heading-dark);
}

.hero-btn-secondary-jtl:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ===== TRUST STRIP ===== */

.hero-trust-jtl {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-trust-jtl span {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-heading-dark);
  border: 0.1rem solid rgba(255,255,255,0.15);
  padding: 0.8rem 1.6rem;
  border-radius: 10rem;
  background-color: rgba(20,184,166,0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

/* Hover (subtle but nice) */
.hero-trust-jtl span:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}




/* ===== TABLET ===== */

@media (min-width: 768px) {
  .hero-title-jtl {
    font-size: 5.2rem;
  }

  .hero-text-jtl {
    font-size: 1.7rem;
  }
}

/* ===== DESKTOP ===== */

@media (min-width: 1000px) {
  .hero-wrap-jtl {
    flex-direction: row;
    align-items: center;
    gap: 6rem;
  }

  .hero-content-jtl {
    flex: 1;
  }

  .hero-image-wrap-jtl {
    flex: 1;
  }

  .hero-title-jtl {
    font-size: 6.2rem;
  }

  .hero-text-jtl {
    max-width: 55rem;
  }
}

/* ===== LARGE ===== */

@media (min-width: 1600px) {
  .hero-title-jtl {
    font-size: 7rem;
  }
}

/* ===== ABOUT JTL ===== */

.about-jtl {
  width: 100%;
  background-color: var(--color-bg-dark);
  padding: 4rem 2rem;
    border-top: 1px solid var(--color-border-dark);
}

.about-wrap-jtl {
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* ===== CONTENT ===== */

.about-content-jtl {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.about-eyebrow-jtl {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--color-accent);
  font-weight: 500;
}

.about-title-jtl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.6rem;
  line-height: 1.1;
  color: var(--color-heading-dark);
}

.about-text-jtl {
  font-size: 1.6rem;
  color: var(--color-text-dark);
  max-width: 150rem;
  line-height: 1.7;
}

/* ===== CTA ===== */

.about-actions-jtl {
  margin-top: 1.5rem;
}

.about-btn-jtl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.4rem;
  font-size: 1.4rem;
  text-decoration: none;
  font-weight: 500;
  border-radius: 0.4rem;
  background-color: var(--color-accent);
  color: #fff;
  transition: all 0.3s ease;
}

.about-btn-jtl:hover {
  background-color: var(--color-accent-strong);
}

/* ===== IMAGE ===== */

.about-image-wrap-jtl {
  width: 100%;
}

.about-image-jtl {
  width: 100%;
  height: auto;
  border-radius: 0.6rem;
  object-fit: cover;
}

/* ===== TABLET ===== */

@media (min-width: 768px) {
  .about-title-jtl {
    font-size: 4.4rem;
  }

  .about-text-jtl {
    font-size: 1.7rem;
  }
}

/* ===== DESKTOP ===== */

@media (min-width: 1000px) {
  .about-wrap-jtl {
    flex-direction: row;
    align-items: center;
    gap: 6rem;
  }

  .about-content-jtl {
    flex: 1;
  }

  .about-image-wrap-jtl {
    flex: 1;
  }

  .about-title-jtl {
    font-size: 5.2rem;
  }
}

/* ===== LARGE ===== */

@media (min-width: 1600px) {
  .about-title-jtl {
    font-size: 6rem;
  }
}

/* ===== WHY JTL ===== */


.why-jtl {
  width: 100%;
  background-color: var(--color-bg-dark);
  padding: 4rem 2rem;
  border-top: 1px solid var(--color-border-dark);
}

.why-wrap-jtl {
  max-width: 120rem;
  margin: 0 auto;
}

/* ===== HEADER ===== */

.why-header-jtl {
  text-align: left;
  margin-bottom: 1rem;
}

.why-eyebrow-jtl {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.why-title-jtl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.6rem;
  color: var(--color-heading-dark);
}

/* ===== GRID ===== */

.why-grid-jtl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* ===== ITEM ===== */

.why-card-jtl {
  text-align: left;
  padding: 2.2rem 0 2.2rem 1.4rem; /* add left padding for the bar */
  border-bottom: 0.1rem solid var(--color-border-dark);
  position: relative;
}


.why-card-jtl:last-child {
  border-bottom: none;
}

/* 🔥 Accent line on left */

.why-card-jtl::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3.5rem; /* aligns with title */
  width: 0.4rem;
  height: 2.2rem; /* shorter, tighter */
  background-color: var(--color-accent);
}

/* ===== ICON ===== */

.why-icon-jtl {
  margin-bottom: 1rem;
}

.why-icon-jtl img {
  width: 4.2rem;
  height: 4.2rem;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(62%) sepia(48%) saturate(438%) hue-rotate(131deg) brightness(92%) contrast(88%);
}

/* ===== TEXT ===== */

.why-card-title-jtl {
  font-size: 1.9rem;
  color: var(--color-heading-dark);
  margin-bottom: 0.6rem;
}

.why-card-text-jtl {
  font-size: 1.45rem;
  color: var(--color-text-dark);
  line-height: 1.7;
}

/* ===== TABLET ===== */

@media (min-width: 768px) {
  .why-grid-jtl {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .why-card-jtl {
    border-bottom: none;
    padding: 0;
    padding-left: 1.4rem;
  }

  .why-card-jtl::before {
    top: 1.25rem;
  }

  .why-card-jtl:nth-child(3) {

    

  }
}

/* ===== DESKTOP ===== */

@media (min-width: 1000px) {
  .why-grid-jtl {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-title-jtl {
    font-size: 4.6rem;
  }
}

/* ===== TESTIMONIALS JTL ===== */

.testimonials-jtl {
  width: 100%;
  background-color: var(--color-bg-dark);
  padding: 4rem 2rem;
  border: 1px solid var(--color-border-dark);
}

.testimonials-wrap-jtl {
  max-width: 120rem;
  margin: 0 auto;
}

/* HEADER */

.testimonials-header-jtl {
  text-align: left;
  margin-bottom: 4rem;
}

.testimonials-eyebrow-jtl {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.testimonials-title-jtl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.6rem;
  color: var(--color-heading-dark);
}

/* GRID */

.testimonials-grid-jtl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

/* CARD */

.testimonial-card-jtl {
  padding: 2.5rem 2rem;
  border: 0.1rem solid var(--color-border-dark);
  border-radius: 0.6rem;
  background-color: rgba(255,255,255,0.02);
  transition: all 0.3s ease;
}

.testimonial-card-jtl:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

/* STARS */

.testimonial-stars-jtl {
  font-size: 1.6rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

/* TEXT */

.testimonial-text-jtl {
  font-size: 1.5rem;
  color: var(--color-text-dark);
  line-height: 1.7;
}

/* TABLET */

@media (min-width: 768px) {
  .testimonials-grid-jtl {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* DESKTOP */

@media (min-width: 1000px) {
  .testimonials-grid-jtl {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-title-jtl {
    font-size: 4.6rem;
  }
}

/* ===== SERVICES JTL (CARD STYLE) ===== */

.services-jtl {
  width: 100%;
  background-color: var(--color-bg-dark);
  padding: 4rem 2rem;
  border-top: 1px solid var(--color-border-dark);
}

.services-wrap-jtl {
  max-width: 120rem;
  margin: 0 auto;
}

/* HEADER */

.services-header-jtl {
  text-align: left;
  margin-bottom: 3.5rem;
}

.services-eyebrow-jtl {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.services-title-jtl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.6rem;
  line-height: 1.1;
  color: var(--color-heading-dark);
}

/* GRID */

.services-grid-jtl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

/* CARD */

.service-card-jtl {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 2rem;
  border: 0.1rem solid var(--color-border-dark);
  border-right: 0.3rem solid var(--color-accent);
  border-radius: 0.6rem;

  /* 👇 real difference */
  background-color: #111; /* darker than section */

  box-shadow: inset 0 0 0 0.1rem rgba(255,255,255,0.05);

  transition: all 0.25s ease;
}

.service-card-jtl:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

/* IMAGE */

.service-icon-jtl {
  width: 100%;
}

.service-icon-jtl img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  border-radius: 0.4rem;
  display: block;
}

/* TEXT */

.service-title-jtl {
  font-size: 2rem;
  line-height: 1.3;
  color: var(--color-heading-dark);
}

.service-text-jtl {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--color-text-dark);
}

/* CTA */

.services-cta-jtl {
  margin-top: 3.5rem;
  text-align: left;
}

.services-btn-jtl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.6rem;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.4rem;
  background-color: var(--color-accent);
  color: var(--color-white);
  transition: all 0.3s ease;
}

.services-btn-jtl:hover {
  background-color: var(--color-accent-strong);
}

/* TABLET */

@media (min-width: 768px) {
  .services-title-jtl {
    font-size: 4.6rem;
  }

  .services-grid-jtl {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-icon-jtl img {
    height: 16rem;
  }
}

/* DESKTOP */

@media (min-width: 1000px) {
  .services-title-jtl {
    font-size: 5.2rem;
  }

  .services-grid-jtl {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== PROCESS JTL (STACKED) ===== */

.process-jtl {
  width: 100%;
  background-color: var(--color-bg-dark);
  padding: 4rem 2rem;
  border-top: 1px solid var(--color-border-dark);
}

.process-wrap-jtl {
  max-width: 120rem;
  margin: 0 auto;
}

/* HEADER */

.process-header-jtl {
  text-align: left;
  margin-bottom: 1.5rem;
}

.process-eyebrow-jtl {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.process-title-jtl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.6rem;
  color: var(--color-heading-dark);
}

/* LIST */

.process-grid-jtl {
  display: flex;
  flex-direction: column;
}

/* ITEM (STACKED) */

.process-item-jtl {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2.2rem 0;
  border-bottom: 0.1rem solid var(--color-border-dark);
}

.process-item-jtl:last-child {
  border-bottom: none;
}

/* ICON */

.process-icon-jtl img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}

/* TEXT */

.process-step-title-jtl {
  font-size: 1.9rem;
  color: var(--color-heading-dark);
  margin-bottom: 0.3rem;
}

.process-text-jtl {
  font-size: 1.5rem;
  color: var(--color-text-dark);
  line-height: 1.7;
  max-width: 60rem;
}

/* DESKTOP */

@media (min-width: 1000px) {
  .process-title-jtl {
    font-size: 4.6rem;
  }
}

/* Contact Form ----------------------------------------------------------- */

.footer-cta {
  position: relative;
  padding: 6rem 2rem;
  background-color: var(--color-bg-dark);
  border-top: 1px solid var(--color-border-dark);
  color: var(--color-heading-dark);
}

.footer-cta-content {
  position: relative;
  text-align: left; /* was center */
  max-width: 120rem;
  margin: 0 auto;
}

.footer-cta-content .prefix {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.footer-cta-title {
  font-family: 'Bebas Neue', sans-serif; /* match your headings */
  text-transform: uppercase; /* force caps */
  letter-spacing: 0.08rem;

  font-size: 3.6rem; /* slight bump to match other sections */
  margin-bottom: 3rem;
  line-height: 1.1;

  color: var(--color-heading-dark);
}

/* FORM WRAP */

.contact-content {
  display: flex;
  justify-content: center;
}

.contact-form {
  background-color: #111; /* clean dark panel */
  padding: 2.4rem;
  border-radius: 0.8rem;
  max-width: 60rem;
  width: 100%;
  border: 1px solid var(--color-border-dark);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.5);
}

/* FORM TEXT */

.contact-form h3 {
  font-size: 2.2rem;
  margin-bottom: 1.6rem;
  color: var(--color-heading-dark);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form label {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-heading-dark); /* fixed visibility */
  text-align: left;
}

/* INPUTS */

.contact-form input,
.contact-form textarea {
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--color-border-dark);
  border-radius: 0.6rem;
  font-size: 1.4rem;
  font-family: inherit;

  background-color: #0a0a0a; /* neutral dark (fixes blue tint) */
  color: var(--color-heading-dark);

  transition: all 0.2s ease;
}

/* placeholder */

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

/* focus state */

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: #0d0d0d;
}

/* BUTTON */

.submit-btn {
  margin-top: 1.4rem;
  padding: 1.3rem 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: all 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--color-accent-strong);
}

@media (min-width: 768px) {


  .footer-cta-title, .prefix {

    text-align: center;

  }

}

/* 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;
  border-top: 1px solid var(--color-border-dark);
}

/* 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;
  color: var(--color-heading-dark);
}

.footer-brand p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75); /* brighter than 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: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  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.5rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.footer-contact a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--color-accent);
}

/* 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: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

.footer-bottom span {
  display: block;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.45);
}

/* DESKTOP */

@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;
  }

  .site-footer div:nth-child(1) {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
  }

  .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;
  }

  .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;
  }

  .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-dark);
  }

  #footerp {
    margin-bottom: 2rem;
  }
}

/* End Footer ---------------------------------------------------------------------- */



















































