/* ========================================
   MODERN RESET & BASE STYLES
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
   --primary: #C89B3C;          /* warm gold */
  --primary-dark: #A67C23;
  --primary-light: #E4C76B;
  --secondary: #1A2E2A;        /* dark green-blue */
  --accent: #D4543B;           /* deep red for CTAs */

  --text-dark: #F0EAD6;        /* light cream for main text */
  --text-light: #B7A88A;       /* softer beige for secondary text */

  --bg-light: rgba(255,250,240,0.07);
  --bg-white: rgba(255,250,240,0.03);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.35);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.45);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  
  /* Deep green gradient as the base */
  background: 
    /* subtle grain texture */
    url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23111a14' fill-opacity='0.25'%3E%3Cpath d='M5 0h1L0 6V5z'/%3E%3Cpath d='M6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E") repeat,
    linear-gradient(160deg, #1B3B2A 0%, #0D2A1A 50%, #082214 100%);
  background-attachment: fixed;   /* keep the background steady */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  background-color: transparent;   /* let the green show */
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1rem; }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* ========================================
   NAVIGATION BAR
   ======================================== */

.navbar {
  background: rgba(13, 30, 18, 0.92);   /* near opaque dark green */
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-decoration: none;
  transition: var(--transition);
}

.logo-chinese {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.logo-english {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.logo:hover .logo-chinese,
.logo:hover .logo-english {
  color: var(--primary-light);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary-light);
}

/* ========================================
   VIDEO HERO SECTION
   ======================================== */

.video-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  background: var(--secondary);
  margin-top: 0;   /* remove old top margin, navbar is sticky */
}

.video-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;   /* slightly more visible */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(30, 42, 62, 0.5) 0%,
    rgba(30, 42, 62, 0.3) 50%,
    rgba(30, 42, 62, 0.4) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero-content {
  max-width: 800px;
  z-index: 10;
}

.video-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.video-hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: #1A2E20;   /* dark green text on gold */
  box-shadow: var(--shadow-md);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-light);
  color: var(--primary-light);
}

.btn-outline:hover {
  background: var(--primary-light);
  color: #1A2E20;
}

/* ========================================
   PROCESS TIMELINE SECTION
   ======================================== */

.process-timeline {
  padding: 5rem 0;
  background: transparent;
}
.process-timeline h2 {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  width: 100%;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--primary);
}
.process-timeline h2::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
}
.timeline-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
  position: relative;
}
@media (min-width: 1024px) {
  .timeline-container::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    z-index: 0;
  }
}
.timeline-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-connector {
  display: none;
}
@media (min-width: 1024px) {
  .timeline-step:last-child .timeline-connector {
    display: none;
  }
}
.step-card {
  background: rgba(18, 36, 24, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(200,155,60,0.25);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.step-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.step-card:hover .step-icon {
  transform: rotate(10deg) scale(1.1);
}
.step-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}
.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #1A2E20;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-md);
}
.step-card h3 {
  color: var(--primary);
  margin: 1rem 0;
  font-size: 1.3rem;
}
.step-card p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ========================================
   PAGE HEADER (For all pages)
   ======================================== */

.page-header {
  background: linear-gradient(135deg, #0D2A1A 0%, #0D2A1A 100%);
  color: var(--text-dark);
  padding: 4rem 0;
  text-align: center;
  border-bottom: 2px solid var(--primary);
}
.page-header h1 {
  color: var(--text-dark);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.page-header p {
  color: var(--text-light);
  font-size: 1.2rem;
  margin: 0;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
  padding: 4rem 0;
  background: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

/* ----- Unified dark translucent cards ----- */
.service-card,
.story-card,
.info-box,
.faq-item,
.start-col,
.about-principles li,
.team-placeholder,
.design-note {
  background: rgba(18, 36, 24, 0.75);
  padding: 1rem;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(200,155,60,0.25);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.service-card:hover,
.story-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
}
.story-card {
  border-left: 4px solid var(--primary);
}
.featured-card {
  border: 2px solid var(--primary);
  background: rgba(18, 36, 24, 0.85);
}

.service-card h3,
.story-card h3,
.info-box h3,
.faq-item h4,
.start-col h3,
.about-principles strong {
  color: var(--primary);
}
.service-card p,
.story-card p,
.info-box p,
.faq-item p,
.start-col p {
  color: var(--text-dark);
}
.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.service-indicator {
  color: var(--primary-light);
  font-weight: 600;
}

/* ========================================
   SERVICE MODAL
   ======================================== */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1rem;
  transition: var(--transition);
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: rgba(13, 26, 18, 0.95);
  border: 1px solid var(--primary);
  padding: 2.5rem;
  max-width: 600px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--primary);
  transform: scale(1.2);
}

#modalTitle {
  color: var(--primary);
  margin-bottom: 1rem;
  margin-top: 0;
  padding-right: 2rem;
}

