/* ============================================================
   REFORMAS SEGLAR — Stylesheet
   ============================================================ */

/* --- Variables -------------------------------------------- */
:root {
  --navy:       #0D1B2A;
  --navy-mid:   #1a2f4a;
  --blue:       #1e4db7;
  --blue-light: #2563eb;
  --gold:       #d4a843;
  --white:      #ffffff;
  --off-white:  #f8fafc;
  --gray-light: #e2e8f0;
  --gray:       #94a3b8;
  --gray-dark:  #475569;
  --text:       #1e293b;

  --radius:     8px;
  --radius-lg:  16px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow:     0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.18);

  --transition: .3s ease;
  --font-head:  'Montserrat', system-ui, sans-serif;
  --font-body:  'Lato', system-ui, sans-serif;
}

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography ------------------------------------------- */
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { font-size: 1rem; line-height: 1.75; color: var(--gray-dark); }

/* --- Utilities -------------------------------------------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section--dark { background: var(--navy); }
.section--gray { background: var(--off-white); }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title { color: var(--text); margin-bottom: 16px; }
.section-title--white { color: var(--white); }
.section-subtitle { max-width: 560px; color: var(--gray-dark); margin-bottom: 48px; }
.section-subtitle--white { color: var(--gray); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: all var(--transition);
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(30,77,183,.35);
}
.btn--primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,77,183,.4);
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover {
  background: #c4982f;
  transform: translateY(-2px);
}
.btn--outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn--outline-dark {
  border: 2px solid var(--blue);
  color: var(--blue);
}
.btn--outline-dark:hover {
  background: var(--blue);
  color: var(--white);
}

/* ============================================================
   LOGO
   ============================================================ */
.nav__logo-img {
  height: 54px;
  width: auto;
  display: block;
  border-radius: 6px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
.nav.scrolled {
  background: var(--navy);
  box-shadow: var(--shadow);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: .02em;
}
.nav__logo-icon {
  width: 38px; height: 38px;
  background: var(--blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.nav__logo-sub {
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--gray);
  display: block;
  line-height: 1;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .04em;
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }

.nav__cta { margin-left: 8px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 16px 24px 24px;
  gap: 8px;
}
.nav__mobile a {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile .btn { margin-top: 8px; width: 100%; justify-content: center; }
.nav__mobile.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.hero__body {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 72px;
}
.hero__body > .container {
  flex: 1;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/uploads/2020/08/hero-bg-img-1.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero.loaded .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,.88) 0%,
    rgba(13,27,42,.65) 60%,
    rgba(13,27,42,.3) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 80px 24px 60px;
  animation: fadeUp .8s ease .2s both;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__label::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--gold);
}
.hero__title {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero__title span { color: var(--gold); }
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
}
.hero__stat {
  flex: 1;
  background: var(--navy-mid);
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  animation: fadeUp .6s ease calc(.1s * var(--i)) both;
}
.hero__stat:last-child { border-right: none; }
.hero__stat-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-label {
  font-size: .8rem;
  color: var(--gray);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ============================================================
   SERVICES — Image Cards
   ============================================================ */
.services { padding: 96px 0; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.service-img-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 420px;
  cursor: pointer;
}
.service-img-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .7s ease;
}
.service-img-card:hover .service-img-card__bg { transform: scale(1.08); }
.service-img-card__content {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,27,42,.95) 0%,
    rgba(13,27,42,.5) 55%,
    rgba(13,27,42,.15) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  transition: background var(--transition);
}
.service-img-card:hover .service-img-card__content {
  background: linear-gradient(
    to top,
    rgba(13,27,42,.98) 0%,
    rgba(13,27,42,.7) 60%,
    rgba(13,27,42,.3) 100%
  );
}
.service-img-card__icon {
  width: 52px; height: 52px;
  background: var(--blue);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transform: translateY(8px);
  opacity: 0;
  transition: all .35s ease;
}
.service-img-card:hover .service-img-card__icon { opacity: 1; transform: translateY(0); }
.service-img-card__icon svg { width: 24px; height: 24px; fill: var(--white); }
.service-img-card__title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: .01em;
}
.service-img-card__desc {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .3s ease;
  opacity: 0;
}
.service-img-card:hover .service-img-card__desc { max-height: 120px; opacity: 1; }
.service-img-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: all .35s ease .1s;
}
.service-img-card:hover .service-img-card__cta { opacity: 1; transform: translateY(0); }

