/* =========================================================
   Summit Harp Loan LLC — Custom Styles
   ========================================================= */

:root {
  --yellow-50:  #FFFDF2;
  --yellow-100: #FFF8D6;
  --yellow-200: #FFEE99;
  --yellow-300: #FFE25C;
  --yellow-400: #FFD426;
  --yellow-500: #F5C400;   /* primary */
  --yellow-600: #D6A900;
  --yellow-700: #A88400;
  --ink-900:    #0F1220;
  --ink-800:    #1A1E33;
  --ink-700:    #2C3048;
  --ink-500:    #5B6075;
  --ink-300:    #9096AD;
  --paper:      #FFFFFF;
  --soft:       #FAF8EE;
  --line:       rgba(15, 18, 32, 0.08);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body:    "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-800);
  background: var(--paper);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink-900);
  font-weight: 700;
  letter-spacing: -0.01em;
}

a { text-decoration: none; transition: all .25s ease; }

.section { padding: 110px 0; position: relative; }

.section-kicker {
  display: inline-block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--yellow-700);
  background: var(--yellow-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section-kicker.light {
  background: rgba(255, 212, 38, 0.18);
  color: var(--yellow-300);
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title .highlight {
  background: linear-gradient(120deg, transparent 0%, transparent 15%, var(--yellow-300) 15%, var(--yellow-300) 85%, transparent 85%);
  padding: 0 6px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--ink-500);
  margin-bottom: 20px;
}

/* ---------- Buttons ---------- */
.btn-primary-yellow {
  background: var(--yellow-500);
  color: var(--ink-900);
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 999px;
  box-shadow: 0 8px 20px -10px rgba(245, 196, 0, 0.8);
  transition: all .25s ease;
}
.btn-primary-yellow:hover {
  background: var(--yellow-400);
  color: var(--ink-900);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(245, 196, 0, 0.9);
}
.btn-primary-yellow i { margin-left: 4px; }

.btn-outline-dark-custom {
  border: 1.5px solid var(--ink-900);
  background: transparent;
  color: var(--ink-900);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  transition: all .25s ease;
}
.btn-outline-dark-custom:hover {
  background: var(--ink-900);
  color: var(--yellow-400);
  transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
.navbar {
  padding: 20px 0;
  transition: all .35s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  box-shadow: 0 6px 24px rgba(15,18,32,0.06);
  padding: 12px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--yellow-400), var(--yellow-600));
  color: var(--ink-900);
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 16px -6px rgba(245,196,0,0.7);
}
.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1;
}
.logo-text em {
  font-style: italic;
  color: var(--yellow-600);
  font-weight: 500;
}

.navbar-nav .nav-link {
  color: var(--ink-800) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--yellow-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 160px 0 120px;
  background:
    radial-gradient(1200px 600px at 10% -10%, var(--yellow-100), transparent 60%),
    radial-gradient(900px 500px at 110% 10%, var(--yellow-200), transparent 60%),
    linear-gradient(180deg, var(--yellow-50), var(--paper) 80%);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}
.hero-glow-1 {
  width: 380px; height: 380px;
  background: var(--yellow-300);
  top: -80px; left: -120px;
}
.hero-glow-2 {
  width: 520px; height: 520px;
  background: var(--yellow-200);
  bottom: -200px; right: -180px;
}

.badge-pill-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  color: var(--ink-800);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px -10px rgba(15,18,32,0.18);
}
.badge-pill-custom i { color: var(--yellow-600); }

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--ink-900);
  font-weight: 800;
}
.hero-title .highlight {
  position: relative;
  color: var(--ink-900);
  display: inline-block;
}
.hero-title .highlight::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  bottom: 4px;
  height: 18px;
  background: var(--yellow-300);
  z-index: -1;
  border-radius: 4px;
  transform: skew(-6deg);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--ink-500);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-700);
  font-weight: 500;
  font-size: 0.95rem;
}
.hero-features i {
  color: var(--yellow-600);
  font-size: 1.2rem;
}

