:root {
  --p-primary: #0a2463;
  --p-primary-light: #1e3a8a;
  --p-secondary: #2563eb;
  --p-accent: #f59e0b;
  --p-surface: #f0f4f8;
  --p-surface-alt: #e8edf5;
  --p-card: #ffffff;
  --p-text: #0f172a;
  --p-muted: #64748b;
  --p-border: rgba(10, 36, 99, 0.1);
  --p-shadow-sm: 0 1px 3px rgba(10, 36, 99, 0.06);
  --p-shadow: 0 4px 20px rgba(10, 36, 99, 0.08);
  --p-shadow-lg: 0 12px 40px rgba(10, 36, 99, 0.12);
  --p-radius: 16px;
  --p-radius-lg: 24px;
}

* {
  scroll-behavior: smooth;
}

body {
  background: var(--p-surface);
  color: var(--p-text);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--p-secondary);
  transition: color 0.2s;
}

a:hover {
  color: var(--p-primary);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.anim-fade-up {
  animation: fadeUp 0.6s ease both;
}

.anim-fade-in {
  animation: fadeIn 0.6s ease both;
}

.anim-scale-in {
  animation: scaleIn 0.5s ease both;
}

.anim-slide-left {
  animation: slideLeft 0.5s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.portal-navbar {
  background: rgba(10, 36, 99, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 30px rgba(10, 36, 99, 0.2);
  padding: 0;
  transition: background 0.3s;
}

.portal-navbar .container {
  position: relative;
}

.portal-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  color: #fff !important;
}

.portal-brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.portal-brand .brand-text strong {
  font-size: 14px;
  font-weight: 800;
  display: block;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.portal-brand .brand-text small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.navbar-toggler {
  border: 0;
  padding: 8px;
  color: #fff;
  font-size: 20px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.portal-nav {
  gap: 2px;
}

.portal-nav .nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px !important;
  border-radius: 10px;
  transition: all 0.2s;
}

.portal-nav .nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.portal-nav .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.portal-nav .dropdown-menu {
  border: 0;
  border-radius: 14px;
  padding: 8px;
  margin-top: 8px !important;
  box-shadow: 0 20px 60px rgba(10, 36, 99, 0.15);
  min-width: 220px;
}

.portal-nav .dropdown-item {
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--p-text);
}

.portal-nav .dropdown-item:hover {
  background: #eef2ff;
  color: var(--p-primary);
}

.portal-navbar .portal-btn-outline.nav-link {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  padding: 10px 20px !important;
}

.portal-navbar .portal-btn-outline.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-section {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2463 0%, #1e3a8a 40%, #1e40af 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.3) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(245, 158, 11, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 50% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.hero-inner {
  padding: 100px 0 30px;
}

.hero-inner .hero-inner-content {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.6s ease both;
  max-width: 640px;
}

.hero-inner .hero-inner-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-inner .hero-inner-content h1 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.hero-inner .hero-inner-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin-bottom: 10px;
}

.hero-inner .hero-inner-content .hero-inner-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.hero-inner .hero-inner-content .hero-inner-stats .stat-chip {
  padding: 8px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.hero-inner .hero-inner-content .hero-inner-stats .stat-chip strong {
  font-weight: 800;
}

.hero-inner .hero-inner-content .hero-inner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 360px;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.hero-slider-main {
  animation: fadeUp 0.7s ease both;
}

.hero-news-slider {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.hero-slide {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 36, 99, 0.88) 0%, rgba(10, 36, 99, 0.35) 50%, rgba(10, 36, 99, 0.1) 100%);
  pointer-events: none;
}

.hero-slide-overlay {
  position: relative;
  z-index: 2;
  padding: 40px 36px;
  color: #fff;
  max-width: 100%;
}

.hero-slide-overlay .slide-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.25);
  color: #fbbf24;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.hero-slide-overlay h2 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-slide-overlay h2 a {
  color: #fff;
  text-decoration: none;
}

