/* ==========================================================================
   Design system — single source of truth for colors, radius, spacing,
   buttons, cards, typography. All page templates and the admin panel share
   this one file so nothing drifts into a different visual language.
   ========================================================================== */

:root {
  --primary-color: #123B65;
  --secondary-color: #1C5A91;
  --dark-color: #092A4A;
  --light-color: #FFFFFF;
  --white: #FFFFFF;
  --text-color: #22303F;
  --text-muted: #5B6B7C;
  --border-color: #E1E8F0;
  --success-color: #1E7B4D;
  --danger-color: #B3261E;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(9, 42, 74, 0.06);
  --shadow-md: 0 10px 30px rgba(9, 42, 74, 0.10);

  --font-sans: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Free-to-use stock photo (Unsplash License — free for commercial use) behind the hero banner. */
  --hero-photo: url('https://images.unsplash.com/photo-1748864459512-acde6546aa40?q=80&w=1600&auto=format&fit=crop');
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-color);
  background: var(--light-color);
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--dark-color);
}

a { color: var(--secondary-color); text-decoration: none; }
a:hover { color: var(--primary-color); }

.container { max-width: 1200px; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  border-radius: var(--radius-pill);
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary,
.btn-cta {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}
.btn-primary:hover,
.btn-cta:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-nav-phone {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.25rem;
  font-weight: 600;
}
.btn-nav-phone:hover { background-color: var(--secondary-color); color: var(--white); }

.btn-lg { padding: 0.85rem 2rem; font-size: 1.05rem; }

/* ---- Header / Nav -------------------------------------------------------- */
.compliance-bar {
  background: var(--light-color);
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
  font-size: .8rem;
}
.compliance-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .5rem 1rem;
  padding: .5rem 0;
}
.compliance-text { color: var(--text-muted); }
.compliance-text i { color: var(--secondary-color); margin-right: .3rem; }
.compliance-text strong { color: var(--dark-color); }

.main-nav {
  background: var(--dark-color);
  box-shadow: var(--shadow-sm);
  padding: .6rem 0;
  z-index: 1030;
}
.main-nav .navbar-brand img { display: block; }
.nav-badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: .2rem .7rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
  margin-top: .35rem;
}
.main-nav .nav-link {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  padding: .5rem 1rem !important;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active { color: #fff; }
.main-nav .btn-nav-phone {
  background: var(--white);
  color: var(--primary-color);
}
.main-nav .btn-nav-phone:hover { background: #eef4fa; color: var(--primary-color); }

.main-nav .dropdown-menu {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: .5rem;
}
.main-nav .dropdown-item {
  border-radius: var(--radius-sm);
  padding: .55rem .9rem;
  font-weight: 500;
}
.main-nav .dropdown-item:hover,
.main-nav .dropdown-item:focus {
  background-color: var(--light-color);
  color: var(--primary-color);
}

.breadcrumb-bar {
  background: var(--light-color);
  border-bottom: 1px solid var(--border-color);
  padding: .6rem 0;
  font-size: .9rem;
}
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* ---- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(9,42,74,0.93) 0%, rgba(18,59,101,0.88) 45%, rgba(28,90,145,0.72) 100%),
    var(--hero-photo, none) center 60% / cover no-repeat;
  color: var(--white);
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--radius-pill);
  padding: .35rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.2;
}
.hero p.lead { color: rgba(255,255,255,.88); max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.75rem; }
.btn-hero-outline {
  border: 1px solid rgba(255,255,255,.6);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: .65rem 1.5rem;
  font-weight: 600;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.12); color: var(--white); }
.btn-hero-solid {
  background: var(--white);
  color: var(--primary-color);
  border-radius: var(--radius-pill);
  padding: .65rem 1.5rem;
  font-weight: 700;
}
.btn-hero-solid:hover { background: #eef4fa; color: var(--primary-color); }

.hero-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.hero-main { flex: 1 1 480px; min-width: 0; }
.hero-info-box {
  background: var(--white);
  color: var(--dark-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1rem 1.25rem;
  min-width: 260px;
}
.hero-info-box .hero-info-label {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: .2rem;
}
.hero-info-box .hero-info-phone {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-color);
}
.hero-info-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }
.hero-info-badges span {
  background: var(--light-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  padding: .3rem .75rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--dark-color);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.hero-info-badges i { color: var(--secondary-color); }

.hero-subtext {
  display: inline-block;
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(255,255,255,.25);
}

.hero-search {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.25rem;
  margin-top: 2rem;
}
.hero-search .form-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--text-muted);
  margin-bottom: .25rem;
}
.hero-search-note {
  color: var(--text-muted);
  font-size: .78rem;
  margin: .6rem 0 0;
}

/* ---- Sections / cards ------------------------------------------------------ */
.section { padding: 4rem 0; }
.section-light { background: var(--light-color); }
.section-white { background: var(--white); }
.section-title { text-align: center; margin-bottom: .5rem; }
.section-subtitle { text-align: center; color: var(--text-muted); max-width: 640px; margin: 0 auto 2.5rem; }

