/* =========================================================
   Breakpoints (Mobile First)
   Mobile:  base, 0 - 767px
   Tablet:  min-width 768px
   Desktop: min-width 1024px
   Wide:    min-width 1280px
   ========================================================= */

/* ===== Tokens ===== */
:root {
  --bg-dark: #11151d;
  --bg-dark-2: #1a2030;
  --bg-dark-3: #232a3a;
  --red-deep: #6e0a0a;
  --red: #b3151a;
  --red-bright: #e2231a;
  --gold: #c9a227;
  --silver: #d9dde3;
  --text-main: #e7e9ee;
  --text-muted: #9aa1b1;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Poppins', sans-serif;
  --container-w: 1140px;
  --radius: 14px;
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container { padding: 0 32px; }
}
@media (min-width: 1024px) {
  .container { padding: 0 24px; }
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .eyebrow { font-size: 0.78rem; letter-spacing: 0.18em; margin-bottom: 14px; }
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 6vw, 2.6rem);
  font-weight: 700;
  margin: 0 0 22px;
  background: linear-gradient(135deg, #fff, var(--silver) 60%, #8b909c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (min-width: 768px) {
  .section-title { margin: 0 0 28px; }
}

section { padding: 64px 0; position: relative; }
@media (min-width: 768px) {
  section { padding: 88px 0; }
}
@media (min-width: 1024px) {
  section { padding: 110px 0; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 48px;
}
@media (min-width: 480px) {
  .btn { width: auto; }
}
.btn--primary {
  background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(226, 35, 26, 0.6);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -8px rgba(226, 35, 26, 0.75); }
.btn--ghost {
  background: transparent;
  border-color: rgba(217, 221, 227, 0.35);
  color: var(--text-main);
}
.btn--ghost:hover { background: rgba(217, 221, 227, 0.08); transform: translateY(-3px); }
.btn--whatsapp {
  background: #1ea952;
  color: #fff;
  padding: 10px 20px;
  font-size: 0.85rem;
  min-height: 40px;
}
.btn--whatsapp:hover { background: #18923f; transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(17, 21, 29, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition), padding var(--transition);
}
.site-header.is-scrolled {
  background: rgba(17, 21, 29, 0.92);
  box-shadow: 0 10px 30px -16px rgba(0, 0, 0, 0.6);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  min-height: var(--header-h);
}
@media (min-width: 768px) {
  .site-header__inner { padding: 12px 24px; }
}

.site-header__logo {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5)) brightness(1.05);
}
@media (min-width: 768px) {
  .site-header__logo { height: 48px; }
}
@media (min-width: 1024px) {
  .site-header__logo { height: 52px; }
}

/* Mobile-first nav: off-canvas drawer by default */
.site-header__nav {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(290px, 85vw);
  background: var(--bg-dark-2);
  transform: translateX(100%);
  transition: transform var(--transition);
  padding: 24px 28px;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-header__nav.is-open { transform: translateX(0); }

.site-header__nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 12px;
}
.site-header__nav-logo {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}
.site-header__nav-close {
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}
.site-header__nav-close:hover {
  color: var(--gold);
}

.site-header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 21, 29, 0.6);
  backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.site-header__overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.site-header__nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  margin: 0; padding: 0;
}
.site-header__nav a {
  display: inline-block;
  padding: 6px 0;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  position: relative;
  transition: color var(--transition);
}
.site-header__nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.site-header__nav a:hover { color: var(--text-main); }
.site-header__nav a:hover::after { width: 100%; }

.site-header__cta { display: none; }

