/* =====================================
   SETH CAPITAL - BRAND BASE CSS
   (Bootstrap-first, no components)
   ===================================== */

/* =========================
   1. ROOT VARIABLES (BRAND)
========================= */
:root {
  /* Brand Colors */
  --primary: #1f5fae;
  --primary-dark: #174b8a;
  --secondary: #3f79c8;

  /* Text Colors */
  --heading: #0f1720;
  --text: #5f6670;
  --muted: #7b8591;

  /* Background */
  --white: #ffffff;
  --light-bg: #f5f7fb;
  --border: #e6eaf0;

  /* Accent */
  --success: #25d366;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.20);
}

/* =========================
   2. BASE RESET
========================= */
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading);
  font-weight: 700;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
}

p {
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.25s ease;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   3. BOOTSTRAP OVERRIDES
========================= */

/* Buttons */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  border-radius: var(--radius-pill);
  font-weight: 600;
  padding: 10px 24px;
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-primary {
  border-radius: var(--radius-pill);
  font-weight: 600;
}

/* Colors */
.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

/* Cards */
.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.card.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

/* Form Controls */
.form-control {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 10px 14px;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.15rem rgba(31, 95, 174, 0.15);
}

.hero-section {
  padding: 130px 0;
}

.section-padding {
  padding: 60px 0;
}

/* =========================
   4. TYPOGRAPHY HELPERS
========================= */
.text-muted-custom {
  color: var(--muted);
}

.fw-semibold {
  font-weight: 600 !important;
}

.lh-relaxed {
  line-height: 1.75;
}

/* =========================
   5. BACKGROUND HELPERS
========================= */
.bg-light-custom {
  background-color: var(--light-bg);
}

/* =========================
   6. RADIUS HELPERS
========================= */
.rounded-md {
  border-radius: var(--radius-md) !important;
}

.rounded-lg {
  border-radius: var(--radius-lg) !important;
}

.rounded-pill-custom {
  border-radius: var(--radius-pill) !important;
}

/* =========================
   7. SHADOW HELPERS
========================= */
.shadow-soft {
  box-shadow: var(--shadow-sm) !important;
}

.shadow-medium {
  box-shadow: var(--shadow-md) !important;
}

/* =========================
   8. TRANSITION HELPERS
========================= */
.transition {
  transition: 0.25s ease;
}

/* =========================
   9. WHATSAPP FLOAT (GLOBAL)
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 56px 0;
  }

  .hero-section {
    padding: 120px 0;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 48px 0;
  }

  .hero-section {
    padding: 105px 0;
  }
}

/* =====================================
   FAQ SECTION
===================================== */
.faq-section {
  background: var(--white);
}

.faq-title {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
}

/* Left Media */
.faq-media {
  border-radius: 20px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 30px;
}

.faq-media img {
  width: 100%;
  height: auto;
}

/* Accordion */
.faq-accordion .accordion-item {
  border: 1px solid rgba(31, 95, 174, 0.18);
  border-radius: 8px !important;
  overflow: hidden;
  margin-bottom: 14px;
  background: #fff;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--primary);
  background: #fff;
  box-shadow: none !important;
  padding: 18px 22px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--primary);
  color: #fff;
}

.faq-accordion .accordion-button::after {
  filter: brightness(0) saturate(100%) invert(29%) sepia(85%) saturate(1275%)
    hue-rotate(194deg) brightness(91%) contrast(90%);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  padding: 12px 22px 18px;
  background: #fff;
}

.common-lead-modal {
  background: #fff;
}

.common-lead-modal .modal-header {
  background: var(--primary);
}

.common-lead-modal .modal-title {
  font-size: 1.25rem;
}

.common-lead-modal .input-box {
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f8fafc;
  transition: all 0.25s ease;
}

.common-lead-modal .input-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(31, 95, 174, 0.08);
  background: #fff;
}

.common-lead-modal .form-control {
  font-size: 0.98rem;
  padding: 0;
  height: auto;
}

.common-lead-modal .form-control::placeholder {
  color: #7b8794;
}

.common-lead-modal .thirty-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.common-lead-modal .btn {
  min-width: 180px;
}

.common-lead-modal .form-message {
  min-height: 20px;
}
