/* Pricing Section Styles */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(to right, #f9f9ff, #ffffff, #f9f9ff);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(126, 127, 190, 0.08) 0%, rgba(126, 127, 190, 0.03) 100%);
    top: -150px;
    left: -100px;
    z-index: 0;
}

.pricing-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(126, 127, 190, 0.07) 0%, rgba(126, 127, 190, 0.02) 100%);
    bottom: -200px;
    right: -200px;
    z-index: 0;
}

.pricing-section .container {
    position: relative;
    z-index: 1;
}

.pricing-section .pattern-1,
.pricing-section .pattern-2,
.pricing-section .pattern-3 {
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.5;
    animation: float 10s ease-in-out infinite;
}

.pricing-section .pattern-1 {
    width: 150px;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%237e7fbe' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    top: 20%;
    left: 5%;
}

.pricing-section .pattern-2 {
    width: 180px;
    height: 180px;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237e7fbe' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    bottom: 15%;
    right: 8%;
    animation-duration: 15s;
    animation-direction: reverse;
}

.pricing-section .pattern-3 {
    width: 120px;
    height: 120px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%237e7fbe' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    top: 60%;
    left: 15%;
    animation-duration: 12s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #005580;
    position: relative;
    display: inline-block;
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 200px;
    height:5px;
    background: linear-gradient(135deg, #002941, #006798);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Fee Cards Styles */
.fees-table-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 0 auto 40px;
}

.fee-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(126, 127, 190, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.fee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(126, 127, 190, 0.15);
}

.fee-card-header {
    background-color: #005580;
    background-image: url(../images/blue-gb-wide.webp);
    background-size: cover;
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 20px;
    text-align: center;
    letter-spacing: 0.5px;
}

.fee-periods {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fee-period {
    background: rgba(249, 249, 255, 0.7);
    border-radius: 8px;
    padding: 15px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(126, 127, 190, 0.1);
}

.fee-period:hover {
    transform: translateY(-3px);
    background: rgba(242, 242, 255, 0.9);
}

.spot-period {
    background: rgba(240, 242, 255, 0.8);
    border: 1px solid rgba(126, 127, 190, 0.2);
}

.period-title {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
    background: rgba(126, 127, 190, 0.08);
    padding: 5px 10px;
    border-radius: 5px;
    letter-spacing: 0.5px;
}

.fee-amount {
    text-align: center;
    padding: 8px 0;
}

.base-fee {
    font-size: 15px;
    color: #666;
    margin-bottom: 3px;
}

.total-fee {
    font-size: 18px;
    font-weight: 600;
    color: #7E7FBE;
}

/* Registration Includes */
.registration-includes {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(126, 127, 190, 0.1);
    padding: 25px;
    margin-top: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.registration-includes h3 {
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.registration-includes h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: #7E7FBE;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.includes-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #666;
    background: rgba(249, 249, 255, 0.7);
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(126, 127, 190, 0.1);
}

.include-item i {
    color: #7E7FBE;
    font-size: 18px;
}

/* View All Button */
.view-all-btn-container {
    text-align: center;
    margin: 40px auto 0;
}

.view-all-btn {
    display: inline-block;
    background: linear-gradient(135deg, #002941, #006798);
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #7E7FBE;
    box-shadow: 0 8px 20px rgba(0, 41, 65, 0.2);
    position: relative;
    overflow: hidden;
}

.view-all-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #006798, #002941);
    box-shadow: 0 12px 25px rgba(0, 41, 65, 0.3);
    color: #fff;
}

.view-all-btn:hover:before {
    width: 100%;
}

/* Register Button */

/* Styling for Evenuefy registration button */
.evenuefy-register-btn {
    display: block;
    width: 100%;
    padding: 12px 15px;
    background-color: #560b5b;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
}

.evenuefy-register-btn:hover {
    background-color: #7E7FBE;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.evenuefy-register-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.evenuefy-register-btn:hover:before {
    left: 100%;
}

/* New class for registration fee cards only */
.fee-card .card-register-btn {
    display: block;
    width: 100%;
    padding: 12px 15px;
    background-color: #005580;
    background-image: url(../images/blue-gb-wide.webp);
    background-size: cover;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
}

.fee-card .card-register-btn:hover {
    background-color: #7E7FBE;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.fee-card .card-register-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.fee-card .card-register-btn:hover:before {
    left: 100%;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .fees-table-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 32px;
    }
    
    .fees-table-container {
        grid-template-columns: 1fr;
    }
    
    .fee-period {
        padding: 12px;
    }
    
    .period-title {
        font-size: 13px;
    }
    
    .base-fee {
        font-size: 14px;
    }
    
    .total-fee {
        font-size: 16px;
    }
    
    .includes-items {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .view-all-btn {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .evenuefy-register-btn {
        padding: 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .fee-card-header {
        font-size: 18px;
    }
    
    .register-btn {
        width: 90%;
        padding: 10px 20px;
        font-size: 15px;
    }
    
    .include-item {
        width: 100%;
        justify-content: center;
    }
    
    .view-all-btn {
        width: 90%;
        max-width: 300px;
        padding: 12px 20px;
        font-size: 15px;
    }
}