﻿/* ==========================================================================
   HiNRG Heater Page â€” ph-mt.css
   All rules scoped under .ph-mt-content
   ========================================================================== */

.ph-mt-content *, .ph-mt-content *::before, .ph-mt-content *::after { box-sizing: border-box; }

.ph-mt-content {
    font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
    color: #4b5563;
    line-height: 1.75;
    background: #fff;
}

.ph-mt-content h1, .ph-mt-content h2, .ph-mt-content h3 {
    font-family: "Rajdhani", "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    margin-top: 0;
}

.ph-mt-content h2 {
    font-size: clamp(1.85rem, 2.4vw, 2.3rem);
    line-height: 1.05;
    color: #1d439c;
    margin-bottom: 1.1rem;
}

.ph-mt-content h3 {
    font-size: clamp(1.25rem, 1.8vw, 1.6rem);
    color: #333;
    margin-bottom: 0.75rem;
}

.ph-mt-content p { font-size: 1.05rem; line-height: 1.75; color: #4b5563; margin: 0 0 1rem; }
.ph-mt-content a { color: #1d439c; }
.ph-mt-content img { max-width: 100%; height: auto; display: block; }

/* ==========================================================================
   CONTAINERS
   ========================================================================== */

.ph-mt-content .ph-mt-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
}

.ph-mt-content .ph-mt-container--narrow {
    max-width: 720px;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.ph-mt-content .ph-mt-hero {
    padding: 5rem 0 4rem;
    background:
        linear-gradient(180deg, rgba(8,19,44,0.18) 0%, rgba(8,19,44,0.52) 100%),
        url("https://poolheating.com.au/wp-content/uploads/2018/06/Order-3785-Image-4.jpg")
        center / cover no-repeat;
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
}

.ph-mt-content .ph-mt-hero h1 {
    font-size: clamp(3rem, 5vw, 5.2rem);
    line-height: 0.85;
    color: #feb415;
    margin-bottom: 1rem;
}

.ph-mt-content .ph-mt-hero__tagline {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    max-width: 640px;
    margin-bottom: 0;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.ph-mt-content .ph-mt-section {
    padding: 72px 0;
    background: #fff;
}

.ph-mt-content .ph-mt-section--alt {
    background: #f8f9fa;
}

/* ==========================================================================
   TWO-COLUMN ROW
   ========================================================================== */

.ph-mt-content .ph-mt-row {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.ph-mt-content .ph-mt-row--top {
    align-items: flex-start;
}

.ph-mt-content .ph-mt-col {
    flex: 1;
}

.ph-mt-content .ph-mt-col--img img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.10);
}

/* Single centred product image */
.ph-mt-content .ph-mt-single-img {
    text-align: center;
    margin-top: 2rem;
}

.ph-mt-content .ph-mt-single-img img {
    max-width: 480px;
    margin: 0 auto;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Stacked images column */
.ph-mt-content .ph-mt-col--img-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ph-mt-content .ph-mt-col--img-stack img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.10);
}

/* Trust logos */
.ph-mt-trust-section {
    padding: 48px 0;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.ph-mt-content .ph-mt-trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.ph-mt-content .ph-mt-trust-logos img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
}

/* ==========================================================================
   DOWNLOAD BUTTON
   ========================================================================== */

.ph-mt-content .ph-mt-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7em 1.8em;
    border: 2px solid #feb415;
    border-radius: 999px;
    background: #1d439c;
    color: #fff;
    font-family: "Rajdhani", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    margin-top: 0.5rem;
}

.ph-mt-content .ph-mt-btn:hover {
    background: #feb415;
    color: #0f172a;
    border-color: #1d439c;
    text-decoration: none;
}

/* ==========================================================================
   BENEFITS LIST
   ========================================================================== */

.ph-mt-content .ph-mt-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.ph-mt-content .ph-mt-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1.05rem;
    color: #334155;
    background: transparent;
    box-shadow: none;
}

.ph-mt-content .ph-mt-list li:last-child {
    border-bottom: none;
}