.hero-slide-overlay h2 a:hover {
  text-decoration: underline;
}

.hero-slide-overlay .slide-excerpt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 90%;
}

.hero-slide-overlay .slide-meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-slide-overlay .slide-meta i {
  margin-right: 6px;
}

.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  background: #fff;
  color: var(--p-primary);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.25s;
}

.slide-btn:hover {
  background: #f0f4ff;
  color: var(--p-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-news-slider .carousel-indicators {
  bottom: 16px;
  margin-bottom: 0;
  gap: 6px;
}

.hero-news-slider .carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  opacity: 0.5;
  transition: all 0.3s;
  background: #fff;
}

.hero-news-slider .carousel-indicators button.active {
  width: 28px;
  opacity: 1;
  border-radius: 4px;
}

.hero-news-slider .carousel-control-prev,
.hero-news-slider .carousel-control-next {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  opacity: 0;
  transition: opacity 0.3s;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-news-slider .carousel-control-prev:hover,
.hero-news-slider .carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-news-slider .carousel-control-prev .carousel-control-prev-icon,
.hero-news-slider .carousel-control-prev .carousel-control-next-icon,
.hero-news-slider .carousel-control-next .carousel-control-prev-icon,
.hero-news-slider .carousel-control-next .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

.hero-news-slider .carousel-control-prev {
  left: 12px;
}

.hero-news-slider .carousel-control-next {
  right: 12px;
}

.hero-news-slider:hover .carousel-control-prev,
.hero-news-slider:hover .carousel-control-next {
  opacity: 1;
}

.hero-slider-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.hero-slider-stats .stat-item {
  padding: 14px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.hero-slider-stats .stat-item strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.hero-slider-stats .stat-item span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-hero.btn-primary-custom {
  background: #fff;
  color: var(--p-primary);
  border: 0;
}

.btn-hero.btn-primary-custom:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-hero.btn-outline-custom {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-hero.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.hero-side-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px;
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.2s;
  color: #fff;
}

.hero-side-card .side-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.hero-side-card .leader-img {
  width: 100%;
  height: 260px;
  border-radius: 14px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-side-card h5 {
  font-weight: 800;
  margin-bottom: 2px;
  font-size: 16px;
}

.hero-side-card .leader-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.hero-side-card .quick-links {
  display: grid;
  gap: 8px;
}

.hero-side-card .quick-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.hero-side-card .quick-links a i {
  width: 18px;
  text-align: center;
}

.hero-side-card .quick-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.running-strip {
  background: #fff;
  border-bottom: 1px solid var(--p-border);
  padding: 12px 0;
}

.running-strip .running-shell {
  display: flex;
  align-items: center;
  gap: 16px;
}

.running-strip .running-shell .running-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #fef3c7;
  border-radius: 8px;
  color: #92400e;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.running-strip .running-shell .running-label i {
  font-size: 14px;
}

.running-strip .running-shell .running-track {
  overflow: hidden;
  flex: 1;
}

.running-strip .running-shell .running-track .track-inner {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.running-strip .running-shell .running-track .track-inner span {
  font-size: 13px;
  color: var(--p-muted);
  font-weight: 500;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.section-premium {
  padding: 72px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 999px;
  background: #eef2ff;
  color: var(--p-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--p-text);
}

.section-header p {
  font-size: 16px;
  color: var(--p-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-header.text-start {
  text-align: left;
}

.section-header.text-start p {
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.service-card-premium {
  background: var(--p-card);
  border-radius: var(--p-radius-lg);
  border: 1px solid var(--p-border);
  box-shadow: var(--p-shadow);
  padding: 28px;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--card-accent, var(--p-secondary));
  opacity: 0.7;
}

.service-card-premium .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: linear-gradient(135deg, var(--card-accent, var(--p-secondary)), color-mix(in srgb, var(--card-accent, var(--p-secondary)) 70%, #000));
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--card-accent, var(--p-secondary)) 30%, transparent);
}

.service-card-premium h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--p-text);
  margin-bottom: 8px;
}

.service-card-premium p {
  font-size: 13px;
  color: var(--p-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.service-card-premium .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--card-accent, var(--p-secondary));
  transition: gap 0.2s;
}

.service-card-premium .card-link i {
  font-size: 11px;
  transition: transform 0.2s;
}

.service-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: var(--p-shadow-lg);
  border-color: color-mix(in srgb, var(--card-accent, var(--p-secondary)) 30%, transparent);
}

.service-card-premium:hover .card-link {
  gap: 10px;
}

.service-card-premium:hover .card-link i {
  transform: translateX(3px);
}

.section-light {
  background: var(--p-card);
}

.news-grid-premium {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.news-featured {
  background: var(--p-card);
  border-radius: var(--p-radius-lg);
  border: 1px solid var(--p-border);
  box-shadow: var(--p-shadow);
  overflow: hidden;
  transition: all 0.3s;
}

.news-featured:hover {
  box-shadow: var(--p-shadow-lg);
  transform: translateY(-3px);
}

.news-featured .news-img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.news-featured .news-body {
  padding: 24px;
}

.news-featured .news-body .news-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 8px;
  background: #eef2ff;
  color: var(--p-primary);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
}

.news-featured .news-body h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 10px;
}

.news-featured .news-body h3 a {
  color: var(--p-text);
  text-decoration: none;
}

.news-featured .news-body h3 a:hover {
  color: var(--p-secondary);
  text-decoration: underline;
}

.news-featured .news-body p {
  font-size: 14px;
  color: var(--p-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.news-featured .news-body .news-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--p-muted);
  font-weight: 600;
}

.news-side-list {
  display: grid;
  gap: 16px;
}

.news-side-item {
  display: flex;
  gap: 14px;
  background: var(--p-card);
  border-radius: 16px;
  border: 1px solid var(--p-border);
  padding: 16px;
  transition: all 0.25s;
  text-decoration: none;
}

.news-side-item:hover {
  box-shadow: var(--p-shadow);
  transform: translateX(4px);
}

.news-side-item .side-img {
  width: 100px;
  height: 76px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.news-side-item .side-body {
  flex: 1;
  min-width: 0;
}

.news-side-item .side-body h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
  color: var(--p-text);
}

.news-side-item .side-body span {
  font-size: 11px;
  color: var(--p-muted);
  font-weight: 600;
}

.announce-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.announce-card {
  background: var(--p-card);
  border-radius: var(--p-radius-lg);
  border: 1px solid var(--p-border);
  box-shadow: var(--p-shadow);
  padding: 24px;
  transition: all 0.3s;
}

.announce-card:hover {
  box-shadow: var(--p-shadow-lg);
  transform: translateY(-3px);
}

.announce-card .announce-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 8px;
  background: #fef3c7;
  color: #92400e;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
}

.announce-card h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.4;
}