.site-header__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 10px;
  margin: -12px -10px;
}
.site-header__toggle span {
  width: 24px; height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* Tablet and up: inline nav, no drawer */
@media (min-width: 768px) {
  .site-header__nav {
    position: static;
    height: auto;
    width: auto;
    background: none;
    transform: none;
    padding: 0;
    box-shadow: none;
    display: block;
  }
  .site-header__nav-header {
    display: none;
  }
  .site-header__overlay {
    display: none;
  }
  .site-header__nav ul { flex-direction: row; gap: 28px; }
  .site-header__nav a { font-size: 0.9rem; padding: 0; }
  .site-header__cta { display: inline-flex; }
  .site-header__toggle { display: none; }
}
@media (min-width: 1024px) {
  .site-header__nav ul { gap: 32px; }
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding-top: calc(var(--header-h) + 36px);
  padding-bottom: 64px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background:
    radial-gradient(circle at 50% 20%, rgba(179, 21, 26, 0.25), transparent 55%),
    linear-gradient(to bottom, rgba(17, 21, 29, 0.55) 0%, rgba(17, 21, 29, 0.95) 100%),
    url('/assets/images/bg/0a9585d6-392f-4234-837a-2091074676fb.webp') no-repeat center center;
  background-size: cover;
  z-index: -1;
  will-change: transform;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
}
@media (min-width: 768px) {
  .hero__inner {
    margin-top: -40px;
  }
}

.hero__logo {
  width: clamp(240px, 50vw, 650px);
  margin-bottom: 24px;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.45));
}
@media (min-width: 768px) {
  .hero__logo { margin-bottom: 28px; }
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 7vw, 3.4rem);
  font-weight: 700;
  max-width: 820px;
  margin: 0 0 16px;
  background: linear-gradient(135deg, #fff, var(--silver) 50%, #8b909c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (min-width: 768px) {
  .hero__headline { margin: 0 0 20px; }
}

.hero__subheadline {
  max-width: 600px;
  color: var(--text-muted);
  font-size: 0.98rem;
  margin: 0 0 28px;
}
@media (min-width: 768px) {
  .hero__subheadline { font-size: 1.05rem; margin: 0 0 36px; }
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 320px;
}
@media (min-width: 480px) {
  .hero__actions { flex-direction: row; flex-wrap: wrap; justify-content: center; width: auto; max-width: none; gap: 18px; }
}

.hero__scroll {
  display: none;
}
@media (min-width: 768px) {
  .hero__scroll {
    display: block;
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    width: 26px; height: 42px;
    border: 2px solid rgba(217, 221, 227, 0.4);
    border-radius: 20px;
  }
}
.hero__scroll span {
  display: block;
  width: 4px; height: 8px;
  margin: 6px auto;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  100% { opacity: 0; }
}

/* ===== About ===== */
.about { background: var(--bg-dark-2); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 900px) {
  .about__grid { grid-template-columns: 1.1fr 0.9fr; gap: 60px; }
}
.about__text p { color: var(--text-muted); margin: 0 0 18px; font-size: 0.95rem; }
@media (min-width: 768px) {
  .about__text p { font-size: 1rem; }
}
.about__highlights { display: flex; flex-direction: column; gap: 16px; }
.highlight-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: transform var(--transition), border-color var(--transition);
}
@media (min-width: 768px) {
  .highlight-card { padding: 22px 24px; }
}
.highlight-card:hover { transform: translateY(-4px); border-color: rgba(201, 162, 39, 0.4); }
.highlight-card h3 { margin: 0 0 8px; font-size: 1rem; color: var(--gold); }
.highlight-card p { margin: 0; color: var(--text-muted); font-size: 0.9rem; }

/* ===== Services ===== */
.services { background: var(--bg-dark); }
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (min-width: 1024px) {
  .services__grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
.service-card {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
@media (min-width: 768px) {
  .service-card { padding: 32px 26px; }
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226, 35, 26, 0.45);
  box-shadow: 0 20px 40px -20px rgba(226, 35, 26, 0.35);
}
.service-card__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
  color: #fff;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .service-card__icon { width: 52px; height: 52px; margin-bottom: 20px; }
}
.service-card__icon svg, .service-card__icon i { width: 22px; height: 22px; font-size: 20px; display: flex; align-items: center; justify-content: center; }
.service-card h3 { margin: 0 0 10px; font-size: 1.05rem; }
.service-card p { margin: 0; color: var(--text-muted); font-size: 0.9rem; }

