@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

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

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

body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #f0ece4;
  background-color: #111111;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ========== CSS VARIABLES ========== */
:root {
  --color-bg: #111111;
  --color-bg-raised: #1a1a1a;
  --color-bg-card: #222222;
  --color-accent: #d4911e;
  --color-accent-light: #e8a630;
  --color-accent-dim: #a06d10;
  --color-text: #f0ece4;
  --color-text-muted: #9a9590;
  --color-text-dim: #6b6560;
  --color-border: #333333;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --max-width: 1200px;
  --gutter: 1.5rem;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 10vw, 7rem); }
h2 { font-size: clamp(2rem, 6vw, 4rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }

p {
  max-width: 60ch;
}

/* ========== LAYOUT ========== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: 5rem 0;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--color-text);
}

.nav__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff !important;
  padding: 0.5rem 1.1rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}

.nav__wa:hover {
  background: #1fb855;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 17, 17, 0.97) 0%,
    rgba(17, 17, 17, 0.7) 35%,
    rgba(17, 17, 17, 0.3) 60%,
    rgba(17, 17, 17, 0.15) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter) 5rem;
}

.hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid var(--color-accent-dim);
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.hero__title {
  color: var(--color-text);
  margin-bottom: 1rem;
}

.hero__title span {
  color: var(--color-accent);
}

.hero__tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 50ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}

.btn--primary {
  background: #25d366;
  color: #fff;
}

.btn--primary:hover {
  background: #1fb855;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-bg);
}

.btn--accent:hover {
  background: var(--color-accent-light);
  transform: translateY(-1px);
}

/* ========== STRIPE ACCENT ========== */
.stripe {
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-accent) 0,
    var(--color-accent) 40px,
    transparent 40px,
    transparent 48px
  );
}

/* ========== INTRO / TRUST ========== */
.intro {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.intro__text h2 {
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.intro__text p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro__text p strong {
  color: var(--color-text);
  font-weight: 500;
}

.intro__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-dim);
}

/* ========== SERVICES ========== */
.services {
  background: var(--color-bg-raised);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--color-border);
}

.service-card {
  background: var(--color-bg);
  padding: 2.5rem 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: background 0.3s;
}

.service-card:hover {
  background: var(--color-bg-card);
}

.service-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.2rem;
}

.service-card__content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.service-card__content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========== IMAGE BAND ========== */
.image-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.image-band img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* ========== REVIEWS ========== */
.reviews {
  background: var(--color-bg);
  position: relative;
}

.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border);
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.review-card {
  padding: 2.5rem 2rem;
  border-left: 3px solid var(--color-accent);
  background: var(--color-bg-raised);
}

.review-card__quote {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  position: relative;
}

.review-card__quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-accent-dim);
  position: absolute;
  top: -1.5rem;
  left: -0.3rem;
  line-height: 1;
  opacity: 0.5;
}

.review-card__author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.review-card__source {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  margin-top: 0.2rem;
}

.reviews__cta {
  text-align: center;
}

/* ========== LOCATION ========== */
.location {
  background: var(--color-bg-raised);
  border-top: 1px solid var(--color-border);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.location__info h2 {
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.location__address {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.location__address strong {
  color: var(--color-text);
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}

.location__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: var(--color-text-muted);
}

.location__detail-icon {
  flex-shrink: 0;
  width: 20px;
  color: var(--color-accent);
  font-weight: 600;
  text-align: center;
}

.location__map {
  aspect-ratio: 16/10;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.location__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 3rem 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--color-text-dim);
}

/* ========== WHATSAPP FLOATING ========== */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 640px) {
  .image-band {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (min-width: 768px) {
  :root {
    --gutter: 2.5rem;
  }

  section {
    padding: 6rem 0;
  }

  .intro__grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .location__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .image-band {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .image-band img {
    height: 340px;
  }

  .intro__stats {
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(17, 17, 17, 0.97);
    padding: 1.5rem var(--gutter);
    gap: 1rem;
    border-bottom: 1px solid var(--color-border);
  }

  .nav__links.active {
    display: flex;
  }

  .nav__toggle {
    display: block;
  }

  .hero {
    min-height: 90vh;
  }

  .hero__content {
    padding-bottom: 3rem;
  }

  .intro__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 1rem 1.2rem;
  }

  .stat__number {
    font-size: 2rem;
    margin-bottom: 0;
  }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.2s; }
.animate-in:nth-child(3) { animation-delay: 0.3s; }
.animate-in:nth-child(4) { animation-delay: 0.4s; }

.hero .animate-in:nth-child(1) { animation-delay: 0.3s; }
.hero .animate-in:nth-child(2) { animation-delay: 0.5s; }
.hero .animate-in:nth-child(3) { animation-delay: 0.7s; }
.hero .animate-in:nth-child(4) { animation-delay: 0.9s; }
