/* =========================
   NAVIGATION
========================= */
nav {
  width: 100%;
  background-color: var(--light-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-muted);
}

.nav__logo img {
  width: clamp(40px, 4vw, 60px);
}

.nav__items {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-weight: 600;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  gap: 2rem;
}

.nav__links a {
  position: relative;
  display: inline-block;
  color: #444;
  font-size: 1.0625rem;
  transition: transform 0.2s ease;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: var(--color-dark);
  transition: width 0.3s ease;
}

.nav__links a:hover,
.nav__links a:focus-visible,
.nav__links a.active {
  color: var(--color-dark);
  transform: scale(1.04);
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  padding: 1.2rem 2rem;
  background-color: var(--color-muted);
  color: #fff;
  border-radius: var(--radius-sm);
  transition: 0.2s ease;
}

.nav__cta:hover,
.nav__cta:focus-visible {
  background-color: var(--primary-bg);
}

.hamburger {
  display: none;
}

.ham-menu {
  height: 50px;
  width: 3rem;
  margin-left: auto;
  position: relative;
  cursor: pointer;
  z-index: 2000;
  background-color: transparent;
  border: none;
  outline: none;
}

.ham-menu span {
  width: 2.8rem;
  height: 5px;
  background-color: var(--primary-bg);
  border-radius: var(--radius-sm);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s ease;
}

.ham-menu span:nth-child(1) {
  top: 25%;
}

.ham-menu span:nth-child(3) {
  top: 75%;
}

.ham-menu.is-active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.ham-menu.is-active span:nth-child(2) {
  opacity: 0;
}

.ham-menu.is-active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav__mobile {
  background-color: #eee;
  height: 100vh;
  width: 100%;
  max-width: 300px;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  padding: 50px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.nav__mobile.is-open {
  transform: translateX(0);
}

.nav__links__mobile {
  list-style: none;
  gap: 20px;
  flex-direction: column;
  display: flex;
}

.nav__link__mobile {
  color: #444;
  position: relative;
  display: block;
  padding: 10px 0;
}

.nav__link__mobile.active {
  color: var(--color-primary);
}

.nav__link__mobile::after {
  content: "";
  position: absolute;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark);
}

.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 900;
}

.nav__overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* =========================
   FOOTER
========================= */
footer {
  width: 100%;
  background-color: var(--light-bg);
  font-size: var(--fs-body);
  color: var(--color-muted);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  padding: 60px 0;
  gap: 100px;
}

.footer__logo {
  flex: 3;
}

.footer__nav,
.cta__section {
  flex: 1;
}

.footer__nav h5 {
  margin-bottom: 20px;
  font-weight: 700;
}

.footer__nav li {
  margin-top: 10px;
}

.footer__logo h3 {
  font-size: clamp(2rem, 3vw, 4rem);
  font-family: var(--ff-serif);
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.05;
  margin-bottom: 40px;
}

.footer__link {
  color: var(--color-muted);
}

.footer__link:hover,
.footer__link:focus-visible {
  text-decoration: underline;
}

.cta__section h4 {
  font-family: var(--ff-serif);
  font-size: 26px;
  margin-bottom: 30px;
}

.footer__cta {
  color: #fff;
  margin-top: 30px;
  padding: 0.7rem 1rem;
  background-color: var(--color-primary);
  border-radius: 10px;
  white-space: nowrap;
}

.footer__cta:hover,
.footer__cta:focus-visible {
  opacity: 0.9;
}

/* =========================
   HEADER
========================= */
header {
  width: 100%;
  background-color: var(--secondary-bg);
  color: var(--color-text);
  padding: 60px 0;
}

.header__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1.7;
  gap: 30px;
}

.cta__text h1 {
  letter-spacing: 0.5px;
}

.cta__text p {
  font-size: var(--fs-h3);
  line-height: 1.6;
}

