/* ================= WHY BOOK THROUGH CLASSICTRAVEL SECTION ================= */
.how-to-book-section { 
  background-color: var(--white); 
  border-radius: 0;
  padding: 30px 30px;
  box-shadow: none;
  margin-bottom: 0;
  width: 100%;
  position: relative;
}

.how-to-book-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background: var(--border);
}

/* Single container for all benefits with one border */
.benefits-card-container {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.benefits-list { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
}

.benefit-item { 
  display: flex; 
  align-items: flex-start; 
  margin-bottom: 20px;
  padding: 0; 
  background: transparent; 
  border-radius: 0;
  border: none;
  transition: all 0.3s ease;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-item:hover {
  background: rgba(197, 160, 99, 0.03);
  padding-left: 10px;
  border-radius: 4px;
}

.benefit-icon { 
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 28px;
  transition: all 0.3s ease;
  margin-right: 20px;
  margin-top: -3px;
  line-height: 1;
  height: 28px;
  min-width: 28px;
}

.benefit-item:hover .benefit-icon {
  color: var(--gold-dark);
  transform: scale(1.05);
}

.benefit-text { 
  flex: 1; 
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  padding-top: 2px;
}

.benefit-text ul { 
  margin: 5px 0 0 18px; 
  padding: 0; 
}

.benefit-text li { 
  margin-bottom: 5px; 
  font-size: 15px;
  line-height: 1.5;
}

.benefit-name {
  font-size: 17px;
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}

/* ================= CTA CONTAINER - SPACING FIX ================= */
.cta-container {
  background: rgba(197, 160, 99, 0.03);
  border-radius: 8px;
  padding: 30px 25px; /* Increased from 20px for better vertical spacing */
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  margin-top: 25px;
}

/* Add container for text to control spacing */
.cta-text-container {
  margin-bottom: 25px; /* Creates consistent space between text and button */
}

/* Style for paragraphs inside CTA */
.cta-text {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 15px; /* Space between paragraphs */
  line-height: 1.6;
}

.cta-text:last-child {
  margin-bottom: 0; /* Remove margin from last paragraph */
}

.cta-btn {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 12px 25px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  margin-top: 0; /* Button margin now controlled by .cta-text-container */
}

.cta-btn:hover {
  background: rgba(197, 160, 99, 0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(197, 160, 99, 0.2);
}

.cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(197, 160, 99, 0.2);
}

/* ================= MOBILE & TABLET RESPONSIVE ADJUSTMENTS ================= */

/* Tablet (768px and below) */
@media (max-width: 768px) {
  .how-to-book-section::after {
    left: 15px;
    right: 15px;
  }
  
  .benefits-card-container {
    padding: 20px;
  }
  
  .benefit-item {
    flex-direction: row; /* Keep row layout */
    align-items: flex-start;
    margin-bottom: 15px;
  }
  
  .benefit-icon {
    margin-right: 15px;
    font-size: 24px;
    min-width: 24px;
    height: 24px;
  }
  
  .benefit-text {
    font-size: 14px;
  }
  
  .benefit-text ul {
    margin-left: 15px;
  }
  
  .benefit-text li {
    font-size: 14px;
  }
  
  .benefit-name {
    font-size: 15px;
  }
  
  .cta-container {
    padding: 25px 20px;
    margin-top: 20px;
  }
  
  .cta-text-container {
    margin-bottom: 20px;
  }
  
  .cta-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  
  .cta-btn {
    padding: 12px 25px;
    font-size: 15px;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .benefits-card-container {
    padding: 15px;
  }
  
  .benefit-item {
    margin-bottom: 12px;
  }
  
  .benefit-icon {
    margin-right: 12px;
    font-size: 22px;
    min-width: 22px;
    height: 22px;
  }
  
  .cta-container {
    padding: 20px 15px;
  }
  
  .cta-text-container {
    margin-bottom: 18px;
  }
  
  .cta-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  
  .cta-btn {
    padding: 12px 20px;
    font-size: 15px;
  }
}