/* =============================================
   HOME PAGE STYLES — Fully Responsive
   ============================================= */

/* ── HERO ── */
.hero {
  background: var(--dark);
  overflow: hidden;
  position: relative;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.svg');
  background-size: cover; background-position: center;
  opacity: 1;
}
.hero-accent {
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,200,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 48px 0 40px;
}
@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 420px;
    gap: 60px;
    padding: 80px 0;
    align-items: center;
  }
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,200,0,0.1);
  border: 1px solid rgba(245,200,0,0.25);
  color: var(--yellow);
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 20px;
}
.hero-tag .dot { width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; }

.hero-title {
  font-family: var(--font-display);
  font-size: 36px; line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}
.hero-title span { color: var(--yellow); }
@media (min-width: 480px) { .hero-title { font-size: 44px; } }
@media (min-width: 768px) { .hero-title { font-size: 52px; } }
@media (min-width: 1280px) { .hero-title { font-size: 58px; } }

.hero-sub {
  font-family: var(--font-bn);
  color: rgba(255,255,255,0.55);
  font-size: 15px; line-height: 1.85;
  margin-bottom: 28px;
  max-width: 500px;
}

.hero-btns {
  display: flex; flex-wrap: wrap;
  gap: 12px; margin-bottom: 40px;
}

.hero-stats {
  display: flex; flex-wrap: wrap;
  gap: 28px;
}
@media (min-width: 480px) { .hero-stats { gap: 40px; } }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 28px; color: var(--yellow);
  font-weight: 700; line-height: 1;
}
@media (min-width: 640px) { .hero-stat .num { font-size: 34px; } }
.hero-stat .lbl {
  font-family: var(--font-bn);
  color: rgba(255,255,255,0.38);
  font-size: 12px; margin-top: 4px;
}

/* Hero Lead Card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
@media (min-width: 480px) { .hero-card { padding: 28px; } }
.hero-card h3 { font-family: var(--font-bn); font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.hero-card p { font-family: var(--font-bn); font-size: 12px; color: var(--gray); margin-bottom: 18px; }

/* ── TICKER ── */
.ticker { background: var(--yellow); padding: 10px 0; overflow: hidden; }
.ticker-inner {
  display: flex; white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 32px;
  font-size: 12px; font-weight: 500; color: var(--black);
  font-family: var(--font-bn);
}
.ticker-item .tdot {
  width: 4px; height: 4px;
  background: rgba(0,0,0,0.3); border-radius: 50%;
}

/* ── PROJECTS SECTION ── */
.projects-bg { background: var(--white); }
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px)  { .projects-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: repeat(3, 1fr); gap: var(--gap); } }

.proj-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  background: var(--white);
}
.proj-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }

.proj-img {
  height: 200px;
  position: relative; overflow: hidden;
}
.proj-img img { width: 100%; height: 100%; object-fit: cover; }
.proj-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
}
.proj-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--yellow); color: var(--black);
  font-size: 10px; font-weight: 600;
  padding: 4px 10px; border-radius: 4px;
}
.proj-loc {
  position: absolute; bottom: 14px; left: 14px; z-index: 1;
  color: rgba(255,255,255,0.8); font-size: 11px;
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font-bn);
}

.proj-body { padding: 18px 20px 20px; }
.proj-name { font-family: var(--font-display); font-size: 19px; margin-bottom: 6px; }
.proj-desc { font-family: var(--font-bn); font-size: 12px; color: var(--gray); line-height: 1.65; margin-bottom: 14px; }
.proj-meta {
  display: flex; flex-wrap: wrap; gap: 12px 20px;
  padding-top: 12px; border-top: 1px solid var(--border);
  margin-bottom: 14px;
}
.proj-meta-item .meta-label { font-size: 10px; color: var(--gray); }
.proj-meta-item .meta-val { font-size: 13px; font-weight: 500; color: var(--black); font-family: var(--font-bn); }
.proj-cta {
  width: 100%;
  background: var(--dark); color: var(--white);
  font-family: var(--font-bn);
  font-size: 13px; padding: 10px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.proj-cta:hover { background: var(--yellow); color: var(--black); }

/* ── WHY SECTION ── */
.why-bg { background: var(--dark); }
.why-section-title { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 768px)  { .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  transition: all 0.3s;
}
@media (min-width: 640px) { .why-card { padding: 24px 20px; } }
.why-card:hover { background: rgba(245,200,0,0.06); border-color: rgba(245,200,0,0.2); }
.why-icon {
  width: 42px; height: 42px;
  background: rgba(245,200,0,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.why-icon svg { width: 20px; height: 20px; }
.why-card h4 { font-family: var(--font-bn); font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.why-card p { font-family: var(--font-bn); font-size: 12px; color: rgba(255,255,255,0.42); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px)  { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }

.testi-card { background: var(--gray-light); border-radius: var(--radius-lg); padding: 22px; }
.testi-card.dark-bg {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
}
.testi-stars { color: var(--yellow); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text { font-family: var(--font-bn); font-size: 13px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; font-style: italic; }
.testi-text.light { color: rgba(255,255,255,0.55); }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 36px; height: 36px;
  background: var(--dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); font-size: 13px; font-weight: 600;
  flex-shrink: 0;
}
.testi-name { font-family: var(--font-bn); font-size: 13px; font-weight: 600; }
.testi-loc  { font-family: var(--font-bn); font-size: 11px; color: var(--gray); }
.testi-name.light { color: var(--white); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--yellow);
  padding: 48px 0;
}
.cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .cta-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: 24px; line-height: 1.3;
  color: var(--black);
}
@media (min-width: 640px) { .cta-band h2 { font-size: 30px; } }
.cta-band p { font-family: var(--font-bn); font-size: 14px; color: rgba(0,0,0,0.55); margin-top: 6px; }

/* ── FOOTER ── */
.site-footer { background: var(--black); padding: 56px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; } }

.footer-brand .f-en  { color: var(--yellow); font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.footer-brand .f-bn  { font-family: var(--font-bn); color: rgba(255,255,255,0.35); font-size: 12px; margin-bottom: 14px; }
.footer-brand p { font-family: var(--font-bn); color: rgba(255,255,255,0.3); font-size: 12px; line-height: 1.85; }
.footer-col h5 { color: var(--yellow); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-family: var(--font-bn); color: rgba(255,255,255,0.42); font-size: 13px; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 20px 0;
  display: flex;
  flex-direction: column; gap: 8px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom p { font-family: var(--font-bn); color: rgba(255,255,255,0.25); font-size: 11px; }