.announce-card h4 a {
  color: var(--p-text);
}

.announce-card h4 a:hover {
  color: var(--p-secondary);
}

.announce-card p {
  font-size: 13px;
  color: var(--p-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.announce-card .announce-date {
  font-size: 12px;
  color: var(--p-muted);
  font-weight: 600;
}

.side-index {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--p-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.news-featured-wrap {
  position: relative;
}

.news-featured-wrap .overlay-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.announce-card-accent {
  background: var(--p-card);
  border-radius: var(--p-radius-lg);
  border: 1px solid var(--p-border);
  box-shadow: var(--p-shadow);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.announce-card-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #f59e0b, #d97706);
  border-radius: 4px 0 0 4px;
}

.announce-card-accent:hover {
  box-shadow: var(--p-shadow-lg);
  transform: translateY(-3px);
}

.announce-card-accent .announce-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fef3c7;
  color: #92400e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.announce-card-accent h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.4;
}

.announce-card-accent h4 a {
  color: var(--p-text);
  text-decoration: none;
}

.announce-card-accent h4 a:hover {
  color: var(--p-secondary);
  text-decoration: underline;
}

.announce-card-accent p {
  font-size: 13px;
  color: var(--p-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.announce-card-accent .announce-meta {
  font-size: 12px;
  color: var(--p-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.faq-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}

.faq-item {
  background: var(--p-card);
  border: 1px solid var(--p-border);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.25s;
}

.faq-item:hover {
  border-color: var(--p-secondary);
  box-shadow: var(--p-shadow);
}

.faq-item .faq-q {
  font-weight: 700;
  font-size: 14px;
  color: var(--p-text);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-item .faq-q i {
  color: var(--p-secondary);
  font-size: 16px;
  margin-top: 2px;
}

.faq-item .faq-a {
  font-size: 13px;
  color: var(--p-muted);
  line-height: 1.7;
  padding-left: 26px;
}

.timeline-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.timeline-step {
  background: var(--p-card);
  border-radius: var(--p-radius);
  border: 1px solid var(--p-border);
  padding: 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.timeline-step:hover {
  box-shadow: var(--p-shadow);
  transform: translateY(-4px);
}

.timeline-step .step-num {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--p-primary), var(--p-secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  margin: 0 auto 14px;
}

.timeline-step h5 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
}

.timeline-step p {
  font-size: 13px;
  color: var(--p-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, #0a2463 0%, #1e3a8a 100%);
  padding: 64px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 28px;
}

.cta-section .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.footer-premium {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 0;
}

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

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand .footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  padding: 5px;
}

.footer-brand .footer-logo strong {
  font-size: 15px;
  color: #fff;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer-title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.footer-links a i {
  font-size: 10px;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-contact {
  display: grid;
  gap: 14px;
}

.footer-contact .contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact .contact-item i {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.footer-contact .contact-item div {
  line-height: 1.5;
}

.footer-contact .contact-item .fw-bold {
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom .footer-social {
  display: flex;
  gap: 8px;
}

.footer-bottom .footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.2s;
}

.footer-bottom .footer-social a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

@media (max-width: 1199.98px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-premium {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-slide {
    height: 340px;
  }

  .hero-slide-overlay h2 {
    font-size: 24px;
  }

  .hero-slider-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .news-grid-premium {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding: 110px 0 50px;
  }

  .section-premium {
    padding: 48px 0;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 767.98px) {
  .hero-slide {
    height: 300px;
  }

  .hero-slide-overlay {
    padding: 24px 20px;
  }

  .hero-slide-overlay h2 {
    font-size: 20px;
  }

  .slide-excerpt {
    display: none;
  }

  .hero-slider-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-premium {
    grid-template-columns: 1fr 1fr;
  }

  .announce-grid {
    grid-template-columns: 1fr;
  }

  .announce-card-accent {
    padding: 18px;
  }
}

@media (max-width: 575.98px) {
  .hero-slide {
    height: 260px;
  }

  .hero-slide-overlay {
    padding: 20px 16px;
  }

  .hero-slide-overlay h2 {
    font-size: 17px;
  }

  .slide-meta {
    font-size: 11px;
    gap: 12px;
  }

  .slide-btn {
    padding: 10px 18px;
    font-size: 12px;
  }

  .btn-hero {
    justify-content: center;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .timeline-premium {
    grid-template-columns: 1fr;
  }

  .faq-grid-premium {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider-stats {
    gap: 6px;
  }

  .hero-slider-stats .stat-item {
    padding: 10px 8px;
  }

  .hero-slider-stats .stat-item strong {
    font-size: 16px;
  }

  .hero-slider-stats .stat-item span {
    font-size: 10px;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .section-premium {
    padding: 36px 0;
  }
}

@media (min-width: 1200px) {
  .h3,
  h3 {
    font-size: 1rem;
  }
}

