/* Page Header */
.page-header {
  height: 300px;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('https://images.unsplash.com/photo-1604654894610-df63bc536371?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2100&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  position: relative;
}

.page-header-content {
  text-align: center;
  color: var(--color-secondary);
  padding-top: 74px;
}

.page-title {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
  margin-top: 15px;
}

.page-subtitle {
  font-size: 1rem;
  letter-spacing: 2px;
  opacity: 0.9;
}

/* Concept Section */
.concept {
  padding: 8rem 2rem;
  background-color: var(--color-secondary);
}

.concept-container {
  max-width: 1000px;
  margin: 0 auto;
}

.concept-header {
  text-align: center;
  margin-bottom: 5rem;
}

.concept-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.concept-text p {
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  opacity: 0.85;
}

.concept-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

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

/* Features Section */
.features {
  padding: 8rem 2rem;
  background-color: #f8f8f8;
}

.features-container {
  max-width: 1000px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 5rem;
}

.features-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 3rem 2rem;
  background-color: var(--color-secondary);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  font-family: var(--font-primary);
}

.feature-item h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.feature-item p {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.85;
  letter-spacing: 1px;
}

/* Gallery Section */
.gallery {
  padding: 8rem 2rem;
  background-color: var(--color-secondary);
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  .page-subtitle {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .price-value {
    font-size: 1.8rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .concept,
  .features,
  .gallery,
  .price {
    padding: 3rem 1.5rem;
  }
}

/* Price Section */
.price {
  padding: 8rem 2rem;
  background-color: #f8f8f8;
}

.price-container {
  max-width: 800px;
  margin: 0 auto;
}

.price-header {
  text-align: center;
  margin-bottom: 5rem;
}

.price-table {
  background-color: var(--color-secondary);
  padding: 4rem;
  margin-bottom: 3rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}

.price-row h3 {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.price-details {
  text-align: right;
}

.price-value {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.price-note {
  font-size: 0.9rem;
  opacity: 0.7;
}

.price-notes {
  text-align: center;
  margin-bottom: 3rem;
}

.price-notes p {
  font-size: 0.9rem;
  line-height: 2;
  opacity: 0.7;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .page-header {
    height: 200px;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .concept,
  .features,
  .gallery,
  .price {
    padding: 4rem 2rem;
  }

  .concept-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .concept-text {
    order: 2;
  }

  .concept-image {
    order: 1;
  }

  .features-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-slide {
    flex: 0 0 calc((100% - 1rem) / 2);
  }

  .price-table {
    padding: 2rem;
  }

  .price-row {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

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