/* ============================================================
   CALL BUTTONS
   ============================================================ */
.call-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.btn--call-es {
  background: #16a34a;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(22,163,74,.35);
}
.btn--call-es:hover { background: #15803d; transform: translateY(-2px); }
.btn--call-en {
  background: #0369a1;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(3,105,161,.35);
}
.btn--call-en:hover { background: #0284c7; transform: translateY(-2px); }
.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
}
.btn--whatsapp:hover { background: #128C7E; transform: translateY(-2px); }

/* Hero quick contact */
.hero__contact-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero__contact-bar .btn {
  padding: 10px 20px;
  font-size: .82rem;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: all .3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.6);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }
.whatsapp-float__tooltip {
  position: absolute;
  right: 72px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
  border-right: none;
}
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__img-wrap {
  position: relative;
}
.about__img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about__img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about__img-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.about__img-badge span { font-size: .8rem; color: var(--gray); letter-spacing: .06em; text-transform: uppercase; }

.about__text { padding-bottom: 24px; }
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about__feature-icon {
  width: 36px; height: 36px;
  min-width: 36px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.about__feature-icon svg { width: 16px; height: 16px; }
.about__feature-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.about__feature-text span { font-size: .82rem; color: var(--gray); }

/* ============================================================
   PROJECTS PREVIEW
   ============================================================ */
.projects__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 16px;
  flex-wrap: wrap;
}
.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy);
  cursor: pointer;
}
.project-card--large {
  grid-row: span 2;
}
.project-card__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .6s ease;
}
.project-card--large .project-card__img { height: 100%; min-height: 100%; }
.project-card:hover .project-card__img { transform: scale(1.07); }
.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.project-card:hover .project-card__overlay { opacity: 1; }
.project-card__info {}
.project-card__cat {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.project-card__name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 16px;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: var(--blue);
  opacity: .3;
}
.process__step {
  text-align: center;
  padding: 0 16px;
  animation: fadeUp .5s ease calc(.1s * var(--i)) both;
}
.process__step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.process__step h3 { color: var(--white); margin-bottom: 8px; font-size: 1rem; }
.process__step p  { color: var(--gray); font-size: .85rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 16px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-card__stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: .95rem;
  color: var(--gray-dark);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gray-light);
}
.testimonial-card__name {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
}
.testimonial-card__loc { font-size: .8rem; color: var(--gray); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  position: relative;
  overflow: hidden;
}
.contact__bg {
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/uploads/2020/08/contact-us-bg-1.jpg');
  background-size: cover;
  background-position: center;
}
.contact__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,.88);
}
.contact__inner {
  position: relative;
  z-index: 2;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__info { color: var(--white); }
.contact__info .section-label { color: var(--gold); }
.contact__info .section-title { color: var(--white); margin-bottom: 16px; }
.contact__info p { color: rgba(255,255,255,.7); margin-bottom: 32px; }
.contact__details { display: flex; flex-direction: column; gap: 20px; }
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact__detail-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__detail-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.contact__detail-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2px;
}
.contact__detail-value { color: var(--white); font-size: .95rem; }