#modalDescription {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Make service cards clickable on mobile */
.service-card {
  cursor: pointer;
}

/* ========================================
   STORIES SECTION
   ======================================== */

.stories-section {
  padding: 4rem 0;
  background: transparent
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.story-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}

.story-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.story-header {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.story-card h3 {
  color: var(--secondary);
  margin: 0;
  flex: 1;
}

.company-badge {
  background: var(--primary);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.story-card p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.story-metrics {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.story-metrics span {
  flex: 1;
  text-align: center;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

/* ========================================
   FEATURED STORIES & CASE STUDIES
   ======================================== */

.studies-note-section {
  background: transparent;
  padding: 2rem 0;
  text-align: center;
}

.studies-note {
  color: var(--text-dark);
  font-size: 1rem;
  margin: 0;
}

.featured-stories {
  margin-bottom: 4rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.story-card {
  background: transparent;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.story-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.featured-card {
  background: transparent;
  border: 2px solid var(--primary);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-md);
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.story-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  width: fit-content;
}

.story-card h3 {
  color: var(--primary-light);
  margin: 0.5rem 0 1rem 0;
  font-size: 1.4rem;
}

.story-result {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.expand-btn {
  background: var(--primary);
  color: #1A2E20;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

.expand-btn:hover {
  background: var(--primary-dark);
  transform: translateX(4px);
}

.story-details {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(255,250,240,0.05);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary);
  transition: var(--transition);
}

.story-details.hidden {
  display: none;
}

/* ========================================
   CASE STUDY MODAL
   ======================================== */

.case-study-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  backdrop-filter: blur(2px);
  animation: fadeIn 0.3s ease;
}

.case-study-modal.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: #1B3B2A;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(201, 155, 60, 0.1);
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 155, 60, 0.3);
}

.modal-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.modal-header h2 {
  color: var(--primary-light);
  margin: 0;
  font-size: 2rem;
}

.modal-body {
  margin-bottom: 2rem;
}

.modal-footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 155, 60, 0.3);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.modal-footer .pdf-btn {
  flex: 1;
  min-width: 150px;
}

.story-section {
  margin-bottom: 1.5rem;
}

.story-section:last-child {
  margin-bottom: 0;
}

.story-section h4 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.story-section p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.story-section p:last-child {
  margin-bottom: 0;
}

.story-section em {
  color: var(--text-light);
  font-size: 0.9rem;
}

.story-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.pdf-btn {
  display: inline-block;
  background: rgba(200,155,60,0.15);
  border: 1px solid var(--primary);
  color: var(--primary-light);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.pdf-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.category-section {
  margin-bottom: 4rem;
}

.category-section h2 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
  width: 100%;
}

.category-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.category-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 2rem;
  font-style: italic;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
  padding: 4rem 0;
  background: transparent;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content h2 {
  color: var(--primary-light);
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
  padding-bottom: 0.5rem;
  width: 100%;
}

.about-story h3 {
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.company-name-header {
  text-align: center;
  margin-bottom: 1rem;
}

.company-name-chinese {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.company-name-english {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: -0.3px;
}

.footer-company-names {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.footer-company-name-chinese {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.03em;
}

.footer-company-name-english {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: -0.2px;
}

.about-story p {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-principles {
  list-style: none;
  margin: 2rem 0;
}

.about-principles li {
  background: var(--bg-light);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  line-height: 1.7;
}

.about-principles strong {
  color: var(--primary);
}

.team-section {
  padding: 4rem 0;
  background: transparent;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.team-placeholder {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--text-light);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
  padding: 4rem 0;
  background: transparent;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-container h2 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-intro {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-light);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255,250,240,0.1);
  border: 1px solid rgba(200,155,60,0.3);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23E4C76B' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--secondary);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200,155,60,0.2);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-box {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  background: rgba(255,250,240,0.05);
}

.info-box h3 {
  color: var(--primary);
  margin: 0 0 0.5rem 0;
}

.info-box p {
  color: var(--text-dark);
  margin: 0;
}

.info-box a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.info-box a:hover {
  text-decoration: underline;
}

.qr-box {
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(200,155,60,0.4);
  background: rgba(255,250,240,0.05);
  text-align: center;
}

.qr-box h3 {
  color: var(--primary);
  margin: 0 0 0.75rem 0;
}

.qr-box p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.qr-code {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(200,155,60,0.3);
  padding: 8px;
  background: white;
}

.faq-section {
  padding: 4rem 0;
  background: transparent;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  padding: 4rem 0;
  background: transparent;
  text-align: center;
}

.cta-section h2 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.cta-section p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ========================================
   DESIGN NOTES
   ======================================== */

.design-note {
  padding: 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.design-note strong {
  color: #b45309;
}

/* ========================================
   NEEDS BAR SECTION
   ======================================== */

.needs-bar {
  background: transparent;
  padding: 4rem 0;
  text-align: center;
}

.needs-bar h2 {
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.needs-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.need-btn {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.need-btn:hover {
  background: var(--primary);
  color: #1A2E20;
}

.needs-reassurance {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ========================================
   START HERE SECTION
   ======================================== */

.start-here {
  padding: 4rem 0;
  background: tr;
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.start-col {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border-top: 4px solid var(--primary);
}

.start-col h3 {
  margin-bottom: 1rem;
  color: var(--primary-light);
}

.start-col p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.start-col .btn {
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  padding: 0.75rem 1.5rem;
}

.start-col .btn:hover {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
}

/* ========================================
   FAQ LIST
   ======================================== */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
}

.faq-item h4 {
  color: var(--primary-light);
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--text-dark);
  margin: 0;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: rgba(8, 20, 12, 0.95);
  border-top: 1px solid rgba(200,155,60,0.2);
  padding: 2rem 0;
  margin-top: 5rem;
}

.footer .container {
  text-align: center;
}

.footer p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .video-hero {
    height: 60vh;
    margin-top: 50px;
  }

  .video-hero h1 {
    font-size: 2rem;
  }

  .video-hero p {
    font-size: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
    flex-direction: column;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .step-card {
    min-height: auto;
  }

  .timeline-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timeline-container::before {
    display: none;
  }

  .timeline-connector {
    display: none;
  }

  .services-grid,
  .stories-grid {
    grid-template-columns: 1fr;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .about-story h3 {
    margin-top: 1.5rem;
  }

  .story-header {
    flex-direction: column;
  }

  .company-badge {
    align-self: flex-start;
  }

  .story-metrics {
    flex-wrap: wrap;
  }

  .story-links {
    flex-direction: column;
  }

  .pdf-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .video-hero h1 {
    font-size: 1.5rem;
  }

  .video-hero p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .process-timeline h2 {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  .service-icon {
    font-size: 2rem;
  }

  .story-metrics {
    gap: 0.5rem;
  }

  .story-metrics span {
    font-size: 0.8rem;
  }

  .about-principles li {
    padding: 1rem;
  }

  .info-box {
    padding: 1rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.6rem;
    font-size: 16px;
  }

  .expand-btn,
  .pdf-btn {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }

  .story-details {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .story-section h4 {
    font-size: 1rem;
  }

  .story-section p {
    font-size: 0.9rem;
  }

  /* Mobile Modal Styles */
  .modal-content {
    padding: 1.5rem;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
  }

  #modalTitle {
    font-size: 1.3rem;
  }

  #modalDescription {
    font-size: 0.95rem;
  }

  .modal-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 35px;
    height: 35px;
  }
}
