/* ─── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(232,144,26,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

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

.btn-lg { padding: var(--space-4) var(--space-8); font-size: var(--text-base); }

/* ─── Cards ───────────────────────────────────────────────────────────── */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.card-body { padding: var(--space-6); }
.card-title { font-size: var(--text-xl); margin-bottom: var(--space-3); color: var(--color-primary); }
.card-text { color: var(--color-text-light); line-height: 1.7; }

/* ─── Service Cards ───────────────────────────────────────────────────── */
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--color-accent);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.service-card .service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
}
.service-card .service-icon svg { width: 28px; height: 28px; stroke: white; fill: none; }
.service-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.service-card p { color: var(--color-text-light); line-height: 1.7; margin-bottom: var(--space-4); }
.service-card ul { margin-top: var(--space-3); }
.service-card ul li {
  color: var(--color-text-light);
  font-size: var(--text-sm);
  padding: var(--space-1) 0;
  padding-left: var(--space-5);
  position: relative;
}
.service-card ul li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* ─── Stats ───────────────────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--color-primary);
}

.stat-item {
  padding: var(--space-8);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-accent);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── Why-Us Points ──────────────────────────────────────────────────── */
.why-card {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-grey);
}
.why-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(232,144,26,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 24px; height: 24px; stroke: var(--color-accent); fill: none; }
.why-card h3 { font-size: var(--text-base); margin-bottom: var(--space-1); }
.why-card p { font-size: var(--text-sm); color: var(--color-text-light); line-height: 1.6; }

/* ─── CTA Banner ────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: var(--space-16) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { font-size: var(--text-3xl); color: var(--color-white); margin-bottom: var(--space-3); position: relative; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: var(--text-lg); margin-bottom: var(--space-8); position: relative; }
.cta-banner .btn { position: relative; }

/* ─── Forms ───────────────────────────────────────────────────────────── */
.form-group { margin-bottom: var(--space-5); }
.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.form-control {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--color-light-grey);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--color-white);
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.12);
}
textarea.form-control { resize: vertical; min-height: 140px; }

/* ─── Team Cards ─────────────────────────────────────────────────────── */
.team-card {
  text-align: center;
  padding: var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.team-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-4);
  background: var(--color-light-grey);
  display: flex; align-items: center; justify-content: center;
}
.team-photo-placeholder {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  margin: 0 auto var(--space-4);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
}
.team-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-1); }
.team-card .role { color: var(--color-accent); font-size: var(--text-sm); font-weight: 600; margin-bottom: var(--space-3); }
.team-card p { color: var(--color-text-light); font-size: var(--text-sm); line-height: 1.6; }

/* ─── Values ─────────────────────────────────────────────────────────── */
.value-item { text-align: center; padding: var(--space-6); }
.value-number {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 800;
  color: rgba(26,58,92,0.1);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.value-item h3 { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.value-item p { color: var(--color-text-light); line-height: 1.7; }

/* ─── Contact Info ──────────────────────────────────────────────────── */
.contact-info-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-light-grey);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 20px; height: 20px; stroke: white; fill: none; }
.contact-info-label { font-size: var(--text-xs); color: var(--color-text-light); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.contact-info-value { font-weight: 600; color: var(--color-primary); margin-top: 2px; }

/* ─── Page Hero (inner pages) ─────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: calc(var(--nav-height) + var(--space-16)) 0 var(--space-16);
  text-align: center;
}
.page-hero h1 { color: var(--color-white); font-size: var(--text-4xl); margin-bottom: var(--space-3); }
.page-hero p { color: rgba(255,255,255,0.8); font-size: var(--text-lg); max-width: 540px; margin: 0 auto; }

/* ─── Breadcrumb ─────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex; gap: var(--space-2); align-items: center;
  justify-content: center;
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--color-white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ─── Toast notifications ───────────────────────────────────────────── */
.toast-container {
  position: fixed; bottom: var(--space-6); right: var(--space-6);
  z-index: 9999; display: flex; flex-direction: column; gap: var(--space-3);
}
.toast {
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.3s ease;
  max-width: 320px;
}
.toast-success { background: #065f46; color: white; }
.toast-error { background: #991b1b; color: white; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: none; opacity: 1; } }

@media (max-width: 768px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .page-hero h1 { font-size: var(--text-3xl); }
  .cta-banner h2 { font-size: var(--text-2xl); }
}