.card-panel {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
  height: 100%;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card-panel:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(18, 59, 101, 0.09);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.card-panel h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.card-panel p { color: var(--text-muted); font-size: .95rem; margin-bottom: 1rem; }
.card-link { font-weight: 600; }
.card-link i { transition: transform .15s ease; }
.card-panel:hover .card-link i { transform: translateX(3px); }

/* Sunduğumuz Hizmetler: real photo header + overlapping icon badge */
.svc-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.svc-photo {
  height: 130px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.svc-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,42,74,.05) 0%, rgba(9,42,74,.55) 100%);
}
.svc-icon-badge {
  width: 42px;
  height: 42px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  position: absolute;
  left: 16px;
  bottom: -18px;
  z-index: 1;
  box-shadow: var(--shadow-md);
}
.svc-body { padding: 2rem 1.25rem 1.35rem; display: flex; flex-direction: column; flex: 1; }
.svc-card h3 { font-size: .95rem; font-weight: 700; color: var(--primary-color); margin-bottom: .4rem; }
.svc-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.svc-card .card-link { margin-top: .85rem; font-size: .85rem; }

/* ---- Çalıştığımız Havayolları (airline cards) ------------------------------- */
.airlines-section { background: linear-gradient(180deg, var(--white) 0%, var(--light-color) 100%); }
.gradient-title {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.airline-card {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.airline-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.airline-card .airline-icon {
  width: 64px; height: 64px; margin: 0 auto .9rem;
  border-radius: 50%;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  position: relative;
  z-index: 1;
}
.airline-card h3 { font-size: .95rem; margin-bottom: .2rem; position: relative; z-index: 1; }
.airline-destinations { color: var(--text-muted); font-size: .78rem; margin: 0; position: relative; z-index: 1; }

.airline-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: translateX(-100%);
  transition: transform .8s ease;
  pointer-events: none;
}
.airline-card:hover .airline-shimmer { transform: translateX(100%); }

.airline-cta {
  margin-top: .75rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--primary-color);
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  padding: .3rem .7rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  position: relative;
  z-index: 1;
}
.airline-card:hover .airline-cta { opacity: 1; transform: translateY(0); }

.airline-badge-corner {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--success-color);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: var(--radius-pill);
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 1;
}
.airline-card:hover .airline-badge-corner { opacity: 1; }

