
/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(135deg, var(--gov-blue-dark) 0%, var(--gov-blue) 50%, var(--gov-blue-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(232,119,34,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(19,136,8,0.06) 0%, transparent 50%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container {
  position: relative; z-index: 1;
  padding: 70px 20px 80px;
}

/* ---- Two-column split ---- */
.hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.hero-content {
  flex: 0 0 50%;
  max-width: 50%;
}
.hero-image-col {
  flex: 0 0 65%;
  max-width: 65%;
  display: flex;
  align-items: center;
  justify-content: left;
  position: relative;
}

/* Decorative glow behind image */
.hero-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75%;
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  background: radial-gradient(ellipse, rgba(232,119,34,0.18) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  z-index: 0;
}
.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.35));
  animation: fadeInUp .9s .2s ease both;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px; padding: 6px 16px 6px 10px;
  font-size: 0.78rem; color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  animation: fadeInDown .8s ease;
}
.hero-badge .dot {
  width: 8px; height: 8px; background: var(--green-light);
  border-radius: 50%; animation: pulse 2s infinite;
}
.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  animation: fadeInUp .8s ease;
}
.hero h2 .highlight {
  color: var(--saffron);
  position: relative;
}
.hero p.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeInUp .8s .15s ease both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  animation: fadeInUp .8s .3s ease both;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius);
  text-decoration: none; cursor: pointer; border: none;
  transition: all .25s ease;
}
.btn-primary {
  background: var(--saffron); color: var(--white);
  box-shadow: 0 4px 15px rgba(232,119,34,0.35);
}
.btn-primary:hover { background: var(--saffron-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,119,34,0.4); }
.btn-whatsapp {
  background: #25d366; color: var(--white);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { background: #1fb855; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.hero-trust-strip {
  display: flex; flex-wrap: wrap; gap: 24px;
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp .8s .45s ease both;
}
.trust-stat { text-align: left; }
.trust-stat .num { font-size: 1.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.trust-stat .label { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ---- Hero responsive ---- */
@media (max-width: 900px) {
  .hero-inner { flex-direction: column; gap: 32px; }
  .hero-content, .hero-image-col { flex: unset; max-width: 100%; width: 100%; }
  .hero-image-col { order: -1; }
  .hero-img { max-width: 320px; }
}
@media (max-width: 600px) {
  .hero-img { max-width: 240px; }
  .hero-img-wrap { display: none; }
}

/* ---------- ABOUT ---------- */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-content p { color: var(--gray-700); margin-bottom: 16px; }
.about-card {
  background: linear-gradient(135deg, var(--off-white) 0%, var(--gray-50) 100%);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}
.about-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--white), var(--green));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.about-feat {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--gray-700); font-weight: 500;
}
.about-feat .icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--gov-blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.85rem; flex-shrink: 0;
}

/* ---------- SERVICES ---------- */
.services { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all .3s ease;
  position: relative;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--saffron);
}
.service-card .s-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 14px;
  background: var(--off-white);
}
.service-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--gov-blue); margin-bottom: 6px; }
.service-card p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.6; }
.service-card .arrow {
  position: absolute; top: 24px; right: 24px;
  color: var(--gray-300); transition: .3s;
  font-size: 1.1rem;
}
.service-card:hover .arrow { color: var(--saffron); transform: translateX(3px); }
.services-footer {
  text-align: center; margin-top: 32px;
}

/* ---------- WHY CHOOSE US ---------- */
.why-us { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.why-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  background: var(--white);
  transition: .3s;
}
.why-card:hover { box-shadow: var(--shadow-md); }
.why-card .w-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.why-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--gov-blue); margin-bottom: 4px; }
.why-card p { font-size: 0.84rem; color: var(--gray-500); line-height: 1.6; }

/* ---------- POPULAR SERVICES ---------- */
.popular { background: var(--gov-blue); position: relative; overflow: hidden; }
.popular::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20h20v20H20zM0 0h20v20H0z'/%3E%3C/g%3E%3C/svg%3E");
}
.popular .container { position: relative; z-index: 1; }
.popular .section-label { color: rgba(255,255,255,0.5); }
.popular .section-label::before { background: rgba(255,255,255,0.3); }
.popular .section-title { color: var(--white); }
.popular .section-subtitle { color: rgba(255,255,255,0.6); }
.popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px; margin-top: 36px;
}
.popular-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: .3s;
  backdrop-filter: blur(4px);
}
.popular-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}
.popular-card .tag {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px; border-radius: 50px;
  margin-bottom: 12px;
}
.tag-popular { background: rgba(232,119,34,0.2); color: var(--saffron); }
.tag-new { background: rgba(37,211,102,0.2); color: #4ade80; }
.popular-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.popular-card p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ---------- NEWS ---------- */
.news { background: var(--off-white); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 20px; margin-top: 36px; }
.news-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: .3s;
}
.news-card:hover { box-shadow: var(--shadow-md); }
.news-card .date {
  font-size: 0.72rem; font-weight: 600; color: var(--saffron);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.news-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--gov-blue); margin-bottom: 6px; line-height: 1.4; }
.news-card p { font-size: 0.84rem; color: var(--gray-500); line-height: 1.6; }
.news-card .read-more {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.8rem; font-weight: 600; color: var(--saffron);
  text-decoration: none; margin-top: 10px;
  transition: .2s;
}
.news-card .read-more:hover { gap: 8px; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--white); }
.test-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 20px; margin-top: 36px; }
.test-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.test-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 4rem; color: var(--saffron);
  opacity: 0.2;
  position: absolute; top: 10px; left: 20px;
  line-height: 1;
}
.test-card p { font-size: 0.92rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 16px; position: relative; z-index: 1; }
.test-card .author { display: flex; align-items: center; gap: 12px; }
.test-card .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gov-blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
}
.test-card .author-info .name { font-size: 0.85rem; font-weight: 700; color: var(--gov-blue); }
.test-card .author-info .role { font-size: 0.75rem; color: var(--gray-500); }
.stars { color: var(--saffron); font-size: 0.85rem; margin-bottom: 10px; position: relative; z-index: 1; }

/* ---------- CTA ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--gov-blue-dark), var(--gov-blue));
  position: relative; overflow: hidden;
  text-align: center;
  padding: 80px 0;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,119,34,0.1), transparent 60%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section .section-title { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 560px; margin: 0 auto 36px; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ---- About responsive ---- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-card { order: 2; }
  .about-content { order: 1; }
}
@media (max-width: 600px) {
  .about-card { padding: 24px 18px; }
  .about-features { grid-template-columns: 1fr; gap: 12px; }
}
