/* ============================================
   FengShuiSir – Global Styles
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #B8943F;
  --gold-light: #E8D5A0;
  --gold-pale: #F9F4E8;
  --dark: #1A1A18;
  --dark-2: #2C2C28;
  --dark-3: #3E3E38;
  --text: #2C2C28;
  --text-secondary: #5F5E5A;
  --text-muted: #888780;
  --border: rgba(44,44,40,0.12);
  --border-md: rgba(44,44,40,0.2);
  --bg: #FAFAF7;
  --bg-card: #FFFFFF;
  --teal: #0F6E56;
  --teal-light: #E1F5EE;
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Inter', 'Helvetica Neue', sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.06), 0 8px 32px rgba(0,0,0,0.04);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================
   HEADER / NAV
   ============================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,250,247,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.logo-symbol {
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links li a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--gold);
  background: var(--gold-pale);
}

.nav-cta {
  flex-shrink: 0;
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: var(--font-sans);
}

.nav-cta:hover { background: var(--gold); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 2px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.mobile-menu a:hover { color: var(--gold); background: var(--gold-pale); }

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}

.btn-primary:hover { background: var(--gold); transform: translateY(-1px); }
.btn-primary.large { padding: 15px 36px; font-size: 15px; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--dark);
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid var(--border-md);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn-ghost.small { padding: 8px 18px; font-size: 13px; }

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  padding: 140px 32px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  gap: 60px;
}

.hero-bg-pattern {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(184,148,63,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(15,110,86,0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.hero-content {
  flex: 1;
  max-width: 580px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero emblem */
.hero-emblem {
  flex-shrink: 0;
  width: 340px;
  height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bagua-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold-light);
}

.outer-ring { width: 320px; height: 320px; animation: rotate 60s linear infinite; border-style: dashed; }
.mid-ring { width: 220px; height: 220px; animation: rotate 40s linear infinite reverse; }
.bagua-center {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.yin-yang {
  font-size: 52px;
  color: var(--gold);
  line-height: 1;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================
   INTRO STRIP
   ============================================ */

.intro-strip {
  background: var(--dark);
  padding: 20px 32px;
}

.strip-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.strip-icon { color: var(--gold); font-size: 10px; }
.strip-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.15); }

/* ============================================
   SECTIONS
   ============================================ */

.section { padding: 100px 0; }

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}

.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================
   SERVICES GRID
   ============================================ */

.services-section { background: var(--bg); }

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}

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

.service-card.featured {
  background: var(--dark);
  border-color: var(--dark);
}

.service-card.featured h3 { color: #fff; }
.service-card.featured p { color: rgba(255,255,255,0.65); }
.service-card.featured .service-list li { color: rgba(255,255,255,0.7); }
.service-card.featured .service-list li::before { color: var(--gold); }
.service-card.featured .card-link { color: var(--gold-light); }

.featured-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon-wrap.gold { background: var(--gold-pale); color: var(--gold); }
.service-icon-wrap.dark { background: rgba(255,255,255,0.1); color: var(--gold); }
.service-icon-wrap.teal { background: var(--teal-light); color: var(--teal); }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
}

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

.service-list {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-list li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}

.service-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--gold);
  font-size: 16px;
  line-height: 1.4;
}

.card-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.card-link:hover { opacity: 0.7; }

/* ============================================
   WHY SECTION
   ============================================ */

.why-section { background: var(--gold-pale); }

.why-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.why-text { flex: 1; }
.why-text p:not(.section-label) {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.why-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
}

