/* Commercial Projects Specific Styles */

/* Hero Section for Commercial Projects */
.commercial-hero {
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.95) 0%, rgba(45, 55, 72, 0.95) 100%),
    url('../../../assets/images/logo/downtown-business-center-main.webp') center/cover;
  min-height: 70vh;
  padding: 120px 0 4rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.commercial-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

/* Project Cards */
.project-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
  height: 250px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.project-content {
  padding: 2rem;
}

.project-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.project-content p {
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.project-feature {
  text-align: center;
  padding: 1rem;
  background: var(--light-bg);
  border-radius: 8px;
}

.project-feature i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: block;
}

.project-feature span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
}

/* Commercial Property Grid */
.commercial-property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.commercial-property-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.commercial-property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.commercial-property-image {
  height: 144px;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.commercial-property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commercial-property-info {
  padding: 1.1rem;
}

.commercial-property-info h4 {
  color: var(--primary-color);
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
}

.commercial-property-info .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.7rem;
}

.commercial-property-details {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--secondary-color);
}

/* Business Advantages */
.business-advantages {
  background: var(--light-bg);
  padding: 4rem 0;
}

.advantages-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.advantage-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.advantage-card i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.advantage-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.advantage-card p {
  color: var(--secondary-color);
  line-height: 1.6;
}

/* Facilities Section */
.facilities-section {
  padding: 4rem 0;
  background: var(--white);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.facility-item {
  text-align: center;
  padding: 2rem;
  background: var(--light-bg);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.facility-item:hover {
  background: var(--accent-color);
  color: white;
  transform: scale(1.05);
}

.facility-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.facility-item:hover i {
  color: white;
}

.facility-item h4 {
  margin-bottom: 0.5rem;
}

.facility-item p {
  font-weight: 600;
}

/* Contact Section for Commercial Projects */
.commercial-contact {
  background: var(--gradient-accent);
  padding: 4rem 0;
  color: white;
}

.commercial-contact-form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Investment Calculator */
.investment-calculator {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.calculator-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.calculator-input {
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
}

.calculator-result {
  background: var(--gradient-accent);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.calculator-result h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.calculator-result p {
  font-size: 1.2rem;
  font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .commercial-hero {
    min-height: 60vh;
    padding: 100px 0 2rem;
  }

  .commercial-property-grid,
  .advantages-container,
  .facilities-grid {
    grid-template-columns: 1fr;
  }

  .project-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card,
  .commercial-property-card {
    margin: 0 1rem;
  }

  .calculator-inputs {
    grid-template-columns: 1fr;
  }
}

/* Additional commercial projects specific styles can be added here */