/* =====================================================
   NOURA FINANCE – nourafinance.com
   Basé sur le thème Elite, adapté pour la finance
   Taux fixe 2 % par an · Lyon, France
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&display=swap');

:root {
  --brand:        #1a3f8b;
  --brand-hover:  #122c68;
  --brand-light:  #2255b5;
  --gold:         #c9a84c;
  --gold-light:   #e8c56a;
  --dark:         #0d1f3c;
  --body:         #516171;
  --bg-light:     #f5f7fb;
  --border:       rgba(0,0,0,.08);
  --shadow:       0 6px 30px rgba(0,0,0,.08);
  --shadow-lg:    0 12px 40px rgba(26,63,139,.15);
  --radius:       10px;
  --white:        #ffffff;
  --success:      #2e7d32;
  --danger:       #c62828;
}

/* ── Base ──────────────────────────────────────────── */
body {
  font-family: "Barlow", sans-serif;
  color: var(--body);
  line-height: 1.7;
}

h1,h2,h3,h4,h5,h6,
.display-1,.display-2,.display-3,.display-4 {
  font-weight: 700;
  color: var(--dark);
}

.bg-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

img { width: 100%; }

a {
  color: var(--dark);
  transition: all .3s ease;
  font-weight: 500;
}
a:hover { color: var(--brand); }

section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.text-brand { color: var(--brand) !important; }
.text-gold  { color: var(--gold)  !important; }

/* ── TOP NAV ───────────────────────────────────────── */
.top-nav {
  background-color: var(--brand);
  color: #fff;
  padding: 7px 0;
  font-size: .85rem;
}
.top-nav p {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 18px;
  color: rgba(255,255,255,.9);
}
.top-nav p i { vertical-align: middle; margin-right: 4px; }

.social-icons a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  color: #fff;
  background-color: rgba(255,255,255,.2);
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  transition: all .3s;
  margin: 0 2px;
}
.social-icons a:hover {
  background-color: #fff;
  color: var(--brand);
}

/* ── NAVBAR ────────────────────────────────────────── */
.navbar {
  box-shadow: var(--shadow);
  padding: 12px 0;
}
.navbar-brand {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark) !important;
  letter-spacing: -.5px;
}
.navbar-brand .dot {
  color: var(--brand);
}
.navbar .nav-link {
  color: var(--dark);
  font-weight: 600;
  padding: 8px 14px;
  font-size: .92rem;
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--brand); }

.btn {
  padding: 9px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .9rem;
}
.btn-brand {
  border-color: var(--brand);
  background-color: var(--brand);
  color: #fff !important;
}
.btn-brand:hover {
  background-color: var(--brand-hover);
  border-color: var(--brand-hover);
  color: #fff !important;
}
.btn-gold {
  background-color: var(--gold);
  border-color: var(--gold);
  color: #fff !important;
}
.btn-gold:hover {
  background-color: #b08930;
  border-color: #b08930;
  color: #fff !important;
}
.btn-outline-brand {
  border-color: var(--brand);
  color: var(--brand) !important;
  background: transparent;
}
.btn-outline-brand:hover {
  background-color: var(--brand);
  color: #fff !important;
}
.btn-outline-light-custom {
  border: 2px solid rgba(255,255,255,.7);
  color: #fff !important;
  background: transparent;
}
.btn-outline-light-custom:hover {
  background: rgba(255,255,255,.2);
}

/* ── HERO ──────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(rgba(13,31,60,.65), rgba(13,31,60,.65)),
              url(../img/bg_banner2.jpg) center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  text-align: center;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,63,139,.5) 0%, transparent 60%);
  pointer-events: none;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -.5px;
}
.hero-title span { color: var(--gold-light); }
.hero-subtitle {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  margin: 16px auto 28px;
  max-width: 600px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.25);
  border: 1px solid rgba(201,168,76,.5);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.9);
  margin-bottom: 12px;
  font-size: .95rem;
}
.hero-points li i {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── LOAN FORM CARD ────────────────────────────────── */
.loan-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.loan-card-head {
  background: linear-gradient(135deg, var(--dark), var(--brand));
  padding: 20px 28px;
  color: #fff;
}
.loan-card-head h4 {
  color: #fff;
  margin: 0 0 4px;
  font-size: 1.1rem;
}
.loan-card-head p {
  color: rgba(255,255,255,.7);
  margin: 0;
  font-size: .82rem;
}
.loan-card-body { padding: 24px 28px; }

