/* ============================================================
   about.css — About Us page
   Load after slp-critical.css + slp-deferred.css
   ============================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #4a0072 0%, #3a005a 50%, #9821c8 100%);
  background-color: #4a0072;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-yellow {
  color: #ffd54f;
}

.text-purple {
  color: #4a0072;
}

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

/* --- HERO --- */
.page-hero {
  background: linear-gradient(rgba(74, 0, 114, 0.9), rgba(152, 33, 200, 0.8)), url('../../photos/hero-about.webp');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
  color: white;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.page-hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* --- SECTIONS (purple page, light cards) --- */
.about-section {
  padding: 60px 0;
  background: transparent;
}

.about-section--alt {
  background: rgba(0, 0, 0, 0.12);
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #ffd54f;
  margin-bottom: 12px;
  font-weight: 800;
}

.section-head p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.7;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.about-text {
  flex: 2;
  min-width: 300px;
}

.about-card {
  background: rgba(255, 255, 255, 0.96);
  padding: 30px;
  border-radius: 12px;
  border-left: 5px solid #ffd54f;
  margin-bottom: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.about-card h3 {
  color: #4a0072;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
}

.about-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Mission values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.value-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 213, 79, 0.25);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}

.value-card .value-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.value-card h3 {
  color: #ffd54f;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}

.value-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.65;
}

/* What we ship */
.ship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.ship-card {
  display: block;
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  text-decoration: none;
  color: #333;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  border-bottom: 4px solid #ffd54f;
}

.ship-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.ship-card .ship-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}

.ship-card h3 {
  color: #4a0072;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ship-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}

.ship-card .ship-link {
  font-size: 13px;
  font-weight: 700;
  color: #9821c8;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 213, 79, 0.3);
  border-radius: 14px;
  padding: 28px 16px;
  text-align: center;
}

.stat-box .stat-num {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffd54f;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-box .stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  line-height: 1.4;
}

/* Partners */
.partners-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 100px;
}

.partner-item img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.partner-item span {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

/* Hub location */
.hub-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hub-panel__text {
  flex: 1;
  min-width: 280px;
  color: #333;
}

.hub-panel__text h3 {
  color: #4a0072;
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 700;
}

.hub-panel__text p,
.hub-panel__text li {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

.hub-panel__text ul {
  margin: 12px 0 0;
  padding-left: 1.2em;
}

.hub-panel__map {
  flex: 0 0 280px;
  max-width: 100%;
  background: #f0e6f5;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.hub-panel__map .map-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 12px;
}

.hub-panel__map address {
  font-style: normal;
  color: #4a0072;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.7;
}

/* How it works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 213, 79, 0.2);
  border-radius: 14px;
  padding: 28px 22px;
  position: relative;
  counter-increment: step;
}

.step-card::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ffd54f;
  color: #4a0072;
  font-weight: 800;
  font-size: 18px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.step-card h3 {
  color: #ffd54f;
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 700;
}

.step-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.65;
}

/* Why choose */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid #9821c8;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.why-card h3 {
  color: #4a0072;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.65;
}

/* --- FAQ --- */
.faq-section {
  padding: 60px 0;
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
}

.faq-section .section-head h2 {
  font-size: 36px;
  color: #ffd54f;
  margin-bottom: 10px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.faq-question {
  padding: 20px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 700;
  color: #ffd54f;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
  padding: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  margin: 0;
}

/* --- CTA --- */
.cta-bar {
  background: #ffd54f;
  padding: 40px 0;
  text-align: center;
}

.cta-bar h2 {
  color: #4a0072;
  margin-bottom: 20px;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.btn-call-big {
  display: inline-block;
  background: #4a0072;
  color: #fff;
  padding: 15px 40px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(74, 0, 114, 0.3);
  transition: transform 0.2s;
}

.btn-call-big:hover {
  transform: translateY(-3px);
}

.btn-wa-big {
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: 15px 40px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s;
}

.btn-wa-big:hover {
  transform: translateY(-3px);
}

/* --- FOOTER --- */
footer {
  background: #111;
  color: #fff;
  padding: 60px 0 20px 0;
  font-size: 14px;
}

.f-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.f-head {
  color: #ffd54f;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 16px;
  text-transform: uppercase;
}

.f-links a {
  display: block;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.2s;
}

.f-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.copy {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
  color: #666;
  font-size: 12px;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .page-hero h1 {
    font-size: 32px;
  }

  .about-card {
    padding: 20px;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }
}

:focus-visible {
  outline: 3px solid #ffd54f;
  outline-offset: 3px;
  border-radius: 4px;
}
