@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  /* LearnHub-inspired color palette */
  --primary: #1B4D3E;
  /* Dark green */
  --primary-light: #2D7A5F;
  /* Lighter green */
  --accent: #10B981;
  /* Bright green */
  --accent-light: #D1FAE5;
  /* Light green bg */
  --coral: #FF6B6B;
  /* Coral/salmon accent */
  --coral-light: #FFE5E5;
  /* Light coral */
  --yellow: #FBBF24;
  /* Yellow accent */
  --yellow-light: #FEF3C7;
  /* Light yellow */
  --purple: #8B5CF6;
  /* Purple accent */
  --purple-light: #EDE9FE;
  /* Light purple */

  /* Backgrounds */
  --bg-cream: #FDF8F3;
  /* Main cream background */
  --bg-white: #FFFFFF;
  /* Card background */
  --bg-section: #F0FAF6;
  /* Section alternate bg */
  --bg-dark: #0F172A;
  /* Dark section */

  /* Text */
  --text-dark: #1E293B;
  /* Primary text */
  --text-muted: #64748B;
  /* Secondary text */
  --text-light: #94A3B8;
  /* Tertiary text */

  /* Borders */
  --border: #E2E8F0;
  --border-light: #F1F5F9;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: inherit;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
}

button,
[role="button"] {
  cursor: pointer;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Container */
.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Form Hint */
.form-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.375rem;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary);
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.938rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 77, 62, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary);
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.938rem;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-green {
  background: var(--accent-light);
  color: var(--primary);
}

.badge-coral {
  background: var(--coral-light);
  color: #DC2626;
}

.badge-yellow {
  background: var(--yellow-light);
  color: #B45309;
}

.badge-purple {
  background: var(--purple-light);
  color: var(--purple);
}

/* Header */
.header {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 50;
  background: var(--bg-white);
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1152px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.nav {
  display: none;
  gap: 2rem;
}

.nav a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--primary);
}

.header-cta {
  background: var(--primary);
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 0.625rem;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.header-cta:hover {
  background: var(--primary-light);
}

/* Header Actions */
.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  background: var(--bg-cream);
  border: 1px solid var(--border);
  padding: 0.5rem 0.875rem;
  border-radius: 2rem;
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s;
}

.lang-switch:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.lang-switch-text {
  line-height: 1;
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
  }
}

/* Mobile language switch - show next to menu button */
.mobile-lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-cream);
  border: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s;
  margin-right: 0.5rem;
}

.mobile-lang-switch:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

@media (min-width: 1024px) {
  .mobile-lang-switch {
    display: none;
  }
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.mobile-nav.active {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav a {
  color: var(--text-dark);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.mobile-nav a:hover {
  background: var(--bg-cream);
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }
}

/* Hero */
.hero {
  padding: 9rem 0 5rem;
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-light);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.813rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--coral) 0%, #FF8A65 50%, var(--yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.063rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.stat-item {
  text-align: left;
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.813rem;
  color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: none;
}

.hero-card {
  background: var(--bg-white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}

.floating-element {
  position: absolute;
  background: var(--bg-white);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  font-size: 0.813rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.floating-element.top-right {
  top: -1rem;
  right: -1rem;
}

.floating-element.bottom-left {
  bottom: 2rem;
  left: -2rem;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    display: block;
  }

  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-light);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

/* Services Section */
.services {
  background: var(--bg-white);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(27, 77, 62, 0.08);
  transform: translateY(-4px);
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card.included .service-icon {
  background: var(--accent-light);
  color: var(--primary);
}

.service-card.excluded .service-icon {
  background: var(--coral-light);
  color: var(--coral);
}

.service-card.included h3 {
  color: var(--primary);
}

.service-card.excluded h3 {
  color: var(--coral);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.938rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.service-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-card.included .service-list li svg {
  color: var(--accent);
}

.service-card.excluded .service-list li svg {
  color: var(--coral);
}

.service-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--yellow-light);
  border-radius: 0.75rem;
  font-size: 0.875rem;
  color: #92400E;
  text-align: center;
  border-left: 4px solid var(--yellow);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Timeline */
.timeline {
  background: var(--bg-cream);
}

.timeline-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
  cursor: pointer;
}

.timeline-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(27, 77, 62, 0.08);
}

