/* Service Page Specific Styles */

/* Service Intro Section */
.service-intro {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-intro-content .section-subtitle {
  color: hsl(35, 77%, 62%);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-intro-content .section-title {
  font-size: 42px;
  font-weight: 700;
  color: hsl(0, 0%, 12%);
  line-height: 1.2;
  margin-bottom: 20px;
}

.service-highlight {
  font-size: 32px;
  font-weight: 700;
  color: hsl(35, 77%, 62%);
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.service-description {
  font-size: 16px;
  line-height: 1.7;
  color: hsl(0, 0%, 40%);
  margin-bottom: 40px;
}

.service-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: hsl(35, 77%, 62%);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: hsl(0, 0%, 30%);
}

.service-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Apartment Sections */
.apartment-section {
  padding: 100px 0;
  position: relative;
  scroll-margin-top: 120px; /* Account for fixed header */
}

.apartment-section.alternate {
  background: hsl(0, 0%, 98%);
}

.apartment-header {
  text-align: center;
  margin-bottom: 80px;
}

.apartment-badge {
  display: inline-block;
  background: hsl(35, 77%, 62%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.apartment-title {
  font-size: 38px;
  font-weight: 700;
  color: hsl(0, 0%, 12%);
  margin-bottom: 16px;
}

.apartment-subtitle {
  font-size: 18px;
  color: hsl(0, 0%, 40%);
  max-width: 600px;
  margin: 0 auto;
}

.apartment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Pricing Card */
.pricing-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.pricing-header {
  background: hsl(35, 77%, 62%);
  color: white;
  padding: 20px 30px;
  text-align: center;
}

.pricing-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.pricing-body {
  padding: 30px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.price-item:last-child {
  border-bottom: none;
}

.price-item.highlight {
  background: hsl(35, 77%, 95%);
  margin: 0 -30px;
  padding: 20px 30px;
  border-radius: 12px;
}

.price-label {
  font-size: 15px;
  font-weight: 500;
  color: hsl(0, 0%, 30%);
}

.price-value {
  font-size: 16px;
  font-weight: 700;
  color: hsl(0, 0%, 12%);
}

.price-item.highlight .price-value {
  color: hsl(35, 77%, 62%);
  font-size: 18px;
}

/* Apartment Description */
.apartment-description h3 {
  font-size: 24px;
  font-weight: 700;
  color: hsl(0, 0%, 12%);
  margin-bottom: 20px;
}

.apartment-description p {
  font-size: 16px;
  line-height: 1.7;
  color: hsl(0, 0%, 40%);
  margin-bottom: 30px;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: hsl(0, 0%, 30%);
}

.features-list ion-icon {
  color: hsl(35, 77%, 62%);
  font-size: 20px;
  flex-shrink: 0;
}

/* Gallery Styles */
.apartment-gallery {
  position: sticky;
  top: 100px;
}

.gallery-main {
  margin-bottom: 20px;
}

.gallery-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.thumbnail {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.thumbnail:hover {
  transform: scale(1.05);
}

/* Amenities Section */
.amenities-section {
  padding: 100px 0;
  background: hsl(0, 0%, 12%);
  color: white;
}

.amenities-header {
  text-align: center;
  margin-bottom: 80px;
}

.amenities-header .section-subtitle {
  color: hsl(35, 77%, 62%);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.amenities-header .section-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.amenities-header .section-description {
  font-size: 16px;
  line-height: 1.7;
  color: hsl(0, 0%, 70%);
  max-width: 600px;
  margin: 0 auto;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.amenity-card {
  background: hsl(0, 0%, 15%);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.amenity-icon {
  width: 80px;
  height: 80px;
  background: hsl(35, 77%, 62%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.3s ease;
}

.amenity-card:hover .amenity-icon {
  background: hsl(35, 77%, 55%);
}

.amenity-icon ion-icon {
  font-size: 32px;
  color: white;
}

.amenity-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.amenity-description {
  font-size: 15px;
  line-height: 1.6;
  color: hsl(0, 0%, 70%);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, hsl(35, 77%, 62%) 0%, hsl(35, 77%, 55%) 100%);
  color: white;
  text-align: center;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: white;
  color: hsl(35, 77%, 62%);
}

.btn-primary:hover {
  background: hsl(0, 0%, 95%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background: white;
  color: hsl(35, 77%, 62%);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .service-intro .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .apartment-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .apartment-gallery {
    position: static;
  }
  
  .service-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .service-intro-content .section-title {
    font-size: 32px;
  }
  
  .service-highlight {
    font-size: 24px;
  }
  
  .apartment-title {
    font-size: 28px;
  }
  
  .amenities-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .service-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .apartment-section {
    padding: 60px 0;
  }
  
  .amenities-section {
    padding: 60px 0;
  }
  
  .pricing-body {
    padding: 20px;
  }
  
  .price-item.highlight {
    margin: 0 -20px;
    padding: 20px;
  }
}
