/* ALTARE ADD-ONS Section Styles */
.addons-section {
  display: flex;
  flex-direction: column;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .addons-section {
    flex-direction: row;
    min-height: 700px;
  }
}

/* Image Side Styling */
.addons-image-side {
  position: relative;
  min-height: 300px;
  background-image: url('../img/image6.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .addons-image-side {
    width: 40%;
    min-height: auto;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  }
}

.addons-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 70, 151, 0.7) 0%, rgba(243, 71, 31, 0.5) 100%);
  z-index: 1;
}

.addons-title-container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.addons-title {
  font-family: 'GIAZA', sans-serif;
  font-size: 3rem;
  color: white;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg);
  letter-spacing: 2px;
}

/* Content Side Styling */
.addons-content-side {
  flex: 1;
  background-color: #f8f9fa;
  padding: 2rem;
  display: flex;
  align-items: center;
}

.addons-content-container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

/* Addon Item Styling */
.addon-item {
  margin-bottom: 2.5rem;
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid transparent;
  transition: transform 0.3s ease;
}

.addon-item:nth-child(1) {
  border-left-color: #0a4697;
}

.addon-item:nth-child(2) {
  border-left-color: #F3471F;
}

.addon-item:nth-child(3) {
  border-left-color: #0a4697;
}

.addon-item:hover {
  transform: translateX(5px);
}

.addon-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.addon-checkmark, .addon-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  font-weight: bold;
}

.addon-checkmark {
  background-color: #0a4697;
  color: white;
}

.addon-number {
  background-color: #F3471F;
  color: white;
}

.addon-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  margin-right: 1rem;
  flex: 1;
  min-width: 200px;
}

.addon-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F3471F;
}

.addon-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
  padding-left: 3rem;
}

/* CTA Button Styling */
.addons-cta-container {
  margin-top: 3rem;
  text-align: center;
}

.addons-cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #F3471F;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(243, 71, 31, 0.3);
}

.addons-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(243, 71, 31, 0.4);
  background-color: #e13d17;
}

@media (max-width: 768px) {
  .addon-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .addon-title {
    margin: 0.5rem 0;
  }
  
  .addon-price {
    margin-left: 3rem;
  }
}
