/* ==============================================
   安心僱傭中心 — On Sam Domestic Helper Agency
   Design System: Bold Professional × Cultural Warmth
   ============================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Noto+Sans+TC:wght@300;400;500;700;900&display=swap');

/* --- CSS Variables --- */
:root {
  --navy: #0f1f3d;
  --navy-light: #1a3058;
  --navy-mid: #15284a;
  --coral: #e8734a;
  --coral-light: #f08c6a;
  --coral-dark: #d15a32;
  --gold: #d4a853;
  --gold-light: #e6c47a;
  --gold-pale: #f5e6cc;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray-100: #f0f2f5;
  --gray-200: #e2e6ec;
  --gray-300: #c5cad4;
  --gray-500: #7a8291;
  --gray-700: #3d4452;
  --gray-900: #1a1d24;
  --text: #2a2e38;
  --text-light: #6b7280;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(15,31,61,0.06);
  --shadow-md: 0 4px 16px rgba(15,31,61,0.08);
  --shadow-lg: 0 12px 40px rgba(15,31,61,0.12);
  --shadow-xl: 0 24px 64px rgba(15,31,61,0.16);
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Noto Sans TC', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* --- Utility --- */
.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--coral);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.section-title.light { color: var(--white); }

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', 'Noto Sans TC', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,115,74,0.35);
}

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

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,83,0.4);
}

/* ==============================================
   NAVIGATION
   ============================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: var(--white);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--coral);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
}

.nav-logo-text {
  font-family: 'Outfit', 'Noto Sans TC', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  transition: color var(--transition);
}

.nav.scrolled .nav-logo-text { color: var(--navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}

.nav.scrolled .nav-links a { color: var(--gray-700); }

.nav-links a:hover,
.nav-links a.active { color: var(--coral); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 24px;
  background: var(--coral);
  color: var(--white) !important;
  border-radius: 50px;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--coral-dark) !important;
  color: var(--white) !important;
}

.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav.scrolled .nav-toggle span { background: var(--navy); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 28px;
    transition: right var(--transition);
    box-shadow: var(--shadow-xl);
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--navy) !important; font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  .nav-cta { text-align: center; }
}

/* ==============================================
   HERO
   ============================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,31,61,0.88) 0%,
    rgba(15,31,61,0.72) 40%,
    rgba(15,31,61,0.55) 100%
  );
  z-index: 1;
}

.hero-accent {
  position: absolute;
  top: 25%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 2px solid rgba(232,115,74,0.2);
  z-index: 1;
  animation: heroPulse 8s ease-in-out infinite;
}

.hero-accent-2 {
  position: absolute;
  bottom: 10%;
  left: 8%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,168,83,0.25);
  z-index: 1;
  animation: heroPulse 6s ease-in-out 1s infinite;
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s var(--transition) both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  animation: heroPulse 2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s var(--transition) 0.15s both;
}

.hero h1 .highlight {
  color: var(--coral);
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.6;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s var(--transition) 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--transition) 0.45s both;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  animation: fadeInUp 0.8s var(--transition) 0.6s both;
}

.hero-stat {
  border-left: 3px solid var(--coral);
  padding-left: 16px;
}

.hero-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-stats { gap: 24px; margin-top: 48px; }
  .hero-stat-number { font-size: 1.6rem; }
  .hero-accent, .hero-accent-2 { display: none; }
}

/* ==============================================
   NEWS / UPDATES SECTION
   ============================================== */
.news {
  padding: 100px 0;
  background: var(--white);
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.news-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-card-img img {
  transform: scale(1.05);
}

.news-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--coral);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 50px;
}

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

.news-card-date {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.news-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.news-card:hover h3 { color: var(--coral); }

.news-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .news-grid { grid-template-columns: 1fr; }
  .news { padding: 64px 0; }
}

/* ==============================================
   WHY US
   ============================================== */
.why-us {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,115,74,0.08) 0%, transparent 70%);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-content {
  position: relative;
  z-index: 1;
}

.why-us-features {
  display: grid;
  gap: 32px;
  margin-top: 48px;
}

.why-us-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-us-feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(232,115,74,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

.why-us-feature:hover .why-us-feature-icon {
  background: var(--coral);
  transform: scale(1.08) rotate(-5deg);
}

.why-us-feature h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.why-us-feature p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.why-us-visual {
  position: relative;
  z-index: 1;
}

.why-us-visual-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-us-visual-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.why-us-visual-accent {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 180px;
  height: 180px;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  animation: accentFloat 4s ease-in-out infinite;
}

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

@media (max-width: 900px) {
  .why-us-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-us-visual-accent { display: none; }
  .why-us { padding: 64px 0; }
}

/* ==============================================
   MISSION
   ============================================== */
.mission {
  padding: 120px 0;
  background: var(--white);
}

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-visual {
  position: relative;
}

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

.mission-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.mission-quote {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--coral);
  color: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  max-width: 320px;
}

