/* ========================================
   SOLID ADVISE AG - Homepage Styles
   Long | Colorful | Professional | Modern
   ======================================== */

/* Hero buttons */
.btn-outline-solid {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.8);
}

.btn-outline-solid:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
  transform: translateY(-1px);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Stats Section - More color & life */
.stats-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #0D3B66 0%, #1a5a8a 40%, #2563eb 70%, #0D3B66 100%);
  margin-top: -1px;
}

.stat-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Section header */
.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header .lead {
  max-width: 55ch;
  margin: 0 auto;
}

/* Client Cards - Equal height, more color */
.clients-section .section-header h2 {
  color: #0D3B66;
}

.clients-section .row {
  display: flex;
  flex-wrap: wrap;
}

.clients-section .col-md-6.col-lg-3 {
  display: flex;
}

.client-card-link {
  flex: 1;
  min-width: 0;
}

.client-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e8eaed;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.client-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  transition: height 0.3s ease;
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13,59,102,0.12);
}

.client-card:hover::before { height: 100%; }

.client-card-1::before { background: linear-gradient(180deg, #2563eb, #4F9CF9); }
.client-card-2::before { background: linear-gradient(180deg, #059669, #34d399); }
.client-card-3::before { background: linear-gradient(180deg, #7c3aed, #a78bfa); }
.client-card-4::before { background: linear-gradient(180deg, #d97706, #fbbf24); }

.client-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.client-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #0D3B66;
}

.client-card p {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 0;
  line-height: 1.65;
  flex: 1;
}

.client-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
}

.client-card-link:hover .client-card { transform: translateY(-4px); }

.client-card-cta {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0D3B66;
  margin-top: 1rem;
  transition: transform 0.2s ease;
}

.client-card:hover .client-card-cta { transform: translateX(4px); }

/* Services Preview */
.services-preview .section-header h2 { color: #0D3B66; }

.service-preview-card {
  background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.service-preview-card:hover {
  background: #fff;
  border-color: #2563eb;
  box-shadow: 0 8px 30px rgba(37,99,235,0.12);
}

.service-preview-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #0D3B66;
  margin-bottom: 0.75rem;
}

.service-preview-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: #4b5563;
}

.btn-primary-color {
  background: #0D3B66 !important;
  color: #fff !important;
}

.btn-primary-color:hover {
  background: #1a5a8a !important;
  color: #fff !important;
}

/* Why Choose Us - More color & life */
.section-accent {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 30%, #e0f2fe 60%, #d1fae5 100%);
  padding: 5rem 0;
}

.section-accent .section-header h2 {
  color: #0D3B66;
}

.value-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(13,59,102,0.1);
  transition: all 0.3s ease;
  position: relative;
}

.value-card:hover {
  border-color: #0D3B66;
  box-shadow: 0 10px 40px rgba(13,59,102,0.1);
}

.value-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(13,59,102,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.value-card h4 {
  font-size: 1.1rem;
  color: #0D3B66;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: #4b5563;
  line-height: 1.65;
}

/* About visual - More vivid */
.about-visual {
  background: linear-gradient(135deg, #0D3B66 0%, #1a5a8a 50%, #2563eb 100%);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
}

.about-stat-box {
  padding: 1.5rem;
}

.about-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.about-stat-txt {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}

.about-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin: 1.5rem 0 0 0;
  line-height: 1.5;
}

/* CTA Section - More vivid */
.cta-section {
  background: linear-gradient(135deg, #0D3B66 0%, #1a5a8a 40%, #2563eb 100%);
  padding: 4rem 0;
}

.cta-section h2 {
  color: #fff !important;
  margin-bottom: 0.75rem;
}

.cta-section .lead {
  color: rgba(255,255,255,0.9) !important;
  margin-bottom: 1.5rem;
}

.btn-cta {
  background: #fff !important;
  color: #0D3B66 !important;
}

.btn-cta:hover {
  background: #f0f9ff !important;
  color: #0D3B66 !important;
  transform: translateY(-2px);
}

/* Modern Footer - Equal columns */
.footer-modern {
  background: linear-gradient(180deg, #062a47 0%, #0D3B66 100%);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 2rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 180px;
}

.footer-logo img {
  opacity: 0.95;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
}

.footer-modern h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-modern ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-modern ul li {
  margin-bottom: 0.5rem;
}

.footer-modern ul li a,
.footer-modern a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-modern ul li a:hover,
.footer-modern a:hover {
  color: #fff;
}

.footer-modern p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.5rem;
}

.footer-legal {
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.6) !important;
  margin-top: 0.75rem !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  padding-bottom: 0.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.5;
}

.footer-bottom p a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.footer-bottom p a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom .footer-copyright {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .stat-number { font-size: 1.5rem; }
  .stat-card { padding: 1.25rem; }

  .about-visual {
    margin-top: 1rem;
  }

  .footer-modern {
    padding: 3rem 0 1.5rem;
  }

  .section-header { margin-bottom: 2rem; }
}
