/* ===== INNER PAGES CSS ===== */

/* ABOUT PAGE */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}

.about-intro-text p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
}

.about-stats-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mv-block {
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.mission-block {
  background: var(--gradient-dark);
}

.vision-block {
  background: linear-gradient(135deg, #1e3a8a, #1a56db);
}

.mv-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.mv-block h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.mv-block p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26,86,219,0.2);
}

.value-icon {
  font-size: 44px;
  margin-bottom: 16px;
  display: block;
}

.value-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.team-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.team-role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 14px;
}

.team-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* SERVICES PAGE */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-detail-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-detail-card:hover::after { transform: scaleX(1); }

.service-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,86,219,0.15);
}

.sdc-icon {
  font-size: 52px;
  margin-bottom: 20px;
  display: block;
}

.service-detail-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-detail-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.sdc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  padding: 9px 20px;
  background: rgba(26,86,219,0.08);
  border-radius: 8px;
}

.sdc-link:hover {
  background: var(--primary);
  color: var(--white);
}

/* CONTACT PAGE */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-info-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-info-card > p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-detail:hover {
  background: rgba(26,86,219,0.06);
}

.cd-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.cd-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.cd-content p, .cd-content a {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.cd-content a {
  color: var(--primary);
  font-weight: 500;
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 8px 0; font-size: 14px; color: var(--gray); border-bottom: 1px solid var(--border); }
.hours-table td:first-child { font-weight: 600; color: var(--dark); }
.hours-table tr:last-child td { border-bottom: none; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-form-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-form-card > p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 32px;
}

/* BLOG PAGE */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.blog-img {
  height: 200px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.blog-body {
  padding: 28px;
}

.blog-tag {
  display: inline-block;
  background: rgba(26,86,219,0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray-light);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.blog-read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
}

.blog-read-more:hover { letter-spacing: 0.5px; }

/* TERMS PAGE */
.terms-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.terms-sidebar {
  position: sticky;
  top: 100px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.terms-sidebar h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}

.terms-sidebar ul li a {
  display: block;
  font-size: 13px;
  color: var(--gray);
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
  margin-bottom: 2px;
}

.terms-sidebar ul li a:hover {
  color: var(--primary);
  background: rgba(26,86,219,0.06);
}

.terms-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.terms-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.terms-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.terms-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.terms-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-2);
  margin: 24px 0 10px;
}

.terms-section p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 12px;
}

.terms-section ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.terms-section ul li {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 6px;
  list-style: disc;
  padding-left: 4px;
}

/* RESPONSIVE INNER */
@media (max-width: 1024px) {
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-stats-col { position: static; grid-template-columns: repeat(4, 1fr); }
  .mv-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .terms-layout { grid-template-columns: 1fr; }
  .terms-sidebar { position: static; }
}

@media (max-width: 768px) {
  .about-stats-col { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .terms-content { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .about-stats-col { grid-template-columns: 1fr; }
  .contact-info-card, .contact-form-wrap { padding: 24px 20px; }
  .service-detail-card { padding: 28px 20px; }
  .blog-single-content { padding: 32px 20px; }
  .blog-hero-content h1 { font-size: 28px; }
}
