/* ============================================
   Premium Marine Design System - About Page Strengthened
   ============================================ */

body.page-template-about-v2 .premium-about-page {
  /* Design Tokens */
  --primary-blue: #15D5FF;
  --secondary-blue: #0A82FF;
  --dark-marine: #061826;
  --dark-depth: #041019;
  --text-white: #E6F7FF;
  --text-grey: #B6D9E6;
  --accent-glow: rgba(21, 213, 255, 0.3);
  
  position: relative;
  font-family: 'Manrope', sans-serif !important;
  color: var(--text-grey) !important;
  line-height: 1.7 !important;
  overflow-x: hidden;
  background: transparent !important;
}

/* Force Parents to be transparent */
.page-template-about-v2 #page,
.page-template-about-v2 #content,
.page-template-about-v2 #primary,
.page-template-about-v2 main.site-main {
  background: transparent !important;
}

/* Background Design */
.marine-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Removed attachment: fixed as it's already position: fixed */
}

.marine-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgb(6 24 38 / 54%) 0%, rgba(6, 24, 38, 0.92) 50%, rgba(4, 10, 18, 0.98) 100%);
}

.content-wrapper {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

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

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

/* Typography Overrides */
.premium-about-page h1,
.premium-about-page h2,
.premium-about-page h3,
.premium-about-page h4,
.premium-about-page h5,
.premium-about-page h6 {
  font-family: 'Manrope', sans-serif;
  color: var(--white);
  margin-top: 0;
}

.premium-about-page .section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #fff 0%, #15D5FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Section */
.about-hero {
  padding: 140px 0 60px;
  text-align: center;
}

.page-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #4ca1f2;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-subtitle {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(to right, #fff, #b0c4d6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-divider {
  width: 60px;
  height: 4px;
  background-color: #4ca1f2;
  margin: 0 auto;
  border-radius: 2px;
}

/* Intro Section */
.about-intro {
  padding: 30px 0;
}

.about-intro p {
  font-size: 1.15rem;
  margin-bottom: 25px;
  color: #d1e3f0;
}

.about-intro .lead-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Why Choose Us */
.why-choose {
  padding: 3rem;
  background: transparent;
}

.why-choose__subtitle {
  text-align: center;
  color: #a0b4c8;
  font-size: 1.125rem;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.why-choose__card {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.why-choose__card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(76, 161, 242, 0.3);
  box-shadow: 0 8px 32px rgba(21, 213, 255, 0.25), 0 4px 16px rgba(0, 0, 0, 0.4);
}

.why-choose__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: #4ca1f2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 161, 242, 0.15);
  border-radius: 0.75rem;
}

.why-choose__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.why-choose__description {
  font-size: 0.9375rem;
  color: #c0d0e0;
  line-height: 1.6;
  margin: 0;
}

/* SSI Section */
.about-ssi {
  padding: 30px 0;
}

.ssi-container {
  background: rgba(10, 35, 54, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px;
  display: flex;
  gap: 60px;
  align-items: center;
}

.ssi-text {
  flex: 1;
}

.ssi-text .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.ssi-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.ssi-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #d0e0f0;
}

.ssi-list li::before {
  content: "•";
  color: #4ca1f2;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -5px;
}

.ssi-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.ssi-infographic-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .ssi-container {
    flex-direction: column;
    padding: 30px;
    gap: 30px;
  }

  .ssi-text .section-title {
    text-align: center;
  }
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .page-subtitle {
    font-size: 2.5rem;
  }

  .ssi-container {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }

  .ssi-text .section-title {
    text-align: center;
  }

  .ssi-list li {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .page-subtitle {
    font-size: 2rem;
  }

  .about-hero {
    padding-top: 100px;
  }
  
  .why-choose__grid {
    gap: 1.5rem;
  }
  
  .why-choose__card {
    padding: 1.5rem;
  }
}
