/* =============================================
   察理徵信調查 - 官方網站樣式
   色系：深藍 #0a1628 × 金色 #d4af37
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --navy: #0a1628;
  --navy-2: #0f1f3d;
  --navy-3: #1a2f55;
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dark: #b8942e;
  --white: #ffffff;
  --gray-100: #f8f9fb;
  --gray-200: #eef0f4;
  --gray-400: #9aa1b1;
  --gray-600: #5a6278;
  --text: #1e2535;
  --shadow: 0 4px 24px rgba(10,22,40,0.12);
  --shadow-lg: 0 12px 48px rgba(10,22,40,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', 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; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5 { font-family: 'Noto Serif TC', serif; line-height: 1.3; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }

/* ---- Container ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1160px; margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--white);
  font-family: 'Noto Serif TC', serif;
}
.logo-icon { font-size: 1.5rem; }
.nav-logo-img { height: 38px; width: auto; object-fit: contain; flex-shrink: 0; }
.logo-text { font-size: 1.15rem; font-weight: 700; letter-spacing: 0.05em; }
.logo-sub { color: var(--gold); margin-left: 4px; font-size: 0.78rem; display: block; letter-spacing: 0.08em; }
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link {
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--navy);
  padding: 9px 20px; border-radius: 30px;
  font-size: 0.9rem; font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0d1f42 50%, #152d5e 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 100px 24px 60px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212,175,55,0.08) 0%, transparent 70%);
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(212,175,55,0.15);
  animation: float linear infinite;
}
@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 760px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  padding: 8px 24px; border-radius: 30px;
  font-size: 0.875rem; letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.hero-title {
  color: var(--white);
  font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.hero-en {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: var(--gold); letter-spacing: 0.28em;
  font-family: 'Noto Sans TC', sans-serif; font-weight: 400;
}
.hero-subtitle {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 12px;
  font-weight: 300; line-height: 1.6;
}
.hero-desc {
  color: var(--gold);
  font-size: 0.9rem; letter-spacing: 0.15em;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 2rem; font-weight: 700; color: var(--gold);
  font-family: 'Noto Serif TC', serif; line-height: 1;
}
.stat-number span { font-size: 1.2rem; }
.stat-label { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(212,175,55,0.3); }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.1em;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================
   BUTTONS
   ============================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,175,55,0.45);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.4); color: var(--white);
  padding: 12px 30px; border-radius: 50px;
  font-weight: 500; font-size: 1rem;
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 24px; border-radius: 50px;
  font-weight: 500; font-size: 0.95rem;
  transition: all var(--transition);
}
.btn-white:hover { background: rgba(255,255,255,0.25); }

/* ============================
   SECTIONS
   ============================ */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  color: var(--gold); font-size: 0.8rem; letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 12px;
  padding: 4px 16px;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 20px;
}
.section-title { color: var(--navy); margin-bottom: 16px; }
.section-desc { color: var(--gray-600); max-width: 540px; margin: 0 auto; }

/* ============================
   SERVICES OVERVIEW
   ============================ */
.services-overview { background: var(--gray-100); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem; color: var(--gold);
}
.service-card h3 { color: var(--navy); margin-bottom: 12px; }
.service-card p { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 20px; }
.service-link {
  color: var(--gold-dark); font-size: 0.875rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }

/* ============================
   WHY CHOOSE US
   ============================ */
.why-us { background: var(--white); }
.why-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.why-desc { color: var(--gray-600); margin-bottom: 32px; }
.why-list { margin-bottom: 36px; display: flex; flex-direction: column; gap: 20px; }
.why-list li { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(212,175,55,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.why-list h4 { color: var(--navy); margin-bottom: 4px; font-family: 'Noto Sans TC', sans-serif; }
.why-list p { color: var(--gray-600); font-size: 0.875rem; }
.why-image { display: flex; justify-content: center; }
.why-card-stack {
  position: relative; width: 320px; height: 320px;
}
.why-card {
  position: absolute;
  background: var(--navy-2);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 20px;
  padding: 24px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-lg);
}
.why-card:nth-child(1) { top: 0; left: 0; width: 200px; }
.why-card:nth-child(2) { top: 80px; right: 0; width: 190px; }
.why-card:nth-child(3) { bottom: 0; left: 20px; width: 185px; }
.wcard-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(212,175,55,0.15); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
}
.wcard-num { color: var(--gold); font-size: 1.4rem; font-weight: 700; font-family: 'Noto Serif TC', serif; }
.wcard-label { color: rgba(255,255,255,0.6); font-size: 0.8rem; }
.why-deco {
  position: absolute; bottom: 10px; right: 10px;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--navy);
  box-shadow: 0 8px 24px rgba(212,175,55,0.4);
}