.stat-item { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

/* Compass visual */
.why-visual { flex-shrink: 0; }

.compass-wrap {
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compass-outer {
  width: 280px;
  height: 280px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compass-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184,148,63,0.3);
}

.compass-ring.r1 { width: 280px; height: 280px; }
.compass-ring.r2 { width: 200px; height: 200px; border-color: rgba(184,148,63,0.5); }
.compass-ring.r3 { width: 120px; height: 120px; border-color: rgba(184,148,63,0.7); }

.compass-direction {
  position: absolute;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.compass-direction.n { top: 6px; left: 50%; transform: translateX(-50%); }
.compass-direction.s { bottom: 6px; left: 50%; transform: translateX(-50%); }
.compass-direction.e { right: 6px; top: 50%; transform: translateY(-50%); }
.compass-direction.w { left: 6px; top: 50%; transform: translateY(-50%); }
.compass-direction.ne { top: 28px; right: 28px; }
.compass-direction.sw { bottom: 28px; left: 28px; }
.compass-direction.nw { top: 28px; left: 28px; }
.compass-direction.se { bottom: 28px; right: 28px; }

.compass-core {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  z-index: 2;
  animation: rotate 20s linear infinite;
}

/* ============================================
   PROCESS
   ============================================ */

.process-section { background: #fff; }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 180px;
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  transition: border-color 0.3s;
}

.process-step:hover { border-color: var(--gold); }

.step-num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 16px;
}

.process-step h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.process-arrow {
  color: var(--gold-light);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 56px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section { background: var(--bg); }

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 0.3s;
}

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

.quote-mark {
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 0.6;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.testimonial-card > p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background: var(--dark);
  padding: 100px 32px;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding-top: 60px;
}

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

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 240px;
}

.footer-links h5,
.footer-contact h5 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

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

.footer-links ul li a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links ul li a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-contact a:not(.btn-ghost) { color: var(--gold); transition: opacity 0.2s; }
.footer-contact a:not(.btn-ghost):hover { opacity: 0.7; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

.page-hero {
  padding: 160px 32px 80px;
  text-align: center;
  background: linear-gradient(to bottom, var(--gold-pale), var(--bg));
}

.page-hero .hero-eyebrow { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.page-hero p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-story { background: #fff; }

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

.about-image-placeholder {
  aspect-ratio: 4/5;
  background: var(--gold-pale);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--gold-light);
}

.about-image-placeholder .big-symbol {
  font-size: 80px;
  color: var(--gold);
  opacity: 0.4;
}

.about-image-placeholder p {
  font-size: 13px;
  color: var(--text-muted);
}

.about-content .section-label { text-align: left; }
.about-content .section-title { text-align: left; font-size: 34px; }

.about-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 18px;
}

.values-section { background: var(--bg); }

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

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.3s;
}

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

.value-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 16px;
}

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

.value-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }

/* ============================================
   CALCULATION & CONSULTATION PAGES
   ============================================ */

.services-detail-section { background: #fff; }

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-detail-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  background: var(--bg);
  transition: box-shadow 0.3s, border-color 0.3s;
}

.service-detail-card:hover { box-shadow: var(--shadow-card); border-color: var(--gold-light); }

.service-detail-card .sdc-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-detail-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-detail-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
}

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.service-note {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.service-note p { font-size: 15px; color: rgba(255,255,255,0.75); max-width: 480px; line-height: 1.75; }

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-section { background: var(--bg); }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--gold); }

.faq-chevron {
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section { background: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.cd-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.cd-text strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 3px;
}

.cd-text span { font-size: 13px; color: var(--text-muted); }

/* Form */
.contact-form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 28px;
}

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

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--dark);
  background: var(--bg-card);
  transition: border-color 0.2s;
  outline: none;
  appearance: 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-submit { width: 100%; }

.success-msg {
  display: none;
  background: #EAF3DE;
  border: 1px solid #C0DD97;
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 14px;
  color: #3B6D11;
  margin-top: 16px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .why-inner { flex-direction: column; gap: 40px; }
  .hero-emblem { width: 260px; height: 260px; }
  .outer-ring { width: 240px; height: 240px; }
  .mid-ring { width: 165px; height: 165px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { flex-direction: column; padding-top: 120px; text-align: center; min-height: auto; padding-bottom: 60px; }
  .hero-emblem { width: 200px; height: 200px; }
  .hero-actions { justify-content: center; }
  .outer-ring { width: 195px; height: 195px; }
  .mid-ring { width: 135px; height: 135px; }
  .bagua-center { width: 75px; height: 75px; }
  .yin-yang { font-size: 38px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .why-stats { flex-wrap: wrap; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .service-note { flex-direction: column; text-align: center; }
  .strip-inner { gap: 16px; }
  .strip-divider { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .page-hero { padding: 120px 20px 60px; }
}
