/* Custom Pricing Section */
.custom-pricing-section {
    background: linear-gradient(135deg, #7db347 0%, #319488 100%);
    padding: 80px 0 100px;
}

/* Header Button */
.pricing-header {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.pricing-header-btn {
    background: #fff;
    color: #0A2540;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Pricing Cards */
.custom-pricing-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card-orange {
    border-top: 15px solid #F38400;
}

.pricing-card-navy {
    border-top: 15px solid #0A2540;
}

.pricing-card-header {
    padding: 30px 30px 10px;
}

.pricing-card-header h3 {
    color: #0A2540;
    font-size: 26px;
    margin-bottom: 5px;
}

.pricing-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F38400;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.pricing-subtitle::before,
.pricing-subtitle::after {
    content: '';
    height: 1px;
    background: #ccc;
    flex: 1;
    margin: 0 15px;
}

.pricing-card-header p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

/* Pricing Table */
.pricing-table {
    padding: 20px 30px 30px;
    border-bottom: 1px solid #eee;
}

.pricing-table-header,
.pricing-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}

.pricing-table-header {
    margin-bottom: 15px;
}

.pricing-table-header span {
    color: #666;
    font-size: 11px;
    text-transform: capitalize;
}

.pricing-table-row .price-val {
    color: #0A2540;
    font-weight: 400;
    font-size: 16px;
}

/* Quantity Selector */
.qty-selector {
    display: inline-flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 30px;
    padding: 5px 15px;
    margin: 0 auto;
}

.qty-selector button {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    cursor: pointer;
    padding: 0 5px;
}

.qty-selector input {
    background: none;
    border: none;
    width: 30px;
    text-align: center;
    font-weight: 400;
    color: #0A2540;
    font-size: 16px;
}

/* Input number arrows hide */
.qty-selector input::-webkit-outer-spin-button,
.qty-selector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty-selector input[type=number] {
  -moz-appearance: textfield;
}

/* Features List */
.pricing-features {
    padding: 30px;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    color: #888;
    font-size: 14px;
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

.feature-name {
    display: flex;
    align-items: center;
}

.feature-name i {
    color: #6dba4f;
    border: 1px solid #6dba4f;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-right: 10px;
}

.feature-val {
    color: #aaa;
}

/* Action Button */
.pricing-footer {
    padding: 0 30px 30px;
}

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 0;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-btn i {
    margin-left: 10px;
}

.btn-orange-outline {
    background: #fff;
    border: 1px solid #F38400;
    color: #F38400;
}

.btn-orange-outline:hover {
    background: #F38400;
    color: #fff;
}

.btn-navy-solid {
    background: #0A2540;
    border: 1px solid #0A2540;
    color: #fff;
}

.btn-navy-solid:hover {
    background: #06192d;
}