/* ============================
   PROCESS
   ============================ */
.process { background: var(--navy); }
.process .section-tag { color: var(--gold); border-color: rgba(212,175,55,0.3); }
.process .section-title { color: var(--white); }
.process-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.process-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-lg); padding: 36px 24px;
  text-align: center; flex: 1; min-width: 200px; max-width: 220px;
  position: relative;
  transition: all var(--transition);
}
.process-step:hover {
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-4px);
}
.step-num {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; font-family: 'Noto Serif TC', serif;
}
.step-icon {
  font-size: 2rem; color: var(--gold); margin: 12px 0 16px;
}
.process-step h3 { color: var(--white); margin-bottom: 10px; }
.process-step p { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.process-arrow { color: var(--gold); font-size: 1.5rem; opacity: 0.5; }

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials { background: var(--gray-100); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 4px; }
.testimonial-text { color: var(--gray-600); font-size: 0.9rem; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 700;
}
.author-name { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.author-type { color: var(--gray-400); font-size: 0.8rem; }

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2f55 100%);
  padding: 80px 0;
}
.cta-inner { text-align: center; }
.cta-inner h2 { color: var(--white); margin-bottom: 16px; }
.cta-inner p { color: var(--gold); letter-spacing: 0.1em; margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================
   FOOTER
   ============================ */
.footer { background: #060e1c; padding: 60px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--white); margin-bottom: 16px;
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-links h4, .footer-contact h4 {
  color: var(--white); font-size: 0.95rem; margin-bottom: 20px;
  font-family: 'Noto Serif TC', serif;
}
.footer-links ul li, .footer-contact ul li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact ul li {
  color: rgba(255,255,255,0.5); font-size: 0.875rem;
  display: flex; align-items: flex-start; gap: 10px;
}
.footer-contact ul li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 16px; align-items: center; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); font-size: 0.8rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-bottom-links span { color: rgba(255,255,255,0.15); }

/* ============================
   PAGE BANNER (inner pages)
   ============================ */
.page-banner {
  background: linear-gradient(135deg, var(--navy), #1a2f55);
  padding: 140px 0 70px;
  text-align: center;
}
.page-banner h1 { color: var(--white); margin-bottom: 12px; }
.page-banner p { color: var(--gold); letter-spacing: 0.1em; }
.breadcrumb {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  margin-bottom: 20px; font-size: 0.85rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--gold); }

/* ============================
   SERVICES PAGE
   ============================ */
.services-detail { padding: 80px 0; background: var(--white); }
.service-detail-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 48px; margin-bottom: 40px;
  display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: start;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.service-detail-card:hover { box-shadow: var(--shadow); }
.service-detail-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--gold); flex-shrink: 0;
}
.service-detail-content h2 { color: var(--navy); margin-bottom: 12px; font-size: 1.5rem; }
.service-detail-content p { color: var(--gray-600); margin-bottom: 20px; }
.service-features {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.feature-tag {
  background: rgba(10,22,40,0.07);
  color: var(--navy); padding: 6px 14px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 500;
}

/* ============================
   ABOUT PAGE
   ============================ */
.about-story { padding: 80px 0; background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual {
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  border-radius: var(--radius-lg); padding: 48px 36px; text-align: center;
}
.about-visual-icon { font-size: 6rem; margin-bottom: 24px; }
.about-visual h3 { color: var(--gold); font-size: 1.8rem; margin-bottom: 8px; }
.about-visual p { color: rgba(255,255,255,0.6); }
.about-text .section-tag { display: inline-block; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--gray-600); margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.value-item {
  background: var(--gray-100); border-radius: var(--radius); padding: 20px;
  border-left: 3px solid var(--gold);
}
.value-item h4 { color: var(--navy); margin-bottom: 6px; font-size: 0.95rem; }
.value-item p { color: var(--gray-600); font-size: 0.82rem; }

/* ============================
   FAQ PAGE
   ============================ */
.faq-section { padding: 80px 0; background: var(--gray-100); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-category { margin-bottom: 48px; }
.faq-category-title {
  color: var(--navy); font-size: 1.1rem; font-weight: 700;
  padding-bottom: 12px; border-bottom: 2px solid var(--gold);
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.faq-category-title i { color: var(--gold); }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
.faq-question {
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 500; color: var(--navy);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question i { color: var(--gold); transition: transform var(--transition); flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  padding: 0 24px;
}
.faq-answer p { color: var(--gray-600); font-size: 0.9rem; padding-bottom: 20px; line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================
   CONTACT PAGE
   ============================ */
.contact-section { padding: 80px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-channels { display: flex; flex-direction: column; gap: 20px; }
.channel-card {
  border-radius: var(--radius-lg); padding: 28px 24px;
  display: flex; align-items: center; gap: 20px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  text-decoration: none;
}
.channel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.channel-card.line { background: #f0fbf3; border-color: #c3e6cb; }
.channel-card.facebook { background: #f0f4fb; border-color: #c3d0e6; }
.channel-card.instagram { background: #fbf0f4; border-color: #e6c3d0; }
.channel-icon {
  width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.channel-card.line .channel-icon { background: #06C755; color: white; }
.channel-card.facebook .channel-icon { background: #1877F2; color: white; }
.channel-card.instagram .channel-icon { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.channel-info h3 { color: var(--navy); margin-bottom: 4px; font-size: 1rem; }
.channel-info p { color: var(--gray-400); font-size: 0.85rem; }
.channel-arrow { margin-left: auto; color: var(--gray-400); transition: transform var(--transition); }
.channel-card:hover .channel-arrow { transform: translateX(4px); color: var(--gold-dark); }

.contact-form-area { }
.contact-form-area h3 { color: var(--navy); margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.875rem; font-weight: 500; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 2px solid var(--gray-200); border-radius: 10px;
  font-family: inherit; font-size: 0.9rem; color: var(--text);
  transition: border-color var(--transition); background: var(--white);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-notice {
  font-size: 0.8rem; color: var(--gray-400); background: var(--gray-100);
  border-radius: 8px; padding: 12px 16px; line-height: 1.6;
}
.form-submit { background: var(--navy); color: var(--white); border: none; cursor: pointer; }
.form-submit:hover { background: var(--navy-3); }

/* ============================
   PRIVACY PAGE
   ============================ */
.privacy-section { padding: 80px 0; background: var(--white); }
.privacy-container { max-width: 800px; margin: 0 auto; }
.privacy-container h2 { color: var(--navy); font-size: 1.3rem; margin: 36px 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); }
.privacy-container p { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 14px; line-height: 1.9; }
.privacy-container ul { list-style: disc; padding-left: 24px; color: var(--gray-600); font-size: 0.9rem; margin-bottom: 14px; }
.privacy-container ul li { margin-bottom: 8px; line-height: 1.7; }
.privacy-date { color: var(--gray-400); font-size: 0.85rem; margin-bottom: 32px; }
.privacy-highlight {
  background: rgba(212,175,55,0.08); border-left: 3px solid var(--gold);
  padding: 16px 20px; border-radius: 0 8px 8px 0; margin-bottom: 14px;
}

/* ============================
   AOS ANIMATION
   ============================ */
[data-aos] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-aos].animated { opacity: 1; transform: translateY(0); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .why-image { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed; inset: 0; top: 70px;
    background: var(--navy); flex-direction: column;
    padding: 32px 24px; gap: 8px;
    transform: translateX(100%); transition: transform var(--transition);
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { padding: 14px 16px; font-size: 1rem; width: 100%; border-radius: 8px; }
  .nav-cta { width: 100%; justify-content: center; margin-top: 8px; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-card { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