/* Form */
.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form__title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { margin-bottom: 16px; }
.form__group label {
  display: block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,77,183,.12);
}
.form__group textarea { resize: vertical; min-height: 120px; }
.form__submit { width: 100%; justify-content: center; margin-top: 8px; font-size: 1rem; padding: 16px; }
.form__note { text-align: center; font-size: .8rem; color: var(--gray); margin-top: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060e18;
  color: var(--white);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand p {
  color: var(--gray);
  font-size: .9rem;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all var(--transition);
  font-size: .9rem;
}
.footer__social a:hover { background: var(--blue); color: var(--white); }

.footer__col h4 {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: .88rem;
  color: var(--gray);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__links a::before {
  content: '→';
  font-size: .7rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--transition);
  display: inline-block;
}
.footer__links a:hover { color: var(--white); }
.footer__links a:hover::before { opacity: 1; transform: translateX(0); }

.footer__contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .88rem;
  color: var(--gray);
  align-items: flex-start;
}
.footer__contact-item svg { width: 14px; height: 14px; min-width: 14px; margin-top: 3px; fill: var(--gold); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: .82rem; color: var(--gray); }
.footer__bottom a { color: var(--blue-light); }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 140px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--gray);
  margin-top: 12px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--gray-dark); }

.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 40px;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1.5px solid var(--gray-light);
  color: var(--gray-dark);
  background: var(--white);
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gray-light);
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-item.hidden { display: none; }
.gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover .gallery-item__img { transform: scale(1.08); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__zoom {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(.6);
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--transition);
}
.gallery-item:hover .gallery-item__zoom { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.gallery-item__zoom svg { width: 20px; height: 20px; }
.gallery-item__caption {}
.gallery-item__cat {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.gallery-item__title {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: zoomIn .3s ease;
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  transition: background var(--transition);
}
.lightbox__close:hover { background: var(--blue); }
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  transition: background var(--transition);
}
.lightbox__prev:hover, .lightbox__next:hover { background: var(--blue); }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__caption {
  position: absolute;
  bottom: 24px;
  left: 50%; transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__img-badge { bottom: 16px; right: 16px; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .projects__grid { grid-template-columns: 1fr 1fr; }
  .project-card--large { grid-row: span 1; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-img-card { height: 360px; }
}
@media (max-width: 768px) {
  body { overflow-x: hidden; }
  .section { padding: 56px 0; }

  /* Nav */
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__lang-btn {
    display: inline-flex;
    padding: 6px 10px;
    font-size: .75rem;
    margin-right: 4px;
  }

  /* Hero */
  .hero { flex-direction: column; align-items: stretch; justify-content: flex-start; }
  .hero__content { padding: 100px 20px 48px; }
  .hero__title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .hero__subtitle { font-size: 1rem; margin-bottom: 28px; }
  .hero__actions { flex-direction: column; gap: 10px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__contact-bar { flex-direction: column; gap: 8px; }
  .hero__contact-bar .btn { width: 100%; justify-content: center; }
  .hero__stats { display: grid; grid-template-columns: 1fr 1fr; margin: 0; width: 100%; gap: 0; }
  .hero__stat { min-width: unset; border-bottom: 1px solid rgba(255,255,255,.08); border-right: 1px solid rgba(255,255,255,.08); }
  .hero__stat:nth-child(even) { border-right: none; }

  /* Services */
  .services { padding: 56px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .service-img-card { height: 280px; }
  .service-img-card__desc { max-height: 120px; opacity: 1; }
  .service-img-card__icon { opacity: 1; transform: none; }
  .service-img-card__cta { opacity: 1; transform: none; }

  /* About */
  .about__img-wrap { overflow: visible; }
  .about__img-main { height: 320px; }
  .about__img-badge {
    position: static;
    margin-top: 16px;
    display: inline-block;
    width: auto;
    box-shadow: var(--shadow);
  }
  .about__features { grid-template-columns: 1fr; }

  /* Projects */
  .projects__grid { grid-template-columns: 1fr; }
  .project-card__img { height: 220px; }

  /* Contact form */
  .contact__form { padding: 28px 20px; }
  .form__row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps::before { display: none; }

  /* Misc */
  .call-actions { flex-direction: column; }
  .call-actions .btn { width: 100%; justify-content: center; }
  .whatsapp-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero__stat-number { font-size: 1.8rem; }
  .section-title { font-size: 1.5rem; }
}
