/* ========== ABOUT PAGE STYLES ========== */

/* CSS Variables */
:root {
  --primary: #006c80;
  --secondary: #00b3a0;
  --accent: #7cd1e8;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --dark-gray: #6c757d;
  --text-dark: #212529;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

/* ========== HERO SECTION ========== */
.about-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/gallery/hero_tentangkami.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 108, 128, 0.8) 0%, rgba(0, 179, 160, 0.6) 50%, rgba(0, 108, 128, 0.8) 100%);
  z-index: 2;
}

.about-hero-overlay::after {
  display: none;
}

.about-hero-overlay::before {
  display: none;
}

.about-hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  text-align: center;
  color: white;
}

.about-hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 15px rgba(0, 108, 128, 0.3);
  transition: all 0.3s ease;
}

.about-hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 108, 128, 0.4);
}

.about-hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: white;
}

.about-hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  color: white;
}

/* ========== SECTION STYLES ========== */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-description {
  font-size: 1.1rem;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ========== COMPANY OVERVIEW SECTION ========== */
.company-overview-section {
  padding: 100px 0;
  background: var(--white);
}

.company-image img {
  border-radius: 20px;
  transition: var(--transition);
}

.company-image img:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.company-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--dark-gray);
  font-weight: 500;
  margin-top: 0.5rem;
}

/* ========== INFO PARALLAX SECTION ========== */
.info-parallax-section {
  position: relative;
  height: 50vh;
  min-height: 400px;
  background: linear-gradient(135deg, rgba(0, 108, 128, 0.8) 0%, rgba(0, 179, 160, 0.6) 50%, rgba(0, 108, 128, 0.8) 100%), url('../assets/gallery/img3.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.info-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/gallery/img3.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

.info-parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 108, 128, 0.8) 0%, rgba(0, 179, 160, 0.6) 50%, rgba(0, 108, 128, 0.8) 100%);
  z-index: 2;
}

.info-parallax-content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  color: white;
}

.info-parallax-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: white;
}

.info-parallax-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 0;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  color: white;
}

/* ========== VISION MISSION SECTION ========== */
.vision-mission-section {
  padding: 100px 0;
  background: white;
}

.vm-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  height: 100%;
  border: 1px solid #e9ecef;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.vm-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.vm-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.vm-card-icon i {
  font-size: 2rem;
  color: white;
}

.vm-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.vm-card p {
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 0;
}

.vm-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vm-card ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

.vm-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

/* ========== VALUES SECTION ========== */
.values-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.value-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  border: 1px solid #e9ecef;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.value-icon i {
  font-size: 2rem;
  color: white;
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ========== WHY CHOOSE US SECTION ========== */
.why-choose-section {
  padding: 100px 0;
  background: var(--light-gray);
}

.feature-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  border: 1px solid #e9ecef;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ========== CTA SECTION ========== */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0, 108, 128, 0.8) 0%, rgba(0, 179, 160, 0.6) 50%, rgba(0, 108, 128, 0.8) 100%), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
  overflow: hidden;
}

.cta-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/gallery/join.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

.cta-parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 108, 128, 0.8) 0%, rgba(0, 179, 160, 0.6) 50%, rgba(0, 108, 128, 0.8) 100%);
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: white;
  color: var(--primary);
  border: 2px solid white;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-primary:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-outline-light:hover {
  background: white;
  color: var(--primary);
  border-color: white;
  transform: translateY(-2px);
}

/* ========== RESPONSIVE DESIGN ========== */

/* Hero Section Responsive */
@media (max-width: 768px) {
  .about-hero {
    min-height: 40vh;
    padding-top: 80px;
  }

  .about-hero-bg {
    background-attachment: scroll;
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-badge {
    font-size: 0.8rem;
    padding: 0.6rem 1.5rem;
  }

  .about-hero-subtitle {
    font-size: 1.1rem;
  }

  /* Company Overview Section Mobile */
  .info-parallax-section {
    height: 40vh;
    min-height: 350px;
    background-attachment: scroll;
  }

  .info-parallax-bg {
    background-attachment: scroll;
  }

  .cta-section {
    background-attachment: scroll;
  }

  .cta-parallax-bg {
    background-attachment: scroll;
  }

  .info-parallax-title {
    font-size: 2.5rem;
  }

  .info-parallax-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  /* Company Overview Section Mobile */
  .company-overview-section {
    padding: 60px 0;
  }

  .company-image {
    margin-bottom: 2rem;
  }

  .company-image img {
    width: 100%;
    max-width: 100%;
  }

  .section-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1.2rem;
  }

  .company-content .section-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .section-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .company-stats {
    flex-direction: row;
    gap: 1.5rem;
    justify-content: space-around;
    margin-top: 1.5rem;
  }

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

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.8rem;
    margin-top: 0.3rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-outline-light {
    width: 100%;
    max-width: 300px;
  }

  .vm-card,
  .value-card,
  .feature-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .info-parallax-section {
    height: 35vh;
    min-height: 300px;
  }

  .info-parallax-title {
    font-size: 2rem;
  }

  .info-parallax-subtitle {
    font-size: 1rem;
  }

  .about-hero {
    min-height: 80vh;
  }

  .about-hero-title {
    font-size: 2rem;
  }

  .about-hero-badge {
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .vm-card,
  .value-card,
  .feature-card {
    padding: 2rem 1.5rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-description {
    font-size: 1.1rem;
  }

  /* Hero Section Small Mobile */
  .about-hero {
    min-height: 35vh;
    padding-top: 80px;
  }

  .about-hero-title {
    font-size: 2rem;
  }

  .about-hero-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1.2rem;
  }

  .about-hero-subtitle {
    font-size: 1rem;
  }

  /* Company Overview Section Small Mobile */
  .company-overview-section {
    padding: 40px 0;
  }

  .company-image {
    margin-bottom: 1.5rem;
  }

  .section-badge {
    font-size: 0.7rem;
    padding: 0.3rem 1rem;
  }

  .company-content .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
  }

  .section-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }

  .company-stats {
    flex-direction: row;
    gap: 1rem;
    justify-content: space-around;
    margin-top: 1.2rem;
  }

  .stat-item {
    flex: 1;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.7rem;
    margin-top: 0.2rem;
  }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== UTILITY CLASSES ========== */
.text-center {
  text-align: center;
}

.mb-5 {
  margin-bottom: 3rem;
}

.g-4 > * {
  padding: 1rem;
}

/* ========== WHATSAPP FLOAT BUTTON ========== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
  text-decoration: none;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}
