/* ============================================
   1. CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Brand colors — preserved from original */
  --green: #2d8a4e;
  --green-dark: #1e6b37;
  --green-light: #e8f5ed;
  --green-hover: #3aad5e;
  --gray: #f5f5f5;

  /* Text */
  --text-primary: #333;
  --text-secondary: #666;
  --text-muted: #999;
  --text-white: #fff;

  /* Backgrounds */
  --bg-white: #fff;
  --bg-page: #fafafa;
  --bg-light: #f8f9fa;
  --border-color: #eee;
  --border-light: #e8e8e8;

  /* Layout */
  --max-width: 1200px;
  --header-height: 70px;
  --section-padding: 70px;
  --content-padding: 5%;

  /* Effects */
  --radius: 10px;
  --radius-sm: 4px;
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 5px 25px rgba(0, 0, 0, 0.1);
  --transition: 0.3s ease;

  /* Typography */
  --font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text-primary);
  line-height: 1.6;
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  color: var(--text-primary);
}

.section-title {
  font-size: 28px;
  color: var(--green-dark);
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--green);
  margin: 12px auto 0;
}

.subsection-title {
  text-align: center;
  color: var(--green-dark);
  margin-top: 50px;
  margin-bottom: 5px;
  font-size: 20px;
}

/* ============================================
   4. LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.section {
  padding: var(--section-padding) var(--content-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-wide {
  padding: var(--section-padding) var(--content-padding);
}

.bg-light {
  background: var(--green-light);
}

.bg-gray {
  background: var(--gray);
}

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

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* ============================================
   5. BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  background: var(--green);
  color: var(--text-white);
  padding: 12px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: transform var(--transition), background var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: scale(1.05);
  background: var(--green-hover);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--text-white);
}

.btn-white {
  background: var(--text-white);
  color: var(--green);
}

.btn-white:hover {
  background: var(--green-light);
}

/* ============================================
   6. HEADER & NAVIGATION
   ============================================ */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-height);
  padding: 0 var(--content-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* FOUC prevention — keep placeholder same height as real header */
#header-placeholder {
  min-height: var(--header-height);
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-link .logo {
  height: 45px;
  width: auto;
}

.logo-link .brand {
  font-size: 20px;
  font-weight: bold;
  color: var(--green);
  white-space: nowrap;
}

.logo-link .brand small {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: normal;
  margin-left: 8px;
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav ul li a {
  color: var(--text-secondary);
  font-size: 15px;
  transition: color var(--transition);
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
}

.main-nav ul li a:hover {
  color: var(--green);
}

.main-nav ul li a.active {
  color: var(--green);
  font-weight: bold;
}

.main-nav ul li a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
}

/* ============================================
   7. MOBILE NAVIGATION (HAMBURGER)
   ============================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-primary);
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
  transform-origin: center;
}

/* Hamburger → X */
.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow-card);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }

  .main-nav.nav-open {
    max-height: 450px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
  }

  .main-nav ul li a {
    display: block;
    padding: 14px var(--content-padding);
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
  }

  .main-nav ul li a.active::after {
    display: none;
  }

  .main-nav ul li a.active {
    background: var(--green-light);
  }
}

/* ============================================
   8. HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--text-white);
  padding: 140px var(--content-padding) 80px;
  text-align: center;
}

.hero h1 {
  font-size: 38px;
  margin-bottom: 15px;
  color: var(--text-white);
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Interior page hero (shorter) */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--text-white);
  padding: 120px var(--content-padding) 50px;
  text-align: center;
}

.page-hero h1 {
  font-size: 32px;
  color: var(--text-white);
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 16px;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .hero { padding: 120px var(--content-padding) 60px; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 16px; }

  .page-hero { padding: 110px var(--content-padding) 40px; }
  .page-hero h1 { font-size: 26px; }
}

/* ============================================
   9. CARD GRID COMPONENT
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.card .card-img {
  width: 100%;
  height: 220px;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  overflow: hidden;
}

.card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card .card-body {
  padding: 24px;
}

.card .card-body h3 {
  font-size: 18px;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.card .card-body p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.tag-group {
  margin-top: 8px;
}

/* 3-column card variant */
.card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
  .card-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

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

/* ============================================
   10. TABLES
   ============================================ */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.spec-table th,
.spec-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

.spec-table th {
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: bold;
  white-space: nowrap;
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table tbody tr:hover {
  background: var(--bg-light);
}

/* ============================================
   11. ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-grid p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.placeholder-image {
  background: #f0f0f0;
  border-radius: var(--radius);
  padding: 60px 30px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ============================================
   12. MISSION / VISION CARDS
   ============================================ */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mission-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: box-shadow var(--transition);
}

.mission-card:hover {
  box-shadow: var(--shadow-hover);
}

