/* =========================
   DESIGN TOKENS / VARIABLES
   ========================= */

:root {
  --ink: #0f1b2d;
  --ink-2: #1b2f4a;
  --brand-blue: #151787;
  --accent: #d4a63a;
  --accent-2: #b88b2f;
  --gold: #d4a63a;
  --gold-2: #b88b2f;
  --bg: #f7f4ef;
  --bg-2: #ffffff;
  --muted: #3f4c66;
  --shadow: rgba(15, 27, 45, 0.12);
  --radius: 18px;
  --container-max-width: 1140px;
}

/* =========================
   RESET & BASE
   ========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: radial-gradient(1200px 600px at 80% -10%, #eef3ff 0%, transparent 55%),
              radial-gradient(1000px 500px at 0% 0%, #f3efe6 0%, transparent 60%),
              var(--bg);
  min-height: 100vh;
  line-height: 1.7;
  color: var(--ink);
}

main {
  padding-top: 0;
}

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

/* =========================
   TYPOGRAPHY
   ========================= */

h1, h2, h3, h4, h5 {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: var(--ink);
  letter-spacing: -0.02em;
}

p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

a {
  color: var(--brand-blue);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
}

.section-lead {
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

/* =========================
   NAVBAR
   ========================= */

.navbar {
  box-shadow: 0 6px 24px var(--shadow);
  background: rgba(21, 23, 135, 0.92);
  backdrop-filter: blur(10px);
}

.navbar-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.navbar .nav-link {
  font-weight: 600;
  margin-left: 1rem;
  color: #ffffff;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--gold);
  text-decoration: none;
}

.navbar .btn-cta {
  background: var(--gold);
  color: #1a1a1a;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  margin-left: 1rem;
}

.navbar .btn-cta:hover {
  background: var(--gold-2);
  color: #1a1a1a;
}

.navbar-toggler {
  border: none;
}

.navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23d4a63a' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* =========================
   HERO
   ========================= */

.hero {
  padding: 5.5rem 0 4.5rem;
}

.hero-card {
  background: var(--bg-2);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 18px 50px var(--shadow);
  padding: 3.5rem 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f1ede3;
  color: var(--ink-2);
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero-title {
  font-size: 3.3rem;
  margin: 1rem 0 1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
}

.hero-actions .btn {
  min-width: 200px;
}

.hero-actions .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(212, 166, 58, 0.35);
}

.hero-actions .btn-outline-primary {
  border-color: var(--accent);
  color: var(--accent);
  border-radius: 999px;
  font-weight: 600;
}

.hero-actions .btn-outline-primary:hover {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(212, 166, 58, 0.25);
}

.btn-outline-primary {
  border-color: var(--accent);
  color: var(--accent);
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-outline-primary:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-1px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stat {
  background: #f6f5f1;
  border-radius: 14px;
  padding: 1rem;
  text-align: left;
}

.hero-stat h3 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.hero-visual {
  background: linear-gradient(135deg, rgba(21, 23, 135, 0.08) 0%, #fdf7ea 100%);
  border-radius: calc(var(--radius) + 8px);
  padding: 3rem;
  text-align: center;
  height: 100%;
}

.hero-visual .visual-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 10px 22px rgba(15, 27, 45, 0.12);
  text-align: left;
}

.hero-visual .visual-card h4 {
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.hero-visual .visual-card p {
  margin: 0;
  font-size: 0.95rem;
}

.hero-visual-grid {
  display: grid;
  gap: 1rem;
}

/* =========================
   TRUST STRIP
   ========================= */

.trust-strip {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 10px 30px var(--shadow);
}

.trust-strip .trust-item {
  font-weight: 600;
  color: var(--ink-2);
}

.trust-item-badge {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 166, 58, 0.15);
  margin-bottom: 0.6rem;
}

/* =========================
   SERVICES
   ========================= */

.service-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  box-shadow: 0 12px 30px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 27, 45, 0.18);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.service-card.featured {
  border: 1px solid rgba(212, 166, 58, 0.35);
  box-shadow: 0 18px 40px rgba(15, 27, 45, 0.2);
}

.service-card.featured h5 {
  color: var(--ink);
}

/* =========================
   VALUE STRIP
   ========================= */

.value-strip {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 12px 35px var(--shadow);
}

.value-strip h4 {
  margin-bottom: 0.75rem;
}

/* =========================
   CTA BAND
   ========================= */

.cta-band {
  background: linear-gradient(120deg, #0f1b2d 0%, #151787 55%, #d4a63a 100%);
  color: #ffffff;
  border-radius: calc(var(--radius) + 4px);
  padding: 3rem;
  box-shadow: 0 16px 45px rgba(15, 27, 45, 0.35);
}

.cta-band h2,
.cta-band p {
  color: #ffffff;
}

.cta-band .btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.6rem 1.6rem;
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  background: #0f1b2d;
  color: #ffffff;
  padding: 4rem 1rem 2rem;
  margin-top: 4rem;
}

.site-footer h5 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.site-footer p,
.site-footer a {
  color: #dfe6f5;
}

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

/* =========================
   ABOUT PAGE
   ========================= */

.about-hero {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: 0 12px 35px var(--shadow);
}

.about-highlight {
  background: #f6f5f1;
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
}

.about-visual {
  background: linear-gradient(135deg, rgba(21, 23, 135, 0.1) 0%, rgba(212, 166, 58, 0.12) 100%);
  border-radius: var(--radius);
  padding: 2.5rem;
  height: 100%;
  display: grid;
  gap: 1rem;
}

.about-visual .visual-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 22px rgba(15, 27, 45, 0.12);
}

/* =========================
   CONTACT PAGE
   ========================= */

.contact-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 14px 40px var(--shadow);
}

.whatsapp-panel {
  background: #f6f5f1;
  border-radius: 14px;
  padding: 1.25rem;
}

.form-label {
  font-weight: 600;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 992px) {
  .hero-card {
    padding: 2.5rem;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-card {
    padding: 2rem;
  }

  .section {
    padding: 4rem 0;
  }
}
