/*
Theme Name: Black Line Conversions
Theme URI: https://blacklineconversions.com
Author: Black Line Conversions
Description: Custom theme for Black Line Conversions - trailer, camper, and vehicle conversion specialists.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blackline
*/

/* === Reset & Base === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bl-black: #111111;
    --bl-red: #8B1A1A;
    --bl-red-hover: #a52222;
    --bl-white: #ffffff;
    --bl-gray: #f5f5f5;
    --bl-dark-gray: #333333;
    --bl-text: #cccccc;
    --bl-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--bl-font);
    color: var(--bl-white);
    background-color: var(--bl-black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

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

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--bl-red);
    color: var(--bl-white);
}

.btn-primary:hover {
    background-color: var(--bl-red-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--bl-white);
    border: 2px solid var(--bl-white);
}

.btn-outline:hover {
    background-color: var(--bl-white);
    color: var(--bl-black);
}

.btn-dark {
    background-color: var(--bl-black);
    color: var(--bl-white);
}

.btn-dark:hover {
    background-color: var(--bl-dark-gray);
}

/* === Header / Navigation === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--bl-white);
    border-bottom: 1px solid #e0e0e0;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
    height: 80px;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}

.main-navigation a {
    display: block;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--bl-black);
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--bl-red);
}

.main-navigation .quote-link a {
    background-color: var(--bl-red);
    color: var(--bl-white);
    padding: 10px 24px;
}

.main-navigation .quote-link a:hover {
    background-color: var(--bl-red-hover);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--bl-black);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--bl-black);
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* === Hero Section === */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-section .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    color: var(--bl-text);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--bl-red);
}

.hero-tagline {
    font-size: 1.15rem;
    color: var(--bl-text);
    margin-bottom: 32px;
}

/* === Revamp Section === */
.revamp-section {
    padding: 100px 0;
    text-align: center;
}

.revamp-section .section-subtitle {
    color: var(--bl-red);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.revamp-section h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.revamp-section .section-desc {
    color: var(--bl-text);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.revamp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.revamp-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border-radius: 4px;
}

.revamp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.revamp-card:hover img {
    transform: scale(1.05);
}

/* === Why Black Line Section === */
.why-section {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.why-section h2 {
    font-size: 2.5rem;
    margin-bottom: 48px;
    text-align: center;
}

.why-section h2 span {
    color: var(--bl-red);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px;
    border-left: 3px solid var(--bl-red);
    transition: background-color 0.3s ease;
}

.why-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--bl-white);
}

.why-card p {
    font-size: 0.9rem;
    color: var(--bl-text);
    line-height: 1.7;
}

/* === Revolutionize Section === */
.revolutionize-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.revolutionize-section .rev-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.revolutionize-section .rev-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.revolutionize-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    padding: 80px 0;
}

.revolutionize-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.revolutionize-content p {
    color: var(--bl-text);
    margin-bottom: 32px;
    line-height: 1.8;
}

/* === Our Story Section === */
.story-section {
    padding: 100px 0;
}

.story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    overflow: hidden;
    border-radius: 4px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.story-content p {
    color: var(--bl-text);
    margin-bottom: 24px;
    line-height: 1.8;
}

/* === Footer === */
.site-footer {
    background-color: var(--bl-white);
    color: var(--bl-black);
    padding: 60px 0 30px;
    border-top: 1px solid #e0e0e0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--bl-dark-gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--bl-black);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--bl-dark-gray);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--bl-red);
}

.footer-contact p {
    color: var(--bl-dark-gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    color: var(--bl-dark-gray);
    font-size: 0.85rem;
}

/* === Responsive === */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .story-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation ul {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        padding: 20px;
        gap: 0;
    }

    .main-navigation.is-open ul {
        display: flex;
    }

    .main-navigation a {
        padding: 12px 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .revamp-grid {
        grid-template-columns: 1fr;
    }

    .revamp-section h2,
    .why-section h2,
    .revolutionize-content h2,
    .story-content h2 {
        font-size: 2rem;
    }

    .revolutionize-section .rev-bg {
        background-attachment: scroll;
    }
}

/* === WordPress Core === */
.alignwide {
    max-width: 1200px;
}

.alignfull {
    max-width: 100%;
}

.wp-block-image img {
    max-width: 100%;
    height: auto;
}

/* Page template */
.page-content {
    padding: 120px 0 80px;
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.page-content p {
    color: var(--bl-text);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* === Contact Modal === */
.contact-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-modal.is-open {
    display: flex;
}

.contact-modal-inner {
    background-color: var(--bl-white);
    color: var(--bl-black);
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px 40px;
    position: relative;
    border-radius: 4px;
}

.contact-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--bl-dark-gray);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.3s ease;
}

.contact-modal-close:hover {
    color: var(--bl-black);
}

.contact-modal-inner h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--bl-black);
}

.contact-modal-inner h2 span {
    color: var(--bl-red);
}

.contact-modal-content {
    color: var(--bl-dark-gray);
    line-height: 1.7;
}

.contact-modal-content p {
    margin-bottom: 16px;
}

.contact-modal-content iframe {
    width: 100%;
    border: none;
}

.contact-modal-content input,
.contact-modal-content textarea,
.contact-modal-content select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--bl-font);
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--bl-black);
}

.contact-modal-content input:focus,
.contact-modal-content textarea:focus,
.contact-modal-content select:focus {
    outline: none;
    border-color: var(--bl-red);
}

.contact-modal-content input[type="submit"],
.contact-modal-content button[type="submit"] {
    background-color: var(--bl-red);
    color: var(--bl-white);
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto;
}

