:root {
  --primary: #0077B6;
  --primary-dark: #023E8A;
  --primary-light: #90E0EF;
  --secondary: #FB8500;
  --text-main: #1D3557;
  --text-muted: #457B9D;
  --bg-light: #F8FBFE;
  --bg-white: #FFFFFF;
  --border: #E1E9F4;
  --shadow: 0 10px 30px rgba(0, 119, 182, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 119, 182, 0.12);
  --radius: 12px;
  --container: 1200px;
  --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Nav */
.notification-bar {
  background: var(--primary);
  color: white;
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
}

.nb-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.nb-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 11px;
}

.site-header {
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 119, 182, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon-wrapper {
  background: var(--primary);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 119, 182, 0.2);
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.brand-name .accent {
  color: var(--primary);
}

.brand-tagline {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: -4px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-main);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  border: 1px solid var(--primary-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 119, 182, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 119, 182, 0.35);
}

.btn-secondary {
  background: var(--bg-light);
  color: var(--primary);
  border: 1px solid var(--primary-light);
}

.btn-white {
  background: white;
  color: var(--primary);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-full {
  width: 100%;
}

/* Hero */
.hero {
  padding: 80px 0;
  background: radial-gradient(circle at top right, #f0f9ff 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  color: var(--primary-dark);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 10px #22C55E;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 56px;
  margin-bottom: 24px;
  color: var(--text-main);
}

.hero-title .highlight {
  color: var(--primary);
  position: relative;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

.trust-item i {
  color: #22C55E;
}

.hero-stats-mini {
  display: flex;
  gap: 32px;
}

.stat-mini strong {
  display: block;
  font-size: 20px;
  color: var(--primary);
}

.stat-mini span {
  font-size: 12px;
  color: var(--text-muted);
}

/* Widget Card */
.hero-widget-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.widget-header {
  text-align: center;
  margin-bottom: 24px;
}

.widget-header h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.widget-header .subtitle {
  font-size: 14px;
  color: var(--text-muted);
}

.form-privacy {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

/* Local SEO Sections */
.local-seo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.local-seo-content h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--primary);
    border-left: 4px solid var(--primary);
    padding-left: 16px;
}

.dept-grid-mini {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.dept-link {
    background: var(--bg-light);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
}

.dept-link:hover {
    background: white;
    border-color: var(--primary-light);
    color: var(--primary);
    transform: translateX(4px);
}

.dept-item-card-small {
    display: inline-block;
    background: #f1f5f9;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    margin: 4px;
    border: 1px solid #e2e8f0;
}

.dept-item-card-small:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-alt {
  background-color: var(--bg-light);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

/* Why Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.why-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin: 0 auto 24px;
}

/* Footer */
.site-footer {
  background: #0F172A;
  color: white;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-desc {
  color: #94A3B8;
  margin: 20px 0;
  font-size: 14px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748B;
  font-size: 14px;
}

.footer-badge {
  background: rgba(255,255,255,0.05);
  color: #CBD5E1;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

/* Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* Mobile */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .local-seo-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hide-mobile { display: none; }
  .hero-title { font-size: 40px; }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: white;
    padding: 40px;
    display: none;
    flex-direction: column;
    z-index: 999;
  }
  .nav-menu.active { display: flex; }
  .nav-links { flex-direction: column; gap: 20px; }
  .nav-links a { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
}