/* ============================================================
   ANDERSON GENERAL CONTRACTOR — Main Stylesheet
   Palette extracted from brand photo:
     Primary bg : #F5F5F5  (light neutral)
     Dark bg    : #2A2A2A  (near-black)
     Teal accent: #6BBCBC  (dominant color accent)
     Teal light : #9ED4D4
     Teal dark  : #4A9999
     Red accent : #D94040  (bold accent)
     Mid grey   : #7A7A7A
     Light grey : #C8C8C8
   Typography: Playfair Display (headings) + Inter (body)
   Strategy: Mobile-first — base styles for mobile,
             then min-width media queries for tablet/desktop.
============================================================ */

/* ---- CSS Custom Properties -------------------------------- */
:root {
  /* Palette */
  --cream:       #F5F4F0;
  --white:       #FFFFFF;
  --dark:        #1E1E1E;
  --dark-mid:    #2A2A2A;
  --grey-mid:    #6E6E6E;
  --grey-light:  #C8C8C8;
  --grey-bg:     #F0F0EE;

  --teal:        #5AADAD;
  --teal-light:  #8ECFCF;
  --teal-dark:   #3D8A8A;
  --teal-bg:     #EBF5F5;

  --red:         #D43F3F;
  --red-dark:    #B02E2E;

  /* Typography */
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-gap: 5rem;
  --container:   1200px;
  --side-pad:    1.25rem;

  /* Transitions */
  --ease:        cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---- Utility ---------------------------------------------- */
.section-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--side-pad);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: .6rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: .95rem;
  color: var(--grey-mid);
  max-width: 540px;
  margin-inline: auto;
}

/* ---- Fade-in animation ------------------------------------ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Buttons ---------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .85rem 1.8rem;
  border-radius: 3px;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .15s var(--ease);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--teal);
  color: var(--white);
  border: 2px solid var(--teal);
}
.btn--primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}

.btn--outline {
  background: transparent;
  color: var(--teal-dark);
  border: 2px solid var(--teal);
}
.btn--outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn--full { width: 100%; text-align: center; }


/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: transparent;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}

.navbar--scrolled {
  background: var(--dark-mid);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--side-pad);
  max-width: var(--container);
  margin-inline: auto;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.navbar__logo-img {
  height: 70px;   /* mobile */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.35)) brightness(1.15);
  transition: opacity .2s;
}
.navbar__logo-img:hover { opacity: .85; }

/* Navbar right side (lang + burger) */
.navbar__right {
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: .3rem;
}
.lang-switcher--desktop { display: none; } /* solo visible en desktop */

.lang-switcher__btn {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
  transition: color .2s;
  padding: .2rem .1rem;
}
.lang-switcher__btn:hover,
.lang-switcher__btn--active {
  color: var(--teal-light);
}
.lang-switcher__sep {
  color: rgba(255,255,255,.25);
  font-size: .7rem;
}

/* Burger */
.navbar__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
}
.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
  transform-origin: center;
}
.navbar__burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Desktop links — hidden on mobile */
.navbar__links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.navbar__link {
  color: rgba(255,255,255,.82);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: color .2s;
}
.navbar__link:hover { color: var(--teal-light); }

.navbar__cta {
  background: var(--teal);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .55rem 1.3rem;
  border-radius: 3px;
  transition: background .25s;
}
.navbar__cta:hover { background: var(--teal-dark); }

/* Mobile drawer */
.navbar__drawer {
  display: flex;
  flex-direction: column;
  background: var(--dark-mid);
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
  border-top: 1px solid rgba(255,255,255,.06);
}
.navbar__drawer--open { max-height: 400px; }

.navbar__drawer-link,
.navbar__drawer-cta {
  padding: 1rem var(--side-pad);
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s, padding-left .2s;
}
.navbar__drawer-link:hover { color: var(--teal-light); padding-left: 2rem; }

.navbar__drawer-cta {
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  text-align: center;
  margin: .75rem var(--side-pad);
  border-radius: 3px;
  border-bottom: none;
}
.navbar__drawer-cta:hover { background: var(--teal-dark); padding-left: var(--side-pad); }


/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1541919641728-39f701044ef7?q=80&w=2000&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