/* Hero card */
.hero-card {
  background: var(--paper);
  border-radius: 24px;
  box-shadow:
    0 30px 60px -30px rgba(15,18,32,0.25),
    0 0 0 1px var(--line);
  overflow: hidden;
  transform: rotate(1.2deg);
  transition: transform .4s ease;
}
.hero-card:hover { transform: rotate(0deg) translateY(-4px); }

.hero-card-top {
  background: var(--ink-900);
  padding: 14px 18px;
  display: flex;
  gap: 8px;
}
.hero-card-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--yellow-400);
  opacity: 0.9;
}
.hero-card-dot:nth-child(2) { background: var(--yellow-300); }
.hero-card-dot:nth-child(3) { background: var(--yellow-200); }

.hero-card-body { padding: 28px; }
.hero-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.hero-card-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}
.hero-card-row span { color: var(--ink-500); }
.hero-card-row strong { color: var(--ink-900); font-weight: 600; }
.hero-card-progress {
  margin-top: 20px;
  height: 8px;
  border-radius: 999px;
  background: var(--yellow-100);
  overflow: hidden;
}
.hero-card-progress-bar {
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, var(--yellow-400), var(--yellow-600));
  border-radius: 999px;
  animation: progressFill 2s ease forwards;
}
@keyframes progressFill {
  from { width: 0; }
  to { width: 78%; }
}
.hero-card-note {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 0.85rem;
  color: var(--ink-500);
  text-align: center;
}

/* ---------- About ---------- */
.section-about { background: var(--paper); }

.about-pillars {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pillar i {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-100);
  color: var(--yellow-700);
  border-radius: 12px;
  font-size: 1.3rem;
}
.pillar h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin: 0 0 4px 0;
  font-weight: 600;
}
.pillar p {
  color: var(--ink-500);
  font-size: 0.95rem;
  margin: 0;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-tile {
  padding: 28px;
  border-radius: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  transition: all .3s ease;
}
.about-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px -18px rgba(15,18,32,0.2);
}
.about-tile i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: var(--paper);
  color: var(--yellow-700);
  border-radius: 14px;
  font-size: 1.4rem;
  margin-bottom: 16px;
  box-shadow: 0 8px 14px -8px rgba(15,18,32,0.1);
}
.about-tile h5 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.about-tile p {
  color: var(--ink-500);
  font-size: 0.9rem;
  margin: 0;
}
.about-tile-1 { background: var(--yellow-100); }
.about-tile-2 { background: var(--soft); margin-top: 24px; }
.about-tile-3 { background: var(--soft); margin-top: -24px; }
.about-tile-4 { background: var(--yellow-200); }

/* ---------- Services ---------- */
.section-services {
  background:
    linear-gradient(180deg, var(--soft), var(--paper));
}

.service-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  transition: all .35s ease;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--yellow-400), var(--yellow-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -24px rgba(15,18,32,0.2);
  border-color: var(--yellow-300);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 58px; height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--yellow-200), var(--yellow-400));
  color: var(--ink-900);
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.service-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--ink-500);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--yellow-700);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}
.service-card:hover .service-link i {
  transform: translate(3px, -3px);
}
.service-link i { transition: transform .25s ease; }

/* ---------- Industries ---------- */
.section-industries {
  background: var(--paper);
  position: relative;
}
.section-industries::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 90% 10%, var(--yellow-100), transparent 70%),
    radial-gradient(500px 300px at 10% 90%, var(--yellow-100), transparent 70%);
  pointer-events: none;
}

.industry-item {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all .3s ease;
  text-align: center;
  min-height: 130px;
}
.industry-item:hover {
  background: var(--yellow-500);
  border-color: var(--yellow-500);
  transform: translateY(-4px);
  box-shadow: 0 18px 30px -18px rgba(245,196,0,0.8);
}
.industry-item i {
  font-size: 1.8rem;
  color: var(--yellow-700);
  transition: color .3s ease;
}
.industry-item span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-900);
}
.industry-item:hover i { color: var(--ink-900); }

/* ---------- FAQ ---------- */
.section-faq { background: var(--soft); }

