/* ===== PACKAGES PAGE SPECIFIC STYLES ===== */
/* This file contains styles that are ONLY used on the packages page */

/* ===== PAGE HERO SECTION ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, #1e3a8a 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

/* Floating Elements */
.page-hero .container::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: -1;
}

.page-hero .container::after {
    content: '';
    position: absolute;
    bottom: 30%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 2px;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.page-subtitle::before {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0.7;
}

.page-subtitle::after {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0.7;
}

/* ===== PACKAGES DETAILED SECTION ===== */
.packages-detailed {
    padding: 5rem 0;
    background: var(--bg-light);
    position: relative;
}

.packages-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    z-index: 1;
}

.packages-detailed .container {
    position: relative;
    z-index: 2;
}

/* ===== MODERN PACKAGE CARDS ===== */
.package-card-detailed {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.package-card-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    z-index: 1;
}

.package-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card-detailed.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.2);
}

.package-card-detailed.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge.featured {
    position: absolute;
    top: 5px;
    right: 5px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.rush-course-card {
    display: none;
}

/* ===== DESKTOP RUSH COURSE CARD ===== */
.desktop-rush-course-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.desktop-rush-course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(37, 99, 235, 0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.desktop-rush-course-card .rush-course-content h3 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.desktop-rush-course-card .rush-course-description {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.desktop-rush-course-card .rush-course-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.desktop-rush-course-card .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.desktop-rush-course-card .feature-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.desktop-rush-course-card .feature-item i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.desktop-rush-course-card .feature-item span {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1rem;
}

.desktop-rush-course-card .rush-course-pricing {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(37, 99, 235, 0.1);
}

.desktop-rush-course-card .price-highlight {
    margin-bottom: 2rem;
}

.desktop-rush-course-card .price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
}

.desktop-rush-course-card .price-note {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.desktop-rush-course-card .rush-course-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.desktop-rush-course-card .rush-course-actions .btn {
    padding: 1rem 1.5rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.desktop-rush-course-card .rush-course-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.desktop-rush-course-card .rush-course-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.desktop-rush-course-card .rush-course-actions .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.desktop-rush-course-card .rush-course-actions .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ===== PACKAGE HEADER ===== */
.package-header-detailed {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-header-detailed h3 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price-detailed {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
}

.package-header-detailed p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* ===== PACKAGE CONTENT ===== */
.package-content-detailed {
    padding: 2rem;
}

.package-features h4 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-features h4::before {
    content: '';
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.package-features li i {
    color: #10b981;
    font-size: 1rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.3rem;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== PACKAGE INFO ===== */
.package-info {
    background: rgba(37, 99, 235, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.package-info p {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.package-info p:last-child {
    margin-bottom: 0;
}

.package-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== PACKAGE ACTIONS ===== */
.package-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.package-actions .btn {
    padding: 1rem 1.5rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.package-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.package-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.package-actions .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.package-actions .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ===== PAYMENT OPTIONS SECTION ===== */
.payment-options {
    padding: 3rem 0;
    background: var(--bg-white);
}

.payment-options h2 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.payment-options .lead {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ===== TRUST CARDS (Payment Options) ===== */
.trust-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.trust-card:hover::before {
    transform: scaleX(1);
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

.trust-card h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.trust-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ===== ADDITIONAL SERVICES SECTION ===== */
.additional-services {
    padding: 3rem 0;
    background: var(--bg-light);
}

.additional-services h2 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.additional-services .lead {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===== CERTIFICATION CARDS (Additional Services) ===== */
.certification-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.certification-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.certification-card:hover::after {
    opacity: 1;
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.certification-card:hover .cert-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.certification-card h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.certification-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 2.3rem 0;
    background: var(--bg-white);
}

.faq-section h2 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-section .lead {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ===== MODERN ACCORDION ===== */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background: var(--bg-white);
}

.accordion-button {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: none;
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem 2rem;
    color: var(--text-light);
    line-height: 1.6;
    background: var(--bg-white);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section .lead {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-outline-primary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.cta-buttons .btn-outline-primary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* ===== TABLET ONLY (768px - 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .page-hero {
        padding-top: 5rem !important;
        margin-top: -15px;
    }
    .page-title {
        font-size: 3rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
        max-width: 500px;
    }
    
    .page-subtitle::before,
    .page-subtitle::after {
        display: none;
    }
    
    .packages-detailed {
        padding: 4rem 0;
    }
    
    .package-card-detailed.featured {
        transform: scale(1.02);
    }
    
    .package-card-detailed.featured:hover {
        transform: scale(1.02) translateY(-8px);
    }
    
    .package-header-detailed {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .package-header-detailed h3 {
        font-size: 1.6rem;
    }
    
    .price-detailed {
        font-size: 2.8rem;
    }
    
    .package-content-detailed {
        padding: 1.8rem;
    }
    
    .package-features h4 {
        font-size: 1.1rem;
    }
    
    .package-features li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .package-info {
        padding: 1.2rem;
    }
    
    .package-info p {
        font-size: 0.85rem;
    }
    
    .package-actions .btn {
        padding: 0.9rem 1.3rem;
        font-size: 0.95rem;
    }

    .rush-course-card {
        display: block;
    }
    
    .payment-options,
    .additional-services,
    .faq-section,
    .cta-section {
        padding: 4rem 0;
    }
    
    .trust-card {
        padding: 2rem 1.5rem;
    }
    
    .trust-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .trust-card h4 {
        font-size: 1.2rem;
    }
    
    .certification-card {
        padding: 1.8rem;
    }
    
    .cert-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .certification-card h5 {
        font-size: 1.1rem;
    }
    
    .certification-card p {
        font-size: 0.9rem;
    }
    
    .accordion-button {
        padding: 1.3rem 1.8rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1.3rem 1.8rem;
    }
    
    .cta-buttons {
        gap: 0.8rem;
    }
    
    .cta-buttons .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        min-width: 180px;
    }
}

/* ===== MOBILE ONLY (max-width: 768px) ===== */
@media (max-width: 768px) {
    .page-hero {
        padding-top: 5rem !important;
        margin-top: -15px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .page-subtitle::before,
    .page-subtitle::after {
        display: none;
    }
    
    .page-title::after {
        width: 60px;
        height: 3px;
    }
    
    .packages-detailed {
        padding: 3rem 0;
    }
    
    .package-card-detailed.featured {
        transform: none;
    }
    
    .package-card-detailed.featured:hover {
        transform: translateY(-5px);
    }
    
    .package-badge.featured {
        top: -8px;
        right: 15px;
        padding: 0.4rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .package-header-detailed {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .package-header-detailed h3 {
        font-size: 1.5rem;
    }
    
    .price-detailed {
        font-size: 2.5rem;
    }
    
    .package-content-detailed {
        padding: 1.5rem;
    }
    
    .package-features h4 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .package-features li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        gap: 0.6rem;
    }
    
    .package-features li i {
        width: 20px;
        height: 20px;
        font-size: 0.9rem;
        padding: 0.2rem;
    }
    
    .package-info {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .package-info p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .package-actions {
        gap: 0.8rem;
    }
    
    .package-actions .btn {
        padding: 0.9rem 1.3rem;
        font-size: 0.9rem;
    }

    .rush-course-card {
        display: block;
    }
    
    .payment-options,
    .additional-services,
    .faq-section,
    .cta-section {
        padding: 3rem 0;
    }
    
    .trust-card {
        padding: 1.8rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .trust-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .trust-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .trust-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .certification-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cert-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .certification-card h5 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .certification-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .accordion-item {
        margin-bottom: 0.8rem;
    }
    
    .accordion-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-section .lead {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ===== SMALL MOBILE ONLY (max-width: 576px) ===== */
@media (max-width: 576px) {
    .page-hero {
        padding: 3rem 0;
    }
    
    .page-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .packages-detailed {
        padding: 2rem 0;
    }
    
    .package-header-detailed {
        padding: 1.5rem 1rem 1rem;
    }
    
    .package-header-detailed h3 {
        font-size: 1.3rem;
    }
    
    .price-detailed {
        font-size: 2rem;
    }
    
    .package-content-detailed {
        padding: 1.2rem;
    }
    
    .package-features h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .package-features li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .package-info {
        padding: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .package-info p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .package-actions .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .payment-options,
    .additional-services,
    .faq-section,
    .cta-section {
        padding: 2.5rem 0;
    }
    
    .trust-card,
    .certification-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .trust-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .cert-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .trust-card h4,
    .certification-card h5 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .trust-card p,
    .certification-card p {
        font-size: 0.8rem;
    }
    
    .accordion-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .accordion-body {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
    }
    
    .cta-section .lead {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons .btn {
        max-width: 250px;
        padding: 0.9rem 1.3rem;
        font-size: 0.9rem;
    }
}

/* ===== DESKTOP RUSH COURSE CARD ===== */
@media (max-width: 991px) {
    .desktop-rush-course-card {
        display: none;
    }
}

/* Show mobile rush course card on mobile */
@media (max-width: 768px) {
    .rush-course-card {
        display: block;
    }
} 