/* Decorative teal grid overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(90,173,173,.04) 0, rgba(90,173,173,.04) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg, rgba(90,173,173,.04) 0, rgba(90,173,173,.04) 1px, transparent 1px, transparent 60px);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,28,28,.4) 0%, rgba(20,28,28,.7) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 7rem var(--side-pad) 4rem;
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
}

.hero__eyebrow {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 10vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  max-width: 420px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  align-items: flex-start;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  z-index: 2;
}
.hero__scroll-hint span {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal-light), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: .6; }
  50%      { transform: scaleY(.5); opacity: 1; }
}


/* ============================================================
   STATS STRIP
============================================================ */
.stats {
  background: var(--dark-mid);
  padding: 2.5rem var(--side-pad);
  border-bottom: 1px solid rgba(90,173,173,.2);
}

.stats__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1rem;
  max-width: var(--container);
  margin-inline: auto;
  text-align: center;
}

.stats__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
}

.stats__label {
  display: block;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: .3rem;
}


/* ============================================================
   SERVICES
============================================================ */
.services {
  padding: var(--section-gap) 0;
  background: var(--cream);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border-radius: 6px;
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              border-color .3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(90,173,173,.15);
  border-color: var(--teal);
}

.service-card__icon {
  font-size: 1.8rem;
  margin-bottom: .9rem;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .6rem;
}

.service-card__text {
  font-size: .9rem;
  color: var(--grey-mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.service-card__link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: .04em;
  transition: color .2s, letter-spacing .2s;
}
.service-card__link:hover {
  color: var(--teal);
  letter-spacing: .08em;
}


/* ============================================================
   FEATURED PROJECT BANNER
============================================================ */
.feature-banner {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--dark-mid);
  overflow: hidden;
}

.feature-banner__text {
  padding: 3rem var(--side-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
}

.feature-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
}

.feature-banner__body {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  max-width: 420px;
}

.feature-banner__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.feature-banner__image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 250px;
  background: linear-gradient(135deg, var(--teal-dark) 0%, #2A4040 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}


/* ============================================================
   PORTFOLIO
============================================================ */
.portfolio {
  padding: var(--section-gap) 0;
  background: var(--white);
}

.portfolio__filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.portfolio__filter {
  padding: .45rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--grey-light);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--grey-mid);
  transition: all .25s;
}
.portfolio__filter:hover,
.portfolio__filter--active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.portfolio__item { transition: opacity .3s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.portfolio__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.portfolio__thumb {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.portfolio__item--tall .portfolio__thumb  { aspect-ratio: 1 / 1.5; }
.portfolio__item--wide .portfolio__thumb  { aspect-ratio: 2 / 1; }

/* Thumb background colours — replace with real project images */
.portfolio__thumb--1 { background: linear-gradient(135deg, #4A8A8A 0%, #1E3A3A 100%); }
.portfolio__thumb--2 { background: linear-gradient(135deg, #6AADAD 0%, #2A4A4A 100%); }
.portfolio__thumb--3 { background: linear-gradient(135deg, #3A7070 0%, #1A2E2E 100%); }
.portfolio__thumb--4 { background: linear-gradient(135deg, #5AADAD 0%, #203838 100%); }
.portfolio__thumb--5 { background: linear-gradient(135deg, #80BEBE 0%, #2A4040 100%); }
.portfolio__thumb--6 { background: linear-gradient(135deg, #3E8080 0%, #1A2828 100%); }

.portfolio__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,35,35,.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity .3s var(--ease);
  text-align: center;
}
.portfolio__thumb:hover .portfolio__overlay { opacity: 1; }

.portfolio__overlay h3 {
  font-family: var(--font-serif);
  font-size: .95rem;
  color: var(--white);
  margin-bottom: .3rem;
}
.portfolio__overlay p {
  font-size: .72rem;
  color: var(--teal-light);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.portfolio__item--wide {
  grid-column: span 2;
}

.portfolio__cta {
  text-align: center;
  margin-top: 2.5rem;
}


/* ============================================================
   PROCESS
============================================================ */
.process {
  padding: var(--section-gap) 0;
  background: var(--teal-bg);
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process__step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.process__step-number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process__step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .4rem;
}

.process__step-content p {
  font-size: .9rem;
  color: var(--grey-mid);
  line-height: 1.7;
}

.process__connector {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--teal), var(--teal-light));
  margin-left: 26px;
}


/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
  padding: var(--section-gap) 0;
  background: var(--dark-mid);
}

.testimonials .section-eyebrow { color: var(--teal-light); }
.testimonials .section-title   { color: var(--white); }

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 1.8rem;
  transition: border-color .3s, transform .3s;
}
.testimonial:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}

.testimonial__stars {
  color: var(--teal-light);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}

.testimonial__quote {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: 1.4rem;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial__author strong {
  display: block;
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
}

.testimonial__author span {
  display: block;
  font-size: .75rem;
  color: var(--teal-light);
  margin-top: .1rem;
}


/* ============================================================
   CONTACT
============================================================ */
.contact {
  padding: var(--section-gap) 0;
  background: var(--cream);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--side-pad);
}

.contact__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact__body {
  font-size: .9rem;
  color: var(--grey-mid);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.contact__details li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--grey-mid);
}

.contact__detail-icon { font-size: 1rem; }

.contact__details a:hover { color: var(--teal-dark); }

/* Form */
.contact__form-wrap {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,.07);
}

.contact__success {
  background: #DCFCE7;
  color: #166534;
  border: 1px solid #BBF7D0;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 15px;
}

.contact__form { display: flex; flex-direction: column; gap: 1.1rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--dark);
  background: var(--grey-bg);
  border: 1.5px solid transparent;
  border-radius: 4px;
  padding: .75rem 1rem;
  outline: none;
  transition: border-color .25s, background .25s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-light); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
}

.form-group textarea { resize: vertical; }


/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 3.5rem var(--side-pad) 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: var(--container);
  margin-inline: auto;
  margin-bottom: 3rem;
}

.footer__logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.35)) brightness(1.15);
  margin-bottom: .8rem;
  opacity: .9;
}

.footer__tagline {
  font-size: .82rem;
  line-height: 1.6;
  color: rgba(255,255,255,.4);
}

.footer__heading {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer__list li,
.footer__list a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}

.footer__list a:hover { color: var(--teal-light); }

.footer__list--contact li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  align-items: center;
  text-align: center;
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  max-width: var(--container);
  margin-inline: auto;
}