.custom-accordion .accordion-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.custom-accordion .accordion-button {
  background: var(--paper);
  font-weight: 600;
  color: var(--ink-900);
  padding: 20px 22px;
  font-size: 1rem;
  box-shadow: none !important;
  border: none;
}
.custom-accordion .accordion-button:not(.collapsed) {
  background: var(--yellow-100);
  color: var(--ink-900);
}
.custom-accordion .accordion-button:focus {
  box-shadow: none;
  border: none;
}
.custom-accordion .accordion-button::after {
  background-image: none;
  content: "\F4FE"; /* bi-plus-lg */
  font-family: "bootstrap-icons";
  font-size: 1rem;
  color: var(--yellow-700);
  background: var(--yellow-100);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.custom-accordion .accordion-button:not(.collapsed)::after {
  content: "\F2EA"; /* bi-dash-lg */
  background: var(--yellow-500);
  color: var(--ink-900);
  transform: rotate(180deg);
}
.custom-accordion .accordion-body {
  padding: 0 22px 22px 22px;
  color: var(--ink-500);
  font-size: 0.97rem;
}

/* ---------- Contact ---------- */
.section-contact { background: var(--paper); }

.contact-wrap {
  background: linear-gradient(135deg, var(--ink-900), var(--ink-800));
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(15,18,32,0.45);
}
.contact-wrap::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--yellow-500), transparent 70%);
  opacity: 0.25;
  top: -200px; right: -150px;
  pointer-events: none;
}

.contact-info-col {
  padding: 56px 48px;
  color: #fff;
  position: relative;
}
.text-white-70 { color: rgba(255,255,255,0.72) !important; }

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-info-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 196, 0, 0.15);
  color: var(--yellow-400);
  border-radius: 12px;
  font-size: 1.2rem;
}
.contact-info-list small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2px;
}
.contact-info-list a,
.contact-info-list p {
  color: #fff;
  margin: 0;
  font-weight: 500;
  font-size: 0.98rem;
}
.contact-info-list a:hover { color: var(--yellow-300); }

.contact-form-col {
  background: var(--paper);
  padding: 56px 48px;
}
.contact-form-col .form-label {
  font-weight: 500;
  color: var(--ink-800);
  font-size: 0.9rem;
}
.contact-form-col .form-control,
.contact-form-col .form-select {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all .2s ease;
}
.contact-form-col .form-control:focus,
.contact-form-col .form-select:focus {
  border-color: var(--yellow-500);
  box-shadow: 0 0 0 4px rgba(245,196,0,0.15);
}

.form-status {
  font-size: 0.92rem;
  font-weight: 500;
}
.form-status.success { color: var(--yellow-700); }
.form-status.error { color: #c0392b; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 28px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow-300), var(--yellow-500), var(--yellow-300));
}

.footer-brand {
  margin-bottom: 18px;
}
.footer-brand .logo-text {
  color: #fff !important;
}
.footer-brand .logo-text em {
  color: var(--yellow-400);
}

.footer-about {
  color: rgba(255,255,255,0.65);
  max-width: 440px;
  font-size: 0.95rem;
}

.footer-heading {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-links i { color: var(--yellow-400); margin-top: 3px; flex-shrink: 0; }
.footer-links a {
  color: rgba(255,255,255,0.7);
}
.footer-links a:hover { color: var(--yellow-400); }

.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 40px 0 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom p { margin: 0; }
.back-to-top {
  color: var(--yellow-400);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.back-to-top:hover { color: var(--yellow-300); }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .section { padding: 80px 0; }
  .hero { padding: 140px 0 80px; }
  .navbar.scrolled,
  .navbar-collapse.show {
    background: var(--paper);
  }
  .navbar-collapse {
    background: var(--paper);
    margin-top: 14px;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 12px 30px -12px rgba(15,18,32,0.1);
  }
  .contact-info-col,
  .contact-form-col {
    padding: 40px 28px;
  }
  .about-visual { margin-top: 20px; }
  .about-tile-2, .about-tile-3 { margin-top: 0; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .hero-features { gap: 14px; }
  .hero-cta .btn { width: 100%; }
  .about-visual { grid-template-columns: 1fr; }
}
