@charset "UTF-8";
/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  --color-primary: #F5F0E1;
  --color-accent-terracotta: #D28C64;
  --color-accent-olive: #6D6A5D;
  --color-accent-rose: #C9A9A6;
  --color-text: #4E342E;
  --color-light: #FAFAF8;
  /* Legacy color variables mapped to new scheme */
  --first-color: var(--color-accent-terracotta);
  --second-color: var(--color-accent-olive);
  --first-gradient: linear-gradient(90deg, var(--color-accent-terracotta), var(--color-accent-rose));
  --title-color: var(--color-text);
  --text-color: var(--color-text);
  --text-color-light: var(--color-accent-olive);
  --body-color: var(--color-light);
  --container-color: var(--color-light);
  --white-color: var(--color-light);
  --black-color: var(--color-text);
  --gray-border: var(--color-accent-rose);
  --black-border: var(--color-accent-olive);
  /*========== Font and typography ==========*/
  --body-font: "Montserrat", sans-serif;
  --big-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* ≥ 480px */
@media screen and (min-width: 480px) {
  :root {
    --big-font-size: 2.5rem;
    --h1-font-size: 1.75rem;
    --h2-font-size: 1.375rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: .95rem;
    --small-font-size: .85rem;
  }
}
/* ≥ 768px */
@media screen and (min-width: 768px) {
  :root {
    --big-font-size: 3rem;
    --h1-font-size: 2rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}
/* ≥ 1024px */
@media screen and (min-width: 1024px) {
  :root {
    --big-font-size: 3.25rem;
    --h1-font-size: 2.125rem;
    --h2-font-size: 1.625rem;
    --h3-font-size: 1.375rem;
    --normal-font-size: 1.063rem;
    --small-font-size: .9rem;
  }
}
/* ≥ 1150px (existing) */
@media screen and (min-width: 1150px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}
/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  background-image: linear-gradient(rgba(245, 240, 225, 0.85), rgba(245, 240, 225, 0.85)), url("../img/geometric-pattern.png");
  background-size: 400px 400px;
  background-repeat: repeat;
  background-attachment: fixed;
  color: var(--text-color);
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 4.5rem 0.9rem;
}
@media (max-width: 767px) {
  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.section__title, .section__subtitle {
  text-align: center;
}

.section__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1.35rem;
}

.section__subtitle {
  display: block;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--second-color);
  margin-bottom: 0.45rem;
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: var(--z-fixed);
  transition: background-color 0.4s;
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 767px) {
  .nav {
    gap: 20px;
  }
}

.nav__logo {
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
  margin-right: auto;
}

.nav__logo span {
  color: var(--color-text);
  font-weight: var(--font-semi-bold);
  transition: color 0.4s;
}

.image-container {
  width: 44px;
  height: 44px;
  overflow: hidden;
}

.nav__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav__logo .company-logo-text {
  transform: translateY(10%);
  font-size: 2.31rem;
}
@media (max-width: 767px) {
  .nav__logo .company-logo-text {
    font-size: 20px;
  }
}

.nav__toggle, .nav__close {
  font-size: 1.5rem;
  color: var(--color-text);
  cursor: pointer;
  transition: color 0.4s;
}
@media (max-width: 767px) {
  .nav__toggle, .nav__close {
    padding-right: 4px;
  }
}

@media screen and (max-width: 1150px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: var(--color-primary);
    width: 80%;
    height: 100%;
    padding: 0 3.5rem 0;
    border-left: 2px solid var(--color-accent-olive);
    transition: right 0.4s;
  }
}
.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}

.nav__link {
  color: var(--color-text);
  font-weight: var(--font-semi-bold);
  transition: color 0.4s;
}

