/* AI Write My Book - Main Styles v1.5 */

/* CSS Variables */
:root {
  --navy: #1a365d;
  --navy-dark: #0f2442;
  --gold: #d69e2e;
  --gold-light: #ecc94b;
  --white: #ffffff;
  --gray-50: #f7fafc;
  --gray-100: #edf2f7;
  --gray-200: #e2e8f0;
  --gray-600: #718096;
  --gray-700: #4a5568;
  --gray-800: #2d3748;
  --gray-900: #1a202c;
  --success: #38a169;
  --error: #e53e3e;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold-light);
}

/* Container */
.awmb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.75rem; }
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.awmb-btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
}

.awmb-btn-primary {
  background-color: var(--gold);
  color: var(--navy-dark);
}

.awmb-btn-primary:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--navy-dark);
}

.awmb-btn-primary:disabled {
  background-color: var(--gray-200);
  color: var(--gray-600);
  cursor: not-allowed;
  transform: none;
}

.awmb-btn-secondary {
  background-color: var(--navy);
  color: var(--white);
}

.awmb-btn-secondary:hover {
  background-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.awmb-btn-disabled {
  background-color: var(--gray-200);
  color: var(--gray-600);
  cursor: not-allowed;
}

.awmb-btn-disabled:hover {
  transform: none;
  box-shadow: none;
}

.awmb-btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
}

/* Header */
.awmb-header {
  background-color: var(--navy);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.awmb-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.awmb-logo {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}

.awmb-logo span {
  color: var(--gold);
}

.awmb-nav a {
  color: var(--white);
  margin-left: 2rem;
  font-weight: 500;
}

.awmb-nav a:hover {
  color: var(--gold);
}

/* Hero Section */
.awmb-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 8rem 0 5rem;
  margin-top: 60px;
  text-align: center;
}

.awmb-hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.awmb-hero-highlight {
  color: var(--gold);
}

.awmb-hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-200);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.awmb-hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.awmb-hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--gray-100);
}

.awmb-hero-feature svg {
  color: var(--gold);
  width: 24px;
  height: 24px;
}

/* Problem Section */
.awmb-problem {
  padding: 5rem 0;
  background-color: var(--gray-50);
}

.awmb-problem h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.awmb-problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.awmb-problem-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}

.awmb-problem-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.awmb-problem-card p {
  color: var(--gray-600);
  margin-bottom: 0;
}

/* Solution Section */
.awmb-solution {
  padding: 5rem 0;
}

.awmb-solution h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.awmb-solution-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--gray-600);
  font-size: 1.125rem;
}

.awmb-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.awmb-step {
  text-align: center;
  padding: 2rem;
}

.awmb-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--navy);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.awmb-step h3 {
  margin-bottom: 1rem;
}

.awmb-step p {
  color: var(--gray-600);
  margin-bottom: 0;
}

/* What You Get Section */
.awmb-package {
  padding: 5rem 0;
  background-color: var(--navy);
  color: var(--white);
}

.awmb-package h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
}

.awmb-package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.awmb-package-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 0.5rem;
}

.awmb-package-item svg {
  color: var(--gold);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.awmb-package-item h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.awmb-package-item p {
  color: var(--gray-200);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Sample Covers Section */
.awmb-covers {
  padding: 5rem 0;
  background-color: var(--gray-50);
}

.awmb-covers h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.awmb-covers-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 0.75rem;
  color: var(--gray-600);
  font-size: 1.1rem;
}

.awmb-covers-note {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: var(--gray-600);
  font-size: 0.95rem;
  font-style: italic;
}

/* Samples Grid - 3 books side by side */
.awmb-samples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .awmb-samples-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    gap: 3rem;
  }
}

/* Individual sample book card */
.awmb-sample-book {
  text-align: center;
}

/* eBook cover wrapper (clickable) */
.awmb-sample-cover-wrap {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 0.5rem;
  overflow: hidden;
}

.awmb-sample-cover-wrap:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.awmb-sample-cover-wrap img {
  width: 100%;
  max-width: 240px;
  border-radius: 0.5rem;
  display: block;
  margin: 0 auto;
}

/* Sample badge overlay */
.awmb-sample-badge {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.75);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 1rem;
  white-space: nowrap;
  z-index: 2;
}

/* Book title under cover */
.awmb-sample-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}