.cta__btn {
  color: var(--color-dark);
  padding: 0.7rem 2rem;
  background-color: var(--color-text);
  border-radius: var(--radius-sm);
  font-weight: 700;
  width: fit-content;
  text-align: center;
  white-space: nowrap;
  transition: 0.2s ease;
  display: inline-block;
}

.cta__btn:hover,
.cta__btn:focus-visible {
  background-color: var(--color-primary);
  color: var(--color-text);
}

.header__cta figure {
  display: flex;
  justify-content: flex-end;
  flex: 2;
  margin: 0;
}

.header__img {
  width: 90%;
  height: min(420px, 25vw);
  object-fit: cover;
  border-radius: var(--radius-xlg);
}

/* =========================
   METRICS SECTION
========================= */
.metrics__section {
  margin-top: 70px;
  text-align: center;
}

.metrics__section h2 {
  margin-bottom: 40px;
  line-height: 1.15;
}

.metrics {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 0 clamp(16px, 5vw, 40px);
}

.metric__item h3 {
  font-size: var(--fs-h2);
  margin-bottom: 15px;
}

.metric__item p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

/* =========================
   MAP SECTION
========================= */
#map {
  width: 100%;
  padding: 4rem 1.5rem;
  text-align: center;
  font-family: var(--ff-serif);
  color: var(--color-text);
}

#map h2 {
  max-width: 920px;
  margin: 0 auto 2rem;
  line-height: 1.2;
}

.map-frame {
  width: min(100%, 960px);
  aspect-ratio: 16 / 9;
  max-height: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.map {
  display: block;
  width: 100%;
  height: calc(100% + 80px);
  border: 0;
  transform: translateY(-80px);
}

#map p {
  margin-bottom: 32px;
}

/* =========================
   TEXT / IMAGE CARD SECTIONS
========================= */
.img-card-section {
  padding: 4rem 1.5rem;
}

.img-card-right,
.img-card-section--right {
  background-color: var(--secondary-bg);
}

.img-card-section h2,
.img-card-section h3 {
  font-family: var(--ff-serif);
  margin-bottom: 20px;
  line-height: 1.1;
}

.img-card-section h2 {
  font-size: clamp(2rem, 3vw, 2.4rem);
}

.text-container,
.img-card__layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text);
  gap: 2.5rem;
}

.text-part,
.img-card__content {
  flex: 0.75;
}

.img-card-right .text-part,
.img-card-section--right .img-card__content {
  padding-right: 40px;
}

.img-card-left .text-part,
.img-card-section--left .img-card__content {
  padding-left: 40px;
}

.text-part p,
.img-card__content p {
  font-size: var(--fs-body);
  line-height: 1.7;
  max-width: 520px;
}

a.btn--project {
  margin-top: 1.75rem;
  background-color: var(--color-primary);
  border: none;
  color: #fff;
  padding: 0.95rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: 0.2s ease;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

a.btn--project:hover,
a.btn--project:focus-visible {
  opacity: 0.9;
}

.img-card-part,
.img-card__media {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-card-section .text-card,
.img-card-section .img-card__overlay {
  border-radius: var(--radius-sm);
  padding: 2.3rem;
  width: min(300px, 80%);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
  text-align: left;
}

.img-card-right .text-card,
.img-card-section--right .img-card__overlay {
  background-color: var(--primary-bg);
  left: 82%;
}

.img-card-left .text-card,
.img-card-section--left .img-card__overlay {
  background-color: var(--secondary-bg);
  left: 18%;
}

.img-card-section .text-card h3,
.img-card-section .img-card__overlay h3 {
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.img-card-section .text-card p,
.img-card-section .img-card__overlay p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-light);
  font-weight: 400;
  margin-bottom: 1rem;
}

.img-card-section .text-card ul li,
.img-card-section .img-card__overlay ul li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.img-card-part img,
.img-card__media img {
  width: min(380px, 90%);
  height: min(380px, 90%);
  object-fit: cover;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}

.text-part .metrics__section,
.img-card__content .metrics__section {
  margin-top: 2rem;
}

.text-part .metric__item h3,
.img-card__content .metric__item h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
}