/* ===== Contact ===== */
.contact { background: var(--bg-dark-2); text-align: center; }
.contact__description { color: var(--text-muted); max-width: 560px; margin: 0 auto 36px; font-size: 0.95rem; }
@media (min-width: 768px) {
  .contact__description { margin: 0 auto 44px; font-size: 1rem; }
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: left;
}
@media (min-width: 640px) {
  .contact__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (min-width: 1024px) {
  .contact__grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 22px 22px;
  transition: transform var(--transition), border-color var(--transition);
  min-height: 48px;
}
@media (min-width: 768px) {
  .contact-card { padding: 24px 26px; }
}
.contact-card:hover { transform: translateY(-4px); border-color: rgba(201, 162, 39, 0.4); }
.contact-card__label { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.contact-card__value { font-size: 1.08rem; font-weight: 600; word-break: break-word; }
@media (min-width: 768px) {
  .contact-card__value { font-size: 1.15rem; }
}
.contact-card__extra { font-size: 0.82rem; color: var(--text-muted); }
.contact-card--whatsapp .contact-card__value { color: #25d366; }

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-dark);
  padding: 64px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 48px;
  }
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media (min-width: 576px) {
  .site-footer__brand {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}
.site-footer__brand-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.site-footer__logo-normal {
  height: 110px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
  flex-shrink: 0;
}
.site-footer__tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  max-width: 320px;
}
.site-footer__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 20px 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.site-footer__info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.site-footer__info-list a {
  transition: color var(--transition);
}
.site-footer__info-list a:hover {
  color: var(--gold);
}
.site-footer__connect {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.site-footer__connect-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 8px 0;
}
.site-footer__social {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-muted);
  transition: transform var(--transition), color var(--transition), border-color var(--transition), background var(--transition);
}
.site-footer__social a:hover {
  color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
  border-color: rgba(201, 162, 39, 0.4);
  transform: translateY(-3px);
}
.site-footer__social a i {
  font-size: 18px;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  background: rgba(0, 0, 0, 0.12);
}
.site-footer__bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-footer__text {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 0;
  text-align: center;
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 16px; right: 16px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #1ea952;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(30, 169, 82, 0.65);
  z-index: 90;
  transition: transform var(--transition);
  animation: floatPulse 2.6s ease-in-out infinite;
}
@media (min-width: 768px) {
  .whatsapp-float { bottom: 24px; right: 24px; width: 58px; height: 58px; }
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg, .whatsapp-float i {
  font-size: 26px;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .whatsapp-float svg, .whatsapp-float i {
    font-size: 30px;
  }
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 10px 26px -8px rgba(30, 169, 82, 0.65); }
  50% { box-shadow: 0 10px 34px -4px rgba(30, 169, 82, 0.9); }
}

/* ===== Reveal animation base state ===== */
.reveal-up { opacity: 0; transform: translateY(28px); }

/* ===== 404 ===== */
.not-found {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  text-align: center;
  padding: 0 20px;
}
.not-found h1 { font-family: var(--font-heading); font-size: 4rem; color: var(--red-bright); margin: 0; }

/* ===== FAQ Accordion ===== */
.faq {
  background: var(--bg-dark);
}
.faq__inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--bg-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.faq-item:hover {
  border-color: rgba(201, 162, 39, 0.3);
  background: rgba(26, 32, 48, 0.7);
}
.faq-item.is-open {
  border-color: rgba(201, 162, 39, 0.65);
  background: var(--bg-dark-3);
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.4);
}
.faq-trigger {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  outline: none;
}
@media (min-width: 768px) {
  .faq-trigger {
    font-size: 1.06rem;
  }
}
.faq-trigger span {
  flex: 1;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.faq-icon svg, .faq-icon i {
  width: 16px;
  height: 16px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--bg-dark);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), opacity var(--transition);
  opacity: 0;
}
.faq-item.is-open .faq-content {
  opacity: 1;
}
.faq-content-inner {
  padding: 0 28px 24px;
}
.faq-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}
@media (min-width: 768px) {
  .faq-content p {
    font-size: 0.98rem;
  }
}

