/* HnM Pricing Display Styles */

.hnm-pricing-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.hnm-pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.hnm-pricing-header h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 10px;
    font-weight: 700;
}

.hnm-pricing-header p {
    font-size: 1.1rem;
    color: #64748b;
}

/* Pricing Grid */
.hnm-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 1200px) {
    .hnm-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Pricing Card */
.hnm-pricing-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.hnm-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
    border-color: #1e3a8a;
}

.hnm-pricing-card-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.hnm-pricing-card-header h3 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.hnm-pricing-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Services List */
.hnm-pricing-services {
    margin-bottom: 25px;
    min-height: 280px;
    flex-grow: 1;
}

.hnm-service-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #334155;
}

.hnm-checkmark {
    color: #10b981;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Prices */
.hnm-pricing-prices {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.hnm-price-label {
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    font-weight: 600;
}

.hnm-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.hnm-price-row:last-child {
    border-bottom: none;
}

.hnm-vehicle-type {
    font-size: 1rem;
    color: #334155;
    font-weight: 500;
}

.hnm-price {
    font-size: 1.2rem;
    color: #1e3a8a;
    font-weight: 700;
}

/* CTA Button */
.hnm-pricing-cta {
    text-align: center;
    margin-top: auto;
}

.hnm-book-btn {
    display: inline-block;
    background: #1e3a8a;
    color: white;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.hnm-book-btn:hover {
    background: #1e40af;
    transform: scale(1.05);
    color: white;
    text-decoration: none;
}

/* Add-ons Section */
.hnm-addons-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e2e8f0;
}

.hnm-addons-section h3 {
    text-align: center;
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 30px;
    font-weight: 700;
}

.hnm-addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.hnm-addon-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hnm-addon-card:hover {
    transform: translateY(-5px);
}

.hnm-addon-card h4 {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.hnm-addon-price {
    font-size: 2rem;
    font-weight: 700;
    margin: 15px 0;
}

.hnm-addon-btn {
    display: inline-block;
    background: white;
    color: #1e3a8a;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.hnm-addon-btn:hover {
    background: #f1f5f9;
    color: #1e3a8a;
    text-decoration: none;
    transform: scale(1.05);
}

/* Footer */
.hnm-pricing-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.hnm-pricing-footer p {
    color: #64748b;
    margin: 10px 0;
    font-size: 0.95rem;
}

/* Single Pricing Card */
.hnm-single-pricing-card {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
}

.hnm-single-pricing-card h3 {
    font-size: 2rem;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hnm-pricing-header h2 {
        font-size: 2rem;
    }
    
    .hnm-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .hnm-pricing-card {
        padding: 20px;
    }
    
    .hnm-pricing-card-header h3 {
        font-size: 1.5rem;
    }
    
    .hnm-addons-grid {
        grid-template-columns: 1fr;
    }
    
    .hnm-book-btn {
        width: 100%;
        padding: 16px 20px;
    }
}

/* Accessibility */
.hnm-book-btn:focus,
.hnm-addon-btn:focus {
    outline: 3px solid #3b82f6;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .hnm-book-btn,
    .hnm-addon-btn {
        display: none;
    }
}


