/* --- Services --- */
.services {
  padding: 6rem 5%;
  background: var(--off-white);
}
.section-label {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.grid-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(10,22,40,0.1);
  transform: translateY(-2px);
}
.service-icon {
  width: 48px; height: 48px;
  background: rgba(96,165,250,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}
.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* --- Why TechNoma --- */
.why { padding: 6rem 5%; background: var(--white); }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.why-card { text-align:center; padding:2rem; }
.why-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.why-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.why-card p { font-size:0.9rem; color:var(--text-muted); line-height:1.7; }

/* --- Stats --- */
.stats {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--blue);
}
.stat-label { font-size:0.85rem; color:var(--blue-muted); margin-top:0.3rem; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #0A1628 0%, #1D4ED8 100%);
  color: var(--white);
  padding: 5rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(96,165,250,0.12), transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}
.cta-banner p { font-size:1rem; margin-bottom:2rem; opacity:0.75; position: relative; }
.btn-cta {
  background: var(--blue);
  color: var(--navy);
  padding: 0.9rem 2.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: background 0.2s, transform 0.2s;
}
.btn-cta:hover { background: var(--white); transform: translateY(-2px); }
/* keep btn-navy as alias */
.btn-navy {
  background: var(--blue);
  color: var(--navy);
  padding: 0.9rem 2.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.btn-navy:hover { background: var(--white); transform: translateY(-2px); }

@media (max-width: 768px) {
  .grid-3 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .section-title { font-size: 2rem; }
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--blue-muted);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-item .trust-icon { font-size: 1.1rem; }
.trust-item strong { color: var(--white); }
@media (max-width: 600px) {
  .trust-bar { gap: 1.2rem; justify-content: flex-start; padding: 1.2rem 5%; }
}

/* --- Hosting Badge --- */
.hosting-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--blue);
  background: rgba(96,165,250,0.1);
  border: 1px solid rgba(96,165,250,0.25);
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  margin-bottom: 0.8rem;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 5% 4rem;
  border-bottom: 1px solid var(--border);
}
.page-hero .hero-label { margin-bottom: 1rem; }
.page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  max-width: 600px;
  margin-bottom: 1rem;
}
.page-hero h1 span { color: var(--blue); }
.page-hero p {
  font-size: 1rem;
  color: var(--blue-muted);
  max-width: 500px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .page-hero h1 { font-size: 2.2rem; }
}

