/* Theme 1: Modern Blue - Clean and Professional */
.template-theme-1 {
  --brand-primary: #6FE3FF;
  --brand-secondary: #000000;
  --brand-accent: #FFD93D;
  --brand-dark: #1A1A2E;
  --brand-light: #16213E;
  --brand-success: #4ADE80;
  --brand-warning: #FBBF24;
  --brand-error: #EF4444;
  --brand-info: #3B82F6;
  --brand-heroTextColor: #000000;
  --brand-heroSubtitleColor: #000000;
  --bg: #F8FAFC; /* Very Light Gray */
  --bg-light: #E2E8F0; /* Light Gray */
  --bg-card: #FFFFFF; /* White */
  --ink: #1E293B; /* Dark Gray */
  --ink-dark: #475569; /* Medium Gray */
}

/* .header-theme-1 {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  box-shadow: 0 4px 6px rgba(59, 130, 246, 0.1);
  border-bottom: 3px solid var(--brand-accent);
}

.header-theme-1 .logo {
  color: white;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-theme-1 .logo:hover {
  color: var(--brand-accent);
}

.header-theme-1 nav a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: all 0.3s ease;
}

.header-theme-1 nav a:hover {
  color: var(--brand-accent);
  transform: translateY(-1px);
} */

/* .main-theme-1 {
  background: var(--bg);
  min-height: calc(100vh - 200px);
} */

/* .footer-theme-1 {
  background: var(--brand-secondary);
  color: rgba(255, 255, 255, 0.8);
  border-top: 3px solid var(--brand-accent);
} */

.hero-section {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-title {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;

  color: #000000;}

.hero-subtitle {
  position: relative;
  z-index: 1;

  color: #000000;}

.cta-card {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border: 2px solid var(--brand-accent);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.cta-card .btn {
  background: white;
  color: var(--brand-primary);
  border: 2px solid white;
  font-weight: 600;
}

.cta-card .btn:hover {
  background: var(--brand-accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.card h2::before {
  content: '💎';
  margin-right: 8px;
}

.fact-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(30, 64, 175, 0.1));
  border-left: 4px solid var(--brand-primary);
}

.comparison-table th {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: white;
}

.comparison-table .highlight {
  background: rgba(59, 130, 246, 0.1);
  color: var(--brand-primary);
  font-weight: 600;
}

.faq-question {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: white;
}

.faq-question:hover {
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
}