.mission-card .mission-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.mission-card h3 {
  font-size: 20px;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.mission-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

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

/* ============================================
   13. PROCESS / STEPS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  position: relative;
  transition: box-shadow var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow-hover);
}

.step-card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--text-white);
  font-weight: bold;
  font-size: 16px;
  margin: 0 auto 16px;
}

.step-card h4 {
  font-size: 16px;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

.step-arrow {
  display: none;
}

@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ============================================
   14. CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--green-light);
}

.contact-info {
  text-align: center;
}

.contact-info p {
  font-size: 16px;
  margin: 10px 0;
}

.contact-info .label {
  color: var(--green);
  font-weight: bold;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.contact-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}

.contact-card:hover {
  transform: translateY(-3px);
}

.contact-card .contact-icon {
  font-size: 40px;
  margin-bottom: 14px;
}

.contact-card h3 {
  font-size: 16px;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   15. CONTACT FORM
   ============================================ */
.contact-form {
  max-width: 640px;
  margin: 40px auto 0;
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-family);
  color: var(--text-primary);
  transition: border-color var(--transition);
  background: var(--bg-page);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--bg-white);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }
}

/* ============================================
   16. PLACEHOLDER / COMING SOON
   ============================================ */
.placeholder-page {
  text-align: center;
  padding: 100px var(--content-padding) 80px;
  max-width: 600px;
  margin: 0 auto;
}

.placeholder-page .placeholder-icon {
  font-size: 72px;
  margin-bottom: 24px;
  animation: float 3s ease-in-out infinite;
}

.placeholder-page h1 {
  font-size: 28px;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.placeholder-page .placeholder-desc {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.placeholder-page .placeholder-sub {
  font-size: 14px;
  color: var(--text-muted);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================
   17. BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--text-white);
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  line-height: 1;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* ============================================
   18. CONTENT TEXT BLOCK
   ============================================ */
.content-text {
  max-width: 800px;
  margin: 0 auto;
}

.content-text p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
  text-indent: 2em;
}

/* ============================================
   19. TIMELINE
   ============================================ */
.timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  padding-bottom: 30px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--green-light);
}

.timeline-item .year {
  font-size: 14px;
  font-weight: bold;
  color: var(--green);
  margin-bottom: 4px;
}

.timeline-item .event {
  font-size: 15px;
  color: var(--text-secondary);
}

/* ============================================
   20. FOOTER
   ============================================ */
.site-footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 40px var(--content-padding) 24px;
  font-size: 13px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.footer-brand .footer-company {
  font-size: 16px;
  font-weight: bold;
  color: var(--text-white);
  margin-bottom: 4px;
}

.footer-brand .footer-eng {
  font-size: 12px;
  opacity: 0.65;
}

.footer-contact p {
  margin-bottom: 4px;
  font-size: 13px;
  opacity: 0.8;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 12px;
  opacity: 0.7;
  grid-column: 1 / -1;
}

.footer-bottom p {
  margin-bottom: 4px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom a:hover {
  color: var(--text-white);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
  color: var(--text-white);
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
}

/* ============================================
   21. SERVICES PAGE — INDUSTRY TAGS
   ============================================ */
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}

.industry-tag {
  display: inline-block;
  padding: 8px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.industry-tag:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}

/* ============================================
   22. CERTIFICATIONS GRID
   ============================================ */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cert-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 30px 16px;
  text-align: center;
  transition: box-shadow var(--transition);
}

.cert-card:hover {
  box-shadow: var(--shadow-hover);
}

.cert-card .cert-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.cert-card .cert-name {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: bold;
}

@media (max-width: 768px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ============================================
   23. TEAM GRID
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 30px 16px;
  text-align: center;
  transition: box-shadow var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-hover);
}

.team-card .avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gray);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--text-muted);
}

.team-card .member-name {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-card .member-title {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   24. MAP PLACEHOLDER
   ============================================ */
.map-placeholder {
  width: 100%;
  height: 320px;
  background: var(--gray);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 30px;
}

/* ============================================
   25. BUSINESS HOURS
   ============================================ */
.hours-table {
  max-width: 500px;
  margin: 30px auto 0;
}

.hours-table .hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}

.hours-table .hours-row .day {
  color: var(--text-secondary);
}

.hours-table .hours-row .time {
  color: var(--green-dark);
  font-weight: bold;
}

/* ============================================
   26. MEDIA OBJECT (for news items, case studies)
   ============================================ */
.media-list {
  max-width: 800px;
  margin: 0 auto;
}

.media-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
  transition: background var(--transition);
}

.media-item:hover {
  background: var(--bg-page);
}

.media-item .media-img {
  width: 200px;
  height: 140px;
  border-radius: var(--radius);
  background: var(--gray);
  flex-shrink: 0;
  overflow: hidden;
}

.media-item .media-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-item .media-body h3 {
  font-size: 18px;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.media-item .media-body .media-date {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.media-item .media-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 576px) {
  .media-item {
    flex-direction: column;
  }

  .media-item .media-img {
    width: 100%;
    height: 180px;
  }
}

/* ============================================
   27. PAGE-SPECIFIC: SERVICE CARDS (icon variant)
   ============================================ */
.service-card .service-icon {
  font-size: 48px;
  text-align: center;
  padding: 30px 0 0;
}

.service-card .card-body {
  text-align: center;
}

/* ============================================
   28. ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   29. SCROLL MARGIN (for anchor links w/ fixed header)
   ============================================ */
[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

/* ============================================
   30. PRINT STYLES
   ============================================ */
@media print {
  .site-header,
  .site-footer,
  .back-to-top,
  .hamburger {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  .hero,
  .page-hero {
    background: none !important;
    color: #000 !important;
    padding: 20px 0 !important;
  }

  .hero h1,
  .page-hero h1 {
    color: #000 !important;
  }
}