.nav__link:hover {
  color: var(--color-accent-terracotta);
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

/* Show menu */
.show-menu {
  right: 0;
}

/* Change background header */
.bg-header {
  background-color: var(--color-primary);
  box-shadow: 0 4px 16px hsla(255, 90%, 8%, 0.1);
}

.bg-header .nav__logo span, .bg-header .nav__toggle {
  color: var(--color-text);
}

/* Active link */
.active-link {
  color: var(--color-accent-terracotta);
}

/*=============== HOME ===============*/
.home {
  position: relative;
  background-color: var(--color-primary);
  background-image: linear-gradient(rgba(245, 240, 225, 0.75), rgba(245, 240, 225, 0.75)), url("../img/Home.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.home__container {
  position: relative;
  row-gap: 3rem;
  padding-block: 4rem 6rem;
}
@media (max-width: 767px) {
  .home__container {
    padding-block: 0 4rem;
    row-gap: 1rem;
  }
}

.home__content {
  row-gap: 2.5rem;
}
@media (max-width: 767px) {
  .home__content {
    row-gap: 1.5rem;
  }
}

.home__data {
  text-align: center;
}

.home__title {
  color: var(--color-text);
  font-size: var(--big-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1rem;
}

.home__description {
  margin-bottom: 2.5rem;
  color: var(--color-accent-olive);
}

.home__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.home__info {
  display: flex;
  justify-content: center;
  column-gap: 4.5rem;
}

.home__info-title {
  color: var(--color-accent-terracotta);
  font-size: var(--big-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 0.5rem;
}

.home__info-description {
  font-size: var(--small-font-size);
  color: var(--color-text);
}

.home__images {
  position: relative;
  display: inline-block;
}

.home-image-container {
  margin-left: auto;
}
@media (max-width: 767px) {
  .home-image-container {
    width: 259px;
  }
}

.home-image-container-2 {
  border-radius: 12px;
  position: absolute;
  top: 65%;
  right: 39%;
  z-index: 3;
  overflow: hidden;
}
@media (max-width: 767px) {
  .home-image-container-2 {
    width: 188px;
    top: 65%;
    right: 47%;
  }
}

.home__img-1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  position: relative;
  z-index: 1;
  border: 4px solid #F6F2E5;
}

.home__img-2 {
  display: none;
}

.home__img-3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid #F6F2E5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.home__lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

/*=============== BUTTON ===============*/
.button {
  display: inline-flex;
  background: var(--first-gradient);
  color: var(--color-light);
  font-weight: var(--font-semi-bold);
  padding: 1rem 2rem;
  transition: box-shadow 0.4s;
}
.button__custom__1 {
  border-radius: 2rem;
  background: var(--first-gradient);
}
@media (max-width: 767px) {
  .button {
    font-size: 14px;
  }
}

.button:hover {
  box-shadow: 0 8px 32px hsla(18, 95%, 55%, 0.3);
  color: var(--color-light);
}

.button__link {
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
  color: var(--color-accent-terracotta);
}

.button__link span {
  font-weight: var(--font-semi-bold);
}

.button__link i {
  font-size: 1.5rem;
  transition: transform 0.4s;
}

.button__link:hover i {
  transform: translateX(0.25rem);
}

/*=============== ABOUT ===============*/
.about__container {
  padding-block: 5rem 4rem;
  display: flex;
  justify-content: center;
}

.about__grid-container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: block;
}

.about__data {
  text-align: center;
}

.about__description {
  margin-bottom: 2.5rem;
  line-height: 1.8;
  color: var(--color-text);
  font-size: 1.1rem;
  text-align: justify;
}
@media (max-width: 767px) {
  .about__description {
    font-size: 14px;
  }
}

.about__description + .section__title {
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
}

.about__description + .section__title + .about__description {
  margin-top: 1.5rem;
}

.about__data .button {
  margin-top: 3rem;
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(210, 140, 100, 0.2);
  transition: all 0.4s ease;
}

.about__data .button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(210, 140, 100, 0.3);
}

.about__button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  position: relative;
  z-index: 3;
}

@media screen and (min-width: 768px) {
  .about__container {
    padding-block: 6rem 3rem;
  }
  .about__grid-container {
    max-width: 800px;
    padding: 0 2rem;
  }
  .about__data {
    text-align: left;
  }
  .about__description {
    font-size: 1.15rem;
  }
}
@media screen and (min-width: 1150px) {
  .about__container {
    padding-block: 7rem 4rem;
  }
  .about__grid-container {
    max-width: 900px;
    padding: 0 2.5rem;
  }
  .about__description {
    font-size: 1.2rem;
  }
}
/*=============== CERTIFICATIONS ===============*/
.certifications {
  padding-block: 1rem 3rem;
  background-color: #F5F1E4;
  margin-top: -5rem;
  position: relative;
}

.certifications__container {
  max-width: 1120px;
  margin-inline: 1.5rem;
  margin-top: 5.5rem;
  position: relative;
}

.certifications__data {
  text-align: center;
  margin-bottom: 3rem;
}

.certifications__title {
  font-size: var(--h1-font-size);
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.certifications__description {
  color: var(--color-accent-olive);
  font-size: var(--normal-font-size);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.certifications__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
  margin-top: 2rem;
  padding: 20px 0;
  position: relative;
  z-index: 2;
}
.certifications__grid::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  .certifications__grid {
    overflow-x: scroll;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 300px;
    gap: 20px;
  }
}

.certifications__card {
  background-color: var(--container-color);
  border: 2px solid var(--color-accent-rose);
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, border-color 0.4s ease;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  .certifications__card {
    height: 180px;
  }
}