.mission-quote p {
  font-family: 'Outfit', 'Noto Sans TC', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 8px;
}

.mission-quote cite {
  font-size: 0.8rem;
  opacity: 0.8;
  font-style: normal;
}

.mission-content .section-desc {
  font-size: 1.05rem;
  line-height: 1.9;
}

.mission-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.mission-value {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--navy);
}

.mission-value::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .mission-inner { grid-template-columns: 1fr; gap: 48px; }
  .mission-quote { position: static; margin-top: 24px; }
  .mission { padding: 64px 0; }
}

/* ==============================================
   SERVICES PREVIEW
   ============================================== */
.services-preview {
  padding: 100px 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

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

.service-card-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

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

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

/* ==============================================
   COLLABORATION
   ============================================== */
.collab {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.collab-title {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 40px;
}

.collab-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}

.collab-logo {
  height: 40px;
  opacity: 0.4;
  filter: grayscale(1);
  transition: var(--transition);
}

.collab-logo:hover {
  opacity: 0.8;
  filter: grayscale(0);
}

@media (max-width: 768px) {
  .collab-logos { gap: 32px; }
  .collab-logo { height: 30px; }
}

/* ==============================================
   CONTACT CTA
   ============================================== */
.contact-cta {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.contact-cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 2px solid rgba(212,168,83,0.12);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-content .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.8);
}

.cta-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-cta { padding: 64px 0; }
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: var(--navy-mid);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  margin-top: 20px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.footer h4 {
  font-size: 0.85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--coral); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-icon {
  color: var(--coral);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 16px;
}

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

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

/* ==============================================
   PAGE HERO (inner pages)
   ============================================== */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,31,61,0.7) 0%, var(--navy) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 60px;
}

.page-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
}

.page-hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-top: 16px;
}

/* ==============================================
   ABOUT PAGE
   ============================================== */
.about-story {
  padding: 100px 0;
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.about-story-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-story-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 20px;
}

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

/* Team */
.team {
  padding: 100px 0;
  background: var(--off-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

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

.team-card-img {
  height: 320px;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-card-img img { transform: scale(1.05); }

.team-card-body {
  padding: 28px 24px;
  text-align: center;
}

.team-card-body h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 0.85rem;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 56px auto 0; }
}

/* Milestones */
.milestones {
  padding: 100px 0;
  background: var(--navy);
}

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

.milestone-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
}

.milestone-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

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

/* ==============================================
   SERVICES PAGE
   ============================================== */
.services-full {
  padding: 100px 0;
  background: var(--white);
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-full-card {
  display: flex;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  align-items: flex-start;
}

.service-full-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-full-img {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

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

.service-full-body h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-full-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.service-full-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--coral);
  background: rgba(232,115,74,0.08);
  padding: 4px 12px;
  border-radius: 50px;
}

@media (max-width: 768px) {
  .services-full-grid { grid-template-columns: 1fr; }
  .service-full-card { flex-direction: column; }
  .service-full-img { width: 100%; height: 200px; }
}

/* Process */
.process {
  padding: 100px 0;
  background: var(--off-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 3px solid var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--coral);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.process-step:hover .process-step-num {
  background: var(--coral);
  color: var(--white);
  transform: scale(1.1);
}

.process-step h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

/* ==============================================
   BLOG PAGE
   ============================================== */
.blog {
  padding: 100px 0;
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

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

.blog-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--coral);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 50px;
}

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

.blog-card-meta {
  display: flex;
  gap: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
  transition: color var(--transition);
  line-height: 1.4;
}

.blog-card:hover h3 { color: var(--coral); }

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.blog-card:hover .blog-card-link { gap: 12px; }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 56px;
}

.pagination-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-btn:hover,
.pagination-btn.active {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

.pagination-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ==============================================
   CONTACT PAGE
   ============================================== */
.contact-main {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  color: var(--text-light);
  margin-bottom: 36px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(232,115,74,0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border-left: 4px solid var(--coral);
}

.contact-info-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.contact-info-item-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-info-item-text span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-light);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-200);
}

.hours-row:last-child { border-bottom: none; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* Map placeholder */
.contact-map {
  height: 400px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  border: 1px solid var(--gray-200);
}

/* ==============================================
   ANIMATIONS — Scroll Reveal
   ============================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==============================================
   REDUCED MOTION
   ============================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==============================================
   BACK TO TOP
   ============================================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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