/* ── ABOUT ── */
.about-hero { background: var(--off-white); padding: 120px 5% 80px; }
.about-hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-hero h1 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.about-hero p  { font-size: 1rem; color: var(--text-light); line-height: 1.75; margin-bottom: 16px; }
.about-img-mock {
  border-radius: 20px; background: var(--navy); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-img-mock::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad); opacity: 0.85;
}
.about-img-inner { position: relative; z-index: 1; text-align: center; }
.about-img-inner svg { width: 100px; height: 100px; opacity: 0.9; }
.about-img-caption {
  color: white; font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 1.1rem; margin-top: 16px; opacity: 0.9;
}

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.value-card {
  text-align: center; padding: 32px 24px;
  background: white; border-radius: var(--radius);
  border: 1px solid var(--light-grey);
  transition: transform 0.25s, box-shadow 0.25s;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.value-icon  { font-size: 2rem; margin-bottom: 16px; }
.value-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p  { font-size: 0.83rem; color: var(--text-light); line-height: 1.65; }

.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px;
}
.team-card {
  text-align: center; padding: 32px 20px;
  background: white; border-radius: var(--radius);
  border: 1px solid var(--light-grey); transition: box-shadow 0.25s;
}
.team-card:hover { box-shadow: var(--shadow-sm); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--grad); margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.4rem; color: white;
}
.team-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card p  { font-size: 0.8rem; color: var(--teal); font-weight: 500; }

/* ── SERVICES ── */
.services-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0e3060 100%);
  padding: 140px 5% 90px; position: relative; overflow: hidden;
}
.services-hero::before {
  content: ''; position: absolute; top: -40%; right: -5%; width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(10,181,200,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.services-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.services-hero .section-label { color: var(--teal-light); }
.services-hero h1 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; color: white; margin-bottom: 16px; }
.services-hero p  { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 560px; }

.services-detail-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.service-detail-card {
  background: white; border-radius: var(--radius);
  padding: 36px; border: 1px solid var(--light-grey);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.service-detail-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-md);
  border-color: rgba(10,181,200,0.3);
}
.service-detail-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-detail-card > p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-features li {
  font-size: 0.83rem; color: var(--text-light);
  display: flex; align-items: center; gap: 8px;
}
.service-features li::before { content: '→'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ── PROJECTS ── */
.projects-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px;
}
.project-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--light-grey); overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.project-card-top {
  height: 180px; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.project-card-top::after {
  content: ''; position: absolute; inset: 0;
  background: var(--grad); opacity: 0.7;
}
.project-card-top span { position: relative; z-index: 1; }
.project-card-body { padding: 24px; }
.project-tag {
  display: inline-block; padding: 4px 10px; border-radius: 100px;
  background: rgba(10,181,200,0.1); color: var(--teal);
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.04em; margin-bottom: 12px;
}
.project-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.project-card p  { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }
.project-metrics {
  padding: 10px 14px; border-radius: 8px;
  background: var(--off-white); font-size: 0.78rem;
  font-family: 'Outfit', sans-serif; font-weight: 600; color: var(--blue);
}

/* ── CONTACT ── */
.contact-hero { background: var(--off-white); padding: 120px 5% 80px; }
.contact-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start;
}
.contact-info h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.contact-info > p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; margin-bottom: 40px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.contact-item p  { font-size: 0.83rem; color: var(--text-light); }

.contact-form {
  background: white; border-radius: 20px;
  padding: 40px; box-shadow: var(--shadow-md);
  border: 1px solid var(--light-grey);
}
.contact-form h3 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border-radius: 9px;
  border: 1.5px solid var(--light-grey);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--text);
  background: white; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10,181,200,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select   { cursor: pointer; }
.form-submit {
  width: 100%; padding: 14px; border-radius: 9px;
  background: var(--grad); color: white; border: none;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem;
  cursor: pointer; box-shadow: 0 6px 24px rgba(10,181,200,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(10,181,200,0.4); }
.form-submit:disabled {
  cursor: wait;
  opacity: 0.8;
  transform: none;
  box-shadow: 0 6px 24px rgba(10,181,200,0.2);
}
.form-feedback {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-feedback.show { display: block; }
.form-feedback.success {
  background: rgba(21, 128, 61, 0.08);
  color: #166534;
  border: 1px solid rgba(21, 128, 61, 0.18);
}
.form-feedback.error {
  background: rgba(185, 28, 28, 0.08);
  color: #b91c1c;
  border: 1px solid rgba(185, 28, 28, 0.18);
}