.certifications__card:hover {
  transform: translateY(-0.5rem);
  border-color: var(--color-accent-terracotta);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.certifications__card a {
  width: 100%;
  display: block;
  background: transparent;
}

.certifications__card img {
  position: relative;
}

.certifications__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.certifications__shape {
  position: absolute;
  width: 100%;
  height: 280px;
  background-color: var(--color-text);
  bottom: -5%;
  left: 0;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .certifications__shape {
    height: 200px;
    bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .certifications__container {
    margin-inline: 2rem;
  }
  .certifications__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .certifications__card {
    padding: 2rem;
    height: 220px;
  }
}
@media screen and (min-width: 1150px) {
  .certifications__container {
    margin-inline: auto;
  }
  .certifications__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .certifications__card {
    padding: 2rem;
    height: 200px;
  }
}
/* Company Name Colors */
.ft-red {
  color: #d32f2f;
}

.ft-black {
  color: #424242;
}

.ft-green {
  color: #388e3c;
}

@media screen and (min-width: 540px) {
  .home__container,
  .about__container,
  .services__container,
  .contact__container {
    grid-template-columns: 360px;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .nav__menu {
    width: 50%;
  }
}
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }
  .section {
    padding-block: 6.3rem 1.8rem;
  }
  .nav {
    height: calc(var(--header-height) + 2rem);
    gap: 4.2rem;
  }
  .nav__toggle, .nav__close {
    display: none;
  }
  .nav__menu {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-left: auto;
  }
  .nav__list {
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    column-gap: 0;
    width: 100%;
    max-width: 800px;
    flex-wrap: nowrap;
  }
  .nav__spacer {
    display: none;
  }
  .nav__right {
    margin-left: 0;
  }
}
/*=============== SERVICES ===============*/
.services {
  position: relative;
  padding-block: 1.35rem 0rem;
}

.services.section {
  margin-top: 5%;
}

.services__container {
  position: relative;
  row-gap: 4rem;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  margin-top: -3rem;
}

.services__data {
  text-align: center;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .services__data {
    margin-top: 140px;
  }
}

.services__data :is(.section__title, .section__subtitle, .services__description, .button) {
  margin-inline: auto;
  max-width: 500px;
}

.services__data .button {
  margin-top: 1.5rem;
}

.services__card {
  width: 297.5px;
  min-height: 170px;
  max-height: 170px;
  box-sizing: border-box;
  background-color: #fff;
  border: 2px solid var(--color-accent-rose);
  border-radius: 1rem;
  padding: 1.5rem 1.5rem 3rem;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 1;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.services__card:hover {
  border-color: var(--color-accent-terracotta);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.services__icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-accent-terracotta);
  color: var(--color-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  transition: background-color 0.4s;
}

.services__card:hover .services__icon {
  background-color: var(--color-accent-olive);
}

.services__title {
  font-size: var(--h2-font-size);
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.services__card p {
  font-size: var(--normal-font-size);
  color: var(--color-accent-olive);
  line-height: 1.6;
}

.services__shape {
  position: absolute;
  width: 100%;
  height: 280px;
  background-color: var(--color-text);
  bottom: 25%;
  left: 0;
}
@media (max-width: 767px) {
  .services__shape {
    bottom: 8%;
  }
}

/* Swiper class */
.services__swiper {
  padding-top: 2.5rem;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-inline: auto;
  transform: translateY(-20%);
}
@media (max-width: 767px) {
  .services__swiper {
    margin-top: 40px;
    width: 100%;
  }
}

.swiper-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .swiper-wrapper {
    transform: none;
  }
}

/* Container for services arrows to center them */
.services__arrows-container {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  margin-top: 0;
  z-index: 10;
  transform: translateY(-50%);
  pointer-events: none;
}
@media (max-width: 767px) {
  .services__arrows-container {
    top: unset;
    left: 50%;
    bottom: 15%;
    transform: translateX(-50%);
    width: 39%;
  }
}

/* General Swiper navigation styles */
.services__arrows-container .swiper-button-prev,
.services__arrows-container .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: var(--container-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--color-text);
  margin: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid var(--color-accent-rose);
  pointer-events: auto;
  z-index: 11;
}

/* Hide default Swiper arrow icons if any */
.services__arrows-container .swiper-button-prev:after,
.services__arrows-container .swiper-button-next:after {
  content: "";
}

/* Responsive adjustments for Services grid */
@media screen and (min-width: 540px) {
  .services__container {
    justify-content: center;
    column-gap: 2rem;
    row-gap: 3rem;
  }
  .services__data {
    margin-bottom: 1.7rem;
    margin-inline: 0;
    max-width: none;
    text-align: left;
  }
  .services__data :is(.section__title, .section__subtitle, .services__description, .button) {
    margin-inline: 0;
    max-width: none;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .services {
    padding-block: 1.8rem 0rem;
  }
  .services__container {
    padding-inline: 2rem;
    column-gap: 3rem;
    row-gap: 4rem;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .services__data {
    text-align: left;
    max-width: 500px;
    margin-inline: auto 0;
  }
  .services__data :is(.section__title, .section__subtitle, .services__description, .button) {
    margin-inline: 0;
    max-width: none;
    text-align: left;
  }
  .services__swiper {
    padding-inline: 0;
    padding-bottom: 70px;
    margin-inline: 0;
  }
  .services__arrows-container {
    margin-top: -px;
  }
}
@media screen and (min-width: 1150px) {
  .services {
    padding-block: 2.7rem 0rem;
  }
  .services__container {
    padding-inline: 0;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 4rem;
    row-gap: 5rem;
  }
  .services__data {
    margin-bottom: 2.125rem;
    margin-inline: 0;
    max-width: none;
    text-align: left;
  }
  .services__data :is(.section__title, .section__subtitle, .services__description, .button) {
    margin-inline: 0;
    max-width: none;
    text-align: left;
  }
  .services__swiper {
    padding-inline: 0;
    padding-bottom: 80px;
    margin-inline: 0;
  }
  .services__card {
    max-width: none;
  }
}
/*=============== CLIENTS ===============*/
.clients {
  position: relative;
  padding-block: 4.5rem 2.7rem;
  background-color: #F6F1E5;
  overflow: hidden;
}

.clients__container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.clients__data {
  text-align: center;
  margin-top: 9%;
  margin-bottom: 4.5rem;
}

@media (max-width: 767px) {
  .clients__description {
    font-size: 14px;
  }
}

.clients__data .section__subtitle {
  color: var(--color-accent-terracotta);
  font-size: 1.1rem;
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.5rem;
}

.clients__data .section__title {
  color: var(--color-accent-olive);
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 0;
}

/* Add the background shape for clients, similar to services__shape */
.clients__shape {
  position: absolute;
  width: 100%;
  height: 280px;
  background-color: var(--color-text);
  bottom: -10%;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

/** Uniform client card and logo styling for Swiper compatibility **/
.clients__card {
  box-sizing: border-box;
  background-color: #fff;
  border: 2.5px solid var(--color-accent-rose);
  border-radius: 1rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 260px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.clients__logo {
  width: 120px;
  height: 120px;
  padding: 0.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  object-fit: contain;
  background-color: transparent;
}

.clients__card:hover .clients__logo {
  /* No border or background change on hover */
}

.clients__title {
  font-size: var(--h2-font-size);
  margin-bottom: 0.75rem;
  color: var(--color-text);
  margin-top: -10%;
}

.clients__card p {
  font-size: var(--normal-font-size);
  color: var(--color-accent-olive);
  line-height: 1.6;
}

/* Swiper class */
.clients__swiper {
  padding-top: 2.5rem;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-inline: auto;
  transform: translateY(-5%);
  position: relative;
}

/* Container for clients arrows to center them */
.clients__arrows-container {
  position: absolute;
  top: 71%;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  margin-top: 0;
  z-index: 5;
  transform: translateY(-50%);
  pointer-events: none;
}
@media (max-width: 767px) {
  .clients__arrows-container {
    padding: 0;
    bottom: 10%;
    top: unset;
    left: 50%;
    transform: translateX(-50%);
    width: 39%;
  }
}

/* General Swiper navigation styles */
.clients__arrows-container .swiper-button-prev,
.clients__arrows-container .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: var(--container-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--color-text);
  margin: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid var(--color-accent-rose);
  pointer-events: auto;
  z-index: 11;
  position: relative;
}

/* Hide default Swiper arrow icons if any */
.clients__arrows-container .swiper-button-prev:after,
.clients__arrows-container .swiper-button-next:after {
  display: none;
}

/*=============== CONTACT ===============*/
.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding-top: 2rem;
  padding-bottom: 4rem;
  margin-top: -5%;
  margin-bottom: 10rem;
}
@media (max-width: 767px) {
  .contact__container {
    padding: 0 8px;
  }
}

.contact__map {
  width: 100%;
}

.contact__map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact__data {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  height: fit-content;
}

.contact__card {
  background-color: var(--white-color);
  border: 2px solid #E5E5E5;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

.contact__card:hover {
  border-color: var(--color-accent-terracotta);
  transform: translateY(-0.25rem);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.contact__icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-accent-terracotta);
  color: var(--white-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
  transition: transform 0.4s;
}

.contact__card:hover .contact__icon {
  transform: scale(1.1);
}

.contact__title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

.contact__info {
  font-style: normal;
  color: var(--color-accent-terracotta);
  font-weight: var(--font-semi-bold);
  font-size: 1.1rem;
}

.contact__social {
  display: flex;
  justify-content: center;
  column-gap: 1rem;
  margin-top: 0.5rem;
}

.contact__social-link {
  font-size: 1.5rem;
  color: var(--color-accent-terracotta);
  transition: all 0.4s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.contact__social-link:hover {
  transform: translateY(-0.25rem);
  color: var(--color-accent-olive);
  background-color: rgba(var(--color-accent-olive), 0.1);
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  .contact__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 0;
  }
  .contact__map iframe {
    height: 300px;
  }
  .contact__data {
    gap: 1rem;
  }
  .contact__card {
    padding: 1.5rem;
  }
}
/* Medium screens */
@media screen and (min-width: 768px) {
  .contact__container {
    gap: 2.5rem;
  }
  .contact__map iframe {
    height: 400px;
  }
  .contact__card {
    padding: 1.8rem;
  }
  .contact__icon {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
  }
  .contact__title {
    font-size: 1.2rem;
  }
}
/*=============== FOOTER ===============*/
.footer {
  background-color: #4E342E;
  color: var(--white-color);
  padding: 2rem 1rem;
}

.footer__container {
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--black-border);
}
@media (max-width: 767px) {
  .footer__container {
    grid-template-columns: 1fr;
  }
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
}

.footer__logo span {
  color: var(--white-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
}

.footer__logo img {
  height: 5.5rem;
  transform: translateY(-15%);
}

.footer__logo .company-logo-text {
  font-size: 2.2rem;
}

.footer__logo .company-logo-text .ft-red-main {
  font-size: 2.2rem;
}

.footer__logo .company-logo-text .ft-red {
  font-size: inherit;
}

.footer__description {
  margin-block: 1rem;
}

.footer__email, .footer__info {
  font-style: normal;
  color: var(--color-accent-rose);
}

.footer__title {
  font-size: var(--h3-font-size);
  color: var(--white-color);
  margin-bottom: 1rem;
}

.footer__links, .footer__list {
  display: grid;
  row-gap: 0.5rem;
}

.footer__link {
  color: var(--color-accent-rose);
  transition: color 0.4s;
}

.footer__link:hover {
  color: var(--first-color);
}

.footer__social {
  display: flex;
  column-gap: 1rem;
}

.footer__social-link {
  font-size: 1.5rem;
  color: var(--first-color);
  transition: transform 0.4s, color 0.4s;
}

.footer__social-link:hover {
  transform: translateY(-0.25rem);
  color: var(--color-accent-rose);
}

.footer__copy {
  display: block;
  text-align: center;
  font-size: var(--small-font-size);
  margin-top: 2rem;
  color: var(--color-accent-rose);
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
  background-color: hsl(255, 5%, 75%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(255, 5%, 65%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(255, 5%, 55%);
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--body-color);
  box-shadow: 0 4px 16px hsla(255, 90%, 8%, 0.15);
  color: var(--title-color);
  display: inline-flex;
  padding: 6px;
  font-size: 1.25rem;
  z-index: var(--z-tooltip);
  transition: bottom 0.4s, transform 0.4s;
}

.scrollup:hover {
  transform: translateY(-0.5rem);
}

/* Show Scroll Up */
.show-scroll {
  bottom: 3rem;
}

/*==================== CONTACT POPUP ====================*/
.contact__popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: none;
}

.contact__popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact__popup-content {
  position: relative;
  background-color: var(--container-color);
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  width: 95%;
  max-width: 550px;
  transform: translateY(-1rem);
  transition: transform 0.3s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact__popup.active .contact__popup-content {
  transform: translateY(0);
}

.contact__popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
  transition: 0.3s;
}

.contact__popup-close:hover {
  color: var(--first-color);
}

.contact__popup-title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: 2rem;
  text-align: center;
}

.contact__popup-form {
  display: grid;
  gap: 2rem;
}

.contact__popup-inputs {
  display: grid;
  gap: 1.5rem;
}

.contact__popup-input {
  display: grid;
  gap: 0.5rem;
}

.contact__popup-input input,
.contact__popup-input textarea {
  width: 100%;
  padding: 1.25rem;
  border: 1px solid var(--color-accent-rose);
  border-radius: 1rem;
  background-color: var(--container-color);
  color: var(--color-text);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact__popup-input input:focus,
.contact__popup-input textarea:focus {
  border-color: var(--color-accent-terracotta);
  outline: none;
  box-shadow: 0 0 0 2px rgba(210, 140, 100, 0.1);
}

.contact__popup-input textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__popup-button {
  width: 100%;
  padding: 1.25rem;
  background: var(--first-gradient);
  color: var(--color-light);
  border: none;
  border-radius: 1rem;
  font-size: 1.1rem;
  font-weight: var(--font-semi-bold);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.contact__popup-button:hover {
  box-shadow: 0 8px 32px hsla(18, 95%, 55%, 0.3);
  transform: translateY(-2px);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }
  .section__title {
    font-size: 1.25rem;
  }
  .home__title {
    font-size: 1.75rem;
  }
  .home__buttons {
    flex-direction: column;
  }
  .home__img-1 {
    width: 240px;
    margin-left: calc(35% + 1.5rem);
  }
  .about__list {
    grid-template-columns: repeat(1, 200px);
  }
  .about__images {
    max-width: 300px;
  }
  .footer__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact__card {
    padding: 1.35rem;
  }
  .contact__popup-content {
    padding: 2rem 1.5rem;
  }
}
@media screen and (min-width: 1133px) {
  .clients__card {
    padding: 2.5rem;
  }
  .services__container {
    padding-block: 6rem 3rem;
  }
}
/* For large devices */
@media screen and (min-width: 1150px) {
  .home__container {
    grid-template-columns: 475px 550px;
    column-gap: 6rem;
    align-items: flex-start;
    padding-top: 3.74rem;
  }
  .home__content {
    row-gap: 4.5rem;
  }
  .home__data {
    text-align: initial;
  }
  .home__description {
    margin-bottom: 3rem;
  }
  .home__buttons {
    justify-content: initial;
    column-gap: 3rem;
  }
  .home__info {
    justify-content: initial;
    column-gap: 5.5rem;
  }
  .home__info-description {
    font-size: var(--normal-font-size);
  }
  .home__img-1 {
    width: 456px;
    margin-left: 35%;
  }
  .home__img-2 {
    display: none;
  }
  .home__img-3 {
    width: 350px;
    top: 80%;
    right: 50%;
  }
  .home__lines {
    object-position: center;
  }
  .about__container {
    padding-block: 9rem 2rem;
  }
  .about__grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 9rem;
    align-items: center;
  }
  .about__images {
    order: -1;
    max-width: 400px;
  }
  .about__data, .about__data :is(.section__title, .section__subtitle) {
    text-align: initial;
  }
  .about__list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 3.5rem;
  }
  .services__container {
    grid-template-columns: initial;
    row-gap: 5rem;
    padding-bottom: 4.5rem;
  }
  .services__data {
    display: grid;
    grid-template-columns: 415px 370px max-content;
    justify-content: space-between;
    align-items: center;
  }
  .services__data :is(.section__title, .section__subtitle, .services__description, .button) {
    text-align: initial;
  }
  .services__data .section__title {
    margin-bottom: 0;
  }
  .services__swiper {
    max-width: 1100px;
  }
  .services__card {
    width: 348px;
    border-width: 3px;
    padding: 3.5rem 2rem 6rem;
  }
  .services__shape {
    height: 330px;
  }
  .contact :is(.section__title, .section__subtitle) {
    text-align: initial;
  }
  .contact__container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-block: 4rem 5rem;
    align-items: start;
    max-width: 1200px;
    margin-inline: auto;
  }
  .contact__map iframe {
    height: 500px;
  }
  .contact__data {
    grid-template-columns: 1fr;
    gap: 2rem;
    height: auto;
    align-content: start;
  }
  .contact__card {
    padding: 2.5rem;
  }
  .contact__icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .contact__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .contact__info {
    font-size: 1.2rem;
  }
  .footer {
    padding-block: 4.5rem 3rem;
  }
  .footer__container {
    padding-bottom: 6rem;
  }
  .footer__description {
    margin-block: 1.5rem;
  }
  .footer__title {
    margin-bottom: 1.5rem;
  }
  .footer__links, .footer__list {
    row-gap: 1rem;
  }
  .scrollup {
    right: 3rem;
  }
}
/* Company logo text styling for header and footer */
.company-logo-text {
  font-size: 2.31rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-text);
  display: inline-block;
}