/* ===== Stats Banner ===== */
.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .about__stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
  }
}
.stat-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: 0 12px 30px -10px rgba(201, 162, 39, 0.15);
}
.stat-card__value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(201, 162, 39, 0.2);
}
.stat-card__label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== How It Works ===== */
.how-it-works {
  background: var(--bg-dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.how-it-works__header {
  text-align: center;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .how-it-works__header {
    margin-bottom: 60px;
  }
}
.how-it-works__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .how-it-works__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .how-it-works__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.step-card {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.005));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226, 35, 26, 0.4);
  box-shadow: 0 16px 36px -12px rgba(226, 35, 26, 0.25);
}
.step-card__number-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
.step-card__number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.step-card__line {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.4), transparent);
}
.step-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-card__title {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--text-main);
}
.step-card__description {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== Contact Redesign & Form ===== */
.contact__header {
  text-align: center;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .contact__header {
    margin-bottom: 60px;
  }
}
.contact__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact__layout {
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
  }
}

.contact-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}
.contact-card__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}
.contact-card:hover .contact-card__icon-wrap {
  background: rgba(201, 162, 39, 0.16);
  border-color: rgba(201, 162, 39, 0.45);
}
.contact-card--whatsapp .contact-card__icon-wrap {
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.2);
  color: #25d366;
}
.contact-card--whatsapp:hover .contact-card__icon-wrap {
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(37, 211, 102, 0.45);
}
.contact-card__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-form {
  background: linear-gradient(160deg, rgba(26, 32, 48, 0.9), rgba(17, 21, 29, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}
@media (min-width: 768px) {
  .contact-form {
    padding: 40px 36px;
  }
}
.contact-form__title {
  margin: 0 0 8px 0;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: 0.02em;
}
.contact-form__subtitle {
  margin: 0 0 28px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.form-group {
  margin-bottom: 20px;
}
.form-group__input-wrapper {
  position: relative;
  width: 100%;
}
.form-group__icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.95rem;
  pointer-events: none;
  transition: color var(--transition);
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 14px 18px 14px 46px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.form-group textarea {
  resize: vertical;
  padding-top: 14px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.form-group input:hover,
.form-group textarea:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
}
.form-group input:focus,
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold);
  box-shadow: 0 0 14px -4px rgba(201, 162, 39, 0.4);
}
.form-group input:focus + .form-group__icon,
.form-group textarea:focus + .form-group__icon {
  color: var(--gold);
}
.contact-form__submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  border-radius: 8px;
}
.contact-form__submit.is-loading {
  opacity: 0.8;
  cursor: not-allowed;
}

/* ===== Developer Styling ===== */
.site-footer__divider {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.15);
}
.site-footer__developer-link {
  color: var(--gold);
  font-weight: 500;
  transition: color var(--transition), text-shadow var(--transition);
}
.site-footer__developer-link:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* ===== Success Toast Notifications ===== */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 110;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  width: calc(100% - 48px);
}
.toast {
  background: linear-gradient(135deg, #151a24 0%, #1e2533 100%);
  border-left: 4px solid var(--gold);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.5);
  transform: translateX(-40px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}
.toast.is-visible {
  transform: translateX(0);
  opacity: 1;
}
.toast__icon {
  color: var(--gold);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.toast__content {
  flex-grow: 1;
}
.toast__title {
  margin: 0 0 4px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}
.toast__desc {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.toast__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 2px;
  margin: -2px -2px -2px 0;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.toast__close:hover {
  color: #fff;
}

/* ===== Google reCAPTCHA v3 ===== */
.grecaptcha-badge {
  visibility: hidden !important;
}
.recaptcha-terms {
  margin-top: 20px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.45;
  text-align: center;
}
.recaptcha-terms a {
  color: var(--gold);
  text-decoration: underline;
  transition: color var(--transition);
}
.recaptcha-terms a:hover {
  color: #fff;
}
