/* Pricing Page Specific Styles */

/* Pricing Hero */
.pricing-hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background-color: #0d0f12;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
        linear-gradient(to bottom, rgba(13, 15, 18, 0.8), rgba(13, 15, 18, 0.95)),
        url('../pic/gallery/gallery_6.jpg');
    background-size: 100% 100%, cover, cover;
    background-position: 0 0, center, center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
}

.pricing-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
    /* Gold Gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 12px rgba(253, 185, 49, 0.2));
}

.pricing-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Pricing Sections */
.pricing-section {
    padding: 80px 0;
    background: #fff;
}

.pricing-header-row {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header-row h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.pricing-header-row p {
    color: var(--text-light);
}

/* Purchase Table (Scrap Metal) */
.price-table-container {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background: white;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.price-table th,
.price-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid var(--gray);
}

.price-table th {
    background: var(--dark);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.price-table tr:hover {
    background-color: rgba(45, 148, 53, 0.05);
}

.price-table .price-col {
    font-weight: 700;
    color: var(--primary);
    text-align: right;
}

/* Service Pricing Cards */
.service-price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card {
    background: white;
    border: 1px solid var(--gray);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.price-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.price-card .price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 20px 0;
}

.price-card .price-tag span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.price-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text);
}

.price-card ul li:last-child {
    border-bottom: none;
}

.price-card .btn-cta {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.price-card .btn-cta:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}