.company-logo-text .ft-red {
  color: #d32f2f !important;
}

.company-logo-text .ft-black {
  color: #222 !important;
}

.company-logo-text .ft-green {
  color: #388e3c !important;
}

.company-logo-text .ft-sub {
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  display: block;
  margin-top: -0.3rem;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .company-logo-text .ft-sub {
    font-size: 12px;
  }
}


.services__arrows-container .swiper-button-prev {
  position: absolute;
  left: 0;
}

.services__arrows-container .swiper-button-next {
  position: absolute;
  right: -10%;
}

.services__card {
  width: 350px;
  min-height: 480px;
  max-height: 480px;
  box-sizing: border-box;
}

.contact .section__title {
  margin-bottom: 1rem;
}

.pdf__popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: none;
}

.pdf__popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pdf__popup-content {
  position: relative;
  background-color: var(--container-color);
  padding: 2rem 1rem 1rem 1rem;
  border-radius: 1.5rem;
  width: 95%;
  max-width: 800px;
  max-height: 95vh;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.popup-certificate-img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
  height: auto;
  max-height: 90vh;
  border-radius: 1rem;
  background: #fff;
}

.pdf__popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: var(--title-color);
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
}

.pdf__popup-close:hover {
  color: var(--first-color);
}

.pdf__popup iframe {
  width: 100%;
  height: 70vh;
  border: none;
  border-radius: 1rem;
  background: #fff;
}

