/* ============================================================================
   ABOUT.CSS - About Page Specific Styles
   ========================================================================= */

/* ============================================================================
   ABOUT STORY SECTION
   ========================================================================= */

.about-story {
  padding: 80px 0;
  background: var(--color-white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-content h2 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 30px;
}

.story-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-grey);
  margin-bottom: 20px;
}

.story-content p:last-child {
  margin-bottom: 0;
}

.story-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  height: 500px;
}

.story-image-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.story-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.story-image-main:hover img {
  transform: scale(1.05);
}

.story-image-small {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  align-self: end;
}

.story-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.story-image-small:hover img {
  transform: scale(1.05);
}

/* ============================================================================
   ABOUT VALUES SECTION
   ========================================================================= */

.about-values {
  padding: 80px 0;
  background: var(--color-bg-main);
}

.values-intro {
  text-align: center;
  margin-bottom: 60px;
}

.values-intro h2 {
  font-size: 42px;
  font-weight: 900;
  color: var(--color-text);
  margin: 0 0 15px;
}

.values-intro p {
  font-size: 18px;
  color: var(--color-grey);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  background: var(--color-white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: var(--color-bg-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon img {
  width: 30px;
  height: 30px;
  opacity: 0.7;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 15px;
}

.value-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-grey);
  margin: 0;
}

/* ============================================================================
   IMAGE COLLAGE SECTION
   ========================================================================= */

.about-collage {
  padding: 0;
  background: var(--color-bg-main);
}

.container-full {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.collage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 340px);
  gap: 10px;
}

.collage-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.collage-item:hover img {
  transform: scale(1.1);
}


/* ============================================================================
   WHY CHOOSE US SECTION
   ========================================================================= */

.about-why-choose {
  padding: 80px 0;
  background: var(--color-bg-main);
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-choose-text h2 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 40px;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.why-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-list li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
}

.why-list li div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.why-list li strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}

.why-list li span {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-grey);
}

.why-choose-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  height: 600px;
}

.why-choose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================================
   LOCATION SECTION
   ========================================================================= */

.about-location {
  padding: 80px 0;
  background: var(--color-bg-main);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.location-content h2 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 30px;
}

.location-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-grey);
  margin-bottom: 20px;
}

.location-content .btn {
  margin-top: 20px;
}

.location-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  height: 500px;
}

.location-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================================
   CTA SECTION
   ========================================================================= */

.about-cta {
  padding: 100px 0;
  background: var(--color-white);
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 900;
  color: var(--color-text);
  margin: 0 0 20px;
}

.cta-content p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-grey);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* ============================================================================
   RESPONSIVE STYLES
   ========================================================================= */

@media (max-width: 1024px) {
  .story-grid,
  .why-choose-content,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .story-images {
    height: 400px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .collage-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 340px);
  }
  
  .why-choose-image {
    height: 400px;
  }
  
  .location-map {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .about-story,
  .about-values,
  .about-why-choose,
  .about-location,
  .about-cta {
    padding: 60px 0;
  }
  
  .story-content h2,
  .values-intro h2,
  .why-choose-text h2,
  .location-content h2 {
    font-size: 32px;
  }
  
  .cta-content h2 {
    font-size: 36px;
  }
  
  .story-content p,
  .values-intro p,
  .location-content p {
    font-size: 16px;
  }
  
  .cta-content p {
    font-size: 18px;
  }
  
  .story-images {
    grid-template-columns: 1fr;
    height: auto;
    gap: 15px;
  }
  
  .story-image-main,
  .story-image-small {
    height: 340px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .collage-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 340px);
  }
  
  .why-list {
    gap: 20px;
  }
  
  .why-list li strong {
    font-size: 16px;
  }
  
  .why-list li span {
    font-size: 14px;
  }
  
  .why-choose-image {
    height: 340px;
  }
  
  .location-map {
    height: 340px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
    text-align: center;
  }
}