/* Component Styles - Reusable Components */

/* Unified CTA Button System */
.cta, .primary-cta, .secondary-cta, .service-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.cta, .primary-cta {
  background: linear-gradient(135deg, #2f4a59 0%, #1e3540 100%);
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(47, 74, 89, 0.2);
  border: none;
}

.secondary-cta, .service-learn-more {
  background: transparent;
  color: #2f4a59;
  border: 2px solid #2f4a59;
  padding: 18px 38px;
  box-shadow: none;
  font-weight: 700;
}

.cta:hover, .primary-cta:hover {
  background: linear-gradient(135deg, #1e3540 0%, #14262e 100%);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(47, 74, 89, 0.25);
  text-decoration: none;
}

.secondary-cta:hover, .service-learn-more:hover {
  background: linear-gradient(135deg, #2f4a59 0%, #1e3540 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(47, 74, 89, 0.25);
  text-decoration: none;
  border-color: #2f4a59;
}

.cta i, .primary-cta i, .secondary-cta i, .service-learn-more i {
  transition: transform 0.2s ease;
}

.cta:hover i, .primary-cta:hover i, .secondary-cta:hover i, .service-learn-more:hover i {
  transform: translateX(4px);
}

/* Cards */
.card { 
  background: #fff; 
  border: 1px solid #e2e8f0; 
  border-radius: 16px; 
  padding: 40px; 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
  border-color: #cbd5e1;
}

.card h3 { 
  margin: 0 0 16px; 
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.card p { 
  margin: 0; 
  color: #64748b; 
  line-height: 1.75;
  font-size: 17px;
}

/* Grid Systems */
.grid-3 { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px; 
}

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

/* Services Section Redesign */
.services-main-title { 
  font-size: clamp(32px, 4vw, 48px); 
  color: var(--brand); 
  text-align: center; 
  margin: 0 0 16px; 
  font-weight: 700; 
}

.services-subtitle { 
  font-size: clamp(16px, 2.5vw, 20px); 
  color: var(--muted); 
  text-align: center; 
  max-width: 800px; 
  margin: 0 auto 48px; 
  line-height: 1.6; 
}

.services-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 32px; 
  margin-bottom: 48px; 
}

.service-card { 
  background: #fff; 
  border: 1px solid #e2e8f0; 
  border-radius: 16px; 
  padding: 48px 32px; 
  text-align: center; 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #2f4a59 0%, #1e3540 100%);
  transition: width 0.4s ease;
}

.service-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 24px 48px rgba(0,0,0,0.12); 
  border-color: #cbd5e1;
}

.service-card:hover::after {
  width: 100%;
}

.service-icon-large { 
  width: 88px; 
  height: 88px; 
  background: linear-gradient(135deg, #2f4a59 0%, #1e3540 100%); 
  border-radius: 20px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin: 0 auto 28px; 
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon-large {
  transform: scale(1.1) rotate(5deg);
}

.service-icon-large i { 
  color: white; 
  font-size: 40px; 
}

.service-card h3 { 
  color: #0f172a; 
  font-size: clamp(22px, 2.5vw, 26px); 
  margin: 0 0 20px; 
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.service-card p { 
  color: #64748b; 
  margin: 0 0 24px; 
  line-height: 1.75;
  font-size: 17px;
}

.service-features { 
  list-style: none; 
  padding: 0; 
  margin: 0 0 24px; 
  text-align: left; 
}

.service-features li { 
  color: var(--text); 
  padding: 6px 0; 
  position: relative; 
  padding-left: 20px; 
}

.service-features li:before { 
  content: '•'; 
  color: #f97316; 
  font-weight: bold; 
  position: absolute; 
  left: 0; 
}


.services-cta { 
  text-align: center; 
}


@media (max-width: 968px) { 
  .services-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 24px; 
  } 
}

@media (max-width: 640px) { 
  .services-grid { 
    grid-template-columns: 1fr; 
    gap: 20px; 
  } 
  .service-card { 
    padding: 20px; 
  } 
}

/* Trust Indicators Section */
#trust-indicators { 
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%); 
}

.trust-title { 
  font-size: clamp(28px, 4vw, 42px); 
  color: var(--brand); 
  text-align: center; 
  margin: 0 0 16px; 
  font-weight: 700; 
}

.trust-subtitle { 
  font-size: clamp(16px, 2.5vw, 18px); 
  color: var(--muted); 
  text-align: center; 
  max-width: 700px; 
  margin: 0 auto 48px; 
  line-height: 1.6; 
}

.stats-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 32px; 
  margin-bottom: 48px;
}

.stat-card { 
  background: #fff; 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  padding: 24px; 
  text-align: center; 
  box-shadow: var(--shadow); 
}

.stat-icon { 
  width: 60px; 
  height: 60px; 
  background: #f97316; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin: 0 auto 20px; 
}

.stat-icon i { 
  color: white; 
  font-size: 28px; 
}

.stat-number { 
  font-size: clamp(32px, 4vw, 48px); 
  font-weight: 700; 
  color: var(--brand); 
  margin-bottom: 8px; 
}

.stat-label { 
  font-size: 18px; 
  font-weight: 600; 
  color: var(--text); 
  margin-bottom: 4px; 
}

.stat-desc { 
  font-size: 14px; 
  color: var(--muted); 
}

/* Value Propositions */
.value-props-section {
  margin-top: 48px;
}

.value-prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-prop {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon i {
  color: white;
  font-size: 28px;
}

.value-prop h3 {
  color: var(--brand);
  font-size: 20px;
  margin: 0 0 12px;
  font-weight: 600;
}

.value-prop p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 968px) { 
  .stats-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 24px; 
  } 
  .value-prop-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) { 
  .stats-grid { 
    grid-template-columns: 1fr; 
    gap: 20px; 
  } 
  .stat-card { 
    padding: 20px; 
  } 
  .value-prop {
    padding: 24px 20px;
  }
}

/* Project Cards */
.project-card { 
  display: flex; 
  align-items: flex-start; 
  gap: 16px; 
}

.project-thumbnail { 
  flex-shrink: 0; 
  width: 60px; 
  height: 60px; 
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%); 
  border-radius: 12px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}

.project-icon { 
  color: white; 
  font-size: 24px; 
}

.project-content { 
  flex: 1; 
}

.project-content h3 { 
  margin: 0 0 8px; 
}

.project-content p { 
  margin: 0; 
}

/* Mobile Sticky CTA */
.mobile-sticky-cta { 
  display: none; 
  position: fixed; 
  bottom: 20px; 
  left: 20px; 
  z-index: 100; 
  background: var(--brand); 
  padding: 8px 16px; 
  border-radius: 25px; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.15); 
  transition: all 0.3s ease;
}

.mobile-sticky-cta:hover {
  background: var(--brand-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

.mobile-sticky-cta a { 
  color: #fff; 
  font-weight: var(--font-semibold); 
  text-align: center; 
  display: block; 
  font-size: var(--text-sm); 
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 768px) { 
  .mobile-sticky-cta { 
    display: block; 
  } 
}

@media (max-width: 480px) {
  .mobile-sticky-cta {
    bottom: 15px;
    left: 15px;
    padding: 6px 12px;
  }
  
  .mobile-sticky-cta a {
    font-size: var(--text-xs);
  }
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 90;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 20px;
}

.fab[href*="tel"] {
  background: #10b981;
  color: white;
}

.fab.back-to-top {
  background: var(--brand);
  color: white;
}

.fab:hover {
  transform: scale(1.1);
  text-decoration: none;
}