.timeline-card.rush {
  background: linear-gradient(135deg, #FFFBEB 0%, var(--bg-white) 100%);
  border-color: var(--yellow);
}

.timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.timeline-card:not(.rush) .timeline-badge {
  background: var(--accent-light);
  color: var(--primary);
}

.timeline-card.rush .timeline-badge {
  background: var(--yellow-light);
  color: #B45309;
}

.timeline-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.timeline-card p {
  color: var(--text-muted);
  font-size: 0.938rem;
}

.timeline-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .timeline-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Pricing */
.pricing {
  background: var(--bg-white);
}

.pricing-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.pricing-intro p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pricing-formula {
  background: var(--bg-cream);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 0.75rem;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.938rem;
  color: var(--text-dark);
}

.pricing-table {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-cell {
  padding: 1.25rem 1.5rem;
}

.pricing-cell:first-child {
  background: var(--bg-cream);
  font-weight: 500;
}

.pricing-cell strong {
  color: var(--primary);
  font-weight: 700;
}

.pricing-exchange {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: var(--accent-light);
  border-radius: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 1.5rem;
}

/* Examples */
.examples {
  background: var(--bg-cream);
}

.examples-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.example-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.example-header p {
  color: var(--text-muted);
  font-size: 0.938rem;
  margin-bottom: 0.5rem;
}

.example-header strong {
  font-size: 1.25rem;
  color: var(--primary);
}

.example-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
  cursor: pointer;
}

.example-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(27, 77, 62, 0.08);
}