/* Calculateur */
.calc-block {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(26,63,139,.1);
}
.calc-block h5 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 14px;
}
.form-label-c {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.form-ctrl {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #dde3ef;
  border-radius: 8px;
  font-size: .9rem;
  color: var(--dark);
  background: #fff;
  transition: border-color .25s;
  outline: none;
  font-family: "Barlow", sans-serif;
}
.form-ctrl:focus { border-color: var(--brand); }
.form-ctrl option { color: var(--dark); }
select.form-ctrl { cursor: pointer; }

.calc-result {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  border: 2px solid #dde3ef;
  margin-top: 14px;
  overflow: hidden;
}
.calc-result-item {
  flex: 1;
  text-align: center;
  padding: 12px 10px;
}
.calc-result-item + .calc-result-item {
  border-left: 1px solid #dde3ef;
}
.calc-result-label {
  font-size: .68rem;
  font-weight: 700;
  color: var(--body);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.calc-result-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
}
.calc-result-value.total { font-size: 1.15rem; color: var(--dark); }
.calc-disclaimer {
  font-size: .72rem;
  color: var(--body);
  margin-top: 8px;
  margin-bottom: 0;
}

/* Form divider */
.f-divider {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand);
  border-bottom: 1px solid #dde3ef;
  padding-bottom: 6px;
  margin: 18px 0 14px;
}

/* Trust badges */
.trust-row-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.trf-item {
  flex: 1;
  min-width: 72px;
  background: var(--bg-light);
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
  border: 1px solid rgba(26,63,139,.1);
}
.trf-icon { font-size: 1.3rem; line-height: 1; margin-bottom: 3px; }
.trf-item b { display: block; font-size: .7rem; color: var(--dark); }
.trf-item small { font-size: .65rem; color: var(--body); }

/* Submit button */
.btn-loan-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all .3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.btn-loan-submit:hover {
  background: linear-gradient(135deg, var(--brand-hover), var(--brand));
  box-shadow: 0 8px 24px rgba(26,63,139,.35);
  transform: translateY(-1px);
}
.ssl-note {
  text-align: center;
  font-size: .73rem;
  color: var(--body);
  margin-top: 10px;
}
.ssl-note i { color: var(--success); margin-right: 4px; }

/* Honeypot */
.honeypot-f { position:absolute; left:-9999px; opacity:0; height:0; overflow:hidden; }

/* ── ABOUT SECTION ─────────────────────────────────── */
#about { background: #fff; }

.info-box {
  display: flex;
  align-items: flex-start;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  border-left: 4px solid var(--brand);
}
.info-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.info-box img { width: 52px; flex-shrink: 0; }
.info-box h5 { color: var(--dark); margin-bottom: 4px; font-size: 1rem; }
.info-box p  { margin-bottom: 0; font-size: .88rem; }

/* ── MILESTONE / STATS ─────────────────────────────── */
#milestone {
  background: linear-gradient(rgba(26,63,139,.88), rgba(26,63,139,.88)),
              url(../img/bg_banner1.jpg) center/cover no-repeat;
}
#milestone h1, #milestone p { color: #fff; }
#milestone .display-4 { font-size: 2.6rem; }

/* ── INTRO ─────────────────────────────────────────── */
.intro {
  margin-bottom: 40px;
  text-align: center;
}
.intro p { max-width: 520px; margin: auto; }
.intro h6 {
  color: var(--brand);
  font-weight: 600;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: 2px;
}
.intro h1, .intro h2 {
  margin-top: 12px;
  margin-bottom: 12px;
}

/* ── SERVICES CARDS ────────────────────────────────── */
.service {
  padding: 30px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  transition: transform .3s, box-shadow .3s;
  border-top: 3px solid transparent;
  height: 100%;
}
.service:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--brand);
}
.service h5 { margin-top: 20px; margin-bottom: 12px; }
.service img { width: 60px; }
.service .service-link {
  color: var(--brand);
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}
.service .service-link:hover { gap: 10px; }
.service .service-tag {
  display: inline-block;
  background: rgba(26,63,139,.08);
  color: var(--brand);
  border-radius: 50px;
  padding: 2px 12px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* ── RATES BOX (sidebar) ───────────────────────────── */
.rates-box {
  background: linear-gradient(135deg, var(--dark), var(--brand));
  border-radius: 14px;
  padding: 28px;
  color: #fff;
}
.rates-box h4 { color: var(--gold-light); margin-bottom: 18px; }
.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: .9rem;
}
.rate-row:last-of-type { border-bottom: none; }
.rate-row .label { color: rgba(255,255,255,.7); }
.rate-row .value { font-weight: 700; color: var(--gold-light); }

