/* =============================================
   TENTANG - LUXURY MARITIME DARK THEME
   PT. MODERN AULIA MANDIRI
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --navy-deep:  #081828;
  --navy:       #0d2233;
  --navy-mid:   #163347;
  --teal:       #3a9e8f;
  --teal-light: #5fc4b4;
  --teal-pale:  #a8ddd6;
  --gold:       #c9a84c;
  --gold-light: #e2c97e;
  --text-main:  #f0ede8;
  --text-muted: #c2d4e0;
}

/* =============================================
   PAGE TITLE / HERO BANNER
   ============================================= */

.page-title {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Dark navy overlay di atas foto */
.page-title::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 24, 40, 0.72) 0%,
    rgba(8, 24, 40, 0.55) 60%,
    rgba(8, 24, 40, 0.82) 100%
  );
  z-index: 1;
}

/* Diagonal teal accent line */
.page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--teal), transparent);
  z-index: 2;
}

.page-title .container {
  position: relative;
  z-index: 3;
  padding: 80px 20px 60px;
}

.page-title h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-main);
  margin: 0 0 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* Breadcrumb */
.page-title .breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  justify-content: center;
}

.page-title .breadcrumbs ol li a {
  color: var(--teal-pale);
  text-decoration: none;
  transition: color 0.2s;
}

.page-title .breadcrumbs ol li a:hover {
  color: var(--teal-light);
}

.page-title .breadcrumbs ol li.current {
  color: var(--text-muted);
  opacity: 0.8;
}

.page-title .breadcrumbs ol li + li::before {
  content: '/';
  color: rgba(160, 210, 200, 0.4);
  margin-right: 10px;
}

/* =============================================
   ABOUT SECTION — WRAPPER
   ============================================= */

.about.section {
  background-color: var(--navy-deep);
  padding: 80px 0 100px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-muted);
  position: relative;
}

/* Grid texture subtle */
.about.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(58,158,143,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,158,143,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.about.section .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

/* =============================================
   SECTION BLOCK CARDS
   ============================================= */

.about-block {
  background: var(--navy);
  border: 1px solid rgba(58,158,143,0.12);
  border-radius: 16px;
  padding: 44px 48px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.about-block:hover {
  border-color: rgba(58,158,143,0.28);
}

/* Teal left accent bar */
.about-block::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 0;
  width: 3px;
  height: 48px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  border-radius: 0 2px 2px 0;
}

/* Watermark number */
.about-block .block-number {
  position: absolute;
  top: -10px;
  right: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 90px;
  font-weight: 600;
  color: rgba(58,158,143,0.055);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Alternate section background */
.about-block.alt {
  background: var(--navy-mid);
}

/* =============================================
   SECTION HEADINGS
   ============================================= */

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  font-style: italic;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 24px;
  line-height: 1.25;
}

/* =============================================
   BODY TEXT
   ============================================= */

.about-block p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-block p:last-child {
  margin-bottom: 0;
}

.about-block p strong {
  color: var(--teal-pale);
  font-weight: 500;
}

/* =============================================
   COMMITMENT LIST
   ============================================= */

.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-list li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235fc4b4' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 2px;
  flex-shrink: 0;
}

/* =============================================
   STAT ROW (opsional, bisa dipakai nanti)
   ============================================= */

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0 0;
}

.stat-item {
  text-align: center;
  padding: 20px 12px;
  background: rgba(58,158,143,0.06);
  border: 1px solid rgba(58,158,143,0.15);
  border-radius: 10px;
}

.stat-item .stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--teal-light);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.stat-item .stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  opacity: 0.75;
  text-transform: uppercase;
}

/* =============================================
   RESPONSIVE — TABLET (≤ 860px)
   ============================================= */

@media (max-width: 860px) {
  .about-block {
    padding: 36px 36px;
  }

  .about-block .block-number {
    font-size: 70px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================= */

@media (max-width: 600px) {
  .page-title {
    min-height: 240px;
  }

  .page-title .container {
    padding: 64px 16px 48px;
  }

  .about.section {
    padding: 48px 0 64px;
  }

  .about-block {
    padding: 28px 22px;
    border-radius: 12px;
    margin-bottom: 20px;
  }

  .about-block::before {
    top: 24px;
    height: 36px;
  }

  .about-block .block-number {
    font-size: 56px;
    right: 18px;
  }

  .section-heading {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }

  .about-block p {
    font-size: 14px;
  }

  .about-list li {
    font-size: 13.5px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }
}