*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Optima Nova LT Pro";
  src:
    url("/static/font/OptimaNovaLTPro-Regular.woff") format("woff"),
    url("/static/font/OptimaNovaLTPro-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Colors */
  --emerald: #014034;
  --gray: #d9d9d9;
  --bg-white: #ffffff;

  /* Fonts */
  --font-primary: "Optima Nova LT Pro", sans-serif;
  --font-secondary: "Texta", sans-serif;

  /* Layout */
  --max-w: 100rem; /* 1600px */
  --desktop-padding: 7.5rem;
  --mobile-padding: 1rem;
}

html {
  scroll-behavior: smooth;
}


body {
  font-family: var(--font-primary);
  color: var(--emerald);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--desktop-padding);
}

/* 1920px and above */
@media (min-width: 118.75rem) {
  .container {
    padding: 0 !important;
  }
}

/* Mobile */
@media (max-width: 48rem) {
  .container {
    padding: 0 var(--mobile-padding);
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  background: #014034;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: none;
}

.hero-video-desktop {
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.hero-header,
.hero .container {
  position: relative;
  z-index: 2;
}

.hero-header {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
  display: flex;
  justify-content: center;
}

.logo {
  width: 5.75rem;
  height: auto;
  object-fit: contain;
}

/* Desktop Padding */
@media (max-width: 120rem) {
  .container {
    padding: 0 var(--desktop-padding);
  }
}

/* Mobile */
@media (max-width: 48rem) {
  .container {
    padding: 0 var(--mobile-padding);
  }

  .hero {
    height: 100vh;
    max-height: 80vh;
  }

  .hero-video-desktop {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }

  .logo {
    width: 4rem;
  }
}

/* =========================================
   REDEFINED SECTION
========================================= */

.redefined-section {
  padding: 7rem 0;
  background: linear-gradient(180deg, #10624b 0%, #014034 100%);
  overflow: hidden;
}
.redefined-badge {
  width: 16rem;
  margin: 0 auto 1.5rem;
  display: block;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.625rem;
}

.section-heading h2 {
  font-family: var(--font-primary);
  font-size: 3.125rem;
  color: #ffffff;
}

.section-heading .line {
  width: 4rem;
  height: 0.09375rem;
  background: rgba(255, 255, 255, 0.7);
}

.section-description {
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 1.25rem;
color: white;
  margin-bottom: 2.75rem;
}

/* =========================================
   IMAGE COMPARISON
========================================= */

.comparison-wrapper {
  position: relative;
  width: 100%;
  height: 37.5rem;
  overflow: hidden;
  border-radius: 0.75rem;
  user-select: none;
}

.comparison-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
}

.comparison-overlay img {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--comparison-width);
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.comparison-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0.1875rem;
  height: 100%;
  background: white;
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 5;
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  width: 5.75rem;
  height: 5.75rem;
  border-radius: 50%;
  background: #ffffff;
  color: #1A1A1A;
  font-family: var(--font-secondary);
  font-size: 1rem;
  display: flex;
  line-height: 16px;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 64rem) {
  .redefined-section {
    padding: 5rem 0;
  }

  .section-heading h2 {
    font-size: 3rem;
  }

  .comparison-wrapper {
    height: 32rem;
  }
}

@media (max-width: 48rem) {
  .redefined-section {
    padding: 4rem 0;
  }

  .redefined-badge {
    width: 10rem;
    margin-bottom: 1.5rem;
  }

  .section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.section-heading h2 {
  line-height: 100%;
  font-size: 2rem;
  width: fit-content;
  max-width: 18rem;
  text-align: center;
  flex-shrink: 1;
}

.section-heading .line {
  flex: 1;
  max-width: 2rem;
}

.section-description {
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

  .comparison-wrapper {
    height: 22rem;
    border-radius: 0.75rem;
  }

  .slider-button {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 0.75rem;
  }
}

/* =========================================
   CHANGE SECTION
========================================= */

.change-section {
  padding: 7rem 0;
  overflow: hidden;
}

/* =========================================
   HEADING
========================================= */

.change-heading {
  text-align: center;
  margin-bottom: 5rem;
}

.change-heading-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.625rem;
}

.change-heading-title .line {
  width: 3.375rem;
  height: 0.078125rem;
  background: var(--emerald);
}

.change-heading-title h2 {
  font-family: var(--font-primary);
  font-size: 3.125rem;
  color: var(--emerald);
  line-height: 1;
}

.change-heading-description p {
  font-family: var(--font-secondary);
  font-size: 1.25rem;
  color: black;
  letter-spacing: 7%;
}

/* =========================================
   WRAPPER
========================================= */

.change-wrapper {
  position: relative;
}
.change-progress {
  position: absolute;
  top: 0;
  left: calc(60% + 1.5rem);
  width: 2px;
  height: 100%;
  background: rgba(1, 64, 52, 0.12);
  overflow: hidden;
}

.change-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--emerald);
}