/* =========================
   CLIENTS CAROUSEL
========================= */
.clients-section {
  padding: 4rem 1.5rem;
  background-color: var(--secondary-bg);
}

.clients-section h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3vw, 2.4rem);
  margin-bottom: 40px;
  line-height: 1.1;
  text-align: center;
  color: var(--color-text);
}

.clients-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 10px;
  will-change: transform;
}

.client-logo {
  flex: 0 0 calc((100% - 100px) / 6);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  background-color: #000;
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.client-logo:hover {
  opacity: 1;
}

.client-logo:hover img {
  filter: grayscale(0%);
}

.clients-section .cta-section,
.clients-section .section-cta {
  margin-top: 3rem;
  text-align: center;
}

.clients-section .cta__btn {
  background-color: var(--color-primary);
  color: #fff;
  padding: 0.95rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: 0.2s ease;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.clients-section .cta__btn:hover,
.clients-section .cta__btn:focus-visible {
  opacity: 0.9;
}

/* =========================
   CONTACT SECTION
========================= */
#contact {
  padding: 80px 0;
  background-image: url("../assets/images/home/contact-bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

#contact .contact-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  align-items: start;
  column-gap: 80px;
}

#contact .contact-text {
  min-width: 0;
  color: var(--color-muted);
}

#contact .contact-text h2 {
  font-size: 42px;
  font-weight: 700;
  font-family: var(--ff-serif);
  margin-bottom: 22px;
  line-height: 1.2;
}

#contact .contact-text__lead {
  font-size: var(--fs-body);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 25px;
}

#contact .contact-item--location,
#contact .contact-item--phone,
#contact .contact-item--email {
  font-size: 1rem;
}

#contact .contact-item--email {
  color: var(--color-primary);
}

#contact .contact-item--email a {
  color: inherit;
  text-decoration: underline;
}

#contact .contact-text iframe {
  display: block;
  width: 100%;
  max-width: 460px;
  height: 300px;
  border: 0;
  margin-top: 20px;
  border-radius: var(--radius-md);
}

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

.contact-form {
  width: 100%;
  min-width: 0;
  background: var(--secondary-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.form-row.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  color: var(--light-bg);
  font-size: var(--fs-small);
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--color-muted);
  border: 1px solid #a0aec0;
  color: var(--light-bg);
  border-radius: 3px;
  padding: 10px 12px;
  font-size: var(--fs-small);
  font-family: var(--ff-sans);
  outline: none;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #c9c9c9;
}

.form-group textarea {
  min-height: 110px;
  resize: none;
}

.contact-form button {
  width: 100%;
  border: none;
  background: var(--color-primary);
  color: var(--light-bg);
  font-size: var(--fs-body);
  font-weight: 700;
  font-family: var(--ff-sans);
  padding: 13px;
  border-radius: 999px;
  cursor: pointer;
  margin-top: 4px;
  margin-bottom: 16px;
}

.whatsapp-box {
  width: 100%;
  background: #4a4a4a;
  border-radius: 999px;
  padding: 8px 18px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  box-sizing: border-box;
  gap: 12px;
}

.whatsapp-box span {
  color: var(--color-text-light);
  font-size: var(--fs-body);
  font-weight: 700;
  font-family: var(--ff-serif);
}

.whatsapp-box img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* =========================
   SERVICES SECTION
========================= */
.services-section {
  padding: 90px 0;
  background: linear-gradient(
    90deg,
    #1c1c1c 0%,
    var(--primary-bg) 18%,
    #252525 50%,
    var(--primary-bg) 82%,
    #1c1c1c 100%
  );
  color: var(--color-text);
}