.return-arrow {
  color: var(--color-accent-terracotta);
  font-size: 2.5rem;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s;
}

.return-arrow:hover {
  color: var(--color-accent-olive);
}

/*=============== GALLERY ===============*/
.gallery_desktop.section .gallery__collage > div {
  position: relative;
}
@media (max-width: 767px) {
  .gallery_desktop.section {
    display: none;
  }
}

.gallery__mobile {
  display: none;
  padding: 89px 8px;
  padding-bottom: 50px;
}
.gallery__mobile > div {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 0.8rem;
}
.gallery__mobile > div > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery__mobile .gallery__overlay {
  pointer-events: all;
}
@media (max-width: 767px) {
  .gallery__mobile {
    display: block;
  }
}

.gallery__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 2rem 1.5rem;
  text-align: center;
}

.gallery__group {
  scroll-margin-top: 120px;
  padding-top: 3rem;
  margin-bottom: 4rem;
}

.gallery__collage {
  display: grid;
  grid-gap: 1rem;
  margin-bottom: 2.5rem;
  min-height: 600px;
  position: relative;
}
@media (max-width: 767px) {
  .gallery__collage {
    display: block;
    margin-bottom: 0;
    padding: 0 !important;
  }
}

.gallery__img {
  width: 100%;
  height: 100%;
  border-radius: 0.8rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery__img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.gallery__img--large {
  grid-area: a;
}

.gallery__img--tall {
  grid-area: b;
}

.gallery__img--small:first-of-type {
  grid-area: c;
}

.gallery__img--wide:first-of-type {
  grid-area: d;
}

.gallery__img--medium:first-of-type {
  grid-area: e;
}

.gallery__img--medium:last-of-type {
  grid-area: f;
}

.gallery__img--small:last-of-type {
  grid-area: g;
}

.gallery__img--wide:last-of-type {
  grid-area: h;
}

.gallery__img--wide:last-of-type {
  min-height: 200px;
  height: 100%;
}

.gallery__button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

@media screen and (max-width: 900px) {
  .gallery__img {
    height: 100%;
  }
}
@media screen and (max-width: 600px) {
  .gallery__img {
    height: 100%;
  }
}
/* Gallery overlay for group hover */
.gallery__collage {
  position: relative;
}

/* Special styling for index.html gallery section - only for single image gallery */
section.gallery.section .gallery__collage:not(.installation-custom-grid):not(.grc-template-grid):not(.grp-gallery-grid):not(.grp-placement-collage) {
  display: block !important;
  grid-template-areas: none !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  width: 100%;
  height: calc(70vh + 100px);
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  border-radius: 1rem;
  position: relative;
  padding-bottom: 100px;
  box-sizing: border-box;
}

section.gallery.section .gallery__collage:not(.installation-custom-grid):not(.grc-template-grid):not(.grp-gallery-grid):not(.grp-placement-collage) img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 65%;
  border-radius: 1rem;
  display: block;
}

.gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(34, 34, 34, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 2;
  border-radius: 0.8rem;
}
@media (max-width: 767px) {
  .gallery__overlay {
    opacity: 1;
  }
}

.gallery__collage:hover .gallery__overlay {
  opacity: 1;
  pointer-events: auto;
}

.gallery__overlay-btn {
  display: inline-block;
  background: var(--first-gradient);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 600;
  padding: 1.1rem 2.5rem;
  border-radius: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.gallery__overlay-btn:hover {
  background: linear-gradient(90deg, #d28c64 80%, #c9a9a6 100%);
  transform: translateY(-3px) scale(1.04);
}

/* CONTACT GRID LAYOUT REFINEMENT */
.contact__container--grid {
  display: grid;
  grid-template-columns: minmax(483px, 1.81125fr) 0.8075fr 0.8075fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "map card1 card2" "map card3 card3";
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: stretch;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  min-height: 450px;
}

.contact__map--grid {
  grid-area: map;
  height: 100%;
  align-self: stretch;
  min-width: 483px;
  min-height: 450px;
  display: flex;
}

.contact__map--grid iframe {
  flex: 1 1 100%;
  height: 100%;
  min-height: 450px;
  border-radius: 16px;
}

.contact__card--grid {
  width: 275.5px;
  height: 228px;
  max-width: 95%;
  min-width: 209px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border: 2px solid var(--color-accent-rose);
  border-radius: 1.25rem;
  padding: 2.09rem 1.615rem;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 2, 0.6, 1);
}

.contact__card--grid:hover {
  border-color: var(--color-accent-terracotta);
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.contact__card--top-left {
  grid-area: card1;
}

.contact__card--top-right {
  grid-area: card2;
}

.contact__card--bottom-left {
  grid-area: card3;
}

.contact__title {
  font-size: 1.45rem;
  margin: 1rem 0 0.5rem 0;
}

.contact__info, .contact__social {
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

@media screen and (max-width: 1200px) {
  .contact__container--grid {
    grid-template-columns: minmax(400px, 1.495fr) 0.85fr 0.85fr;
    max-width: 98vw;
    gap: 1rem;
    min-height: 400px;
  }
  .contact__map--grid {
    min-width: 400px;
    min-height: 400px;
  }
  .contact__map--grid iframe {
    min-height: 400px;
  }
}
@media screen and (max-width: 900px) {
  .contact__container--grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas: "map" "card1" "card2" "card3";
    gap: 1.5rem;
    margin-top: 1rem;
    max-width: 100vw;
    min-height: auto;
  }
  .contact__map--grid {
    width: 100%;
    margin-bottom: 0;
    height: auto;
    min-width: 0;
    min-height: 300px;
  }
  .contact__map--grid iframe {
    min-height: 300px;
  }
  .contact__card--grid {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    min-height: 160px;
  }
}
/* Reduce spacing for contact section */
.contact.section {
  padding-block: 4.5rem 1.7rem;
  margin-top: 2rem;
  scroll-margin-top: 3rem;
}

/* Ensure proper spacing in contact container */
.contact__container--grid {
  margin-top: 2rem;
}

/* Reduce spacing between title and cards */
.contact .section__title {
  margin-bottom: 1.5rem;
}

/* Reduce footer spacing */
.footer {
  padding-block: 1.7rem 1rem;
}

.footer__container {
  padding-bottom: 2rem;
}

.footer__copy {
  margin-top: 2rem;
}

.same-size {
  width: 250px;
  height: auto;
}

.vertical-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.grp-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  max-width: 100%;
  height: 500px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .grp-gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: auto;
    margin: 1rem 0;
  }
}

