/* ============================================
   TCI INTERNATIONAL
   Page-Specific Styles
   ============================================ */

/* ---------- LAND DEV SPOTLIGHT (Home) ---------- */
.spotlight {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.spotlight .about-grid {
  align-items: center;
}

.spotlight-list {
  margin: 24px 0 32px;
}

.spotlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.spotlight-list li svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-500);
  fill: none;
  stroke-width: 2;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ---------- CREDI-BUILD SUB-SECTION ---------- */
.credibuild-note {
  padding: 60px 0;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.credibuild-note::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.06), transparent 70%);
}

.cb-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.cb-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cb-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold-400);
  fill: none;
  stroke-width: 1.5;
}

.cb-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.cb-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 14px;
}

.cb-text a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-400);
  transition: gap var(--transition-fast);
}

.cb-text a:hover {
  gap: 10px;
}

.cb-text a svg {
  width: 16px;
  height: 16px;
}

/* ---------- MISSION / VISION / VALUES (About page) ---------- */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.mvv {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.mvv::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-base);
}

.mvv:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.mvv:hover::before {
  transform: scaleX(1);
}

.mvv-ic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.mvv-ic svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold-600);
  fill: none;
  stroke-width: 1.5;
}

.mvv h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 12px;
}

.mvv p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ---------- WHO WE SERVE (About page) ---------- */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.serve-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
}

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

.serve-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-100);
  line-height: 1;
  min-width: 48px;
  transition: color var(--transition-base);
}

.serve-card:hover .serve-num {
  color: var(--gold-400);
}

.serve-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.serve-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ---------- SERVICES DETAIL (Services page) ---------- */
.srv-detail {
  padding: var(--section-padding);
}

.srv-detail.alt {
  background: var(--gray-50);
}

.srv-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.srv-detail.alt .srv-detail-grid {
  direction: rtl;
}

.srv-detail.alt .srv-detail-grid > * {
  direction: ltr;
}

.srv-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.srv-detail-img img,
.srv-detail-img .img-placeholder {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.srv-detail-content h3 {
  font-family: var(--font-sans);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.srv-detail-content p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 24px;
}

.srv-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.srv-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-900);
}

.srv-feat .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.srv-feat .icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-600);
  fill: none;
  stroke-width: 2.5;
}

/* ---------- LAND DEV DELIVERABLES GRID ---------- */
.deliver-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.deliver-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition-base);
}

.deliver-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold-400);
}

.deliver-card .d-ic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.deliver-card .d-ic svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-600);
  fill: none;
  stroke-width: 1.5;
}

.deliver-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.deliver-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ---------- STAND SALES ---------- */
.stands {
  padding: var(--section-padding);
}

.stands .about-grid {
  align-items: center;
}

/* ---------- STATS BAR ---------- */
.stats {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.st-num {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--navy-900);
  line-height: 1;
}

.st-num span {
  color: var(--gold-500);
}

.st-lbl {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ---------- MAP EMBED ---------- */
.map-section {
  background: var(--gray-50);
  padding: 60px 0 0;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  filter: grayscale(30%);
}

/* ---------- RESPONSIVE page-specific ---------- */
@media (max-width: 1024px) {
  .srv-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .srv-detail.alt .srv-detail-grid {
    direction: ltr;
  }

  .cb-inner {
    flex-direction: column;
    text-align: center;
  }

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

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

@media (max-width: 768px) {
  .cb-inner {
    text-align: center;
  }

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

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

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

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