:root {
  --red: #a00000;
  --red-dark: #7a0000;
  --red-light: #d32020;
  --black: #0a0a0c;
  --charcoal: #131316;
  --panel: #1b1b20;
  --white: #ffffff;
  --off-white: #f7f6f2;
  --gray: #8b8b92;
  --gray-dark: #55555c;
  --border: #e8e4dc;
  --wa: #25d366;
  --radius: 16px;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  --font: 'Inter', system-ui, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.65;
  overflow-x: hidden;
}

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }

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

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(160, 0, 0, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(160, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(160, 0, 0, 0); }
}
.reveal {
  opacity: 0;
}
.reveal.visible { animation: fadeUp 0.7s ease forwards; }
.reveal-2 { transition-delay: 0.1s; }
.reveal-3 { transition-delay: 0.2s; }
.reveal-4 { transition-delay: 0.3s; }

/* ---------- Topbar ---------- */
.topbar { background: var(--black); color: #fff; border-bottom: 2px solid var(--red); }
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  padding: 9px 0;
}
.topbar-phone { color: #ffd0d0; font-weight: 700; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
}
.logo-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border-radius: 12px;
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(160, 0, 0, 0.4);
}
.logo-text { line-height: 1.15; }
.logo-text strong {
  display: block;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}
.logo-text em {
  display: block;
  font-style: normal;
  font-size: 0.58rem;
  color: #ff8b8b;
  letter-spacing: 0.22em;
  font-weight: 700;
  text-transform: uppercase;
}
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { font-weight: 600; font-size: 0.95rem; color: rgba(255, 255, 255, 0.75); transition: color 0.2s; }
.nav a:hover, .nav a.active { color: #ff8b8b; }
.nav .nav-cta {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  padding: 11px 20px;
  border-radius: 30px;
  font-weight: 700;
  animation: pulse 2.5s infinite;
}
.nav .nav-cta:hover { color: #fff; opacity: 0.9; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { display: block; width: 24px; height: 2.5px; background: #fff; margin: 5px 0; border-radius: 2px; transition: 0.3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: none;
  cursor: pointer;
}
.btn svg { width: 20px; height: 20px; fill: currentColor; }
.btn-red { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; box-shadow: 0 6px 18px rgba(160, 0, 0, 0.35); }
.btn-red:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3); }
.btn-wa:hover { transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--red); }
.btn-light:hover { transform: translateY(-2px); }
.btn-ghost { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--red); }

/* ---------- Hero ---------- */
.hero {
  background: var(--black);
  color: #fff;
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-shape { position: absolute; border-radius: 50%; pointer-events: none; animation: floaty 6s ease-in-out infinite; }
.shape-1 {
  width: 420px; height: 420px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(160, 0, 0, 0.35), transparent 70%);
}
.shape-2 {
  width: 300px; height: 300px;
  bottom: -80px; left: -60px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
  animation-delay: 2s;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(255, 139, 139, 0.4);
  color: #ffb0b0;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--red-light); position: relative; }
.hero h1 span::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%; height: 10px;
  background: rgba(160, 0, 0, 0.4);
  z-index: -1;
}
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin-bottom: 34px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-badges { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-badges span { font-size: 0.9rem; font-weight: 600; color: rgba(255, 255, 255, 0.8); }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 46px; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.section-subtitle { color: var(--gray-dark); max-width: 580px; margin: 0 auto; }
.section-kicker {
  display: inline-block;
  color: var(--red);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.center-cta { text-align: center; margin-top: 40px; }

/* ---------- Who we are ---------- */
.who { background: var(--white); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.who-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  background: var(--off-white);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.who-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--red); }
.who-icon {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
}
.who-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.who-card p { color: var(--gray-dark); font-size: 0.95rem; }

/* ---------- Stats ---------- */
.stats {
  background: var(--black);
  color: #fff;
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  text-align: center;
}
.stat-item { padding: 10px; position: relative; }
.stat-num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--red-light);
}
.stat-plus { font-family: var(--serif); font-size: 2rem; font-weight: 800; color: #ff8b8b; margin-left: 2px; }
.stat-label { font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); margin-top: 4px; }

/* ---------- Services ---------- */
.services { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--red); }
.service-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--border);
}
.service-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--gray-dark); font-size: 0.95rem; }