/* =========================================
   ITEMS
========================================= */

.change-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.change-item {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.change-image {
  width: 60%;
  flex-shrink: 0;
}

.change-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 0.625rem;
  display: block;
}

.change-content {
  width: calc(34% - 3rem);
  display: flex;
  align-items: center;
}

.change-content h3 {
  font-family: var(--font-primary);
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 1.15;
  color: rgba(1, 64, 52, 0.16);
  transition: color 0.35s ease;
}

.change-item.active .change-content h3 {
  color: var(--emerald);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 90rem) {
  .change-content h3 {
    font-size: 2.4rem;
  }
}

@media (max-width: 64rem) {
  .change-heading-title h2 {
    font-size: 2.7rem;
  }

  .change-item {
    gap: 2rem;
  }

  .change-content h3 {
    font-size: 2rem;
  }
}

@media (max-width: 48rem) {
  .change-section {
    padding: 4rem 0;
  }

  .change-heading {
  margin-bottom: 3rem;
}

.change-heading-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.change-heading-title .line {
  flex: 1;
  max-width: 2rem;
}

.change-heading-title h2 {
  font-size: 2rem;
  max-width: 17rem;
  text-align: center;
}

  .change-heading-description p {
    font-size: 1rem;
  }

  .change-progress {
    display: none;
  }

  .change-items {
    gap: 2rem;
  }

  .change-item {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    border-radius: 10px;
  }

  .change-image {
    width: 100%;
  }

  .change-image img {
    aspect-ratio: 16 / 11;
    border-radius: 0.75rem;
  }

  .change-content {
    width: 100%;
  }

  .change-content h3 {
    font-size: 1.5rem;
    color: var(--emerald);
    text-align: center;
    margin: 0 auto;
    letter-spacing: 4%;
  }
}

/* =========================================
   VIDEO SECTION
========================================= */

.video-section {
  padding-bottom: 7rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
}

.video-thumbnail > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 0.75rem;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7rem;
  height: 7rem;
  border: none;
  background: transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-play-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 0.75rem;
  display: none;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 48rem) {
  .video-section {
    padding-bottom: 4rem;
  }

  .video-play-btn {
    width: 3.5rem;
    height: 3.5rem;
  }
}
/* =========================================
   PROCESS SECTION
========================================= */

.process-section {
  position: relative;
  height: 100vh;
  min-height: 50rem;
  overflow: hidden;
}

/* =========================================
   BACKGROUNDS
========================================= */

.process-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}

.process-bg.active {
  opacity: 1;
  z-index: 1;
}

.process-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */

.process-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  z-index: 1;
}

/* =========================================
   LAYOUT
========================================= */

.process-section .container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* =========================================
   GLASS CARD
========================================= */

.process-card {
  width: 40.3125rem;
  padding: 3rem 2.5rem;
  border-radius: 2rem;

  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.3) 0%,
    rgba(26, 26, 26, 0.55) 100%
  );

  border: 1px solid rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.process-card h2 {
  font-family: var(--font-primary);
  font-size: 3.125rem;
  line-height: 1.15;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2rem;
}

