@charset "UTF-8";

/* Banner */
.banner {
  position:relative;
  height:700px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}

.banner-slide {
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transition:opacity 1s ease;
}

.banner-slide.active { opacity:1; }
.banner-slide:not(.active) { opacity:0; }

.banner-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(13,44,62,0.88) 0%, rgba(13,44,62,0.65) 50%, rgba(13,44,62,0.4) 100%);
}

.banner-content {
  position:relative;
  z-index:2;
  text-align:center;
  max-width:800px;
  padding:0 20px;
}

.banner-content h1 {
  font-size:3.2rem;
  color:var(--white);
  font-weight:700;
  margin-bottom:20px;
  line-height:1.2;
  letter-spacing:3px;
}

.banner-content .slogan {
  font-size:1.25rem;
  color:var(--primary-light);
  margin-bottom:15px;
  font-weight:500;
  letter-spacing:5px;
}

.banner-content p {
  font-size:1rem;
  color:rgba(255,255,255,0.75);
  margin-bottom:40px;
  line-height:1.8;
}

.banner-btns { display:flex; gap:20px; justify-content:center; flex-wrap:wrap; }

.banner-dots {
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:3;
}

.banner-dot {
  width:10px; height:10px;
  border-radius:50%;
  background:rgba(255,255,255,0.4);
  cursor:pointer;
  transition:all 0.3s;
}

.banner-dot.active { background:var(--primary); width:30px; border-radius:5px; }

/* Services Section */
.services-section { padding:100px 0; background:var(--white); }

.services-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:25px;
}

.service-card {
  background:var(--white);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 4px 20px var(--shadow);
  transition:all 0.4s ease;
  position:relative;
}

.service-card:hover {
  transform:translateY(-8px);
  box-shadow:0 12px 40px var(--shadow-hover);
}

.service-card-img {
  height:180px;
  background-size:cover;
  background-position:center;
  position:relative;
}

.service-card-img::after {
  content:'';
  position:absolute;
  bottom:0; left:0; right:0;
  height:60%;
  background:linear-gradient(transparent, rgba(13,44,62,0.6));
}

.service-card-body { padding:25px; }

.service-card-body h3 {
  font-size:1.15rem;
  color:var(--bg-dark);
  margin-bottom:10px;
  font-weight:600;
}

.service-card-body p {
  font-size:0.85rem;
  color:var(--text-mid);
  line-height:1.7;
  margin-bottom:15px;
}

.service-card-body a {
  font-size:0.85rem;
  color:var(--primary-dark);
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:5px;
}

.service-card-body a::after {
  content:'>';
  font-size:0.75rem;
  transition:transform 0.3s;
}

.service-card-body a:hover::after { transform:translateX(4px); }

/* Stats Section */
.stats-section {
  padding:80px 0;
  background:linear-gradient(135deg, var(--bg-dark) 0%, #153d54 100%);
  position:relative;
  overflow:hidden;
}

.stats-section::before {
  content:'';
  position:absolute;
  top:-100px; right:-100px;
  width:400px; height:400px;
  background:var(--primary);
  border-radius:50%;
  opacity:0.05;
}

.stats-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:30px;
  position:relative;
  z-index:1;
}

.stat-item { text-align:center; }

.stat-number {
  font-size:3rem;
  font-weight:700;
  color:var(--primary-light);
  margin-bottom:8px;
  line-height:1;
}

.stat-label {
  font-size:0.95rem;
  color:rgba(255,255,255,0.7);
}

/* Process Section */
.process-section { padding:100px 0; background:var(--bg-light); }

.process-steps {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  position:relative;
}

.process-steps::before {
  content:'';
  position:absolute;
  top:40px; left:10%; right:10%;
  height:2px;
  background:var(--border);
  z-index:0;
}

.process-step {
  flex:1;
  text-align:center;
  position:relative;
  z-index:1;
}

.step-number {
  width:80px; height:80px;
  background:var(--white);
  border:3px solid var(--primary);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  font-weight:700;
  color:var(--primary-dark);
  margin:0 auto 20px;
  box-shadow:0 4px 15px var(--shadow);
}

.process-step h3 {
  font-size:1.1rem;
  color:var(--bg-dark);
  margin-bottom:10px;
}

.process-step p {
  font-size:0.85rem;
  color:var(--text-mid);
  line-height:1.7;
}

/* News Preview */
.news-preview { padding:100px 0; background:var(--white); }

.news-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:25px;
}

.news-card {
  background:var(--white);
  border-radius:12px;
  padding:25px;
  border:1px solid var(--border);
  transition:all 0.3s;
}

.news-card:hover {
  border-color:var(--primary);
  box-shadow:0 6px 25px var(--shadow);
}

.news-card-date {
  font-size:0.8rem;
  color:var(--primary);
  font-weight:600;
  margin-bottom:10px;
}

.news-card h3 {
  font-size:1.05rem;
  color:var(--bg-dark);
  margin-bottom:12px;
  line-height:1.5;
  font-weight:600;
}

.news-card p {
  font-size:0.85rem;
  color:var(--text-mid);
  line-height:1.7;
}

.news-card-tag {
  display:inline-block;
  margin-top:15px;
  padding:4px 12px;
  background:var(--primary-light);
  color:var(--primary-dark);
  border-radius:15px;
  font-size:0.75rem;
}

/* CTA Section */
.cta-section {
  padding:100px 0;
  background:linear-gradient(135deg, #0D2C3E 0%, #1a4a66 100%);
  text-align:center;
  position:relative;
  overflow:hidden;
}

.cta-section::before {
  content:'';
  position:absolute;
  bottom:-150px; left:-150px;
  width:500px; height:500px;
  background:var(--primary);
  border-radius:50%;
  opacity:0.05;
}

.cta-content { position:relative; z-index:1; }

.cta-content h2 {
  font-size:2.2rem;
  color:var(--white);
  margin-bottom:15px;
}

.cta-content p {
  font-size:1.05rem;
  color:rgba(255,255,255,0.7);
  margin-bottom:35px;
}

/* Responsive */
@media (max-width:1024px) {
  .services-grid { grid-template-columns:repeat(2, 1fr); }
  .stats-grid { grid-template-columns:repeat(2, 1fr); gap:40px; }
  .news-grid { grid-template-columns:repeat(2, 1fr); }
}

@media (max-width:768px) {
  .banner { height:550px; }
  .banner-content h1 { font-size:2rem; }
  .services-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:repeat(2, 1fr); }
  .process-steps { flex-direction:column; }
  .process-steps::before { display:none; }
  .news-grid { grid-template-columns:1fr; }
  .cta-content h2 { font-size:1.6rem; }
}

@media (max-width:480px) {
  .banner { height:450px; }
  .banner-content h1 { font-size:1.5rem; }
  .banner-content .slogan { font-size:1rem; }
  .stat-number { font-size:2rem; }
}
