/* Enuclea Custom Global Styles */

/*
 * The "Quiet IT" Design System
 * Originally extracted from email.php, these components provide a calm, clean aesthetic
 * suitable for service landing pages.
 */

.quiet-page { max-width: 1440px; margin: 0 auto; }
.quiet-container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.quiet-section { padding: 52px 0; }
.quiet-section-narrow { padding: 40px 0; }
.quiet-hero { background: linear-gradient(180deg,#ffffff 0%,#f9fafc 100%); border-bottom: 1px solid rgba(0,0,0,0.04); }
.quiet-hero-grid { display: flex; align-items: center; justify-content: center; text-align: center; gap: 40px; }
.quiet-hero-title { font-size: 32px; line-height: 1.3; font-weight: 700; color: #111; margin: 0 0 18px 0; }
.quiet-hero-sub { font-size: 16px; color: #555; line-height: 1.6; margin: 0 0 28px 0; }
.quiet-hero-copy { max-width: 680px; margin: 0 auto; text-align: center; }
.quiet-hero-ctas { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }

.quiet-section h2, .quiet-section h3 { font-size: 24px; font-weight: 700; color: #111; margin: 0 0 16px 0; }
.quiet-lead { font-size: 16px; color: #666; line-height: 1.6; margin: 0 0 12px 0; }
.quiet-body { font-size: 14px; color: #666; line-height: 1.7; margin: 0; }
.quiet-three-grid { display: flex; flex-wrap: wrap; gap: 24px; }
.quiet-card { flex: 1; min-width: 0; background: #fff; border-radius: 10px; border: 1px solid rgba(0,0,0,0.08); padding: 20px 18px; }
.quiet-card h2, .quiet-card h3 { font-size: 18px; margin: 0 0 10px 0; color: #111; }

.quiet-cta-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; }
.quiet-list { font-size: 14px; color: #666; line-height: 1.7; padding-left: 20px; margin: 0 0 12px 0; }
.quiet-checkup-box { background: #ffffff; border-radius: 12px; border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 3px 12px rgba(0,0,0,0.06); padding: 32px 28px; max-width: 720px; margin: 0 auto; text-align: left; }

.cta-primary { display: inline-block; padding: 12px 28px; border-radius: 6px; background: linear-gradient(135deg,#0277BD 0%,#01579B 100%); color: #fff; font-size: 14px; font-weight: 600; text-decoration: none; box-shadow: 0 4px 12px rgba(2,119,189,0.3); transition: all 0.3s ease; }
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(2,119,189,0.4); color: #fff; }
.cta-secondary { display: inline-block; padding: 11px 24px; border-radius: 6px; border: 1px solid #0277BD; background:#ffffff; font-size: 14px; font-weight: 500; color: #0277BD; text-decoration: none; transition: all 0.25s ease; }
.cta-secondary:hover { background:#0277BD; color:#ffffff; text-decoration: none; }

@media (max-width: 768px) {
  .quiet-section { padding: 36px 0; }
  .quiet-hero-grid { flex-direction: column; text-align: center; }
  .quiet-hero-title { font-size: 24px; }
  .quiet-hero-sub { font-size: 14px; }
  .quiet-hero-ctas { justify-content: center; }
}

/* 
 * Glassmorphism Components 
 * Extracted from index.php hero section
 */
.glass-panel {
  background: rgba(20, 25, 35, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  max-width: 1000px;
  margin: 24px auto 0;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.glass-header {
  padding: 28px 40px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.glass-header h2, .glass-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.glass-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.glass-column {
  background: rgba(255, 255, 255, 0.05);
  padding: 28px 24px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease;
  cursor: pointer;
  display: block;
}

.glass-column:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.glass-column h3, .glass-column h4 {
  margin: 0 0 14px 0;
  font-weight: 600;
  color: #fff;
}

.glass-column p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .glass-grid {
    grid-template-columns: 1fr;
  }
}