.contact-modal-content input[type="submit"]:hover,
.contact-modal-content button[type="submit"]:hover {
    background-color: var(--bl-red-hover);
}

@media (max-width: 768px) {
    .contact-modal-inner {
        padding: 36px 24px;
    }
}

/* =============================================
   SUB-PAGE STYLES
   ============================================= */

/* === Page Hero (reusable) === */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bl-white);
}

.page-hero-tagline {
    font-size: 1.15rem;
    color: var(--bl-text);
    margin-top: 12px;
}

/* === About Page === */
.about-intro {
    padding: 80px 0;
    text-align: center;
}

.about-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--bl-text);
    line-height: 1.8;
}

.about-mission-values {
    padding: 0 0 100px;
}

.about-mv-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-mv-image {
    overflow: hidden;
    border-radius: 4px;
}

.about-mv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-mv-text h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--bl-red);
}

.about-mv-text p {
    color: var(--bl-text);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-cta {
    padding: 0 0 100px;
    text-align: center;
}

/* === Conversions Page === */
.conv-categories {
    padding: 80px 0;
}

.conv-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 48px;
}

.conv-cat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.conv-cat-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border-radius: 4px;
}

.conv-cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.conv-cat-card:hover img {
    transform: scale(1.05);
}

.conv-cat-card .conv-cat-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--bl-white);
}

/* Pricing & Timing */
.conv-info {
    padding: 0 0 80px;
}

.conv-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.conv-info-col img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 24px;
}

.conv-info-col h3 {
    font-size: 1.5rem;
    color: var(--bl-red);
    margin-bottom: 12px;
}

.conv-info-col p {
    color: var(--bl-text);
    line-height: 1.8;
}

/* Conversion Process Timeline */
.conv-timeline-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.conv-timeline-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.conv-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.conv-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--bl-red);
    transform: translateX(-50%);
}

.conv-timeline-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px 0;
    position: relative;
}

.conv-timeline-step::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    background-color: var(--bl-red);
    border: 3px solid var(--bl-black);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.conv-step-image {
    overflow: hidden;
    border-radius: 4px;
}

.conv-step-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.conv-step-content h3 {
    font-size: 1.3rem;
    color: var(--bl-red);
    margin-bottom: 8px;
}

.conv-step-content p {
    color: var(--bl-text);
    line-height: 1.7;
}

.conv-step-number {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: var(--bl-red);
    color: var(--bl-white);
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

/* Alternate sides */
.conv-timeline-step:nth-child(even) .conv-step-image {
    order: 2;
}

.conv-timeline-step:nth-child(even) .conv-step-content {
    order: 1;
    text-align: right;
}

/* === Service Page === */
.service-intro {
    padding: 80px 0;
    text-align: center;
}

.service-intro h2 {
    font-size: 2rem;
    color: var(--bl-red);
    margin-bottom: 20px;
}

.service-intro > .container > p {
    max-width: 800px;
    margin: 0 auto 48px;
    color: var(--bl-text);
    line-height: 1.8;
}

.service-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.service-pillar {
    padding: 32px 20px;
    border-top: 3px solid var(--bl-red);
}

.service-pillar h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--bl-white);
}

.service-pillar p {
    color: var(--bl-text);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Service CTA Banner */
.service-cta {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.service-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.service-cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.service-cta-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.service-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--bl-red);
}

.service-cta-content p {
    color: var(--bl-text);
    margin-bottom: 24px;
}

/* Service Solutions Grid */
.service-solutions {
    padding: 80px 0;
}

.service-solutions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-solutions > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    color: var(--bl-text);
    line-height: 1.8;
}

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

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.service-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.service-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 24px;
}

.service-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--bl-white);
}

.service-card-body p {
    font-size: 0.9rem;
    color: var(--bl-text);
    line-height: 1.7;
}

/* === Inline Contact Section === */
.page-contact-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.page-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.page-contact-label {
    color: var(--bl-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.page-contact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.page-contact-text h2 span {
    color: var(--bl-red);
}

.page-contact-text p {
    color: var(--bl-text);
    line-height: 1.8;
}

.page-contact-form {
    color: var(--bl-text);
}

.page-contact-form input,
.page-contact-form textarea,
.page-contact-form select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    font-family: var(--bl-font);
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--bl-white);
    background-color: rgba(255, 255, 255, 0.05);
}

.page-contact-form input:focus,
.page-contact-form textarea:focus,
.page-contact-form select:focus {
    outline: none;
    border-color: var(--bl-red);
}

.page-contact-form input[type="submit"],
.page-contact-form button[type="submit"] {
    background-color: var(--bl-red);
    color: var(--bl-white);
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto;
}

.page-contact-form input[type="submit"]:hover,
.page-contact-form button[type="submit"]:hover {
    background-color: var(--bl-red-hover);
}

/* === Sub-Page Responsive === */
@media (max-width: 991px) {
    .page-hero-title {
        font-size: 2.5rem;
    }

    .about-mv-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .conv-cat-grid {
        grid-template-columns: 1fr;
    }

    .conv-info-grid {
        grid-template-columns: 1fr;
    }

    .conv-timeline::before {
        left: 20px;
    }

    .conv-timeline-step {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-left: 50px;
    }

    .conv-timeline-step::before {
        left: 20px;
    }

    .conv-timeline-step:nth-child(even) .conv-step-image {
        order: 0;
    }

    .conv-timeline-step:nth-child(even) .conv-step-content {
        order: 0;
        text-align: left;
    }

    .service-pillars {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 40vh;
        min-height: 280px;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .conv-timeline-step {
        padding-left: 40px;
    }
}
