/* Price Page Specific Styles */

/* Hero Section Extension */
.price-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}
.price-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 30, 60, 0.7);
    z-index: 1;
}
.price-hero .container {
    position: relative;
    z-index: 2;
}
.price-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.price-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Concept Section */
.price-concept {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}
.price-concept h3 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 2rem;
}
.price-concept p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Fee Structure Flow */
.fee-structure {
    padding: 80px 0;
    background-color: #f4f7f9;
}
.section-title {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 60px;
}
.fee-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
}
.fee-step-card {
    background: #fff;
    border-radius: 4px;
    padding: 40px 30px;
    flex: 1 1 300px;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    border-top: 5px solid #003366;
    text-align: center;
}
.step-number {
    background: #003366;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    font-weight: bold;
    margin: -60px auto 20px; /* Pull up */
    font-size: 1.2rem;
}
.fee-step-card h4 {
    font-size: 1.4rem;
    color: #003366;
    margin-bottom: 20px;
}
.price-highlight {
    font-size: 1.8rem;
    font-weight: bold;
    color: #da532c;
    margin: 15px 0;
}
.price-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    text-align: left;
}
.price-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 10px;
    text-align: left;
}

/* Monthly Plans (Pricing Table) */
.monthly-plans {
    padding: 80px 0;
    background: #fff;
}
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}
.plan-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.plan-card.recommended {
    border: 2px solid #003366;
    background: #fdfdfd;
    position: relative;
    transform: scale(1.05);
    z-index: 2;
}
.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #003366;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.plan-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}
.plan-price {
    margin-bottom: 30px;
}
.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003366;
}
.price-unit {
    font-size: 1rem;
    color: #666;
}
.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1; /* Pushes content down */
    text-align: left;
}
.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    position: relative;
    padding-left: 25px;
}
.plan-features li:last-child {
    border-bottom: none;
}
.plan-features li::before {
    content: '\f00c'; /* FontAwesome Check */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #28a745;
}
/* Features specific for plans */
.plan-card.recommended .plan-features li::before {
    color: #003366;
}


/* CTA Area */
.price-cta {
    background: linear-gradient(to right, #003366, #004080);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.price-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.price-cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}
.cta-btn {
    display: inline-block;
    background: #ffd700;
    color: #003366;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.2s;
}
.cta-btn:hover {
    transform: scale(1.05);
    background: #ffdb4d;
}

@media (max-width: 900px) {
    .pricing-table {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .plan-card.recommended {
        transform: none;
        order: -1; /* Show recommended plan first on mobile */
    }
}
