/* -----------------------------------------
   About Us Page Styles
----------------------------------------- */

.about-page {
  background-color: var(--bg-main);
  color: var(--text-primary);
  overflow-x: hidden;
}

/* Section Common */
.section-padding {
  padding: 100px 0;
}

/* Hero Section */
.about-hero {
  padding: 60px 0;
  display: flex;
  align-items: center;
  min-height: 80vh;
}

.about-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.about-hero-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-hero-img-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.about-hero-img-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* Why Work With Us */
.why-work-section {
  background-color: var(--bg-darker);
  padding: 100px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-card {
  background: rgba(112, 211, 231, 0.1);
  border: 2px solid rgba(75, 215, 228, 1);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  transform: translateY(-10px);
}

.why-card-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(126, 203, 211, 0.1);
  color: #7ECBD3;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.why-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Features Grid */
.features-split {
  padding: 100px 0;
}

.feature-img-box {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #7ECBD3;
  flex-shrink: 0;
}

.feature-info h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-info p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

/* Network Section */
.network-section {
  background-color: var(--bg-darker);
  padding: 100px 0;
}

.network-content h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
}

.network-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* CTA Banner */
.build-night-cta {
  padding: 80px 0;
}

.cta-gradient-box {
  background: linear-gradient(135deg, #5A7F8C 0%, #7ECBD3 100%);
  border-radius: 30px;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-gradient-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background: url('../Images/cta-banner-frame.png') center/contain no-repeat;
  opacity: 0.2;
}

.cta-text-box {
  max-width: 60%;
  position: relative;
  z-index: 2;
}

.cta-text-box h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.cta-text-box p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.cta-btn-white {
  background: #fff;
  color: #5A7F8C;
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-btn-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  color: #5A7F8C;
}

/* Responsive */
@media (max-width: 991px) {
  .about-hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 0;
  }

  .about-hero-content {
    margin-bottom: 50px;
  }

  .cta-gradient-box {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 40px;
  }

  .cta-text-box {
    max-width: 100%;
  }

  .cta-gradient-box::before {
    display: none;
  }
}