/* ── PORTFOLIO / PROJECTS ──────────────────────────── */
.project {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.project h6 { font-weight: 400; }
.project h6::before {
  content: "";
  height: 2px;
  width: 30px;
  display: inline-block;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 10px;
}
.project .overlay {
  width: 100%;
  height: 220px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(26,63,139,0) 0%, var(--dark) 100%);
}
.project .content {
  position: absolute;
  left: 10%;
  bottom: 10%;
}
.project h2, .project h6 { color: #fff; }

/* ── TESTIMONIALS ──────────────────────────────────── */
#reviews {
  background: linear-gradient(-90deg, rgba(13,31,60,.88), rgba(13,31,60,.88)),
              url(../img/bg_banner1.jpg) center/cover no-repeat;
}
.review {
  text-align: center;
  position: relative;
  max-width: 768px;
  margin: auto;
}
.review .bxs-quote-alt-left {
  font-size: 120px;
  position: absolute;
  opacity: .08;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.review img {
  width: 80px !important;
  height: 80px;
  border-radius: 50px;
  margin: auto;
  object-fit: cover;
}
.review h5 { margin-top: 14px; margin-bottom: 4px; color: #fff; }
.review h3 {
  margin-top: 22px;
  margin-bottom: 22px;
  font-size: 1.05rem;
  color: rgba(255,255,255,.9);
  font-weight: 400;
  line-height: 1.75;
}
.review small { color: var(--gold-light); }
.review .stars { color: var(--gold); font-size: 1.1rem; }

/* Owl nav colors */
.hero-slider .owl-prev,
.hero-slider .owl-next {
  background-color: rgba(255,255,255,.25) !important;
  width: 56px !important;
  height: 56px !important;
  display: grid !important;
  place-items: center;
  color: #fff !important;
  border-radius: 50px !important;
  position: absolute;
  top: 50%;
  margin-top: -28px !important;
  font-weight: 600 !important;
  font-size: 11px !important;
}
.hero-slider .owl-prev:hover,
.hero-slider .owl-next:hover { background-color: var(--brand) !important; }
.owl-dot.active span { background-color: var(--brand) !important; }
.owl-prev { left: 0; }
.owl-next { right: 0; }

/* ── WHY SECTION ───────────────────────────────────── */
.why-section { background: var(--bg-light); }
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--brand);
}
.why-card .icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.why-card h5 { color: var(--dark); margin-bottom: 8px; font-size: .95rem; }
.why-card p  { font-size: .82rem; margin-bottom: 0; }

/* ── CTA SECTION ───────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--brand) 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-section h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.4rem); }
.cta-section h2 span { color: var(--gold-light); }
.cta-section p { color: rgba(255,255,255,.8); margin-bottom: 28px; font-size: 1rem; }
.cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}
.cta-badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
}

/* ── TRUST BAR ─────────────────────────────────────── */
.trust-bar {
  background: var(--bg-light);
  border-top: 1px solid #e8edf5;
  border-bottom: 1px solid #e8edf5;
  padding: 14px 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .83rem;
  font-weight: 700;
  color: var(--body);
}
.trust-item i { color: var(--brand); }

/* ── PAGE HERO (inner pages) ───────────────────────── */
.page-hero {
  background: linear-gradient(rgba(13,31,60,.72), rgba(13,31,60,.72)),
              url(../img/bg_banner1.jpg) center/cover no-repeat;
  padding: 90px 0 60px;
  text-align: center;
  color: #fff;
}
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.page-hero h1 span { color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,.8); max-width: 560px; margin: 12px auto 0; }
.breadcrumb-nav {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .85rem;
}
.breadcrumb-nav a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb-nav a:hover { color: var(--gold-light); }
.breadcrumb-nav span { color: rgba(255,255,255,.5); }
.section-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand);
  display: block;
  margin-bottom: 8px;
}

/* ── SERVICE DETAIL (services page) ───────────────── */
.service-detail {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 100%;
  transition: transform .3s, box-shadow .3s;
}
.service-detail:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-detail-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.service-detail-body { padding: 22px; }
.service-detail-body h4 { margin: 8px 0 10px; font-size: 1.05rem; }
.service-detail-body p  { font-size: .88rem; margin-bottom: 12px; }
.service-list { list-style: none; padding: 0; margin: 0; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  margin-bottom: 6px;
  color: var(--body);
}
.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

/* ── ABOUT PAGE ────────────────────────────────────── */
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.af-icon {
  width: 44px;
  height: 44px;
  background: rgba(26,63,139,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.af-icon i { font-size: 1.2rem; }
.about-feature h6 { color: var(--dark); margin-bottom: 4px; font-size: .95rem; }
.about-feature p  { font-size: .85rem; margin-bottom: 0; }

.about-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--brand);
  color: #fff;
  border-radius: 10px;
  padding: 14px 20px;
  text-align: center;
}
.about-badge .val { font-size: 1.6rem; font-weight: 800; display: block; line-height: 1; }
.about-badge .lbl { font-size: .72rem; opacity: .8; }