.ph-mt-content .ph-mt-list li i {
    color: #1d439c;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ==========================================================================
   TESTIMONIAL / QUOTE
   ========================================================================== */

.ph-mt-content .ph-mt-quote {
    margin: 1.5rem 0 0;
    padding: 1.5rem;
    background: #fff;
    border-left: 4px solid #feb415;
    border-radius: 0 0.75rem 0.75rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.ph-mt-content .ph-mt-quote p {
    font-style: italic;
    color: #334155;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.7;
}

.ph-mt-content .ph-mt-quote footer {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.ph-mt-content .ph-mt-quote footer strong {
    font-family: "Rajdhani", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1d439c;
    letter-spacing: 0.04em;
}

.ph-mt-content .ph-mt-quote footer span {
    font-size: 0.82rem;
    color: #94a3b8;
}

/* ==========================================================================
   CONTACT FORM SECTION
   ========================================================================== */

.ph-mt-content .ph-mt-section--form {
    background: #f8f9fa;
    text-align: center;
}

.ph-mt-content .ph-mt-form-title {
    text-align: center;
    margin-bottom: 0.4rem;
}

.ph-mt-content .ph-mt-form-sub {
    color: #64748b;
    margin-bottom: 2rem;
    text-align: center;
}

/* GravityForms overrides */
.ph-mt-content .ph-mt-section--form .gform_wrapper {
    text-align: left;
    max-width: 100%;
}

.ph-mt-content .ph-mt-section--form input[type="text"],
.ph-mt-content .ph-mt-section--form input[type="email"],
.ph-mt-content .ph-mt-section--form input[type="tel"],
.ph-mt-content .ph-mt-section--form select,
.ph-mt-content .ph-mt-section--form textarea {
    width: 100%;
    padding: 0.7rem 0.95rem;
    border: 1.5px solid #cbd5e1;
    border-radius: 0.5rem;
    font-family: "Lato", sans-serif;
    font-size: 0.95rem;
    color: #0f172a;
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ph-mt-content .ph-mt-section--form input:focus,
.ph-mt-content .ph-mt-section--form textarea:focus {
    border-color: #1d439c;
    box-shadow: 0 0 0 3px rgba(29,67,156,0.1);
}

.ph-mt-content .ph-mt-section--form input[type="submit"],
.ph-mt-content .ph-mt-section--form .gform_button {
    padding: 0.7rem 2.2rem;
    background: #1d439c;
    color: #fff;
    border: 2px solid #feb415;
    border-radius: 999px;
    font-family: "Rajdhani", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.ph-mt-content .ph-mt-section--form input[type="submit"]:hover,
.ph-mt-content .ph-mt-section--form .gform_button:hover {
    background: #feb415;
    color: #0f172a;
    border-color: #1d439c;
}

.ph-mt-content .ph-mt-section--form .gfield_label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ph-mt-content .ph-mt-section--form .gfield_validation_message,
.ph-mt-content .ph-mt-section--form .validation_message {
    color: #ef4444;
    font-size: 0.8rem;
    padding: 0;
    background: none;
    border: none;
}

/* ==========================================================================
   RESPONSIVE â€” â‰¤ 1024px
   ========================================================================== */

@media (max-width: 1024px) {
    .ph-mt-content .ph-mt-row {
        flex-direction: column;
        gap: 2rem;
    }

    .ph-mt-content .ph-mt-col--img img,
    .ph-mt-content .ph-mt-col--img-stack img {
        margin: 0 auto;
    }

    .ph-mt-content .ph-mt-img-pair {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   RESPONSIVE â€” â‰¤ 767px
   ========================================================================== */

@media (max-width: 767px) {
    .ph-mt-content .ph-mt-section { padding: 48px 0; }
    .ph-mt-content .ph-mt-hero { min-height: 45vh; padding: 3rem 0; }
    .ph-mt-content .ph-mt-hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
    .ph-mt-content .ph-mt-hero__tagline { font-size: 1rem; }
    .ph-mt-content .ph-mt-col--img-stack { gap: 1rem; }
}
