/* ==========================================================================
   The Marketing Goddess LLC - Modern Design System & Stylesheet
   ========================================================================== */

:root {
  --primary: #d1147f;
  --primary-hover: #b00f6b;
  --primary-dark: #880e4f;
  --primary-light: #fbe4f1;
  --primary-glow: rgba(209, 20, 127, 0.25);
  
  --secondary: #1f1b2e;
  --secondary-light: #2c2740;
  
  --accent-gold: #f59e0b;
  --accent-gold-hover: #d97706;
  
  --dark: #121118;
  --dark-surface: #1e1b26;
  --dark-border: #332d42;
  
  --text-main: #1f2937;
  --text-muted: #4b5563;
  --text-light: #9ca3af;
  --text-white: #ffffff;
  
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-alt: #f1f5f9;
  --border-light: #e2e8f0;
  
  --font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 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);
  --shadow-pink: 0 10px 25px -5px rgba(209, 20, 127, 0.3);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-fluid {
  width: 100%;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-muted);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-white { color: var(--text-white) !important; }
.text-primary { color: var(--primary) !important; }
.text-muted { color: var(--text-muted) !important; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #e91e63);
  color: #fff;
  box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover), #d81b60);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(209, 20, 127, 0.4);
}

.btn-secondary {
  background-color: var(--secondary);
  color: #fff;
}

.btn-secondary:hover {
  background-color: var(--secondary-light);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: #fff;
}

.btn-outline-white {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--secondary);
}

.btn-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.95rem 2.2rem;
  font-size: 1.05rem;
}

/* Top Bar */
.top-bar {
  background-color: var(--dark);
  color: var(--text-light);
  font-size: 0.875rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--dark-border);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-contacts {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-contacts a {
  color: #f1f5f9;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.top-bar-contacts a:hover {
  color: #ff80c5;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-badge {
  background: linear-gradient(135deg, var(--primary), #9c27b0);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.top-bar-upload {
  color: #ffd54f;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-bar-upload:hover {
  color: #ffffff;
}

/* Navigation Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid #f1f5f9;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-emblem {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #d1147f 0%, #880e4f 50%, #4a148c 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd54f;
  box-shadow: 0 4px 12px rgba(209, 20, 127, 0.3);
  flex-shrink: 0;
}

.brand-emblem svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.brand-title {
  display: flex;
  flex-direction: column;
}

.brand-title span:first-child {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.brand-title span:last-child {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.75rem;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background-color: var(--primary-light);
}

.nav-link.upload-nav-link {
  color: #880e4f;
  background: #fdf2f8;
  border: 1px solid #fbcfe8;
}

.nav-link.upload-nav-link:hover, .nav-link.upload-nav-link.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--secondary);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #181424 0%, #281530 50%, #3e1034 100%);
  color: #ffffff;
  padding: 5rem 0 6rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(209, 20, 127, 0.3) 0%, rgba(209, 20, 127, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(209, 20, 127, 0.2);
  border: 1px solid rgba(209, 20, 127, 0.4);
  color: #ff80c5;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

.hero-title .highlight {
  background: linear-gradient(120deg, #ff4081, #ffab40);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: #e2e8f0;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ff80c5;
}

.stat-label {
  font-size: 0.85rem;
  color: #cbd5e1;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-card-title {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.hero-card-subtitle {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Quick Quote Mini Form */
.quick-form .form-group {
  margin-bottom: 1rem;
}

.quick-form input,
.quick-form select,
.quick-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-main);
  font-family: inherit;
  transition: var(--transition);
}

.quick-form input:focus,
.quick-form select:focus,
.quick-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

/* Page Banner */
.page-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, #3d143c 100%);
  color: #fff;
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
}

.page-banner h1 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.page-banner p {
  color: #cbd5e1;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Section Common */
.section {
  padding: 5rem 0;
}

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

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Service Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(209, 20, 127, 0.3);
}

.card-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.card-img-wrapper img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.card-features {
  margin-bottom: 1.5rem;
}

.card-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.card-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Feature Showcase / 2-Column Sections */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.feature-split.reverse {
  direction: rtl;
}

.feature-split.reverse .feature-content {
  direction: ltr;
}

.feature-split.reverse .feature-visual {
  direction: ltr;
}

