.image-full{
   display:block;
  }

 .image-mobile{
  display:none;
 }

@media (max-width: 992px){
  .image-full{
   display:none;
  }

  .image-mobile{
   display:block;
  }
}

/* rates */

:root {
    --orange: #FF8C00;
}

.pricing-section {
    background: linear-gradient(135deg, #1a1a1a, #000);
    border: 2px solid var(--orange);
    border-radius: 20px;
    padding: 40px;
    margin: 20px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    color: var(--green);
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.bay-section {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 25px;
    margin: 15px;
    border: 1px solid #333;
}

.bay-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--green);
}

.bay-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.standard-icon {
    background-color: var(--green);
}

.luxury-icon {
    background-color: var(--orange);
    color: var(--black);
    font-size: 20px;
    font-weight: bold;
}

.bay-info h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
}

.bay-info p {
    color: #ccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin: 0;
}

.rate-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: var(--black);
    border: 2px solid var(--green);
    border-radius: 15px;
    padding: 15px;
    transition: all 0.3s ease;
}

.rate-item:hover {
    border-color: var(--orange);
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.2);
}

.price-badge {
    background-color: var(--green);
    color: var(--black);
    padding: 15px 20px;
    border-radius: 12px;
    margin-right: 25px;
    min-width: 120px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 128, 0, 0.3);
}

.price-badge .amount {
    font-size: 1.6rem;
    font-weight: bold;
    display: inline;
}

.price-badge .period {
    font-size: 1rem;
    font-weight: bold;
    margin-left: 2px;
    display: inline;
}

.time-info {
    color: var(--white);
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.4;
}

.book-now-btn {
    background: linear-gradient(45deg, var(--orange), #FFB84D);
    color: var(--white);
    border: none;
    padding: 18px 60px;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 12px;
    text-transform: uppercase;
    margin: 30px auto;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.book-now-btn a {
    color: var(--white);
}

.book-now-btn a:hover {
    color: var(--white);
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
}

/* Enhanced Punch Cards */
.punch-cards-section {
    background: linear-gradient(135deg, #1a1a1a, #000);
    border: 2px solid var(--green);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

.punch-cards-header {
    text-align: center;
    margin-bottom: 40px;
}

.punch-cards-title {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.punch-tagline {
    color: var(--green);
    font-size: 1.6rem;
    font-weight: bold;
    margin: 15px 0;
}

.punch-subtitle {
    color: var(--orange);
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
}

.card-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.punch-card {
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    min-width: 280px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.punch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.card-5 {
    background: linear-gradient(135deg, var(--lightgrey), #f0f0f0);
    color: var(--black);
}

.card-10 {
    background: linear-gradient(135deg, var(--orange), #FFB84D);
    color: var(--black);
}

.card-20 {
    background: linear-gradient(135deg, #666, #888);
    color: var(--white);
}

.card-header {
    margin-bottom: 20px;
}

.original-hours {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

.card-type {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: bold;
    margin: 5px 0;
}

.now-arrow {
    font-size: 0.8rem;
    font-style: italic;
    margin: 10px 0;
}

.bonus-hours {
    font-size: 4rem;
    font-weight: 900;
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.card-10 .bonus-hours {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hours-label {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.card-price {
    font-size: 2rem;
    font-weight: bold;
    margin: 20px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.progress-track {
    margin: 20px 0;
    height: 8px;
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
    overflow: hidden;
}

.buy-button {
    background-color: var(--green);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.buy-button a {
    color: var(--white);
}

.buy-button:hover {
    transform: scale(1.05);
}

.feature-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
}

.feature-icon {
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.feature-icon i {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
    color: var(--green);
}

.feature-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .bay-section {
        margin: 10px 0;
    }
    
    .punch-card {
        min-width: 250px;
        margin: 10px 0;
    }
    
    .book-now-btn {
        padding: 15px 40px;
        font-size: 1.2rem;
    }
    
    .feature-icons {
        flex-direction: column;
        gap: 20px;
    }
}

