
:root {
  --gold: #ffc400;
  --gold-soft: #ffda50;
  --black: #070707;
  --black-2: #101010;
  --black-3: #181818;
  --white: #ffffff;
  --gray-50: #f7f7f7;
  --gray-100: #eeeeee;
  --gray-300: #c8c8c8;
  --gray-500: #777777;
  --gray-700: #3b3b3b;
  --shadow: 0 24px 70px rgba(0,0,0,.20);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black-3);
  background: var(--white);
  line-height: 1.65;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.top-strip {
  background: var(--gold);
  color: var(--black);
  font-size: .80rem;
  font-weight: 700;
}
.top-strip__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.top-strip__links { display: flex; gap: 22px; }
.top-strip a { text-decoration: none; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,7,7,.96);
  border-bottom: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  width: 250px;
  overflow: hidden;
  border-radius: 8px;
}
.brand img { width: 100%; height: 72px; object-fit: cover; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links > a {
  color: #eaeaea;
  text-decoration: none;
  font-size: .86rem;
  font-weight: 700;
}
.nav-links > a:hover { color: var(--gold); }
.lang-button {
  border: 1px solid rgba(255,255,255,.34);
  background: transparent;
  color: white;
  min-width: 44px;
  height: 38px;
  border-radius: 999px;
  font-weight: 800;
}
.mobile-menu { display: none; }

.button {
  border: 0;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 43px; padding-inline: 18px; font-size: .82rem; }
.button--gold { background: var(--gold); color: var(--black); box-shadow: 0 14px 28px rgba(255,196,0,.17); }
.button--gold:hover { background: var(--gold-soft); }
.button--outline { color: var(--white); background: rgba(0,0,0,.24); border: 1px solid rgba(255,255,255,.55); }
.button--dark { color: var(--white); background: var(--black); }
.button--white { color: var(--black); background: var(--white); }
.button--full { width: 100%; }

.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero__image {
  position: absolute;
  inset: 0;
  background: url("images/office-exterior.jpg") center / cover no-repeat;
  transform: scale(1.02);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.93) 0%, rgba(0,0,0,.77) 50%, rgba(0,0,0,.48) 100%),
    linear-gradient(0deg, rgba(0,0,0,.62), transparent 45%);
}
.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: center;
  padding-block: 100px;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .76rem;
  font-weight: 900;
  margin-bottom: 16px;
}
.eyebrow--dark { color: var(--black); }
.hero h1 {
  margin: 0 0 24px;
  max-width: 790px;
  text-transform: uppercase;
  font-size: clamp(3.5rem, 6.7vw, 6.7rem);
  line-height: .94;
  letter-spacing: -.04em;
}
.hero h1 span, .hero h1 strong { display: block; }
.hero h1 strong { color: var(--gold); }
.hero__copy > p { max-width: 720px; color: #dedede; font-size: 1.08rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.hero__trust {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 15px;
}
.hero__trust div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-left: 13px;
  border-left: 3px solid var(--gold);
}
.hero__trust span { color: var(--gold); font-size: .75rem; font-weight: 900; }
.hero__trust strong { font-size: .80rem; }

