/* --- 5. PAGE SPECIFIC: PRICING HEADER --- */

.pricing-header { padding: 80px 10% 40px; text-align: center; }

.pricing-header h1 { 
    font-size: 2.5rem; 
    position: relative; 
    padding-bottom: 10px; 
    text-transform: uppercase; 
}
.pricing-header h1::after { 
    content: ''; 
    width: 60px; height: 4px; 
    background: #c5a059; 
    position: absolute; bottom: 0; left: 50%; 
    transform: translateX(-50%); 
}

/* --- 6. PAGE SPECIFIC: PRICING GRID --- */
.pricing-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 40px; 
    padding: 40px 5% 80px; 
}

.price-card { 
    background: white; 
    padding: 50px 30px; 
    text-align: center; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    border: 1px solid #eee; 
    transition: 0.3s;
}
.price-card:hover { transform: translateY(-5px); }

.price-card h3 { text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.price-card .amount { font-size: 3rem; font-weight: 800; color: #c5a059; margin-bottom: 20px; }
.price-card ul { list-style: none; margin-bottom: 30px; color: #666; }
.price-card li { margin-bottom: 10px; font-size: 0.95rem; }

/* --- 6. FOOTER STYLES --- */
.main-footer {
    background: #111;
    color: #eee;
    padding: 60px 10% 20px;
    margin-top: 60px;
    border-top: 2px solid #c5a059; /* Matching the dropdown gold line */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #3160d6; /* Matching your Blue logo span */
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-section h4 {
    color: #c5a059;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-section ul a:hover {
    color: #c5a059;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222;
    font-size: 0.8rem;
    color: #666;
}

/* Footer Responsive Fix */

/* Regulare Phones */

@media (max-width: 768px) {

    .pricing-grid {
        /* 1. Swap 10% for a fixed small pixel value */
        padding: 0 15px 60px !important;

        /* 2. Lower the floor to 280px so it fits even small phones */
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

        /* 3. Tighten the gap so cards don't feel "loose" */
        gap: 20px;
    }

    .price-card {
        /* 4. Ensure the card itself doesn't have a fixed width */
        width: 100%;
        max-width: 100%;
        padding: 40px 20px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


/* For old phones /folding phones / etc ... */

@media (max-width: 480px) {
    .pricing-grid {
        /* Change 280px to 250px to survive the "Fold" test */
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        padding: 0 10px 40px !important;
    }
}
