/* About Page */
.about-page {
  padding-top: 5rem;
}

/* Hero Section */
.about-hero {
  position: relative;
  padding: 5rem 0;
  background: var(--gray-50);
  overflow: hidden;
}

.about-hero-decoration-right {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: -5rem;
  margin-top: -5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(204, 51, 51, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.about-hero-decoration-left {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-left: -5rem;
  margin-bottom: -5rem;
  width: 20rem;
  height: 20rem;
  background: rgba(0, 153, 204, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.about-hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.about-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-hero p {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .about-hero h1 {
    font-size: 3.75rem;
  }
}

/* History Section */
.about-history {
  padding: 5rem 0;
}

.about-history-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.about-history-image {
  position: relative;
}

.about-history-image-wrapper {
  position: relative;
  z-index: 10;
  aspect-ratio: 4/3;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  background: var(--white);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-100);
}

.about-history-image-wrapper img {
  max-width: 80%;
  height: auto;
}

.about-history-image-decoration {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 100%;
  height: 100%;
  background: rgba(204, 51, 51, 0.1);
  border-radius: 1.5rem;
  z-index: -1;
}

.about-history-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-history h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-900);
}

.about-history-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-history-text p {
  color: var(--gray-600);
  line-height: 1.6;
}

.about-history-highlight {
  font-weight: 600;
  color: var(--primary) !important;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .about-history h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .about-history-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Delivery Model Section */
.about-delivery {
  padding: 4rem 0;
  background: var(--white);
}

.about-delivery-card {
  max-width: 80rem;
  margin: 0 auto;
  border-radius: 2.5rem;
  border: 1px solid var(--gray-100);
  background: rgba(249, 250, 251, 0.7);
  padding: 2rem;
}

.about-delivery-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about-delivery-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.about-delivery-header p {
  color: var(--gray-600);
  line-height: 1.6;
}

.about-delivery-steps {
  display: grid;
  gap: 1rem;
}

.about-delivery-step {
  border-radius: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.about-delivery-step-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.about-delivery-step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
}

.about-delivery-step-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
}

.about-delivery-step-logo {
  margin-top: 1.25rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-delivery-step-logo-wrapper {
  height: 3.5rem;
  width: 100%;
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  background: var(--gray-50);
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-delivery-step-logo-wrapper img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}

.about-delivery-note {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-delivery-note p {
  font-size: 0.875rem;
  color: var(--gray-600);
  text-align: center;
}

@media (min-width: 768px) {
  .about-delivery-card {
    padding: 3rem;
  }
  
  .about-delivery-header h2 {
    font-size: 2.25rem;
  }
  
  .about-delivery-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-delivery-grid {
    grid-template-columns: 5fr 7fr;
  }
}

/* Core Values Section */
.about-values {
  padding: 5rem 0;
  background: var(--primary);
  color: var(--white);
}

.about-values-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.about-values-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-values-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  line-height: 1.6;
}

.about-values-grid {
  display: grid;
  gap: 2rem;
}

.about-values-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  transition: background 0.3s ease;
}

.about-values-card:hover {
  background: rgba(255, 255, 255, 0.2);
}

.about-values-icon {
  height: 3rem;
  width: 3rem;
  background: var(--accent);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-values-icon svg {
  color: var(--white);
}

.about-values-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-values-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .about-values-header h2 {
    font-size: 3rem;
  }
  
  .about-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Technician Image Section */
.about-image {
  padding: 5rem 0;
  background: var(--white);
}

.about-image-wrapper {
  position: relative;
  border-radius: 3rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent);
  z-index: 10;
}

.about-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

.about-image-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2.5rem;
  z-index: 20;
  max-width: 42rem;
  color: var(--white);
}

.about-image-content h2 {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.about-image-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .about-image-content {
    padding: 4rem;
  }
  
  .about-image-content h2 {
    font-size: 3rem;
  }
}