/* ── CONTACT PAGE ──────────────────────────────────── */
.contact-info-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  height: 100%;
}
.contact-info-card h3 { color: var(--dark); }
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.ci-icon {
  width: 42px;
  height: 42px;
  background: rgba(26,63,139,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ci-item h6 { color: var(--dark); margin-bottom: 2px; font-size: .88rem; }
.ci-item p  { font-size: .85rem; margin-bottom: 0; }

.contact-form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}
.contact-form-card h3 { color: var(--dark); margin-bottom: 22px; }

/* ── LOAN HERO (loan.php) ──────────────────────────── */
.loan-hero {
  background: linear-gradient(rgba(13,31,60,.72), rgba(13,31,60,.72)),
              url(../img/bg_banner2.jpg) center/cover no-repeat;
  padding: 80px 0 50px;
  color: #fff;
}
.loan-hero h1 { color: #fff; }
.loan-hero p   { color: rgba(255,255,255,.85); max-width: 600px; }
.loan-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.loan-badge {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.9);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.loan-badge i { color: var(--gold-light); }
.loan-form-wrap {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.loan-form-head {
  background: linear-gradient(135deg, var(--dark), var(--brand));
  padding: 18px 26px;
}
.loan-form-head h3 { color: #fff; margin-bottom: 4px; font-size: 1.1rem; }
.loan-form-head p  { color: rgba(255,255,255,.65); margin: 0; font-size: .82rem; }
.loan-form-body { padding: 24px 26px; }

/* ── SUCCESS BLOCK ─────────────────────────────────── */
.success-block {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 48px 32px;
  text-align: center;
}
.success-icon {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 18px;
}
.success-block h3 { color: var(--dark); margin-bottom: 12px; }
.success-details {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 18px 22px;
  text-align: left;
  margin: 18px 0;
  border-left: 4px solid var(--brand);
}
.success-details p { margin-bottom: 6px; font-size: .9rem; }

/* ── ALERT ─────────────────────────────────────────── */
.alert-c {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius);
}
.alert-danger {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: var(--danger);
}

/* ── ACCORDION (contact FAQ) ───────────────────────── */
.accordion-button {
  font-weight: 700;
  color: var(--dark);
  font-size: .92rem;
}
.accordion-button:not(.collapsed) {
  color: var(--brand);
  background: rgba(26,63,139,.05);
  box-shadow: none;
}
.accordion-button::after {
  filter: invert(20%) sepia(80%) saturate(500%) hue-rotate(200deg);
}

/* ── FOOTER ────────────────────────────────────────── */
footer {
  background: linear-gradient(0deg, rgba(13,31,60,.94), rgba(13,31,60,.94)),
              url(../img/bg_banner1.jpg) center/cover no-repeat;
}
footer .footer-top {
  padding: 70px 0 40px;
}
footer .navbar-brand { color: #fff; }
footer p { color: #adb3b9; }
footer .social-icons a {
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  margin: 0 3px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
}
.footer-bottom p { color: rgba(255,255,255,.5); font-size: .82rem; margin-bottom: 4px; }
.footer-bottom a { color: rgba(255,255,255,.6); text-decoration: none; margin: 0 8px; font-size: .82rem; }
.footer-bottom a:hover { color: var(--gold-light); }
.conditions-section { margin: 16px 0; }
.conditions-section a { color: rgba(255,255,255,.7); margin: 0 10px; font-size: .85rem; }
.conditions-section a:hover { color: var(--gold-light); }
.footer-conditions { margin: 16px 0; }
.fcond-item {
  background: rgba(255,255,255,.1);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  display: inline-block;
}

/* ── BLOG (about page reuse) ───────────────────────── */
.blog-post {
  position: relative;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}
.blog-post .content { padding: 26px; }
.blog-post .tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--brand);
  padding: 2px 12px;
  border-radius: 50px;
  color: #fff;
  font-size: .78rem;
  text-decoration: none;
  font-weight: 600;
}
.blog-post h5 { margin: 10px 0 10px; font-size: .95rem; }
.blog-post small { text-transform: uppercase; color: var(--brand); font-size: .75rem; }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-section { padding: 100px 0 60px; min-height: auto; }
}
@media (max-width: 767px) {
  .top-nav p + p { display: none; }
  .trust-bar-inner { gap: 14px; }
  .hero-title { font-size: 1.8rem; }
}
