:root {
  --bg: #0f0f0c;
  --bg-soft: #191912;
  --gold: #d8be87;
  --gold-strong: #b4965b;
  --text: #f7f2e6;
  --text-dark: #1b1a14;
  --muted: #cfcbc0;
  --line: rgba(216, 190, 135, 0.25);
  --radius: 18px;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* ─── NAV ─── */

.hero {
  position: relative;
  min-height: 94vh;
  color: var(--text);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, rgba(0, 0, 0, 0.88) 10%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.82) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("romanmoving1.jpeg");
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: saturate(0.88);
}

.nav,
.hero-content {
  position: relative;
  z-index: 2;
}

.nav {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(216, 190, 135, 0.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.cta-group,
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lang-switch {
  display: inline-flex;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(216, 190, 135, 0.35);
  border-radius: 999px;
  overflow: hidden;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: #e6dcc7;
  padding: 6px 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.8rem;
  transition: background-color 0.2s ease;
}

.lang-btn.active {
  background: var(--gold);
  color: #19180f;
}

/* ─── HERO ─── */

.hero-content {
  padding: 11vh 0 8vh;
  max-width: 700px;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
}

.eyebrow.dark {
  color: #8e733f;
}

.hero h1,
h2,
h3,
.brand span {
  font-family: "Cinzel", serif;
  letter-spacing: 0.01em;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin: 14px 0 12px;
}

.hero-copy {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.06rem;
  margin-bottom: 26px;
}

/* ─── BUTTONS ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-gold {
  background: linear-gradient(120deg, var(--gold) 0, #a6854b 100%);
  color: #181710;
}

.btn-dark {
  background: #181811;
  color: var(--text);
  border-color: #2f2f24;
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(10, 10, 8, 0.55);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.btn-full {
  width: 100%;
}

.section {
  padding: 80px 0;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(1.6rem, 3.8vw, 2.7rem);
  line-height: 1.2;
}

/* ─── STATS STRIP ─── */

.stats-strip {
  background: linear-gradient(135deg, #1b1a12 0, #13130e 100%);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat strong {
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--gold);
  line-height: 1;
}

.stat span {
  font-family: "Cinzel", serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--gold);
}

.stat p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ─── TRUST STRIP ─── */

.trust-strip {
  position: relative;
  padding: 48px 0 0;
}

.trust-grid {
  background: linear-gradient(135deg, #1b1a12 0, #13130e 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  box-shadow: var(--shadow);
}

.trust-grid article {
  text-align: center;
}

.trust-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: rgba(216, 190, 135, 0.06);
  color: var(--gold);
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-grid h3,
.trust-grid p {
  margin: 0;
}

.trust-grid h3 {
  color: var(--gold);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.trust-grid p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ─── SERVICES ─── */

.services {
  background: linear-gradient(180deg, #0d0d0b 0, #11110d 100%);
  color: var(--text);
}

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

.card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(27, 26, 18, 0.6) 0, rgba(19, 19, 14, 0.8) 100%);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 190, 135, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(216, 190, 135, 0.12);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(216, 190, 135, 0.12) 0, rgba(216, 190, 135, 0.04) 100%);
  border: 1px solid rgba(216, 190, 135, 0.2);
  color: var(--gold);
  margin-bottom: 20px;
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--text);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ─── PROCESS ─── */

.process {
  background: linear-gradient(180deg, #11110d 0, #0d0d0b 100%);
  color: var(--text);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0, var(--gold-strong) 100%);
  color: #19180f;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.step h3 {
  color: var(--gold);
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.step p {
  color: var(--muted);
  margin: 0;
  font-size: 0.92rem;
}

/* ─── AREAS ─── */

.areas {
  background: linear-gradient(160deg, #f2e6c8 0, #e5d5ae 100%);
  color: var(--text-dark);
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.area-tag {
  background: rgba(27, 26, 20, 0.08);
  border: 1px solid rgba(139, 112, 56, 0.3);
  color: #3d3420;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.area-tag:hover {
  background: #1b1a14;
  color: var(--gold);
}

.areas-note {
  color: #5e5035;
  font-style: italic;
  margin: 0;
}

/* ─── GALLERY ─── */

.gallery {
  background: linear-gradient(180deg, #11110d 0, #0d0d0b 100%);
  color: var(--text);
}

.section-heading.light h2 {
  color: var(--text);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery figure:hover img {
  transform: scale(1.04);
}

/* ─── TESTIMONIALS ─── */

.testimonials {
  background: linear-gradient(160deg, #f2e6c8 0, #e5d5ae 100%);
  color: var(--text-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  background: rgba(255, 250, 237, 0.7);
  border: 1px solid rgba(139, 112, 56, 0.25);
  border-radius: 16px;
  padding: 24px;
}

.stars {
  color: #c9a84c;
  font-size: 1.2rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: #3d3420;
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviewer strong {
  color: #2a2414;
}

.reviewer span {
  color: #8e733f;
  font-size: 0.85rem;
}

/* ─── QUOTE FORM ─── */

.quote {
  background: linear-gradient(180deg, #11110d 0, #0d0d0b 100%);
  color: var(--text);
}

.quote-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: linear-gradient(135deg, #1b1a12 0, #13130e 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.quote-info h2 {
  color: var(--text);
  margin: 10px 0 12px;
}

.quote-info p {
  color: var(--muted);
  margin: 0 0 20px;
}

.quote-phones {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(216, 190, 135, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.2s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #7a7464;
}

.quote-form select {
  cursor: pointer;
  color: #7a7464;
}

.quote-form select:valid {
  color: var(--text);
}

.quote-form option {
  background: #1b1a12;
  color: var(--text);
}

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

.quote-form textarea {
  resize: vertical;
}

/* ─── CONTACT ─── */

.contact-box {
  background: linear-gradient(145deg, #f6ebd2 0, #dfc996 100%);
  border-radius: 24px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.contact-box h2 {
  margin: 10px 0 10px;
}

.contact-box p {
  margin: 0;
  color: #4d4128;
}

/* ─── FOOTER ─── */

.footer {
  border-top: 1px solid var(--line);
  color: #a9a08f;
  padding: 26px 0 34px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
}

.footer-brand {
  font-family: "Cinzel", serif;
  font-weight: 600;
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #a9a08f;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

/* ─── WHATSAPP FLOAT ─── */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-float svg {
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

/* ─── ANIMATIONS ─── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */

@media (max-width: 980px) {
  .card-grid,
  .gallery-grid,
  .contact-box,
  .quote-box {
    grid-template-columns: 1fr 1fr;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content {
    max-width: 92%;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .nav-actions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(15, 15, 12, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 20px;
    gap: 14px;
    z-index: 5;
  }

  .nav-actions.open {
    display: flex;
  }

  .nav-link {
    font-size: 1rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(216, 190, 135, 0.12);
  }

  .lang-switch {
    align-self: flex-start;
  }

  .btn-sm {
    text-align: center;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

  .trust-grid article {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .trust-icon {
    margin: 0;
    flex-shrink: 0;
  }

  .card-grid,
  .gallery-grid,
  .contact-box,
  .testimonials-grid,
  .quote-box {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .section,
  .hero-content {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .contact-box,
  .quote-box {
    padding: 24px;
  }

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

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

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

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

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
  }
}
