@import url('indexstyles.css');

body {
  background: url('../images/chipping.jpg') center/cover no-repeat fixed;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  color: #333;
  font-family: var(--font-base);
  line-height: 1.6;

}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  z-index: -1;
}

.chipping-section{
  margin: 0;
}

.chipping-section h1 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.chipping-section .intro {
  font-size: 1.1rem;
  color: var(--gray-dark);
  margin-bottom: 3rem;
  max-width: 800px;
  margin: auto;
}
/* Hero Section */
.hero-chip {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  padding: 2rem;
  background: transparent;
  align-items: center;
  justify-content: center;
  display: flex;
}

.hero-chip h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--yellow);
}

.hero-chip .lead {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.btn-pulse {
  animation: pulse 2s infinite;
  background-color: var(--orange);
  border: none;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Benefits Section */
.benefits-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--purple);
  font-size: 2.2rem;
}

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

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--teal);
  margin-bottom: 1rem;
}

/* Process Section */
.process-section {
  padding: 4rem 0;
  background-color: var(--gray);
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.step-number {
  background-color: var(--teal);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-content {
  flex-grow: 1;
}

/* Pricing Section */
.pricing-section {
  padding: 4rem;
  background-color: var(--white);
  margin-bottom: auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.price-card {
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.price-card.popular {
  border: 2px solid var(--yellow);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background-color: var(--teal);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.8rem;
}

.price-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--teal);
}

.price-subtext {
  font-size: 0.9rem;
  color: #666;
}

.price-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.price-features li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.price-features i {
  color: var(--teal);
  margin-right: 0.5rem;
}

footer {
  background-color: var(--purple);
  color: white;
  padding: 2rem 1rem;
  
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-links a {
  color: white;
  margin: 0 0.5rem;
  font-size: 1.2rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--teal);
}

@media (max-width: 768px) {
  .chip-box,
  .cta-box {
    padding: 1.5rem;
  }
}