/* ============================================================
   TABLET — min-width: 640px
============================================================ */
@media (min-width: 640px) {

  :root { --side-pad: 2rem; }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stats__inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .services__grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}


/* ============================================================
   DESKTOP — min-width: 1024px
============================================================ */
@media (min-width: 1024px) {

  :root {
    --side-pad: 3rem;
    --section-gap: 7rem;
  }

  /* Navbar */
  .navbar__burger  { display: none; }
  .navbar__links   { display: flex; }
  .navbar__drawer  { display: none !important; }
  .navbar__right   { display: none; } /* lang switcher en mobile se oculta, va en desktop nav */
  .lang-switcher--desktop { display: flex; }
  .navbar__logo-img { height: 90px; }

  /* Hero */
  .hero__content {
    padding: 8rem var(--side-pad) 5rem;
    max-width: 680px;
  }

  /* Services 3-col */
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Featured Banner */
  .feature-banner {
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
  }
  .feature-banner__text {
    padding: 5rem var(--side-pad);
  }
  .feature-banner__image {
    aspect-ratio: unset;
  }

  /* Portfolio masonry-ish */
  .portfolio__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .portfolio__item--tall { grid-row: span 2; }
  .portfolio__item--wide { grid-column: span 2; }

  /* Process — horizontal */
  .process__steps {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
  .process__step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .process__connector {
    width: 60px;
    height: 1px;
    margin: 26px 0 0 0;
    background: linear-gradient(to right, var(--teal), var(--teal-light));
    flex-shrink: 0;
  }
  .process__step-number { margin-bottom: 1rem; }

  /* Testimonials 3-col */
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Contact 2-col */
  .contact__inner {
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  /* Footer 4-col */
  .footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
  }
}

/* ── Lightbox ─────────────────────────────────────────────── */
.lb {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.lb--open { display: flex; }

.lb__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 92vw;
    max-height: 90vh;
}
.lb__content img {
    max-width: 90vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 6px;
    transition: opacity .15s ease;
}
.lb__caption {
    color: #fff;
    font-size: 15px;
    margin-top: 12px;
    font-weight: 600;
}
.lb__close {
    position: absolute;
    top: 16px; right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    opacity: .8;
}
.lb__close:hover { opacity: 1; }
.lb__prev, .lb__next {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.12);
    border: none;
    color: #fff;
    font-size: 42px;
    line-height: 1;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background .2s;
}
.lb__prev { left: 12px; }
.lb__next { right: 12px; }
.lb__prev:hover, .lb__next:hover { background: rgba(255,255,255,.25); }
.lb__dots {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}
.lb__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    cursor: pointer;
    transition: background .2s;
}
.lb__dot--active { background: #5AADAD; }
.portfolio__count {
    display: inline-block;
    font-size: 12px;
    margin-top: 4px;
    opacity: .85;
}
/* ---- WhatsApp Button -------------------------------------- */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  z-index: 1000;
  transition: transform 0.3s var(--ease), background-color 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #128C7E;
  color: white;
}

@media (max-width: 768px) {
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}