.grp-main {
  grid-row: 1/span 2;
  grid-column: 1/2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.grp-top-right {
  grid-row: 1/2;
  grid-column: 2/3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.grp-top-mid {
  grid-row: 1/2;
  grid-column: 3/4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.grp-bottom-right {
  grid-row: 2/3;
  grid-column: 3/4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.grp-bottom-left {
  grid-row: 2/3;
  grid-column: 2/3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

/* Custom grid for Installation section */
.installation-custom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 286px 350px;
  gap: 1rem;
  min-height: 611px;
  margin-bottom: 0;
}

.inst-top-1 {
  grid-column: 1/2;
  grid-row: 1/2;
  height: 100%;
  object-fit: cover;
}

.inst-top-2 {
  grid-column: 2/3;
  grid-row: 1/2;
  height: 100%;
  object-fit: cover;
}

.inst-top-3 {
  grid-column: 3/4;
  grid-row: 1/2;
  height: 100%;
  object-fit: cover;
}

.inst-top-4 {
  grid-column: 4/5;
  grid-row: 1/2;
  height: 100%;
  object-fit: cover;
}

.inst-bottom-1 {
  grid-column: 1/3;
  grid-row: 2/3;
  object-fit: cover;
}

.inst-bottom-2 {
  grid-column: 3/5;
  grid-row: 2/3;
  object-fit: cover;
}

@media screen and (max-width: 900px) {
  .installation-custom-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 234px);
  }
  .inst-top-1 {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .inst-top-2 {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .inst-top-3 {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .inst-top-4 {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .inst-bottom-1 {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .inst-bottom-2 {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}
@media screen and (max-width: 600px) {
  .installation-custom-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 208px);
  }
  .inst-top-1, .inst-top-2, .inst-top-3, .inst-top-4, .inst-bottom-1, .inst-bottom-2 {
    grid-column: 1/2 !important;
    grid-row: auto !important;
  }
}
/* GRC Template Grid Layout */
.grc-template-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 2fr 1fr 1fr;
  gap: 1rem;
  grid-template-areas: "main main main main" "left middle1 middle2 right" "left middle1 middle2 right";
  min-height: 500px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.grc-top-main {
  grid-area: main;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.grc-bottom-left {
  grid-area: left;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.grc-middle-1 {
  grid-area: middle1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.grc-middle-2 {
  grid-area: middle2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.grc-bottom-right {
  grid-area: right;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

@media screen and (max-width: 900px) {
  .grc-template-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2fr 1fr 1fr;
    grid-template-areas: "main main" "left right" "middle1 middle2";
  }
}
@media screen and (max-width: 600px) {
  .grc-template-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 1fr);
    grid-template-areas: "main" "left" "middle1" "middle2" "right";
  }
  .grc-top-main, .grc-bottom-left, .grc-middle-1, .grc-middle-2, .grc-bottom-right {
    height: 200px;
  }
}
/* GRP Lining Template Grid Layout */
.grp-lining-template-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 2fr 1fr;
  gap: 10px;
  grid-template-areas: "main main main" "left middle right";
  min-height: 500px;
}

.grp-lining-top-main {
  grid-area: main;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.grp-lining-bottom-left {
  grid-area: left;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.grp-lining-middle {
  grid-area: middle;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.grp-lining-bottom-right {
  grid-area: right;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

@media screen and (max-width: 900px) {
  .grp-lining-template-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2fr 1fr 1fr;
    grid-template-areas: "main main" "left right" "middle middle";
  }
}
@media screen and (max-width: 600px) {
  .grp-lining-template-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    grid-template-areas: "main" "left" "middle" "right";
  }
  .grp-lining-top-main, .grp-lining-bottom-left, .grp-lining-middle, .grp-lining-bottom-right {
    height: 200px;
  }
}
/* Template Collage Layout */
.template-collage {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 2fr 2fr;
  gap: 16px;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  min-height: 500px;
}

.template-top-left {
  grid-column: 1/2;
  grid-row: 1/2;
  margin-top: 10rem;
  margin-left: -10rem;
}

.template-top-right {
  grid-column: 2/3;
  grid-row: 1/3;
  margin-top: 10rem;
  width: 140%;
}

.template-bottom-left {
  grid-column: 1/2;
  grid-row: 2/3;
  margin-right: 8px;
}

.template-bottom-right {
  grid-column: 1/2;
  grid-row: 2/3;
  margin-left: 8px;
}

.template-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 800px) {
  .template-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 150px 150px;
  }
  .template-top-left {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .template-top-right {
    grid-column: 2/3;
    grid-row: 1/3;
  }
  .template-bottom-left {
    grid-column: 1/2;
    grid-row: 2/3;
    margin-right: 0;
  }
  .template-bottom-right {
    grid-column: 1/2;
    grid-row: 3/4;
    margin-left: 0;
  }
}
@media (max-width: 600px) {
  .template-collage {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .template-collage > div {
    width: 100%;
    height: 180px;
    margin: 0;
  }
}
/* GRP Placement Collage Layout */
.grp-placement-collage {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 2fr 1fr;
  gap: 1rem;
  min-height: 500px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  grid-template-areas: "main main vertical" "bottom-left bottom-center vertical";
}

.grp-placement-main {
  grid-area: main;
}

.grp-placement-vertical {
  grid-area: vertical;
}

.grp-placement-bottom-left {
  grid-area: bottom-left;
}

.grp-placement-bottom-center {
  grid-area: bottom-center;
}

.grp-placement-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

@media screen and (max-width: 900px) {
  .grp-placement-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: "main main" "vertical vertical" "bottom-left bottom-center";
  }
}
@media screen and (max-width: 600px) {
  .grp-placement-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
    grid-template-areas: "main" "vertical" "bottom-left" "bottom-center";
  }
  .grp-placement-collage img {
    height: 200px;
  }
}

/*# sourceMappingURL=responsive.css.map */