.hero-card {
  background: rgba(9,9,9,.94);
  padding: 30px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card img { width: 100%; border-radius: 12px; margin-bottom: 22px; }
.hero-card h2 { font-size: 1.9rem; margin: 0 0 10px; }
.hero-card p { color: #bdbdbd; font-size: .91rem; }
.hero-card__phone {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.hero-card__phone > span {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold); color: var(--black); font-size: 1.1rem;
}
.hero-card__phone small, .hero-card__phone strong { display: block; }
.hero-card__phone small { color: #aaa; }
.hero-card__phone strong { font-size: 1.08rem; }

.quick-bar { background: var(--gold); }
.quick-bar__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.quick-bar__grid div {
  min-height: 90px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-right: 1px solid rgba(0,0,0,.16);
}
.quick-bar__grid div:last-child { border-right: 0; }
.quick-bar__grid span { font-size: 1.4rem; }
.quick-bar__grid strong { font-size: .82rem; }

.section { padding: 100px 0; }
.section-heading { max-width: 780px; margin: 0 auto 48px; text-align: center; }
.section-heading h2, .about h2, .location h2, .contact h2 {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.03em;
}
.section-heading p { color: var(--gray-500); }
.section-heading--light h2 { color: var(--white); }

.services { background: var(--gray-50); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: 17px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-card img { width: 100%; height: 190px; object-fit: cover; }
.service-card__body { padding: 23px; position: relative; }
.service-card__body > span {
  position: absolute; right: 20px; top: 20px;
  color: var(--gold); font-size: 1.9rem; font-weight: 900;
}
.service-card h3 { margin: 0 45px 10px 0; font-size: 1.04rem; }
.service-card p { margin: 0; color: var(--gray-500); font-size: .83rem; }

.about { background: var(--white); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 75px; align-items: center; }
.about__image { position: relative; }
.about__image img { width: 100%; min-height: 510px; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow); }
.about__badge {
  position: absolute;
  left: 24px; bottom: 24px;
  background: var(--black);
  color: var(--white);
  border-left: 6px solid var(--gold);
  padding: 17px 22px;
  border-radius: 8px;
}
.about__badge strong, .about__badge span { display: block; }
.about__badge span { color: #bdbdbd; margin-top: 4px; font-size: .82rem; }
.about__copy > p, .location__copy > p, .contact__info > p { color: var(--gray-700); }
.about__facts { margin-top: 30px; display: grid; gap: 10px; }
.about__facts div {
  padding: 15px 17px;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  background: #fafafa;
}
.about__facts small, .about__facts strong { display: block; }
.about__facts small { color: var(--gray-500); margin-bottom: 3px; }

.process { background: var(--black); color: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.process-step {
  min-height: 260px;
  padding: 28px;
  background: linear-gradient(145deg, #161616, #0d0d0d);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
}
.process-step > span { color: var(--gold); font-size: 2.8rem; font-weight: 900; }
.process-step h3 { margin: 16px 0 9px; }
.process-step p { color: #aaa; font-size: .84rem; }

.location { background: var(--gray-50); }
.split--location { grid-template-columns: .8fr 1.2fr; }
.location__buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.map { height: 500px; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); }
.map iframe { width: 100%; height: 100%; border: 0; }

.cta { background: var(--gold); padding: 68px 0; }
.cta__inner { display: flex; justify-content: space-between; align-items: center; gap: 35px; }
.cta h2 { margin: 0; max-width: 760px; font-size: clamp(2.2rem, 4.6vw, 4rem); line-height: 1; text-transform: uppercase; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: start; }
.contact-list { margin-top: 28px; display: grid; gap: 11px; }
.contact-list a {
  display: flex; align-items: center; gap: 14px;
  padding: 14px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  text-decoration: none;
  transition: transform .2s ease, border .2s ease;
}
.contact-list a:hover { transform: translateX(4px); border-color: var(--gold); }
.contact-list a > span {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold); color: var(--black); font-weight: 900;
}
.contact-list small, .contact-list strong { display: block; }
.contact-list small { color: var(--gray-500); margin-bottom: 2px; }

.contact__panel {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.contact__panel img { border-radius: 10px; margin-bottom: 22px; }
.contact__panel h3 { font-size: 1.6rem; margin: 0 0 8px; }
.contact__panel p { color: #aaa; font-size: .88rem; }
.contact__panel .button { margin-top: 10px; }
.facebook-button { background: transparent; }

.footer { background: #050505; color: #aaa; padding: 70px 0 20px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr .7fr 1fr; gap: 70px; }
.footer__grid > div { display: flex; flex-direction: column; gap: 10px; }
.footer__brand img { max-width: 300px; border-radius: 8px; margin-bottom: 10px; }
.footer h4 { color: var(--white); margin: 0 0 7px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--gold); }
.footer__bottom {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .75rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 120;
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: white;
  background: #25d366;
  box-shadow: 0 15px 36px rgba(0,0,0,.30);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.07); }
.whatsapp-float svg { width: 35px; height: 35px; fill: currentColor; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.modal.open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.78); backdrop-filter: blur(5px); }
.modal__dialog {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 30px 100px rgba(0,0,0,.40);
}
.modal__close {
  position: absolute;
  top: 13px; right: 15px;
  width: 42px; height: 42px;
  border: 0; border-radius: 50%;
  background: #ededed;
  font-size: 1.7rem;
}
.modal__header h2 { margin: 0 45px 8px 0; font-size: 2rem; }
.modal__header p { color: var(--gray-500); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin: 24px 0; }
.quote-form label { display: block; font-size: .80rem; font-weight: 800; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #d6d6d6;
  border-radius: 9px;
  padding: 12px 13px;
  background: var(--white);
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: 2px solid rgba(255,196,0,.28);
  border-color: var(--gold);
}
.form-span-2 { grid-column: span 2; }
.form-note { text-align: center; color: var(--gray-500); font-size: .74rem; margin-bottom: 0; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .nav-links { gap: 13px; }
  .nav-links > a { font-size: .76rem; }
  .brand { width: 210px; }
  .hero__content { grid-template-columns: 1fr; }
  .hero-card { max-width: 650px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 830px) {
  .top-strip__inner { padding: 8px 0; display: block; text-align: center; }
  .top-strip__links { justify-content: center; flex-wrap: wrap; gap: 2px 16px; margin-top: 3px; }
  .mobile-menu {
    display: flex;
    width: 47px; height: 45px;
    border: 0; background: transparent;
    flex-direction: column; justify-content: center; align-items: flex-end; gap: 6px;
  }
  .mobile-menu span { width: 28px; height: 2px; background: white; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    display: none;
    padding: 20px;
    background: #080808;
    border-top: 1px solid rgba(255,255,255,.1);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links > a, .lang-button { text-align: center; }
  .hero { min-height: auto; }
  .hero__content { padding-block: 76px; gap: 50px; }
  .hero h1 { font-size: clamp(3.4rem, 13vw, 5.4rem); }
  .hero__trust { grid-template-columns: 1fr; }
  .quick-bar__grid { grid-template-columns: repeat(2,1fr); }
  .quick-bar__grid div:nth-child(2) { border-right: 0; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .section { padding: 76px 0; }
  .cta__inner { display: block; }
  .cta__actions { margin-top: 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand { width: 185px; }
  .brand img { height: 58px; }
  .nav { min-height: 72px; }
  .hero h1 { font-size: 3.25rem; }
  .hero__actions, .cta__actions, .location__buttons { display: grid; }
  .button { width: 100%; }
  .quick-bar__grid, .service-grid, .process-grid { grid-template-columns: 1fr; }
  .quick-bar__grid div { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.15); }
  .section-heading h2, .about h2, .location h2, .contact h2 { font-size: 2.5rem; }
  .service-card img { height: 210px; }
  .about__image img { min-height: 360px; }
  .map { height: 360px; }
  .footer__bottom { display: block; text-align: center; }
  .footer__bottom span { display: block; margin: 6px 0; }
  .modal { padding: 10px; }
  .modal__dialog { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-span-2 { grid-column: span 1; }
}
