/* Price Section */
.price-section {
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.1);
}

.price-section .h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* Price Info Block */
.price-info-block {
  margin: 0;
  text-align: center;
}

.price-info {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
  margin: 0 auto;
}

.price-info__main {
  margin-bottom: 32px;
}

.price-info__amount {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.price-info__note {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 4px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.price-info__per-person {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 20px 0;
  font-weight: 400;
}

/* Payment Information */
.price-info__payment {
  margin-top: 12px;
}

.price-info__payment-simple {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
}

.price-info__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
  text-align: left;
}

.price-info__included,
.price-info__not-included {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-info__included h4,
.price-info__not-included h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px 0;
  letter-spacing: 0.5px;
}

.price-info__included h4 {
  color: #4ade80;
}

.price-info__not-included h4 {
  color: #f87171;
}

.price-info__included ul,
.price-info__not-included ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-info__included li,
.price-info__not-included li {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 8px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}

.price-info__included li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: bold;
}

.price-info__not-included li:before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: bold;
}

/* Special notes styling */
.price-info__not-included .special-note-header {
  margin-top: 16px !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(255, 193, 7, 0.3) !important;
  color: #ffc107 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

.price-info__not-included .special-note-header:before {
  content: '⚠' !important;
  color: #ffc107 !important;
  font-size: 16px !important;
}

.price-info__not-included .special-note {
  background: rgba(255, 193, 7, 0.08) !important;
  border-radius: 6px !important;
  padding: 8px 12px !important;
  margin: 6px 0 !important;
  border-left: 3px solid #ffc107 !important;
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
}

.price-info__not-included .special-note:before {
  content: '' !important;
}

.price-info__contact {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-info__contact p {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 12px 0;
}

.price-info__contact-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.price-info__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
}

.price-info__contact-link:first-child {
  background: #25D366; /* WhatsApp green */
}

.price-info__contact-link:first-child:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.price-info__contact-link:last-child {
  background: #0088cc; /* Telegram blue */
}

.price-info__contact-link:last-child:hover {
  background: #006699;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

.price-info__contact-link .whatsapp-icon,
.price-info__contact-link .telegram-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .price-section {
    padding: 30px 20px;
  }
  
  .price-section .h2 {
    margin-bottom: 25px;
  }
  
  .price-info {
    padding: 24px 20px;
    margin: 0;
  }
  
  .price-info__details {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .price-info__included,
  .price-info__not-included {
    padding: 20px;
  }
  
  .price-info__amount {
    font-size: 36px;
  }
  
  .price-info__note {
    font-size: 14px;
  }
  
  .price-info__per-person {
    font-size: 14px;
  }
  
  .price-info__payment {
    margin-top: 10px;
  }
  
  .price-info__payment-simple {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .price-info__amount {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .price-section {
    padding: 20px 16px;
  }
  
  .price-section .h2 {
    margin-bottom: 20px;
  }
  
  .price-info {
    padding: 20px 16px;
  }
  
  .price-info__amount {
    font-size: 32px;
    line-height: 1.1;
  }
  
  .price-info__note {
    font-size: 12px;
  }
  
  .price-info__per-person {
    font-size: 13px;
  }
}

/* Cards / USPs - Modern Design */
.grid-4{display:grid;grid-template-columns:repeat(2,1fr);gap:26px;margin-top:18px}
@media (max-width:960px){ .grid-4{grid-template-columns:1fr;gap:20px;margin-top:16px} }
@media (max-width:560px){ .grid-4{grid-template-columns:1fr;gap:16px;margin-top:14px} }

.usp-item{
  position:relative;
  padding:0;
  background:transparent;
  border:none;
  border-radius:0;
  box-shadow:none;
  transition:transform 0.3s ease, opacity 0.3s ease;
  overflow:visible;
}

.usp-item:hover{
  transform:translateY(-2px);
}

.usp-item:hover h3{
  color:rgba(255,255,255,1);
}

.usp-item:hover h3:after{
  width:50px;
  background:rgba(233,30,99,1);
}

.usp-item:before{
  display:none;
}

.usp-item h3{
  margin:0 0 12px;
  font-family:"Unbounded",sans-serif;
  font-size:clamp(24px, 4vw, 32px);
  color:#ffffff;
  font-weight:400;
  letter-spacing:0.02em;
  position:relative;
  padding-bottom:8px;
}

.usp-item h3:after{
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:40px;
  height:2px;
  background:var(--accent);
  border-radius:1px;
  transition:width 0.3s ease, background 0.3s ease;
}

.usp-item p{
  margin:0;
  color:rgba(255,255,255,0.7);
  line-height:1.65;
  font-size:17px;
  font-weight:300;
  padding-left:0;
}

@media (max-width:768px){
  .usp-item h3{
    font-size:24px;
  }
  .usp-item p{
    font-size:16px;
  }
}
