:root {
  --bs-primary: #1a1a1a;
  --bs-primary-rgb: 26, 26, 26;
  --bs-secondary: #c9a84c;
  --bs-secondary-rgb: 201, 168, 76;
  --bs-success: #25d366;
  --bs-success-rgb: 37, 211, 102;
  --bs-body-font-family: 'Inter', system-ui, sans-serif;
  --bs-heading-font-family: 'Playfair Display', Georgia, serif;
  --brand-dark: #1a1a1a;
  --brand-gold: #c9a84c;
  --brand-gold-light: #dfc06a;
  --brand-muted: #6c757d;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.container {
  padding-left: 1rem;
  padding-right: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6,
.display-font {
  font-family: var(--bs-heading-font-family);
}

.text-gold {
  color: var(--brand-gold) !important;
}

.bg-brand-dark {
  background-color: var(--brand-dark) !important;
}

.bg-brand-gold {
  background-color: var(--brand-gold) !important;
}

/* ── Navbar ── */

.navbar {
  --bs-navbar-padding-y: 0.85rem;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.97) !important;
}

.navbar-logo {
  display: block;
  width: auto !important;
  height: 52px !important;
  max-width: 160px;
  object-fit: contain;
}

.nav-link {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--brand-muted) !important;
  padding: 0.5rem 0.85rem !important;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand-dark) !important;
}

.btn-whatsapp {
  --bs-btn-color: #fff;
  --bs-btn-bg: #25d366;
  --bs-btn-border-color: #25d366;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #1da851;
  --bs-btn-hover-border-color: #1da851;
  --bs-btn-focus-shadow-rgb: 37, 211, 102;
}

.btn-outline-brand {
  --bs-btn-color: var(--brand-dark);
  --bs-btn-border-color: #dee2e6;
  --bs-btn-hover-color: var(--brand-dark);
  --bs-btn-hover-bg: #f8f9fa;
  --bs-btn-hover-border-color: var(--brand-dark);
}

/* ── Hero ── */

.hero-section {
  background: linear-gradient(155deg, #f8f9fa 0%, #ffffff 55%, #faf6ee 100%);
  padding: 4.5rem 0 4rem;
}

.hero-logo-wrap {
  width: 280px;
  max-width: 100%;
  height: 280px;
  padding: 1.5rem;
  background: #fff;
  border-radius: 50%;
  border: 3px solid var(--brand-gold);
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-logo {
  width: 100% !important;
  height: 100% !important;
  max-width: 220px;
  max-height: 220px;
  object-fit: contain;
}

.hero-title {
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  line-height: 1.15;
  color: var(--brand-dark);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* ── Sections ── */

.section-padding {
  padding: 5rem 0;
}

.section-padding-sm {
  padding: 3.5rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin-bottom: 0.75rem;
}

/* ── Mission ── */

.mission-badge {
  display: inline-block;
  max-width: 100%;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  white-space: normal;
  line-height: 1.45;
  text-align: center;
}

.mission-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brand-dark);
  max-width: 680px;
  margin-inline: auto;
  line-height: 1.65;
  padding-inline: 0.25rem;
}

/* ── Service cards ── */

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
  transition: border-color 0.25s, transform 0.25s;
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.45);
  transform: translateY(-4px);
}

.service-card h3 {
  font-size: 1.35rem;
  padding-bottom: 0.85rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--brand-gold);
  border-radius: 50%;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 0.5rem;
  color: var(--brand-gold);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

/* ── About ── */

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}

.about-feature i {
  color: var(--brand-gold);
  font-size: 1rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 1.15rem 1.35rem;
}

.info-card .label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 0.25rem;
}

.info-card .value {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.info-card a.value:hover {
  color: var(--brand-gold-light);
}

/* ── FAQ ── */

.faq-accordion .accordion-item {
  border: 1px solid #e9ecef;
  border-radius: 0.5rem !important;
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--brand-dark);
  background: #f8f9fa;
  box-shadow: none;
  padding: 1.15rem 1.35rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--brand-dark);
  background: #fff;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c9a84c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
  color: var(--brand-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  padding: 0 1.35rem 1.25rem;
}

/* ── Contact ── */

.contact-card {
  border: 1px solid #e9ecef;
  border-radius: 0.75rem;
}

.contact-item {
  padding: 1.15rem 0;
  border-bottom: 1px solid #e9ecef;
}

.contact-item:first-child {
  padding-top: 0;
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-item .label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-muted);
  margin-bottom: 0.3rem;
}

.contact-item a {
  font-weight: 500;
  color: var(--brand-dark);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--brand-gold);
}

.map-embed {
  border: 1px solid #e9ecef;
  border-radius: 0.75rem;
  overflow: hidden;
  min-height: 360px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

/* ── Footer ── */

.footer-logo {
  width: auto !important;
  height: 48px !important;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(1.1);
}

/* ── WhatsApp float ── */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1050;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  font-size: 1.65rem;
  transition: transform 0.2s, background 0.2s;
}

.whatsapp-float:hover {
  background: #1da851;
  color: #fff;
  transform: scale(1.08);
}

/* ── Stats strip ── */

.stats-strip {
  background: var(--brand-dark);
  border-top: 3px solid var(--brand-gold);
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stat-item .number {
  font-family: var(--bs-heading-font-family);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-item .text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 3rem 0;
    text-align: center;
  }

  .hero-logo-wrap {
    margin-bottom: 2rem;
  }

  .section-padding {
    padding: 3.5rem 0;
  }
}

@media (max-width: 575.98px) {
  .navbar-logo {
    height: 44px !important;
    max-width: 140px;
  }

  .hero-logo-wrap {
    width: min(220px, 85vw);
    height: min(220px, 85vw);
  }

  .hero-logo {
    max-width: 170px;
    max-height: 170px;
  }

  .mission-badge {
    font-size: 0.78rem;
    padding: 0.45rem 0.85rem;
  }

  .mission-text {
    font-size: 1rem;
  }

  .stat-item {
    padding: 1.25rem 0.5rem;
  }

  .stat-item .text {
    font-size: 0.75rem;
  }

  .faq-accordion .accordion-button {
    font-size: 0.9rem;
    padding: 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .btn-lg {
    font-size: 0.95rem;
    padding: 0.65rem 1.1rem;
  }
}
