/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="white" opacity="0.1"/></svg>');
  bottom: 0;
  left: 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
}

.hero-text h2 {
  font-size: 42px;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-text .usp {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 600;
}

.capacity {
  background-color: white;
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.capacity span {
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  text-align: center;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ===== MINERAL WATER PROCESS ===== */
.process {
  padding: 80px 0;
  background-color: white;
}

.process-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
  position: relative;
}

.process-steps:before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--primary);
  opacity: 0.3;
  z-index: 0;
}

.step {
  text-align: center;
  width: 180px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  margin: 0 auto 20px;
  border: 5px solid white;
  box-shadow: 0 0 0 3px var(--primary);
}

.step-content h4 {
  margin-bottom: 10px;
  color: var(--dark);
}

.step-content p {
  color: var(--gray);
  font-size: 14px;
}

/* ===== PLANT CAPACITIES ===== */
.capacities {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.capacity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.capacity-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  text-align: center;
  padding: 40px 30px;
  border-top: 5px solid var(--primary);
}

.capacity-card:hover {
  transform: translateY(-10px);
}

.capacity-card i {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 20px;
}

.capacity-card h3 {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 10px;
}

.capacity-card .bottles-per-hour {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 20px;
}

.capacity-features {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.capacity-features li {
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

.capacity-features li:last-child {
  border-bottom: none;
}

.capacity-features i {
  font-size: 16px;
  color: var(--accent);
}

/* ===== COMPLETE PACKAGE ===== */
.package {
  padding: 80px 0;
  background: white;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.package-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.package-header {
  padding: 25px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  position: relative;
}

.package-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold);
  color: #333;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.package-header i {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}

.package-header h3 {
  font-size: 24px;
}

.package-body {
  padding: 25px;
}

.package-features {
  list-style: none;
  margin: 20px 0;
}

.package-features li {
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features i {
  color: var(--accent);
  min-width: 20px;
}

/* ===== BOTTLING MACHINES ===== */
.bottling {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.machines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.machine-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.machine-card:hover {
  transform: translateY(-10px);
}

.machine-img {
  height: 200px;
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.machine-img i {
  font-size: 70px;
  color: var(--primary);
  transition: transform 0.5s;
}

.machine-card:hover .machine-img i {
  transform: scale(1.1);
}

.machine-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.machine-info {
  padding: 25px;
}

.machine-info h3 {
  margin-bottom: 10px;
  color: var(--dark);
}

.machine-specs {
  list-style: none;
  margin: 15px 0;
}

.machine-specs li {
  padding: 5px 0;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

.machine-specs i {
  color: var(--accent);
  font-size: 14px;
}

/* ===== WATER TESTING ===== */
.testing {
  padding: 80px 0;
  background: white;
}

.testing-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.testing-list {
  list-style: none;
}

.testing-list li {
  padding: 15px;
  background: var(--light);
  margin-bottom: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s;
}

.testing-list li:hover {
  transform: translateX(10px);
  background: #b2ebf2;
}

.testing-list i {
  color: var(--primary);
  font-size: 20px;
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testing-image {
  text-align: center;
}

.testing-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== CERTIFICATIONS ===== */
.certifications {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.cert-card {
  background: white;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.cert-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cert-card i {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 15px;
  display: block;
}

/* ===== PROJECT COSTING ===== */
.costing {
  padding: 80px 0;
  background: white;
}

.costing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.costing-table th {
  background: var(--dark);
  color: white;
  padding: 20px;
  text-align: left;
}

.costing-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.costing-table tr:last-child td {
  border-bottom: none;
}

.cost-highlight {
  background: #e8f5e9;
  font-weight: 600;
  color: var(--dark);
}

/* ===== BOTTLE SIZES ===== */
.bottle-sizes {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.bottles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.bottle-card {
  background: white;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  border-top: 5px solid var(--bottle-blue);
}

.bottle-card:hover {
  transform: translateY(-10px);
}

.bottle-icon {
  width: 80px;
  height: 120px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 10px 10px 30px 30px;
  margin: 0 auto 20px;
  position: relative;
  border: 2px solid var(--bottle-blue);
}

.bottle-icon:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 10px;
  background: var(--bottle-blue);
  border-radius: 10px 10px 0 0;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.bottle-size {
  font-size: 28px;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 5px;
}

.bottle-type {
  color: var(--gray);
  font-size: 14px;
}

/* ===== PROFIT ANALYSIS ===== */
.profit {
  padding: 80px 0;
  background: white;
}

.profit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.profit-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--accent);
}

.profit-card i {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 20px;
}

.profit-amount {
  font-size: 36px;
  font-weight: bold;
  color: var(--dark);
  margin: 10px 0;
}

.profit-note {
  color: var(--gray);
  font-size: 14px;
  font-style: italic;
}

/* ===== FAQ SECTION ===== */
.faq {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 20px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px 20px;
  max-height: 300px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: white;
  text-align: center;
}

.cta-section .section-title h2 {
  color: white;
}

.cta-section .section-title h2:after {
  background-color: var(--accent);
}

.cta-buttons-large {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-buttons-large .btn {
  padding: 18px 40px;
  font-size: 18px;
}

.cta-buttons-large .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
}

.cta-buttons-large .btn-primary:hover {
  background: #43a047;
}

.cta-buttons-large .btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}
/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .hero-text h2 {
    font-size: 36px;
  }

  .process-steps:before {
    display: none;
  }
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .testing-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-text h2 {
    font-size: 30px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .cta-buttons,
  .cta-buttons-large {
    flex-direction: column;
    align-items: center;
  }

  .costing-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 60px 0;
  }

  section {
    padding: 60px 0;
  }

  .btn {
    padding: 12px 20px;
    font-size: 15px;
  }

  .hero-text h2 {
    font-size: 28px;
  }

  .step {
    width: 140px;
  }

  .capacity-card,
  .package-card,
  .machine-card {
    margin: 0 10px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

/* ===== BOTTLE ANIMATION ===== */
@keyframes bottleFill {
  0% {
    height: 0;
  }
  100% {
    height: 80%;
  }
}

.bottle-fill {
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  background: var(--bottle-blue);
  border-radius: 0 0 20px 20px;
  animation: bottleFill 2s ease-out forwards;
}

/* ===== CAPACITY BADGES ===== */
.capacity-badge {
  display: inline-block;
  padding: 5px 15px;
  background: var(--light);
  color: var(--primary);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin: 5px;
}

/* ===== PROFIT CALCULATOR ===== */
.calculator {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
}

.calculator-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.calc-input {
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 16px;
}

.calc-result {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: var(--accent);
  margin: 20px 0;
  padding: 20px;
  background: #e8f5e9;
  border-radius: 10px;
}
.hero,
.process,
.capacities,
.package,
.bottling,
.testing,
.certifications,
.bottle-sizes,
.costing,
.faq,
.cta-section {
  padding: 100px;
}
