/* ===== BOILER SYSTEMS STYLES ===== */
:root {
  --primary: #1a3a6c;
  --secondary: #e63946;
  --accent: #2a9d8f;
  --warning: #f39c12;
  --dark: #212529;
  --light: #f8f9fa;
  --gray: #6c757d;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0d284c 100%);
  padding: 100px 0;
  color: white;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text h1 {
  color: white;
  font-size: 42px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-text .usp {
  color: #ecf0f1;
  font-size: 22px;
  margin-bottom: 25px;
  line-height: 1.4;
}

.capacity {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 25px;
  border-radius: 8px;
  margin-bottom: 25px;
  display: inline-block;
}

.capacity strong {
  color: var(--secondary);
}

.capacity span {
  color: white;
  font-size: 20px;
  font-weight: 600;
}

.features-highlight {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.features-highlight span {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.features-highlight i {
  color: var(--secondary);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-primary {
  background: var(--secondary);
  color: white;
}

.btn-primary:hover {
  background: #c1121f;
  transform: translateY(-3px);
  box-shadow: 0 7px 15px rgba(230, 57, 70, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.hero-image {
  flex: 1;
  text-align: center;
}

.image-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 60px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.image-placeholder i {
  font-size: 120px;
  color: var(--secondary);
  margin-bottom: 20px;
}

.image-placeholder p {
  color: white;
  font-size: 18px;
  font-weight: 500;
}

/* Boiler Categories */
.boiler-categories {
  background: #f8f9fa;
  padding: 80px 0;
}

.boiler-categories .category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.boiler-categories .category-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  border-top: 4px solid var(--primary);
}

.boiler-categories .category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.boiler-categories .category-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
}

.boiler-categories .category-card h3 {
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 24px;
}

.boiler-categories .category-card p {
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.6;
}

.capacity-range {
  background: #e8f4fc;
  color: var(--primary);
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  font-size: 14px;
}

/* Boiler Sections */
.boiler-section {
  padding: 80px 0;
  background: white;
}

.boiler-section.alt {
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--secondary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-title p {
  color: var(--gray);
  font-size: 18px;
  max-width: 700px;
  margin: 25px auto 0;
}

/* Boiler Grid */
.boiler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.boiler-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 1px solid #eee;
}

.boiler-section.alt .boiler-card {
  background: white;
}

.boiler-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary);
}

.boiler-header {
  background: var(--primary);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.boiler-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.boiler-type {
  background: var(--secondary);
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.boiler-body {
  padding: 25px;
}

.boiler-specs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.boiler-specs span {
  color: var(--dark);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.boiler-specs i {
  color: var(--primary);
  width: 18px;
  text-align: center;
}

.boiler-body p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.technical-details {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.technical-details h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 16px;
}

.technical-details ul {
  padding-left: 20px;
  margin: 0;
}

.technical-details li {
  color: var(--gray);
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.capacity-info {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.capacity-info span {
  background: #e8f4fc;
  color: var(--primary);
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

/* Fuel Options */
.fuel-options {
  background: white;
  padding: 80px 0;
}

.fuel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.fuel-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.fuel-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.fuel-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 15px;
}

.fuel-card h3 {
  color: var(--dark);
  margin-bottom: 15px;
  font-size: 20px;
}

.fuel-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fuel-specs span {
  color: var(--gray);
  font-size: 14px;
  background: white;
  padding: 5px 10px;
  border-radius: 4px;
}

/* Applications Table */
.applications {
  background: #f8f9fa;
  padding: 80px 0;
}

.application-table {
  overflow-x: auto;
}

.application-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.application-table th {
  background: var(--primary);
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
}

.application-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  color: var(--dark);
  font-size: 14px;
}

.application-table tr:nth-child(even) {
  background: #f8f9fa;
}

.application-table tr:hover {
  background: #e8f4fc;
}

/* Technical Support */
.technical-support {
  background: white;
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
  border-top: 4px solid transparent;
}

.service-card:hover {
  border-top-color: var(--secondary);
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
}

.service-card h3 {
  color: var(--dark);
  margin-bottom: 15px;
  font-size: 22px;
}

.service-card p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* Enquiry Section */
.enquiry {
  background: linear-gradient(135deg, var(--primary) 0%, #0d284c 100%);
  padding: 80px 0;
  color: white;
}

.enquiry .section-title h2 {
  color: white;
}

.enquiry .section-title h2:after {
  background: var(--secondary);
}

.enquiry .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.enquiry-form {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: white;
  font-size: 16px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-textarea {
  height: 120px;
  resize: vertical;
}

.enquiry-form .btn {
  width: 100%;
  justify-content: center;
  font-size: 18px;
  padding: 16px;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 36px;
  }

  .hero-content {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text,
  .hero-image {
    flex: none;
    width: 100%;
  }

  .features-highlight {
    justify-content: center;
  }

  .image-placeholder {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .hero,
  .boiler-categories,
  .boiler-section,
  .fuel-options,
  .applications,
  .technical-support,
  .enquiry {
    padding: 60px 0;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text .usp {
    font-size: 20px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .boiler-grid,
  .category-grid,
  .fuel-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .application-table {
    font-size: 14px;
  }

  .image-placeholder i {
    font-size: 80px;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text .usp {
    font-size: 18px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .features-highlight {
    flex-direction: column;
    align-items: center;
  }

  .capacity-info span {
    flex: 1;
    text-align: center;
  }

  .fuel-card,
  .service-card {
    padding: 20px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Add animations to cards */
.category-card,
.boiler-card,
.fuel-card,
.service-card {
  opacity: 0;
}