.feature-content h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.feature-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.feature-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #ffffff;
  padding: 1rem;
  display: flex;
  justify-content: center;
}

.feature-visual img {
  max-height: 380px;
  width: auto;
  border-radius: var(--radius-md);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.value-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(209, 20, 127, 0.3);
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Drag & Drop File Upload Zone */
.upload-dropzone {
  border: 2.5px dashed #cbd5e1;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  margin-bottom: 1.5rem;
}

.upload-dropzone:hover, .upload-dropzone.dragover {
  border-color: var(--primary);
  background: #fdf2f8;
}

.upload-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.upload-dropzone h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: var(--secondary);
}

.upload-dropzone p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.upload-file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-preview-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}

.file-item-name {
  font-weight: 600;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.file-item-size {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.file-item-remove {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Upload Instructions Specs Box */
.specs-box {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.specs-box h4 {
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.specs-box ul li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.25rem;
}

.specs-box ul li::before {
  content: '•';
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Package Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 2.25rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-pink);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card ul {
  text-align: left;
  margin: 1.5rem 0 2rem;
  flex: 1;
}

.pricing-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

/* Portfolio Gallery */
.filter-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 27, 46, 0.9) 0%, rgba(31, 27, 46, 0.2) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.gallery-category {
  color: #ff80c5;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.1rem;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #a00d60 100%);
  color: #ffffff;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: #fbe4f1;
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 2rem;
}

/* Contact Page / Full Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
}

.contact-info-card {
  background: var(--secondary);
  color: #ffffff;
  padding: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-card h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-methods {
  margin: 2rem 0;
}

.contact-method-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(209, 20, 127, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff80c5;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h4 {
  color: #ffffff;
  font-size: 1rem;
}

.contact-details p, .contact-details a {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-details a:hover {
  color: #ff80c5;
}

.form-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-main);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

/* Brands Slider / Logos */
.brands-strip {
  background: #ffffff;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.brands-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.brand-pill {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.brand-pill:hover {
  color: var(--primary);
}

/* Footer */
.main-footer {
  background-color: var(--dark);
  color: #cbd5e1;
  padding: 5rem 0 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--text-light);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--dark-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Modal / Lightbox */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  max-width: 800px;
  max-height: 90vh;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.modal-content img {
  max-height: 70vh;
  width: auto;
  margin: 0 auto;
}

.modal-caption {
  padding: 1.5rem;
  background: #ffffff;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Alert Notification */
.form-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid,
  .feature-split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .feature-split.reverse {
    direction: ltr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .nav-menu {
    position: fixed;
    top: 84px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 84px);
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-xl);
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .nav-item {
    width: 100%;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-cta {
    margin-top: 1rem;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   Header Logo Image & Nav Highlight
   ========================================================================== */
.header-logo-img {
  height: 52px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.brand-logo:hover .header-logo-img {
  transform: scale(1.04);
}

.nav-highlight {
  color: var(--primary) !important;
  font-weight: 700 !important;
  position: relative;
}

.nav-highlight::after {
  content: '★';
  font-size: 0.65rem;
  color: #f472b6;
  position: absolute;
  top: 4px;
  right: -2px;
}

/* ==========================================================================
   Dressed-Up Premium Action Buttons (Pinks, Purples & Blues - NO ORANGE)
   ========================================================================== */
.btn-dressed-up {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.15rem 2.25rem;
  min-height: 58px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #ffffff !important;
  background: linear-gradient(135deg, #d1147f 0%, #9c27b0 50%, #4a148c 100%);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(209, 20, 127, 0.45), 0 0 20px rgba(156, 39, 176, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

.btn-dressed-up::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: 0.5s;
}

.btn-dressed-up:hover::before {
  left: 100%;
}

.btn-dressed-up:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 40px rgba(209, 20, 127, 0.6), 0 0 30px rgba(244, 114, 182, 0.5);
  border-color: #f472b6;
  color: #ffffff !important;
}

.btn-dressed-blue {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.45), 0 0 20px rgba(6, 182, 212, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

.btn-dressed-blue:hover {
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.65), 0 0 30px rgba(56, 189, 248, 0.6);
  border-color: #38bdf8;
  color: #ffffff !important;
}

/* ==========================================================================
   PAGE BANNERS & HERO HEADERS - HIGH CONTRAST DARK GRADIENT
   ========================================================================== */
.page-banner,
.packages-hero,
header.packages-hero,
div.page-banner {
  background: linear-gradient(135deg, #181524 0%, #2f173b 50%, #151122 100%) !important;
  color: #ffffff !important;
  padding: 4.5rem 0 3.5rem !important;
  text-align: center !important;
  position: relative !important;
}

.page-banner h1,
.packages-hero h1,
.page-banner h2,
.packages-hero h2 {
  color: #ffffff !important;
  margin-bottom: 0.75rem !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
}

.page-banner p,
.packages-hero p {
  color: #e2e8f0 !important;
  font-size: 1.15rem !important;
  max-width: 800px !important;
  margin: 0 auto !important;
  line-height: 1.6 !important;
}

.page-banner .hero-tag,
.packages-hero .hero-tag {
  background: rgba(209, 20, 127, 0.35) !important;
  color: #fbcfe8 !important;
  border: 1px solid rgba(244, 114, 182, 0.5) !important;
  font-weight: 700 !important;
  display: inline-block !important;
  padding: 6px 16px !important;
  border-radius: 30px !important;
  font-size: 0.85rem !important;
  margin-bottom: 1rem !important;
  letter-spacing: 1px !important;
}

/* ==========================================================================
   PACKAGES PAGE - 3 NEAT DISTINCT COLUMNS & DETAILED PRICING CARDS
   ========================================================================== */
.tax-notice-pill {
  margin-top: 1.25rem;
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  color: #10b981;
}

.pricing-grid-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  margin: 2.5rem 0;
}

@media (max-width: 1024px) {
  .pricing-grid-packages {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

.package-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.package-card.featured {
  border: 2.5px solid var(--primary);
  box-shadow: 0 12px 35px rgba(209, 20, 127, 0.25);
  background: #ffffff;
}

.package-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d1147f, #9c27b0);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(209, 20, 127, 0.4);
  white-space: nowrap;
}

.package-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.package-num {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.35rem;
}

.package-title {
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
}

.package-price-wrap {
  margin-bottom: 0.75rem;
}

.package-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary);
  font-family: var(--font-heading);
  line-height: 1;
}

.currency {
  font-size: 1.6rem;
  vertical-align: super;
  font-weight: 700;
  color: var(--primary);
}

.package-deposit-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
}

.package-items-list {
  list-style: none;
  margin: 1.25rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.package-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.package-item-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(209, 20, 127, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.package-item-content {
  flex: 1;
}

.package-item-title {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--secondary);
  margin-bottom: 3px;
}

.package-item-val {
  float: right;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
}

.package-item-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.package-card-notes {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 1.25rem 0;
  line-height: 1.55;
}

.package-cta {
  margin-top: 1rem;
}

.package-cta .btn {
  width: 100%;
  text-align: center;
}

/* Brand Refresh Box */
.refresh-box {
  background: linear-gradient(135deg, #181524 0%, #291d36 100%);
  border: 2px solid rgba(209, 20, 127, 0.4);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
}

.refresh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
  margin: 2.25rem 0;
}

.refresh-feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.refresh-feature h4 {
  color: #f472b6;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.refresh-feature p {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   BUSINESS CARDS SHAPES & LIVE CONFIGURATOR
   ========================================================================== */
.shapes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.75rem;
  margin: 2.5rem 0;
}

.shape-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shape-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.shape-visual-box {
  width: 120px;
  height: 80px;
  background: linear-gradient(135deg, #1f1b2e 0%, #3a1542 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.shape-card:hover .shape-visual-box {
  transform: scale(1.08);
}

.shape-circle { width: 90px; height: 90px; border-radius: 50%; }
.shape-standard { border-radius: 4px; }
.shape-rounded { border-radius: 16px; }
.shape-slim { width: 130px; height: 60px; border-radius: 4px; }
.shape-square { width: 85px; height: 85px; border-radius: 4px; }
.shape-halfcircle { border-radius: 50px 50px 4px 4px; }
.shape-oval { border-radius: 50%; width: 120px; height: 75px; }
.shape-leaf { border-radius: 28px 4px 28px 4px; }
.shape-folded { border-radius: 4px; border-left: 3px dashed rgba(255,255,255,0.4); }
.shape-wink { border-radius: 4px 28px 4px 4px; }

.shape-title {
  font-size: 1.15rem;
  color: var(--secondary);
  margin-bottom: 0.4rem;
}

.shape-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 0.75rem;
  flex: 1;
}

.shape-size-tag {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.store-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .store-grid-layout {
    grid-template-columns: 1fr;
  }
}

.store-main-stage {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  min-height: 340px;
}

.live-card-mockup {
  width: 280px;
  height: 160px;
  background: linear-gradient(135deg, #1f1b2e 0%, #31103f 100%);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.live-card-mockup.is-circle { width: 200px; height: 200px; border-radius: 50%; }
.live-card-mockup.is-standard { border-radius: 6px; }
.live-card-mockup.is-rounded { border-radius: 24px; }
.live-card-mockup.is-slim { width: 310px; height: 130px; }
.live-card-mockup.is-square { width: 200px; height: 200px; }
.live-card-mockup.is-halfcircle { border-radius: 100px 100px 6px 6px; }
.live-card-mockup.is-oval { width: 260px; height: 170px; border-radius: 50%; }
.live-card-mockup.is-leaf { border-radius: 50px 6px 50px 6px; }
.live-card-mockup.is-folded { border-left: 4px dashed rgba(255,255,255,0.4); }
.live-card-mockup.is-wink { border-radius: 6px 50px 6px 6px; }

.mockup-emblem {
  height: 38px;
  width: auto;
  margin-bottom: 0.5rem;
}

.mockup-brand-text {
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}

.mockup-sub-text {
  font-size: 0.8rem;
  color: #f472b6;
  margin-bottom: 0.35rem;
}

.mockup-contact-line {
  font-size: 0.72rem;
  color: #cbd5e1;
}

.store-field-row {
  margin-bottom: 1.25rem;
}

.store-field-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--secondary);
  margin-bottom: 0.4rem;
}

.store-field-check {
  color: #10b981;
  font-weight: 900;
}

.store-select-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text-main);
  font-size: 0.95rem;
  transition: var(--transition);
}

.store-select-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

/* ==========================================================================
   BLOG HUB & ARTICLES STYLING
   ========================================================================== */
.blog-layout {
  display: grid;
  grid-template-columns: 2.3fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 992px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.blog-card-img-wrap {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #1f1b2e 0%, #3a1542 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img-wrap img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  line-height: 1.35;
  font-weight: 700;
}

.blog-card-title a {
  color: var(--secondary);
}

.blog-card-title a:hover {
  color: var(--primary);
}

.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.blog-card-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-light);
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-title {
  font-size: 1.15rem;
  color: var(--secondary);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
  font-weight: 700;
}

.sidebar-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background: var(--primary);
}

.recent-post-link {
  display: block;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.4;
  transition: var(--transition);
}

.recent-post-link:last-child {
  border-bottom: none;
}

.recent-post-link:hover {
  color: var(--primary);
  padding-left: 4px;
}

.recent-post-date {
  font-size: 0.78rem;
  color: var(--text-light);
  display: block;
  margin-top: 2px;
  font-weight: 400;
}

/* 5-Step Process Grid */
.steps-5-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.step-box-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-box-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.step-num-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #9c27b0 100%);
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(209, 20, 127, 0.35);
}

.step-box-card h3 {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 0.65rem;
  font-weight: 700;
}

.step-box-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Level Up Spotlight Banner */
.levelup-spotlight {
  background: linear-gradient(135deg, #0d1322 0%, #172554 50%, #1e1b4b 100%);
  border: 2px solid #3b82f6;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(30, 58, 138, 0.35);
  margin: 3rem 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* Sample Order Forms with Red SAMPLE Ribbon */
.sample-form-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.sample-form-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.sample-image-wrap {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.sample-image-wrap img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.sample-form-card:hover .sample-image-wrap img {
  transform: scale(1.02);
}

.sample-ribbon-tag {
  position: absolute;
  top: 30px;
  left: -40px;
  width: 170px;
  background: rgba(220, 38, 38, 0.95);
  color: #ffffff;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  transform: rotate(-45deg);
  padding: 6px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  z-index: 10;
  pointer-events: none;
}

.sample-caption {
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sample-caption h4 {
  color: var(--secondary);
  font-size: 1.1rem;
  margin: 0;
}

.sample-caption span {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 992px) {
  .levelup-spotlight {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