/* Subtle, brand-neutral accent per airline (no trademarked logos used) */
.airline-thy { background: linear-gradient(160deg, #FDF1F0, var(--white)); border-color: #F3CFCB; }
.airline-thy:hover { border-color: #B32017; }
.airline-thy .airline-icon { background: #B32017; }
.airline-sunexpress { background: linear-gradient(160deg, #FDF3E9, var(--white)); border-color: #F5D9B8; }
.airline-sunexpress:hover { border-color: #E8792A; }
.airline-sunexpress .airline-icon { background: #E8792A; }
.airline-pegasus { background: linear-gradient(160deg, #FDF7E3, var(--white)); border-color: #F0E1A8; }
.airline-pegasus:hover { border-color: #E0A100; }
.airline-pegasus .airline-icon { background: #E0A100; }
.airline-ajet { background: linear-gradient(160deg, #EAF1F8, var(--white)); border-color: #C9DBEC; }
.airline-ajet:hover { border-color: var(--secondary-color); }
.airline-ajet .airline-icon { background: var(--secondary-color); }
.airline-qatar { background: linear-gradient(160deg, #F5EAEE, var(--white)); border-color: #E3C7D0; }
.airline-qatar:hover { border-color: #7A1F3D; }
.airline-qatar .airline-icon { background: #7A1F3D; }

.airlines-cta-box {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(90deg, rgba(18,59,101,.06), rgba(28,90,145,.06));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}
.airlines-cta-box h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.airlines-cta-box p { color: var(--text-muted); margin-bottom: 1rem; }
.airlines-cta-box .cta-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-color);
}
.airlines-cta-box .cta-phone:hover { color: var(--secondary-color); }

/* ---- Güven şeridi (TÜRSAB / Havayolu sayısı / ETBİS / 7-24) ------------------- */
.trust-section { background: var(--dark-color); padding: 50px 0; }
.trust-card {
  text-align: center;
  padding: 1.4rem .9rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  height: 100%;
}
.trust-card .trust-icon { font-size: 1.9rem; margin-bottom: .5rem; color: #fff; }
.trust-card .trust-value { font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: .2rem; }
.trust-card .trust-label { font-size: .78rem; color: rgba(255,255,255,.6); }

.step-item { text-align: center; }
.step-number {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin: 0 auto .75rem;
}

.disclaimer-box {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--secondary-color);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  color: var(--text-muted);
  font-size: .92rem;
}
.disclaimer-box i { color: var(--secondary-color); margin-right: .4rem; }

/* ---- Footer ------------------------------------------------------------------ */
.site-footer {
  position: relative;
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 55%, var(--dark-color) 100%);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 2rem;
  font-size: .92rem;
  overflow: hidden;
}
.footer-blob {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .12;
  pointer-events: none;
}
.footer-blob-1 { top: -120px; left: 8%; background: var(--secondary-color); }
.footer-blob-2 { bottom: -120px; right: 8%; background: var(--primary-color); }
.site-footer .container { position: relative; z-index: 1; }

.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; }
.footer-muted { color: rgba(255,255,255,.6); }

.footer-brand-gradient {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: .3rem;
  background: linear-gradient(90deg, #9fc3e8, var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-contact-card {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  margin-bottom: .6rem;
  transition: background .2s ease, border-color .2s ease;
}
.footer-contact-card:hover { background: rgba(28,90,145,.35); border-color: var(--secondary-color); }
.footer-contact-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(159,195,232,.18);
  color: #9fc3e8;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-contact-label { display: block; font-size: .72rem; color: rgba(255,255,255,.55); }
.footer-contact-value { display: block; font-weight: 700; color: var(--white); }

.footer-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.footer-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .3rem .7rem;
  border-radius: var(--radius-sm);
  font-size: .72rem;
  font-weight: 700;
}
.footer-badge-green { background: rgba(30,123,77,.2); border: 1px solid rgba(30,123,77,.4); color: #6bd6a3; }
.footer-badge-blue { background: rgba(159,195,232,.15); border: 1px solid rgba(159,195,232,.35); color: #9fc3e8; }

.footer-tursab-box {
  display: flex; align-items: center; gap: .75rem;
  padding: .9rem 1.1rem;
  background: linear-gradient(90deg, rgba(159,195,232,.16), rgba(28,90,145,.16));
  border: 1px solid rgba(159,195,232,.35);
  border-radius: var(--radius);
  color: #cfe0f2;
}
.footer-tursab-box i { font-size: 1.3rem; color: #9fc3e8; }

.footer-links-v2 { list-style: none; padding: 0; margin: 0; }
.footer-links-v2 li { margin-bottom: .6rem; }
.footer-links-v2 a {
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.footer-links-v2 a:hover { color: #9fc3e8; }
.footer-links-v2 a .dot { width: 5px; height: 5px; border-radius: 50%; background: #9fc3e8; opacity: 0; transition: opacity .2s ease; }
.footer-links-v2 a:hover .dot { opacity: 1; }

.footer-social-card {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  margin-bottom: .6rem;
  transition: background .2s ease, border-color .2s ease;
}
.footer-social-card:hover { background: rgba(28,90,145,.35); border-color: var(--secondary-color); }
.footer-social-card i { font-size: 1.2rem; color: #9fc3e8; }
.footer-social-label { display: block; font-size: .72rem; color: rgba(255,255,255,.55); }
.footer-social-value { display: block; font-weight: 700; color: var(--white); font-size: .88rem; }

.footer-cta-box {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(90deg, rgba(18,59,101,.35), rgba(28,90,145,.35));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
  backdrop-filter: blur(6px);
}
.footer-cta-box h4 { margin-bottom: .2rem; }
.footer-cta-box p { color: rgba(255,255,255,.75); margin: 0; font-size: .88rem; }

.footer-company-block { text-align: center; padding-bottom: 1.75rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-company-block .fw-bold { color: var(--white); font-size: 1.05rem; }
.footer-company-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: .3rem 1rem; font-size: .82rem; color: rgba(255,255,255,.55); margin: .4rem 0; }
.footer-disclaimer { font-size: .8rem; color: rgba(255,255,255,.45); max-width: 760px; margin: .75rem auto 0; text-align: center; }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.5); text-align: center; margin: 0; }

/* ---- Mobile fixed phone bar ------------------------------------------------- */
.mobile-phone-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1040;
  background: var(--primary-color);
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -4px 16px rgba(0,0,0,.15);
}
.mobile-phone-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: .55rem 0 .65rem;
  color: var(--white);
}
.mobile-phone-label { font-size: .72rem; opacity: .85; }
.mobile-phone-number { font-size: 1.05rem; font-weight: 700; }

body { padding-bottom: 0; }
@media (max-width: 991.98px) {
  body { padding-bottom: 64px; }
}

/* ---- Forms ------------------------------------------------------------------ */
.form-control, .form-select {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  padding: .65rem .9rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(28, 90, 145, .15);
}
.form-label { font-weight: 600; color: var(--dark-color); font-size: .92rem; }

/* ---- Content pages ------------------------------------------------------------ */
.content-page h1 { margin-bottom: 1rem; }
.content-page .lead-intro { font-size: 1.1rem; color: var(--text-muted); }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  padding: .6rem 0 .6rem 1.9rem;
  position: relative;
  border-bottom: 1px dashed var(--border-color);
}
.info-list li:last-child { border-bottom: none; }
.info-list li::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm) !important;
  margin-bottom: .6rem;
  overflow: hidden;
}
.accordion-button {
  font-weight: 600;
  color: var(--dark-color);
}
.accordion-button:not(.collapsed) {
  background-color: rgba(18,59,101,.06);
  color: var(--primary-color);
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; border-color: var(--border-color); }

.small-cta-box {
  background: var(--light-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.75rem;
}

@media (max-width: 767.98px) {
  .section { padding: 2.5rem 0; }
  .hero { padding: 3rem 0 3.5rem; }
}
