/* ==========================================================================
   styleabout.css
   ========================================================================== */

/* ── Import and Variables ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --primary:   #003366;
  --accent:    #FFCC00;
  --accent-d:  #e6b800;
  --light-bg:  #f9f9f9;
  --text-main: #333;
  --text-sec:  #555;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: #fff;
  margin: 0;
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.contact-hero {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.contact-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}
.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}
.contact-hero .btn-order {
  background: var(--accent);
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.3s;
}
.contact-hero .btn-order:hover {
  background: var(--accent-d);
}

/* ── ABOUT SECTIONS ───────────────────────────────────────────────────────── */
.about-section {
  padding: 3rem 20px;
}
.about-section.bg-light {
  background: var(--light-bg);
}
.about-section h2 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 2rem;
}
.about-section p {
  color: var(--text-sec);
  line-height: 1.7;
  font-size: 1rem;
}

/* ── VALUE CARDS ──────────────────────────────────────────────────────────── */
.value-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  padding: 2rem 1rem;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.value-card h5 {
  margin: 0.5rem 0 0.75rem;
  color: var(--primary);
  font-size: 1.25rem;
}
.value-card p {
  color: var(--text-sec);
  font-size: 0.95rem;
}

/* ── CALL TO ACTION ───────────────────────────────────────────────────────── */
.about-section.text-center .btn-order {
  margin-top: 1rem;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .contact-hero h1 { font-size: 2.2rem; }
  .contact-hero p  { font-size: 1rem; }
  .about-section h2 { font-size: 1.6rem; }
  .about-section p  { font-size: 0.95rem; }
}