.services-section__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.services-section__eyebrow {
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.services-section__header h2 {
  line-height: 1.2;
  color: var(--light-bg);
  margin-bottom: 14px;
}

.services-section__subtitle {
  font-size: 0.95rem;
  color: rgba(238, 238, 238, 0.85);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.service-card {
  background-color: #0f1012;
  border-radius: 22px;
  padding: 28px 22px;
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.3);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
}

.service-card__icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.service-card h3 {
  font-family: var(--ff-serif);
  font-size: var(--fs-h3);
  line-height: 1.35;
  color: var(--light-bg);
  margin-bottom: 14px;
  max-width: 260px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(244, 239, 239, 0.82);
  max-width: 240px;
}

/* =========================
   FEEDBACK / TESTIMONIAL SECTION
========================= */
.feedback-section {
  padding: 90px 0;
  background: var(--secondary-bg);
  color: var(--color-text);
}

.feedback-section__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.feedback-section__content {
  max-width: 450px;
}

.feedback-section__eyebrow {
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.4;
}

.feedback-section__content h2 {
  line-height: 1.15;
  color: var(--light-bg);
  margin-bottom: 22px;
  max-width: 320px;
}

.feedback-section__description {
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(244, 239, 239, 0.88);
  margin-bottom: 28px;
  max-width: 340px;
}

.feedback-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 48px;
  padding: 0 24px;
  background-color: var(--color-primary);
  color: var(--light-bg);
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.feedback-section__btn:hover,
.feedback-section__btn:focus-visible {
  transform: translateY(-2px);
}

.feedback-section__media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  flex: 1;
}

.feedback-section__image-wrap {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #1a1a1a;
}

.feedback-section__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-card {
  width: 100%;
  max-width: 290px;
  background-color: #4a4a4a;
  border-radius: 6px;
  padding: 34px 28px;
  margin-left: -28px;
  position: relative;
  z-index: 2;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.testimonial-card__quote-icon {
  display: block;
  width: 22px;
  height: auto;
}

.testimonial-card__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  margin: 24px 0;
}

.testimonial-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--light-bg);
  margin-bottom: 6px;
}

.testimonial-card span {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.feedback-section__btn--mobile {
  display: none;
}

/* =========================
   FAQ Section
========================= */
#faq {
  padding: 90px 0;
  background: linear-gradient(90deg, #171717 0%, #232323 50%, #171717 100%);
  color: var(--color-text);
}

.faq-section__wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.faq-section__header {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.faq-section__eyebrow {
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1;
}

.faq-section__header h2 {
  line-height: 1.05;
  color: var(--light-bg);
  margin-bottom: 22px;
}

.faq-section__header p:last-child {
  max-width: 540px;
  margin: 0 auto;
  font-size: var(--fs-body);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.faq-section__content {
  display: grid;
  grid-template-columns: 1fr minmax(400px, 500px);
  gap: 100px;
  align-items: start;
}

/* =========================
   Accordion
========================= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 32px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 0, 0, 0.7);
  max-width: 520px;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  color: var(--color-primary);
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--ff-sans);
}

.faq-question span:first-child {
  max-width: 90%;
  line-height: 1.5;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--color-primary);
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
}

.faq-item.active .faq-icon::after {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 0 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 0.95rem;
  max-width: 95%;
}

/* =========================
   Services Highlight Section
========================= */

.services-highlight {
  padding: 5rem 0;
  background: var(--secondary-bg);
}

.services-highlight__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.services-highlight__eyebrow {
  color: var(--color-primary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}

.services-highlight__header h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  color: var(--color-text);
  margin-bottom: 1rem;
}

.services-highlight__intro {
  font-size: 0.95rem;
  color: var(--color-text);
  max-width: 460px;
  margin: 0 auto;
}

.services-highlight__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.services-highlight__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--color-muted);
  border-radius: 10px;
  padding: 1.4rem 1.3rem;
  max-width: 300px;
  margin: 0 auto;
  transition: 0.2s ease;
}

.services-highlight__card:hover {
  transform: translateY(-2px);
  background-color: var(--color-muted);
}

.services-highlight__icon {
  width: 42px;
  height: 42px;
  background-color: var(--color-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-highlight__icon img {
  width: 22px;
  height: 22px;
}

.services-highlight__card h3 {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.services-highlight__card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-light);
}

/* =========================
   Project Categories Section
========================= */
#project-categories {
  padding: 5rem 0;
  background-color: var(--primary-bg);
}

.project-categories__inner {
  background-color: #32373c;
  border-radius: var(--radius-md);
  padding: 3.5rem 2rem 2.5rem;
}

#project-categories h2 {
  text-align: center;
  color: var(--color-text);
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 2.5rem;
}