/* =========================================
   STEPS
========================================= */

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-step {
  text-align: center;
}

.process-step h3 {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.28);
  transition: color 0.35s ease;
}

.process-step.active h3 {
  color: #ffffff;
}

/* =========================================
   LINE
========================================= */

.step-line {
  width: 2px;
  height: 3rem;
  background: rgba(255, 255, 255, 0.14);
  margin: 0.5rem auto 0;
  overflow: hidden;
}

.step-line-fill {
  display: block;
  width: 100%;
  height: 0%;
  background: #ffffff;
}

.process-step.active .step-line-fill {
  animation: fillLine 2.5s linear forwards;
}

@keyframes fillLine {
  from {
    height: 0%;
  }

  to {
    height: 100%;
  }
}

.process-step:last-child .step-line {
  display: none;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 90rem) {
  .process-section {
    min-height: 46rem;
  }

  .process-card {
    width: 34rem;
    padding: 2.5rem 2rem;
  }

  .process-card h2 {
    font-size: 2.6rem;
  }

  .process-step h3 {
    font-size: 1.25rem;
  }

  .step-line {
    height: 2.5rem;
  }
}

@media (max-width: 64rem) {
  .process-section {
    min-height: 42rem;
  }

  .process-section .container {
    justify-content: center;
    align-items: center;
  }

  .process-card {
    width: 30rem;
    padding: 2.25rem 1.75rem;
  }

  .process-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }

  .process-step h3 {
    font-size: 1.05rem;
  }

  .step-line {
    height: 2.2rem;
  }
}
@media (max-width: 48rem) {
  .process-section {
    height: 100vh;
    min-height: 100vh;
    padding: 1rem 0;
  }

  .process-section .container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .process-card {
    width: 100%;
    max-width: 24rem;
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    margin: 0 auto;
  }

  .process-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .process-step h3 {
    font-size: 1rem;
    line-height: 1.4;
  }

  .step-line {
    height: 2rem;
  }
}

/* =========================================
   FEATURES SECTION
========================================= */

.features-section {
  padding: 7rem 0;
  background: #f5f5f5;
}

/* =========================================
   GRID
========================================= */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* =========================================
   CARD
========================================= */

.feature-card {
  padding: 4px;
  border-radius: 0.75rem;
  background: linear-gradient(270deg, #537D71 0%, #FFFAF4 53%, #48754B 98%);
}

.feature-card-inner {
  height: 100%;
  padding: 3rem 2.5rem;
  border-radius: inherit; 
  background: linear-gradient(180deg, #00724d 0%, #014034 100%);
  display: flex;
  flex-direction: column;
}

.feature-card-inner img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  margin-bottom: 1rem;
}

.feature-card-inner h3 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 500;
  color: #ffffff;
}

/* =========================================
   RESPONSIVE
========================================= */


@media (max-width: 48rem) {
  .features-section {
    padding: 4rem 0;
  }

  .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-card {
    width: 100%;
    max-width: 15rem;
    min-height: 228px;
    margin: 0 auto;
    border-radius: 1rem;
  }

  .feature-card1 {
    margin: 0 auto;
    border-radius: 1rem;
  }

  .feature-card-inner {
    min-height: 12rem;
    padding: 2rem;
    border-radius: 0.9rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .feature-card-inner img {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
  }

  .feature-card-inner h3 {
    font-size: 1.75rem;
  }
}
/* =========================================
   PROJECTS SECTION
========================================= */

.projects-section {
  padding: 7rem 0;
  background: linear-gradient(180deg, #00724d 0%, #014034 100%);
  overflow: hidden;
}

/* =========================================
   HEADING
========================================= */

.projects-heading {
  text-align: center;
  margin-bottom: 4rem;
}

.projects-heading-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.625rem;
}

.projects-heading-title .line {
  width: 3.375rem;
  height: 0.078125rem;
  background: #ffffff;
}

.projects-heading-title h2 {
  font-family: var(--font-primary);
  font-size: 3.75rem;
  line-height: 1.1;
  font-weight: 500;
  color: #ffffff;
}

/* =========================================
   GRID
========================================= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* =========================================
   CARD
========================================= */

.project-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 1rem;
  min-width: 0; /* important */
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================
   LABEL
========================================= */

.project-label {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);

  display: inline-flex;

  padding: 4px;
  border-radius: 0.75rem;

  background: linear-gradient(
    270deg,
    #537d71 0%,
    #fffaf4 53%,
    #48754b 98%
  );
}