/* ---------- Quote band ---------- */
.quote-band {
  background: linear-gradient(120deg, var(--red), var(--red-dark));
  color: #fff;
  padding: 60px 0;
}
.quote-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.quote-inner h2 { font-family: var(--serif); font-size: clamp(1.7rem, 4vw, 2.3rem); font-weight: 800; }
.quote-inner p { opacity: 0.9; margin-top: 6px; }
.quote-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--black); color: rgba(255, 255, 255, 0.7); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  padding: 50px 20px 30px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}
.footer-logo em { font-style: normal; color: #ff8b8b; font-size: 0.8rem; letter-spacing: 0.1em; }
.footer-brand-row { display: flex; align-items: center; gap: 14px; }
.footer-logo-img {
  height: 56px;
  width: 56px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}
.footer-name {
  font-family: var(--serif);
  font-weight: 800;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.15;
  white-space: nowrap;
  text-align: left;
}
.footer-name em { font-style: normal; color: #ff8b8b; font-size: 0.7rem; letter-spacing: 0.1em; display: block; }
.footer-brand p { font-size: 0.88rem; margin-top: 12px; max-width: 300px; }
.footer-social {
  display: inline-block;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.1);
  padding: 9px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  transition: background 0.2s;
}
.footer-social:hover { background: var(--red); }
.footer-col h4 { color: #ff8b8b; margin-bottom: 14px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col a { display: block; font-size: 0.9rem; padding: 5px 0; color: rgba(255, 255, 255, 0.6); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); text-align: center; font-size: 0.82rem; color: rgba(255, 255, 255, 0.4); padding: 16px 0; }

/* ---------- Page hero (inner) ---------- */
.page-hero {
  background: var(--black);
  color: #fff;
  padding: 74px 0 64px;
  text-align: center;
  border-bottom: 3px solid var(--red);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60%; right: -10%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(160, 0, 0, 0.25), transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2.1rem, 5vw, 3rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: rgba(255, 255, 255, 0.75); max-width: 560px; margin: 0 auto; }

/* ---------- Services detail ---------- */
.services-detail { background: var(--off-white); }
.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}
.detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.detail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--red); }
.detail-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--border);
}
.detail-emoji { font-size: 2.6rem; margin-bottom: 14px; }
.detail-card h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.detail-card p { color: var(--gray-dark); font-size: 0.95rem; margin-bottom: 16px; }
.detail-card ul { list-style: none; }
.detail-card ul li { font-size: 0.9rem; padding: 5px 0 5px 22px; position: relative; font-weight: 500; }
.detail-card ul li::before { content: '\2713'; position: absolute; left: 0; color: var(--red); font-weight: 800; }

/* ---------- Contact ---------- */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.contact-card:hover { transform: translateY(-3px); border-color: var(--red); box-shadow: var(--shadow); }
.contact-emoji {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: var(--black);
  color: #ff8b8b;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.contact-card.wa-card .contact-emoji { background: var(--wa); color: #fff; }
.contact-card h3 { font-size: 1.05rem; font-weight: 700; }
.contact-card p { color: var(--gray-dark); font-size: 0.9rem; }
.contact-action { color: var(--red); font-weight: 700; font-size: 0.88rem; }
.contact-note {
  background: var(--black);
  color: #fff;
  border-radius: var(--radius);
  padding: 22px 24px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact-note strong { color: #ff8b8b; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.contact-form-card h2 { font-family: var(--serif); font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; }
.contact-form-card p { color: var(--gray-dark); font-size: 0.92rem; margin-bottom: 22px; }
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: var(--font);
  margin-bottom: 14px;
  outline: none;
  background: var(--off-white);
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus { border-color: var(--red); }
.contact-form-card .btn { width: 100%; }

/* ---------- Floating actions ---------- */
.quick-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 200;
}
.qa {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
  color: #fff;
}
.qa svg { width: 28px; height: 28px; fill: currentColor; }
.qa-wa { background: var(--wa); }
.qa-call { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.qa:hover { transform: scale(1.1); }

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .logo-img { height: 44px; width: 44px; }
  .logo-text strong { font-size: 1.1rem; }
  .nav {
    position: fixed;
    top: 70px;
    right: 0;
    width: 280px;
    height: calc(100vh - 70px);
    background: var(--black);
    flex-direction: column;
    padding: 28px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.4);
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.05rem; color: #fff; }
  .nav .nav-cta { text-align: center; }

  .topbar-inner { justify-content: center; text-align: center; font-size: 0.74rem; }

  .hero { padding: 64px 0 58px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }

  .section { padding: 58px 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; padding: 36px 20px 20px; gap: 24px; }
  .quote-inner { flex-direction: column; text-align: center; }
  .quote-btns { justify-content: center; }
}
