/* Page-specific styles for trench-plate-hire-auckland.html */

.tph-page {
    --orange: #ff5b16;
    --dark: #171717;
    --text: #555;
    --muted: #f6f6f6;
    --border: #e9e9e9;

    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    line-height: 1.65;
    background: #fff;
}

.tph-page * {
    box-sizing: border-box;
}

.tph-page a {
    color: inherit;
    text-decoration: none;
}

.tph-page .wrap {
    width: min(1180px, 92%);
    margin: auto;
}

.tph-page .btn {
    display: inline-block;
    background: var(--orange);
    color: #fff !important;
    font-weight: 800;
    padding: 14px 24px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.tph-page .btn.dark {
    background: #222;
}

.tph-page .hero {
    position: relative;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .42)),
        url("../images/resources/about-image4.jpg") center / cover no-repeat;
    color: #fff;
    padding: 110px 0 120px;
}

.tph-page .eyebrow {
    color: var(--orange);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tph-page .hero h1 {
    font-size: 56px;
    line-height: 1.05;
    margin: 10px 0 20px;
    color: #fff;
    max-width: 850px;
}

.tph-page .hero p {
    font-size: 20px;
    max-width: 720px;
    margin-bottom: 30px;
    color: #eee;
}

.tph-page .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.tph-page .section {
    padding: 85px 0;
}

.tph-page .grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}

.tph-page .kicker {
    color: var(--orange);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.tph-page .section h2 {
    font-size: 38px;
    line-height: 1.15;
    color: #202020;
    margin: 8px 0 18px;
}

.tph-page .section h3 {
    color: #222;
    font-size: 22px;
    margin: 0 0 8px;
}

.tph-page .lead {
    font-size: 18px;
    color: #444;
}

.tph-page .img-card {
    position: relative;
}

.tph-page .img-card img {
    width: 100%;
    display: block;
}

.tph-page .spec-card {
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
    padding: 30px;
    border-left: 6px solid var(--orange);
    margin-top: -50px;
    position: relative;
}

.tph-page .grey {
    background: var(--muted);
}

.tph-page .features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tph-page .feature {
    background: #fff;
    border: 1px solid var(--border);
    padding: 30px 24px;
    min-height: 230px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.tph-page .feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, .08);
}

.tph-page .feature h3 {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 18px;
}

.tph-page .feature h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
}

.tph-page .feature p {
    margin-bottom: 0;
}

.tph-page .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tph-page .card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 30px;
}

.tph-page .stats {
    background: #1b1b1b;
    color: #fff;
}

.tph-page .stats .wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.tph-page .stat {
    padding: 45px 20px;
    border-right: 1px solid #333;
}

.tph-page .stat:last-child {
    border: 0;
}

.tph-page .stat strong {
    display: block;
    font-size: 48px;
    color: var(--orange);
    line-height: 1;
}

.tph-page .stat span {
    font-weight: 700;
}

.tph-page .faq {
    max-width: 900px;
    margin: auto;
}

.tph-page .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
}

.tph-page .faq-item h3 {
    font-size: 19px;
}

.tph-page .quote-box {
    background: #fff;
    padding: 34px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.tph-page .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.tph-page .quote-box input,
.tph-page .quote-box select,
.tph-page .quote-box textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    font: inherit;
}

.tph-page .quote-box textarea {
    grid-column: 1 / -1;
    min-height: 120px;
}

.tph-page .quote-box button {
    border: 0;
    margin-top: 14px;
    cursor: pointer;
}

@media (max-width: 850px) {
    .tph-page .grid,
    .tph-page .features,
    .tph-page .cards,
    .tph-page .stats .wrap {
        grid-template-columns: 1fr;
    }

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

    .tph-page .form-grid {
        grid-template-columns: 1fr;
    }
}


/* Orange accent lines for common-use card titles */

.tph-page .cards .card h3 {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 18px;
}

.tph-page .cards .card h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 62px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
}

.tph-page .cards .card {
    transition: transform .2s ease, box-shadow .2s ease;
}

.tph-page .cards .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, .08);
}


/* Orange accent lines for FAQ question headings */

.tph-page .faq-item h3 {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 18px;
}

.tph-page .faq-item h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
}