.project-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 980px;
  margin: 0 auto;
}

/* =========================
   PROJECT CATEGORY CARDS
========================= */
.project-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 980px;
  margin: 0 auto;
}

.project-category-card {
  min-height: 100%;
}

.project-category-card .project-card__content {
  text-align: center;
  align-items: center;
}

.project-category-card .project-card__title {
  margin-bottom: 1.5rem;
}

.project-category-card .project-card__btn {
  align-self: center;
}

/* =========================
   LISTING PAGE SHARED
========================= */
.listing-page {
  padding: 80px 0 100px;
  background-color: var(--primary-bg);
}

.listing-page__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.listing-box {
  background-color: var(--color-muted);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* =========================
   LISTING SEARCH
========================= */
.listing-page__toolbar {
  display: flex;
  justify-content: center;
  align-items: center;
}

.listing-search {
  width: 100%;
  display: flex;
  justify-content: center;
}

.listing-search__field {
  width: min(100%, 920px);
  display: flex;
  align-items: center;
  background-color: var(--light-bg);
  border-radius: 999px;
  overflow: hidden;
  min-height: 66px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.listing-search__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 1.75rem 0 2rem;
  height: 66px;
  font-family: var(--ff-sans);
  font-size: 1rem;
  color: var(--color-dark);
  outline: none;
}

.listing-search__input::placeholder {
  color: #8b8b8b;
}

.listing-search__button {
  width: 74px;
  height: 66px;
  border: none;
  background-color: transparent;
  color: var(--color-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.listing-search__button:hover,
.listing-search__button:focus-visible {
  background-color: #f3f3f3;
}

/* =========================
   LISTING GRID
========================= */
.listing-grid {
  display: grid;
  gap: 26px;
  align-items: stretch;
}

/* =========================
   LISTING PAGINATION
========================= */
.listing-pagination {
  background-color: var(--secondary-bg);
  border-radius: var(--radius-md);
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.5rem;
  padding: 0.4rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.listing-pagination__btn {
  min-width: 44px;
  height: 44px;
  padding: 0 0.95rem;
  border: none;
  border-radius: 999px;
  background-color: transparent;
  color: var(--color-text);
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.listing-pagination__btn:hover,
.listing-pagination__btn:focus-visible {
  transform: translateY(-1px);
  background-color: var(--color-muted);
}

.listing-pagination__btn.is-active {
  background-color: var(--color-primary);
  color: var(--light-bg);
}

.listing-pagination__btn--next {
  min-width: 78px;
}

.listing-pagination__ellipsis {
  color: var(--color-text);
  font-weight: 700;
  padding: 0 0.2rem;
  display: inline-flex;
  align-items: center;
}

/* =========================
   LISTING EMPTY
========================= */
.listing-page__empty {
  grid-column: 1 / -1;
  color: var(--color-text);
  text-align: center;
  font-size: var(--fs-body);
  padding: 3rem 1rem;
}

/* =========================
   TABLET STYLES
========================= */
@media (min-width: 768px) and (max-width: 1023px) {
  .nav__inner {
    padding: 0;
  }

  .nav__items {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav__mobile {
    font-size: 1.2rem;
    padding: 30px;
  }

  .footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .footer__logo {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer__logo p {
    max-width: 600px;
    margin: 0 auto;
  }

  .footer__nav {
    margin: 0 auto;
  }

  .cta__section {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer__cta {
    padding: 0.7rem 5rem;
    border-radius: var(--radius-lg);
  }

  .cta__text h1 {
    font-size: 28px;
  }

  .cta__text p {
    font-size: 14px;
  }

  .cta__btn {
    font-size: 12px;
    padding: 0.6rem 1.5rem;
  }

  #map {
    padding: 3.5rem 1.5rem;
  }

  .map {
    max-height: 520px;
  }

  .text-container,
  .img-card__layout {
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  a.cta__projects-btn,
  a.btn--project {
    padding: 0.95rem 6rem;
  }

  .img-card-right .text-container,
  .img-card-section--right .img-card__layout {
    flex-direction: column;
  }

  .img-card-left .text-container,
  .img-card-section--left .img-card__layout {
    flex-direction: column-reverse;
  }

  .text-part,
  .img-card__content {
    padding-right: 0;
    padding-left: 0;
  }

  .img-card-part,
  .img-card__media {
    width: 100%;
  }

  .img-card-section .img-card-part img,
  .img-card-section .img-card__media img {
    width: min(320px, 80%);
    height: min(320px, 80%);
  }

  .img-card-right .img-card-part img,
  .img-card-section--right .img-card__media img {
    transform: translateX(-20%);
  }

  .img-card-left .img-card-part img,
  .img-card-section--left .img-card__media img {
    transform: translateX(20%);
  }

  .img-card-section .text-card,
  .img-card-section .img-card__overlay {
    width: min(260px, 75%);
    padding: 2rem;
    left: 33%;
  }

  .img-card-section .text-card h3,
  .img-card-section .img-card__overlay h3 {
    font-size: 1.8rem;
  }

  .img-card-right .text-card,
  .img-card-section--right .img-card__overlay {
    top: 50%;
    left: 67%;
  }

  .client-logo {
    flex: 0 0 calc((100% - 60px) / 4);
    height: 150px;
  }

  #contact {
    padding: 70px 0;
  }

  #contact .contact-container {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    column-gap: 32px;
  }

  #contact .contact-text h2 {
    font-size: 36px;
    margin-bottom: 18px;
  }

  #contact .contact-text__lead {
    max-width: 100%;
    font-size: 15px;
  }

  .contact-form {
    padding: 24px;
  }

  .form-row.two-cols {
    gap: 14px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px;
  }

  .form-group textarea {
    min-height: 130px;
  }

  .contact-form button {
    padding: 15px;
  }

  .whatsapp-box {
    min-height: 64px;
    padding: 10px 20px;
  }

  .whatsapp-box span {
    font-size: 15px;
  }

  .whatsapp-box img {
    height: 40px;
  }

  #contact .contact-text iframe {
    height: 260px;
  }

  .services-section {
    padding: 75px 0;
  }

  .services-section__header {
    margin-bottom: 38px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .service-card {
    min-height: 210px;
    padding: 26px 20px;
  }

  .feedback-section {
    padding: 72px 0;
  }

  .feedback-section__wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 34px;
  }

  .feedback-section__content {
    max-width: 520px;
  }

  .feedback-section__content h2,
  .feedback-section__description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .feedback-section__media {
    flex-direction: column;
    gap: 26px;
  }

  .feedback-section__image-wrap {
    width: 320px;
    height: 320px;
  }

  .testimonial-card {
    margin: 0 auto;
    max-width: 340px;
    text-align: left;
  }

  .faq-section__content {
    width: 60%;
    display: flex;
    flex-direction: column;
  }

  .project-categories__grid {
    grid-template-columns: 1fr;
  }

  .project-categories__inner {
    padding: 2.5rem 1rem 2rem;
    max-width: 600px;
    margin: 0 auto;
  }

  .project-category-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* =========================
   MOBILE STYLES
========================= */
@media (max-width: 767px) {
  .nav__items {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .ham-menu {
    height: 40px;
  }

  .ham-menu span {
    height: 3px;
    width: 2rem;
  }

  .nav__mobile {
    max-width: 45vw;
    font-size: clamp(14px, 3vw, 0.8rem);
    padding: 30px;
  }

  .nav__inner {
    padding: 0;
  }

  .nav__logo h3 {
    display: none;
  }

  .nav__logo img {
    width: 60px;
  }

  .footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    font-size: var(--fs-body);
  }

  .footer__logo {
    text-align: center;
  }

  .footer__logo h3 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 30px;
  }

  .footer__nav {
    text-align: center;
  }

  .footer__nav h5 {
    margin-bottom: 15px;
    font-size: var(--fs-body);
    letter-spacing: 0.5px;
  }

  .cta__section {
    align-self: center;
    text-align: center;
  }

  .cta__section h4 {
    font-size: 22px;
  }

  .footer__cta {
    padding: 0.7rem 10vw;
    border-radius: var(--radius-lg);
  }

  .header__cta {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .header__cta figure {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    margin: 0;
  }

  .header__img {
    width: min(100%, 380px);
    height: auto;
    max-height: 420px;
    object-fit: cover;
  }

  .cta__text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cta__text h1 {
    font-size: clamp(2.2px, 9vw, 3rem);
  }

  .cta__text p {
    font-size: 12px;
  }

  .metrics {
    gap: 15px;
  }

  .metric__item h3 {
    font-size: 1.5rem;
  }

  #map {
    padding: 3rem 1rem;
  }

  .map {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 460px;
  }

  .img-card-section {
    padding: 3rem 1rem 9rem;
  }

  .img-card-section .text-container,
  .img-card-section .img-card__layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .text-container,
  .img-card__layout {
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  a.btn--project {
    padding: 0.95rem 6rem;
  }

  .img-card-right .text-container,
  .img-card-section--right .img-card__layout {
    flex-direction: column;
  }

  .img-card-left .text-container,
  .img-card-section--left .img-card__layout {
    flex-direction: column-reverse;
  }

  .img-card-section .text-part,
  .img-card-section .img-card__content {
    padding-right: 0;
    padding-left: 0;
  }

  .img-card-section h2,
  .img-card-section h3 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
  }

  .img-card-section .img-card-part img,
  .img-card-section .img-card__media img {
    width: min(270px, 90%);
    height: min(270px, 90%);
    margin: 0 auto;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }

  .img-card-right .img-card-part img,
  .img-card-section--right .img-card__media img {
    transform: translateX(-20%);
  }

  .img-card-left .img-card-part img,
  .img-card-section--left .img-card__media img {
    transform: translateX(20%);
  }

  .img-card-section .text-card,
  .img-card-section .img-card__overlay {
    width: min(200px, 70%);
    padding: 1.5rem;
  }

  .img-card-right .text-card,
  .img-card-section--right .img-card__overlay {
    transform: translate(-80%, -20%);
  }

  .img-card-left .text-card,
  .img-card-section--left .img-card__overlay {
    transform: translate(-20%, -20%);
  }

  .img-card-section .text-card h3,
  .img-card-section .img-card__overlay h3 {
    font-size: 1.4rem;
  }

  .img-card-section .text-card li,
  .img-card-section .img-card__overlay li {
    font-size: 0.9rem;
  }

  .client-logo {
    flex: 0 0 calc((100% - 20px) / 2);
    height: 120px;
  }

  #contact {
    padding: 55px 0;
  }

  #contact .contact-container {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  #contact .contact-text {
    text-align: left;
  }

  #contact .contact-text h2 {
    margin-bottom: 16px;
  }

  #contact .contact-text__lead {
    font-size: 14px;
    line-height: 1.7;
    max-width: 100%;
  }

  #contact .contact-item--location,
  #contact .contact-item--phone,
  #contact .contact-item--email {
    font-size: 14px;
  }

  .contact-form {
    padding: 18px;
    border-radius: 18px;
  }

  .form-row.two-cols {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group {
    margin-bottom: 14px;
  }

  .form-group label {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
    padding: 11px 12px;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .contact-form button {
    font-size: 15px;
    padding: 14px;
    margin-bottom: 14px;
  }

  .whatsapp-box {
    min-height: auto;
    padding: 14px 16px;
    justify-content: center;
    text-align: center;
    gap: 12px;
    border-radius: 999px;
  }

  .whatsapp-box span {
    font-size: 15px;
    line-height: 1.4;
  }

  .whatsapp-box img {
    height: 34px;
  }

  #contact .contact-text iframe {
    height: 220px;
  }

  .services-section {
    padding: 60px 0;
  }

  .services-section__header {
    max-width: 320px;
    margin-bottom: 30px;
  }

  .services-section__eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
  }

  .services-section__header h2 {
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .services-section__subtitle {
    font-size: 0.82rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 245px;
    margin: 0 auto;
  }

  .service-card {
    min-height: 185px;
    padding: 24px 18px;
    border-radius: 20px;
  }

  .service-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }

  .service-card__icon img {
    width: 30px;
    height: 30px;
  }

  .service-card h3 {
    font-size: 1.28rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .feedback-section {
    padding: 60px 0;
  }

  .feedback-section__wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 26px;
  }

  .feedback-section__media {
    flex-direction: column;
    gap: 26px;
    width: 100%;
  }

  .feedback-section__content {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
  }

  .feedback-section__eyebrow {
    font-size: 0.62rem;
    margin-bottom: 12px;
  }

  .feedback-section__content h2 {
    line-height: 1.25;
    margin: 0 auto 18px;
  }

  .feedback-section__description {
    font-size: 0.82rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 250px;
  }

  .feedback-section__btn {
    display: none;
  }

  .feedback-section__image-wrap {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }

  .testimonial-card {
    width: 100%;
    max-width: 230px;
    padding: 24px 16px;
    border-radius: 6px;
    margin: 0 auto;
    text-align: left;
  }

  .testimonial-card__quote-icon {
    width: 18px;
  }

  .testimonial-card__text {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 18px;
  }

  .testimonial-card h3 {
    font-size: 1.45rem;
    margin-bottom: 6px;
  }

  .testimonial-card span {
    font-size: 0.82rem;
  }

  .feedback-section__btn--mobile {
    display: inline-flex;
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
  }

  #faq {
    padding: 60px 0;
  }

  .faq-section__wrapper {
    gap: 32px;
  }

  .faq-section__header {
    max-width: 100%;
  }

  .faq-section__eyebrow {
    font-size: 0.62rem;
    margin-bottom: 14px;
  }

  .faq-section__header h2 {
    line-height: 1.12;
    margin-bottom: 16px;
  }

  .faq-section__header p:last-child {
    max-width: 100%;
    font-size: var(--fs-body);
    line-height: 1.9;
  }

  .faq-section__content {
    width: 90%;
    display: flex;
    flex-direction: column;
  }

  .faq-accordion {
    padding-top: 0;
  }

  .faq-question {
    padding: 18px 0;
    font-size: 0.95rem;
    gap: 16px;
  }

  .faq-question span:first-child {
    max-width: 88%;
  }

  .faq-answer p {
    font-size: 0.9rem;
    line-height: 1.75;
    max-width: 100%;
    padding-bottom: 18px;
  }

  .services-highlight__grid {
    grid-template-columns: 1fr;
  }

  #project-categories {
    padding: 3.5rem 0;
  }

  .project-categories__inner {
    padding: 2.5rem 1rem 2rem;
    max-width: 500px;
    margin: 0 auto;
  }

  .project-categories__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .project-category-card {
    max-width: 300px;
    margin: 0 auto;
  }

  .project-category-card img {
    height: 220px;
  }

  .project-category-card__content h3 {
    font-size: 1.3rem;
  }

  .project-category-card__btn {
    width: 100%;
    max-width: 220px;
  }
}