/* Click hint label */
.awmb-sample-format-label {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.awmb-sample-book.expanded .awmb-sample-format-label {
  color: var(--gold);
}

.awmb-sample-book.expanded .awmb-sample-format-label::before {
  content: '▼ ';
}

.awmb-sample-book:not(.expanded) .awmb-sample-format-label::before {
  content: '';
}

/* Hide the ▲ when expanded, replace with ▼ via ::before */
.awmb-sample-book.expanded .awmb-sample-format-label {
  font-size: 0;
}

.awmb-sample-book.expanded .awmb-sample-format-label::before {
  font-size: 0.8rem;
  content: '▼ eBook Cover — click to hide full set';
}

/* Expanded section (paperback + hardcover) */
.awmb-sample-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.awmb-sample-book.expanded .awmb-sample-expanded {
  max-height: 600px;
  opacity: 1;
  margin-top: 1rem;
}

/* Format images row */
.awmb-sample-formats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.awmb-sample-format {
  position: relative;
  display: inline-block;
}

.awmb-sample-format img {
  width: 100%;
  max-width: 300px;
  border-radius: 0.375rem;
  box-shadow: var(--shadow);
}

.awmb-sample-format .awmb-sample-badge {
  top: 8px;
  font-size: 0.65rem;
  padding: 0.25rem 0.6rem;
}

.awmb-sample-format-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-top: 0.4rem;
  text-align: center;
}

/* Pricing Section */
.awmb-pricing {
  padding: 5rem 0;
}

.awmb-pricing h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.awmb-pricing-card {
  max-width: 500px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 2px solid var(--gold);
}

.awmb-pricing-header {
  background: var(--navy);
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.awmb-pricing-header h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.awmb-price {
  font-size: 3.5rem;
  font-weight: 700;
}

.awmb-price-currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.awmb-price-note {
  font-size: 0.9rem;
  color: var(--gray-200);
}

.awmb-pricing-body {
  padding: 2rem;
}

.awmb-pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.awmb-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.awmb-pricing-features li:last-child {
  border-bottom: none;
}

.awmb-pricing-features svg {
  color: var(--success);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.awmb-pricing-cta {
  text-align: center;
}

.awmb-pricing-cta .awmb-btn {
  width: 100%;
}

/* FAQ Section */
.awmb-faq {
  padding: 5rem 0;
  background-color: var(--gray-50);
}

.awmb-faq h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.awmb-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

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

.awmb-faq-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.awmb-faq-item h4 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.awmb-faq-item p {
  color: var(--gray-600);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Final CTA Section */
.awmb-final-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  text-align: center;
}

.awmb-final-cta h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.awmb-final-cta p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--gray-200);
  font-size: 1.125rem;
}

/* Footer */
.awmb-footer {
  background-color: var(--gray-900);
  color: var(--gray-200);
  padding: 3rem 0 1.5rem;
}

.awmb-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.awmb-footer-brand p {
  max-width: 300px;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.awmb-footer-links h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.awmb-footer-links a {
  display: block;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

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

.awmb-footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* =====================================================
   ORDER FORM STYLES
   ===================================================== */

.awmb-orderform {
  background: var(--gray-50);
  min-height: calc(100vh - 60px);
  margin-top: 60px;
  padding: 3rem 0;
}

.awmb-orderform-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.awmb-orderform-header h1 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.awmb-orderform-header p {
  color: var(--gray-600);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.awmb-orderform-header .required {
  color: var(--error);
}

/* Form Container */
.awmb-form {
  max-width: 800px;
  margin: 0 auto;
}

/* Coming Soon Banner */
.awmb-coming-soon-banner {
  max-width: 800px;
  margin: 0 auto 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #3b82f6;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
}

.awmb-coming-soon-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.awmb-coming-soon-content {
  font-size: 0.95rem;
  color: #1e3a5f;
  line-height: 1.6;
}

/* AI Tip Banner */
.awmb-ai-tip {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #f59e0b;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
}

.awmb-ai-tip-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.awmb-ai-tip-content {
  font-size: 0.95rem;
  color: #78350f;
  line-height: 1.6;
}

.awmb-ai-tip-content .required {
  color: var(--error);
}

/* AI Section Badge */
.awmb-section-ai-badge {
  font-size: 0.8rem;
  font-weight: 500;
  color: #92400e;
  background: #fef3c7;
  padding: 0.2rem 0.65rem;
  border-radius: 1rem;
  border: 1px solid #f59e0b;
  white-space: nowrap;
}

/* Form Sections */
.awmb-form-section {
  background: var(--white);
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.awmb-form-section h2 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.awmb-section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50%;
}

.awmb-section-optional {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gray-600);
}

.awmb-section-intro {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  margin-top: -0.5rem;
}

/* Form Groups */
.awmb-form-group {
  margin-bottom: 1.25rem;
}

.awmb-form-group:last-child {
  margin-bottom: 0;
}

.awmb-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .awmb-form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Labels */
.awmb-form-group label {
  display: block;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.awmb-form-group label .required {
  color: var(--error);
}

/* Inputs & Textareas */
.awmb-form-group input[type="text"],
.awmb-form-group input[type="email"],
.awmb-form-group textarea,
.awmb-form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 0.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
  background: var(--white);
}

.awmb-form-group input:focus,
.awmb-form-group textarea:focus,
.awmb-form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214, 158, 46, 0.15);
}

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

.awmb-form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23718096' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Field Hints */
.awmb-field-hint {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 0.35rem;
}

/* Checkboxes */
.awmb-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.awmb-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
}

.awmb-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.awmb-checkbox-text {
  line-height: 1.5;
}

