/* Dedicated Styles for PPF Page Rebuild */

/* Utilities */
.ppf-rebuild-main {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

.ppf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 1. Hero Section */
.ppf-hero {
    height: 60vh;
    /* Adjust as needed */
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)), url('../img/profilm-hero-wide.webp');
    /* Guessing generic hero */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 5%;
}

.ppf-hero h1 {
    font-size: 80px;
    line-height: 0.9;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
}

/* 2. Benefits Section */
.ppf-benefits {
    padding: 80px 0;
    background-color: #000;
}

.ppf-benefits-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.ppf-benefits-img {
    flex: 1;
    min-width: 300px;
}

.ppf-benefits-img img {
    width: 100%;
    border-radius: 0;
}

.ppf-benefits-text {
    flex: 1;
    min-width: 300px;
    padding-top: 20px;
}

.ppf-green-subtitle {
    color: #00AF62;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.ppf-benefits-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    text-transform: uppercase;
}

.ppf-benefit-item h3 {
    color: #00AF62;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.ppf-benefit-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 25px;
}

/* 3. Product Grid */
.ppf-products {
    padding: 40px 0 80px;
    background-color: #000;
}

.ppf-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.ppf-product-card {
    /* Transparent bg logic from reference */
    background: transparent;
    border-top: 2px solid #00AF62;
    /* Top green border implied? Or just title */
    padding-top: 20px;
}

.ppf-product-card h3 {
    color: #00AF62;
    /* Main Title Green */
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.ppf-product-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.ppf-product-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #ccc;
}

.ppf-product-card li::before {
    content: "•";
    color: #00AF62;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.btn-green-sm {
    background-color: #00AF62;
    color: #fff !important;
    padding: 8px 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-block;
}

.btn-green-sm:hover {
    background-color: #008f50;
}

/* 4. Coating Section (Flexible) */
.ppf-coating {
    padding: 80px 0;
    border-top: 1px solid #333;
    background-color: #0f0f0f;
    /* Slight contrast */
}

.ppf-coating-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.ppf-coating-text {
    flex: 1.5;
    min-width: 300px;
}

.ppf-coating-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.ppf-coating-text p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
}

.ppf-coating-img {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.ppf-coating-img img {
    max-height: 400px;
    /* Bottle height */
    object-fit: contain;
}

/* 5. Contact Banner */
.ppf-contact-banner {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ppf-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.4);
}

.ppf-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ppf-banner-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: none;
    /* Reference shows sentence case */
}

.btn-outline-green {
    border: 1px solid #00AF62;
    color: #00AF62 !important;
    padding: 10px 30px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 5px;
}

.btn-outline-green:hover {
    background-color: #00AF62;
    color: #fff !important;
}

/* Responsive */
@media (max-width: 768px) {
    .ppf-products-grid {
        grid-template-columns: 1fr;
    }

    .ppf-benefits-wrapper,
    .ppf-coating-wrapper {
        flex-direction: column;
    }

    .ppf-benefit-item {
        margin-bottom: 30px;
    }

    .ppf-hero h1 {
        font-size: 40px;
    }
}