.project-label .feature-card-inner {
  min-height: auto;
  padding: 1.25rem 2rem;
  border-radius: inherit;

  background: linear-gradient(
    180deg,
    #00724d 0%,
    #014034 100%
  );

  display: flex;
  align-items: center;
  justify-content: center;
}

.project-label span {
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 1920px) {
  .project-label span {
    font-size: 1.375rem;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 48rem) {
  .projects-section {
    padding: 4rem 0;
  }

  .projects-heading {
    margin-bottom: 3rem;
  }

  .projects-heading-title {
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .projects-heading-title .line {
    width: 2rem;
  }

  .projects-heading-title h2 {
    font-size: 2rem;
  }

  .section-description p {
    font-size: 0.95rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .project-card {
    width: 80%;
    height: auto;
    border-radius: 10px;
    margin: 0 auto;
  }

  .project-label {
    bottom: 1rem;
    border-radius: 0.65rem;
  }

  .project-label .feature-card-inner {
    padding: 0.75rem 1.25rem;
  }

  .project-label span {
    font-size: 1rem;
    white-space: nowrap;
  }
}

/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

/* =========================================
   BACKGROUND IMAGES
========================================= */

.contact-bg {
  position: absolute;
  bottom: 0;
  pointer-events: none;
  opacity: 0.75;
}

.contact-bg-left {
  left: 0;
  width: 22rem;
}

.contact-bg-right {
  right: 0;
  bottom: -1.125rem;
  width: 28rem;
}

@media (max-width: 48rem) {

.contact-bg-right {
  right: 0;
  bottom: -8px;
  width: 28rem;
}
}

/* =========================================
   HEADING
========================================= */

.contact-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-heading-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.contact-heading-title .line {
  width: 5rem;
  height: 1px;
  background: rgba(1, 64, 52, 0.7);
}

.contact-heading-title h2 {
  font-family: var(--font-primary);
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 500;
  color: var(--emerald);
}

/* =========================================
   FORM
========================================= */

.contact-form {
  max-width: 66rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-phone-row {
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 1.5rem;
}

/* =========================================
   FIELD
========================================= */

.contact-field {
  margin-bottom: 2.5rem;
}

.contact-field input {
  width: 100%;
  height: 4rem;

  border: none;
  border-bottom: 1px solid rgba(1, 64, 52, 0.7);
  border-radius: 0 0 0.75rem 0.75rem;

  background: transparent;

  padding: 0 1.25rem;

  font-family: var(--font-secondary);
  font-size: 1.25rem;
  color: var(--emerald);

  outline: none;
}

.contact-field input::placeholder {
  color: rgba(1, 64, 52, 0.9);
}

/* =========================================
   CHECKBOX
========================================= */

.contact-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;

  cursor: pointer;

  margin-bottom: 3rem;
}

.contact-checkbox input {
  display: none;
}

.custom-checkbox {
  width: 1.25rem;
  height: 1.25rem;

  border-radius: 0.25rem;
  border: 1.5px solid var(--emerald);

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  margin-top: 0.25rem;

  transition: 0.3s ease;
}

.checkbox-tick {
  width: 0.55rem;
  height: 0.55rem;

  background: transparent;

 clip-path: polygon(
    20% 55%,
    35% 70%,
    75% 25%,
    90% 40%,
    35% 90%,
    10% 65%
  );

  opacity: 0;

  transition: 0.3s ease;
}

.contact-checkbox input:checked + .custom-checkbox {
  background: #0d8d73;
  border-color: #0d8d73;
}

.contact-checkbox input:checked + .custom-checkbox .checkbox-tick {
  background: #ffffff;
  opacity: 1;
}

.contact-checkbox p {
  font-family: var(--font-secondary);
  font-size: 1.25rem;
  color: black;
}

/* =========================================
   BUTTON
========================================= */

.contact-btn-wrap {
  display: flex;
  justify-content: center;
}
.contact-btn {
  position: relative;
  z-index: 1;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;

  min-width: 16.25rem;
  height: 4.375rem;

  border-radius: 0.875rem;

  text-decoration: none;

  font-family: var(--font-secondary);
  font-size: 1.375rem;
  font-weight: 700;
  color: #ffffff;

  background: linear-gradient(
    270.09deg,
    #014034 -0.18%,
    #01684b 99.67%
  );

  border: none;

  transition: 0.3s ease;
}

.contact-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: inherit;

  background: linear-gradient(
    270deg,
    #537d71 0%,
    #fffaf4 53%,
    #48754b 98%
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.contact-btn:hover {
    opacity: 0.95;
}

.contact-btn span {
  font-size: 1.5rem;
  line-height: 1;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 48rem) {
  .contact-section {
    padding: 4rem 0 8rem;
  }

  /* .contact-bg-left, */

   .contact-bg-left {
    width: 10rem;
    opacity: 0.75;
  }
  .contact-bg-right {
    width: 14rem;
    opacity: 0.75;
  }

  .contact-heading {
    margin-bottom: 3rem;
  }

  .contact-heading-title {
    gap: 0.75rem;
  }

  .contact-heading-title .line {
    width: 2rem;
  }

  .contact-heading-title h2 {
    font-size: 2rem;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-field {
    margin-bottom: 1.5rem;
  }

  .contact-field input {
    height: 4rem;
    font-size: 1rem;
    border-radius: 0 0 1rem 1rem;
    padding: 0 1rem;
  }

  .contact-country {
    max-width: 100%;
  }

  .contact-checkbox {
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .contact-checkbox p {
    font-size: 0.95rem;
  }

  .contact-btn {
    width: 100%;
    min-width: unset;
    height: 4rem;
    font-size: 1rem;
    border-radius: 0.75rem;
  }
}

/* =========================================
   FOOTER
========================================= */

.footer {
  padding: 5rem 0 1.5rem;
  background: #014034;
  overflow: hidden;
}

/* =========================================
   TOP
========================================= */

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 4rem;

  padding-bottom: 3rem;
  
  border-bottom: 1.25px solid #FFFFFF8C;
}

/* =========================================
   LEFT
========================================= */

.footer-left {
  max-width: 26rem;
}

.footer-logo {
  width: 7.8125rem;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-left p {
  font-family: var(--font-secondary);
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
}

/* =========================================
   RIGHT
========================================= */

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-right a {
  width: fit-content;

  font-family: var(--font-secondary);
  font-size: 1.25rem;
  line-height: 1.5;
  color: #ffffff;

  text-decoration: none;
}

/* =========================================
   SOCIALS
========================================= */

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;

  margin-top: 0.5rem;
}

.footer-socials a {
  width: 3rem;
  height: 3rem;

  display: flex;
  align-items: center;
  justify-content: center;
}


/* =========================================
   BOTTOM
========================================= */

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-secondary);
  font-size: 1.25rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 48rem) {
  .footer {
    padding: 4rem 0 1rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 3rem;

    padding-bottom: 2rem;
  }

  .footer-left {
    max-width: 100%;
  }

  .footer-logo {
    width: 5.5rem;
    margin-bottom: 1.5rem;
  }

  .footer-left p {
    font-size: 1.1rem;
    line-height: 1.7;
  }

  .footer-right {
    gap: 1rem;
  }

  .footer-right a {
    font-size: 1rem;
    word-break: break-word;
  }

  .footer-socials {
    gap: 0.75rem;
  }

  .footer-bottom {
    padding-top: 1rem;
  }

  .footer-bottom p {
    font-size: 0.875rem;
  }
}