.awmb-checkbox-text a {
  color: var(--gold);
  text-decoration: underline;
}

.awmb-checkbox-text .required {
  color: var(--error);
}

/* Submit Section */
.awmb-form-submit {
  text-align: center;
  padding: 1.5rem 0 0;
}

.awmb-form-submit .awmb-btn {
  min-width: 250px;
}

.awmb-form-submit-note {
  margin-top: 1rem;
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* Loading Spinner */
.awmb-btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.awmb-spinner {
  width: 20px;
  height: 20px;
}

/* Error Message */
.awmb-form-error {
  background: #fed7d7;
  color: #c53030;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
  text-align: center;
  font-weight: 500;
}

/* =====================================================
   ORDER SUBMITTED PAGE STYLES
   ===================================================== */

.awmb-submitted {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  min-height: calc(100vh - 60px);
  margin-top: 60px;
  padding: 3rem 0;
  display: flex;
  align-items: center;
}

.awmb-submitted-card {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.awmb-submitted-header {
  background: var(--success);
  color: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
}

.awmb-submitted-header svg {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.awmb-submitted-header h1 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.awmb-submitted-header p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 0;
}

.awmb-submitted-body {
  padding: 2.5rem;
}

/* Order Reference Box */
.awmb-order-ref {
  background: var(--gray-50);
  border: 2px solid var(--gold);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.awmb-order-ref-label {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.awmb-order-ref-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  font-family: monospace;
  margin-bottom: 0.5rem;
}

.awmb-order-ref-hint {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* Timeline */
.awmb-submitted-timeline h2 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.awmb-timeline {
  position: relative;
  margin-bottom: 2rem;
}

.awmb-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--gray-200);
}

.awmb-timeline-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.awmb-timeline-item:last-child {
  margin-bottom: 0;
}

.awmb-timeline-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.awmb-timeline-icon svg {
  color: var(--gray-600);
}

.awmb-timeline-item.awmb-timeline-active .awmb-timeline-icon {
  background: var(--success);
}

.awmb-timeline-item.awmb-timeline-active .awmb-timeline-icon svg {
  color: var(--white);
}

.awmb-timeline-content h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--navy);
}

.awmb-timeline-content p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

/* Info Boxes */
.awmb-submitted-info {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.awmb-info-box {
  background: var(--gray-50);
  border-radius: 0.5rem;
  padding: 1.25rem;
}

.awmb-info-box h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.awmb-info-box p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

/* Footer */
.awmb-submitted-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.awmb-submitted-footer p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.awmb-submitted-footer a.awmb-btn {
  margin-top: 0.5rem;
}

/* =====================================================
   THANK YOU PAGE STYLES (existing, moved here for consistency)
   ===================================================== */

.awmb-thankyou {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  min-height: calc(100vh - 60px);
  margin-top: 60px;
  display: flex;
  align-items: center;
  padding: 3rem 0;
}

.awmb-thankyou-card {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.awmb-thankyou-header {
  background: var(--success);
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.awmb-thankyou-header svg {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.awmb-thankyou-header h1 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.awmb-thankyou-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.awmb-thankyou-body {
  padding: 2.5rem;
}

.awmb-thankyou-body h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.awmb-thankyou-steps {
  margin-bottom: 2rem;
}

.awmb-thankyou-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.awmb-thankyou-step-num {
  background: var(--navy);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.awmb-thankyou-step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.awmb-thankyou-step-content p {
  color: var(--gray-600);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.awmb-thankyou-important {
  background: #fffbeb;
  border: 1px solid #f59e0b;
  border-radius: 0.5rem;
  padding: 1.25rem;
  margin-bottom: 2rem;
}

.awmb-thankyou-important h4 {
  color: #92400e;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.awmb-thankyou-important p {
  color: #92400e;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.awmb-thankyou-cta {
  text-align: center;
}

.awmb-thankyou-cta .awmb-btn {
  font-size: 1.25rem;
  padding: 1.25rem 2.5rem;
}

.awmb-thankyou-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
  margin-top: 1.5rem;
}

.awmb-thankyou-footer p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.awmb-thankyou-footer a {
  color: var(--gold);
}

/* Utility Classes */
.awmb-text-center { text-align: center; }
.awmb-text-gold { color: var(--gold); }
.awmb-mt-2 { margin-top: 2rem; }
.awmb-mb-2 { margin-bottom: 2rem; }

/* Responsive */
@media (max-width: 768px) {
  .awmb-hero {
    padding: 6rem 0 3rem;
  }
  
  .awmb-hero-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .awmb-nav {
    display: none;
  }
  
  .awmb-package-grid {
    grid-template-columns: 1fr;
  }
  
  .awmb-orderform-header h1 {
    font-size: 1.75rem;
  }
  
  .awmb-form-section {
    padding: 1.5rem;
  }
  
  .awmb-submitted-body,
  .awmb-thankyou-body {
    padding: 1.5rem;
  }
}
