@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #1a2744;
  --navy-light: #2d3f5e;
  --gold: #5ba948;
  --gold-light: #77cf61;
  --cream: #f7f5f0;
  --slate: #546178;
}

body { font-family: 'Source Sans 3', sans-serif; color: #1e2a3a; }
h1,h2,h3,h4,h5,h6 { font-family: 'Source Sans 3', sans-serif, Georgia, serif; }

/* Top bar */
.top-bar { background: var(--navy); }
.top-bar a { color: #f5f0e0; text-decoration: none; font-weight: 600; font-size: 0.875rem; }
.top-bar a:hover { color: var(--gold); }

/* Navbar */
.navbar { box-shadow: 0 4px 24px -4px rgba(26,39,68,0.08); }
.navbar-brand { font-family: 'Source Sans 3', sans-serif; font-weight: 700; color: var(--navy) !important; }
.navbar-brand span { color: var(--gold); }
.nav-link { font-family: 'Source Sans 3', sans-serif; font-weight: 500; color: #1e2a3a !important; }
.nav-link:hover { color: var(--navy) !important; background: #f0f0f0; border-radius: 6px; }

/* Hero */
.hero-banner { position: relative; min-height: 500px; height: 70vh; overflow: hidden; display: flex; align-items: center; }
.hero-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,39,68,0.85), rgba(45,63,94,0.7)); }
.hero-banner .hero-content { position: relative; z-index: 2; }
.hero-banner h1 { color: #f5f0e0; }
.hero-banner h1 span { color: var(--gold); }
.hero-banner p { color: rgba(245,240,224,0.85); }

/* Page Banner (inner pages) */
.page-banner { position: relative; height: 220px; overflow: hidden; display: flex; align-items: flex-end; }
.page-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-banner .hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,39,68,0.85), rgba(45,63,94,0.7)); }
.page-banner .banner-content { position: relative; z-index: 2; padding-bottom: 2rem; }
.page-banner h1 { color: #f5f0e0; }
.breadcrumb-item a { color: rgba(245,240,224,0.7); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--gold); }
.breadcrumb-item.active { color: var(--gold); font-weight: 600; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(245,240,224,0.5) !important; }

/* Sections */
.section-padding { padding: 4rem 0; }
.bg-cream { background: var(--cream); }
.bg-navy { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }

/* Cards */
.card-custom { border: 1px solid #e2e6ea; border-radius: 12px; transition: box-shadow 0.3s; }
.card-custom:hover { box-shadow: 0 12px 40px -8px rgba(26,39,68,0.15); }
.icon-box { width: 56px; height: 56px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.icon-box-navy { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.icon-box-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.icon-box-round { width: 64px; height: 64px; border-radius: 50%; background: rgba(26,39,68,0.1); display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.icon-box-round:hover { background: var(--navy); }
.icon-box-round:hover i { color: #f5f0e0 !important; }

.dot-gold { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; margin-top: 8px; flex-shrink: 0; }

/* Buttons */
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); font-weight: 700; border: none; padding: 12px 40px; border-radius: 8px; transition: transform 0.2s; }
.btn-gold:hover { transform: scale(1.05); color: var(--navy); }

/* CTA */
.cta-section h2 { color: #f5f0e0; }
.cta-section p { color: rgba(245,240,224,0.7); }
.cta-section a.text-gold { color: var(--gold); }

/* Footer */
.footer { background: var(--navy); color: #f5f0e0; }
.footer a { color: rgba(245,240,224,0.7); text-decoration: none; }
.footer a:hover { color: var(--gold); }
.footer .text-gold { color: var(--gold); }

/* Service check items */
.service-check-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; border-radius: 12px; background: #fff; border: 1px solid #e2e6ea; }
.service-check-item i { color: var(--gold); font-size: 1.25rem; margin-top: 2px; }

@media (max-width: 767px) {
  .hero-banner { min-height: 400px; height: 60vh; }
  .page-banner { height: 180px; }
  .section-padding { padding: 3rem 0; }
}