.example-card.recommended {
  border: 2px solid var(--primary);
  position: relative;
  background: linear-gradient(135deg, #F0FAF6 0%, var(--bg-white) 100%);
}

.example-card.recommended::before {
  content: 'Khuyến nghị';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.example-card h4 {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.example-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.example-total {
  padding-top: 1rem;
  border-top: 2px solid var(--border);
}

.example-total .usd {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.example-total .vnd {
  font-size: 1.125rem;
  color: var(--primary);
  font-weight: 600;
}

.example-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 2rem;
  font-style: italic;
}

@media (min-width: 640px) {
  .examples-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.example-card.rush {
  border: 2px solid var(--yellow);
  position: relative;
  background: linear-gradient(135deg, #FFFBEB 0%, var(--bg-white) 100%);
}

.example-card.rush::before {
  content: 'Gấp';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: #92400E;
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Languages */
.languages {
  background: var(--primary);
  color: white;
  text-align: center;
  border-radius: 1.5rem;
  margin: 0 1rem;
}

.languages .section-title {
  color: white;
}

.languages p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto;
}

/* Process */
.process {
  background: var(--bg-white);
}

.process-steps {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 1rem;
  transition: all 0.3s;
  cursor: pointer;
}

.process-step:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(27, 77, 62, 0.08);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.063rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.938rem;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

/* Files */
.files {
  background: var(--bg-cream);
}

.files-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.files-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

.files-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.files-card h3 {
  font-size: 1.063rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.files-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.files-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.938rem;
  color: var(--text-muted);
}

.files-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary);
}

@media (min-width: 640px) {
  .files-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* FAQ */
.faq {
  background: var(--bg-white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: #cbd5e1;
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(27, 77, 62, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.938rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* Lead Form */
.lead-form-section {
  background: var(--bg-cream);
}

.lead-form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.form-group label span {
  color: var(--coral);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.625rem;
  font-size: 1rem;
  transition: all 0.2s;
  background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.file-upload {
  border: 2px dashed var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--bg-cream);
}

.file-upload:hover {
  border-color: var(--primary);
  background: #F0FAF6;
}

.file-upload svg {
  width: 48px;
  height: 48px;
  color: var(--text-muted);
  margin: 0 auto 1rem;
}

.file-upload p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.file-upload strong {
  color: var(--primary);
}

.form-submit {
  margin-top: 0.5rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: var(--accent-light);
  border-radius: 0.75rem;
  color: #065F46;
}

.form-success.active {
  display: block;
}

.form-success svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--accent);
}

.secondary-cta {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.secondary-cta p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

/* Contact */
.contact {
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(27, 77, 62, 0.08);
}

.contact-card svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.contact-card h3 {
  font-size: 1.063rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.938rem;
}

.contact-card a {
  color: var(--primary);
  font-weight: 500;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CTA Section */
.cta-section {
  background: var(--primary);
  color: white;
  text-align: center;
  border-radius: 1.5rem;
  margin: 0 1rem 3rem;
  padding: 4rem 2rem;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-section .btn-primary {
  background: white;
  color: var(--primary);
}

.cta-section .btn-primary:hover {
  background: #f8fafc;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-section .btn-secondary {
  border-color: white;
  color: white;
}

.cta-section .btn-secondary:hover {
  background: white;
  color: var(--primary);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 3rem 0 2rem;
}

.footer-content {
  text-align: center;
}

.footer-note {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.7;
}

.footer-copyright {
  font-size: 0.813rem;
  color: #64748b;
}

/* Contact Section - Elegant Card */
.contact-section {
  background: var(--bg-cream);
  padding: 4rem 0;
}

.contact-card-main {
  max-width: 650px;
  margin: 0 auto;
}

.contact-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

/* QR Side */
.contact-qr-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.qr-image {
  width: 100px;
  height: 100px;
  border-radius: 0.75rem;
  object-fit: cover;
  border: 2px solid var(--accent-light);
}

.qr-label {
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--accent-light);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
}

/* Divider */
.contact-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* Contact Info Side */
.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  background: var(--bg-cream);
  border: 1px solid transparent;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.contact-item:hover {
  border-color: var(--primary);
  background: var(--accent-light);
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-icon.email {
  background: var(--coral-light);
  color: var(--coral);
}

.contact-icon.facebook {
  background: #E0E7FF;
  color: #4F46E5;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.contact-value {
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive - Desktop horizontal layout */
@media (min-width: 640px) {
  .contact-card-inner {
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
    padding: 2rem 2.5rem;
  }

  .contact-qr-side {
    justify-content: center;
  }

  .contact-divider {
    width: 1px;
    height: auto;
    align-self: stretch;
  }

  .contact-info-side {
    flex: 1;
    justify-content: center;
  }
}

/* QR Trigger Button */
.qr-trigger {
  position: relative;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.qr-trigger:hover {
  transform: scale(1.05);
}

.qr-trigger .qr-image {
  display: block;
}

.qr-zoom-hint {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.2s ease;
}

.qr-trigger:hover .qr-zoom-hint {
  opacity: 1;
  transform: scale(1);
}

.qr-zoom-hint svg {
  width: 16px;
  height: 16px;
  color: white;
}

/* QR Modal */
.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.qr-modal.active {
  opacity: 1;
  visibility: visible;
}

.qr-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.qr-modal-content {
  position: relative;
  background: var(--bg-white);
  border-radius: 1.25rem;
  padding: 2rem;
  max-width: 320px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.25s ease;
}

.qr-modal.active .qr-modal-content {
  transform: scale(1) translateY(0);
}

.qr-modal-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.qr-modal-close:hover {
  background: var(--coral-light);
  border-color: var(--coral);
}

.qr-modal-close svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

.qr-modal-close:hover svg {
  color: var(--coral);
}

.qr-modal-image {
  width: 220px;
  height: 220px;
  border-radius: 1rem;
  object-fit: cover;
  border: 3px solid var(--accent-light);
  margin-bottom: 1rem;
}

.qr-modal-text {
  font-size: 0.938rem;
  color: var(--text-muted);
  margin: 0;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  gap: 2.5rem;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.footer-logo svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.footer-tagline {
  font-size: 0.875rem;
  color: #94A3B8;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.footer-contact-item:hover {
  color: var(--accent);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-divider {
  height: 1px;
  background: #334155;
  margin: 2.5rem 0 1.5rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.footer-note {
  font-size: 0.813rem;
  color: #64748B;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.footer-copyright {
  font-size: 0.75rem;
  color: #475569;
}

@media (min-width: 640px) {
  .footer-content {
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .footer-note {
    margin: 0;
    max-width: none;
  }
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}