/* Plans Page Hero Section */
.hero-overlay{
    background-image: url(../img/bg/bg5.jpg);
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}
.hero-overlay img{
    width: 110vw;
    opacity: 0.7;
    animation: float 8s ease-in-out infinite;
}
.hero-content{
    color: var(--light);
}
.btn-secondary {
    color: var(--light);
}
.shape-2 {
    background: var(--brand-green);
}
/* End of Services Page Hero Section */

/* Plans & Package Page Main Content */
/* ================================= */
.plans-main {
    padding: 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
}
/* ----------------------- */
.plan-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* ---- ---- */
.plans-intro {
    padding: 50px 50px 60px 50px;
}
.plans-intro p {
    font-size: 18px;
    font-weight: 300;
}

/* ------------- */
.plans-grid {
    display: flex;
    flex-direction: column;
}

/* ------------ */
.plan-section {
    padding: 20px 25px 25px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.plan-section.full-width {
    width: 100%;
    background: transparent;
}
.section-title {
    font-size: 22px;
    font-weight: 500;
    text-align: start;
    position: relative;
    padding: 10px 0;
    color: var(--primary);
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--brand-green);
    border-radius: 2px;
}
.plan-section .price{
    font-size: 20px;
    font-weight: 600;
    color: var(--brand-green);
    padding: 5px 0;
    margin-bottom: 20px;
}

/* --- Basic Solutions Grid --- */
.basic-solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.solution-card {
    background: var(--white);
    padding: 30px 10px 45px 10px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid var(--brand-green);
}
.solution-icon {
    font-size: 40px;
    color: var(--brand-green);
    margin-bottom: 15px;
}
.solution-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* --- Package Plans --- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding-top: 10px;
}
.plan-card {
    background: var(--white);
    border-radius: 12px;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
}
.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.plan-card.featured {
    border-color: var(--brand-green);
    transform: scale(1.03);
    background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
}
.plan-card.featured:hover {
    transform: scale(1.03) translateY(-5px);
}
.badge {
    position: absolute;
    top: -18px;
    right: 30px;
    background: var(--brand-green);
    color: var(--light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    font-style: italic;
}
.plan-header {
    border-bottom: 1px solid #eee;
}
.plan-subtitle {
    font-size: 16px;
    color: var(--bgcol);
    margin-bottom: 5px;
}
.features-list {
    margin: 20px 0;
    text-align: left;
}
.features-list li {
    font-size: 12px;
    line-height: 25px;
}
.features-list i {
    color: var(--brand-green);
    margin-right: 10px;
    font-weight: 700;
}
.features-list .support-plan {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    color: #666;
}
.btn{
    background: var(--primary);
    color: var(--light);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}
.btn:hover {
    background: var(--brand-green);
    box-shadow: 0 8px 20px rgba(34, 139, 34, 0.3);
}
.plans-note {
    width: fit-content;
    text-align: center;
    margin: 40px auto 20px auto;
    padding: 20px 50px;
    background: #f0fdf4;
    border-left: 4px solid var(--brand-green);
    border-radius: 8px;
    color: var(--bgcol);
    font-size: 16px;
}

/* ================================== */
/* ========= Tablet Styles ========== */
@media (max-width: 1024px) {
    .hero-overlay img{
        height: 120%;
        object-fit: cover;
        object-position: top right;
    }
    .plans-main{
        padding: 10px 5px;
    }
    .plans-grid{
        gap: 30px;
    }
    .plans-intro p{
        font-size: 16px;
        font-weight: 200;
    }
    .plans-note{
        margin: 30px 20px 20px 20px;
        padding: 20px;
    }
}
/* ========== Mobile Styles ========== */
@media (max-width: 600px) {
    .plans-main{
        padding: 0px;
    }
    .container h2{
        font-size: 22px;
        font-weight: 400;
    }
    .plans-intro{
        padding: 30px;
    }
    .plans-intro p{
        font-size: 14px;
    }
    .plans-grid{
        gap: 20px;
    }
    .plan-section{
        background: var(--secondary);
    }
    .solution-card h4{
        font-size: 20px;
        font-weight: 500;
    }
    .packages-grid{
        gap: 40px;
    }
    .plans-note{
        padding: 15px;
    }
    .plans-note p{
        font-size: 11px;
    }
}