/* Interiors Page Specific Styles */

/* Hero Section */
.interiors-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #6c757d;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-image {
  width: 50000px;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

/* Section Styles */
.residential-interiors,
.commercial-interiors {
  padding: 80px 0;
}

.residential-interiors {
  background-color: #ffffff;
}

.commercial-interiors {
  background-color: #f8f9fa;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #1daaa3;
}

.section-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

/* Benefits List */
.benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.benefits-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  font-size: 1.4rem;
  color: #495057;
  border-bottom: 1px solid #e9ecef;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: #28a745;
  font-weight: bold;
  font-size: 1.2rem;
}

.benefits-list li:last-child {
  border-bottom: none;
}

/* Projects Showcase */
.projects-showcase {
  margin-top: 60px;
}

.showcase-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 40px;
}

.project-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.project-card h4 {
  font-size: 1.9rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.project-card p {
  color: #6c757d;
  line-height: 1.6;
  font-size: 1.4rem;
}

/* Call to Action Section */
.cta-section {
  background: linear-gradient(135deg, #00fff2 0%, #1daaa3 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
}

.cta-buttons {
  margin-top: 30px;
}

.cta-btn {
  display: inline-block;
  padding: 15px 30px;
  margin: 0 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #ffffff;
  color: #1daaa3;
  border: 2px solid #ffffff;
}

.btn-primary:hover {
  background-color: transparent;
  color: #ffffff;
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #1daaa3;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.fade-in.animate {
  opacity: 1;
}

.slide-up {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.slide-up.animate {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .showcase-title {
    font-size: 1.8rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .project-card {
    margin-bottom: 20px;
  }

  .cta-btn {
    display: block;
    margin: 10px auto;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .interiors-hero,
  .residential-interiors,
  .commercial-interiors,
  .cta-section {
    padding: 40px 0;
  }
}