/* --- About Story --- */
.story {
  padding: 6rem 5%;
  background: var(--white);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.story-text h2 span { color: var(--blue); }
.story-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.story-img {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-img img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-img { height: 200px; }
}

/* --- Mission & Vision --- */
.mission {
  padding: 6rem 5%;
  background: var(--off-white);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.mission-card {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: 12px;
  padding: 2.5rem;
}
.mission-card .badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(96,165,250,0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}
.mission-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.mission-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
}

/* --- Values --- */
.values { padding: 6rem 5%; background: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.value-card {
  border-left: 3px solid var(--blue);
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  background: var(--off-white);
  border-radius: 0 10px 10px 0;
}
.value-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.value-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* --- Team --- */
.team { padding: 6rem 5%; background: var(--off-white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(10,22,40,0.08);
  text-align: center;
  transition: box-shadow 0.2s;
}
.team-card:hover { box-shadow: 0 8px 32px rgba(10,22,40,0.1); }
.team-avatar {
  background: var(--navy);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.team-info { padding: 1.2rem; }
.team-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.team-info span { font-size: 0.8rem; color: var(--blue); }
@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* --- Services Detail (services page) --- */
.services-detail { padding: 6rem 5%; background: var(--white); }
.service-detail-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem;
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s;
}
.service-detail-card:hover { box-shadow: 0 8px 32px rgba(10,22,40,0.08); }
.service-detail-icon {
  width: 60px; height: 60px;
  background: rgba(96,165,250,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.service-detail-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.service-detail-body p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }
@media (max-width: 600px) {
  .service-detail-card { grid-template-columns: 1fr; }
}

/* --- Process --- */
.process { padding: 6rem 5%; background: var(--off-white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  counter-reset: step;
}
.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(10,22,40,0.06);
  position: relative;
}
.process-num {
  width: 48px; height: 48px;
  background: var(--blue);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1.2rem;
}
.process-step h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.process-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 768px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* --- Testimonials --- */
.testimonials {
  padding: 6rem 5%;
  background: var(--navy);
}
.testimonials .section-label { color: var(--blue); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-sub { color: var(--blue-muted); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: background 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
}
.testimonial-stars { color: #FBBF24; font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--blue-muted);
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.9rem; margin-top: auto; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(96,165,250,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.author-info h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}
.author-info span { font-size: 0.8rem; color: var(--blue); }
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; }
}

/* --- Careers --- */
.careers-intro { padding: 6rem 5%; background: var(--white); }
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.perk-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border);
}
.perk-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.perk-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.perk-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

.vacancies { padding: 6rem 5%; background: var(--off-white); }
.vacancy-list { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 3rem; }
.vacancy-card {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  transition: box-shadow 0.2s;
}
.vacancy-card:hover { box-shadow: 0 8px 32px rgba(10,22,40,0.08); }
.vacancy-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.vacancy-meta { display: flex; gap: 1rem; flex-wrap: wrap; }
.vacancy-tag {
  font-size: 0.78rem;
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  background: rgba(96,165,250,0.1);
  color: var(--blue);
  font-weight: 500;
}
.no-vacancy {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px dashed var(--border);
  color: var(--text-muted);
}
.no-vacancy p { font-size: 1rem; margin-top: 0.5rem; }

.apply-section { padding: 6rem 5%; background: var(--white); }
.apply-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .perks-grid { grid-template-columns: 1fr; }
  .vacancy-card { flex-direction: column; align-items: flex-start; }
  .apply-grid { grid-template-columns: 1fr; }
}

/* --- Pricing --- */
.pricing-section { padding: 6rem 5%; background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}
.pricing-card {
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(10,22,40,0.1);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(10,22,40,0.1); }
.pricing-card.popular {
  background: var(--navy);
  border-color: var(--blue);
  box-shadow: 0 8px 40px rgba(96,165,250,0.15);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-plan {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.2rem;
}
.pricing-card.popular .pricing-plan { color: var(--white); }
.pricing-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.pricing-card.popular .pricing-amount { color: var(--blue); }
.pricing-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.pricing-card.popular .pricing-note { color: var(--blue-muted); }
.pricing-hosting {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(10,22,40,0.08);
}
.pricing-card.popular .pricing-hosting {
  color: var(--blue);
  border-bottom-color: var(--border);
}
.pricing-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.pricing-card.popular .pricing-features li { color: var(--blue-muted); }
.pricing-features li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(96,165,250,0.1);
  color: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card .btn-primary { width: 100%; text-align: center; }
.pricing-card.popular .btn-primary { background: var(--blue); }
.pricing-card.popular .btn-primary:hover { background: var(--white); }
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card.popular { transform: none; }
}

/* --- Portfolio --- */
.portfolio-section { padding: 6rem 5%; background: var(--white); }
.portfolio-filters {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  background: var(--off-white);
  border: 1px solid rgba(10,22,40,0.1);
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.portfolio-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(10,22,40,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
  background: var(--white);
}
.portfolio-card:hover {
  box-shadow: 0 12px 40px rgba(10,22,40,0.12);
  transform: translateY(-4px);
}
.portfolio-thumb {
  height: 200px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}
.portfolio-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(96,165,250,0.15), transparent);
}
.portfolio-body { padding: 1.5rem; }
.portfolio-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--blue);
  background: rgba(96,165,250,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.7rem;
}
.portfolio-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.portfolio-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* --- FAQ --- */
.faq-section { padding: 6rem 5%; background: var(--white); }
.faq-list { max-width: 760px; margin: 3rem auto 0; }
.faq-item {
  border-bottom: 1px solid rgba(10,22,40,0.08);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.4rem 0;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  font-size: 1.2rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-bottom: 0;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.4rem;
}

/* --- Contact --- */
.contact-section { padding: 6rem 5%; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}
.form-group label .required { color: #ef4444; margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(10,22,40,0.15);
  border-radius: 8px;
  outline: none;
  background: var(--white);
  color: var(--navy);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.info-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-icon {
  width: 44px; height: 44px;
  background: rgba(96,165,250,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.info-body h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.info-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}
