/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: rgb(231, 81, 30); /* #E7511E */
    --primary-dark: rgb(62, 61, 64);   /* #3E3D40 */
    --secondary-color: #f1f5f9;
    --accent-color: rgb(231, 81, 30);  /* use brand orange for accents */
    --text-dark: rgb(62, 61, 64);      /* #3E3D40 */
    --text-light: rgb(123, 124, 126);  /* #7B7C7E */
    --white: rgb(255, 255, 255);
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-700: rgb(123, 124, 126);    /* align with provided palette */
    --gray-800: rgb(62, 61, 64);       /* align with provided palette */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    --nav-height: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-logo-img {
    height: 48px; /* enlarge logo */
    width: auto;
    display: block;
}

.nav-logo-link {
    display: inline-flex;
    align-items: center;
}

/* Ensure navbar has enough height for logo */
.navbar .nav-container {
    min-height: var(--nav-height);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url("../img/hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Disable fixed background on mobile for better performance */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Section titles enhanced styling */
.section-title {
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.title-short {
    font-family: 'Bebas Neue', Impact, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--primary-color);
    line-height: 0.9;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}
.title-full {
    display: block;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
}
/* Nice subtle accent bar to the left of the whole title block */
.section-header .section-title::before {
    content: '';
    grid-column: 1 / -1;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary-color), rgba(231,81,30,0.25));
    margin-bottom: 0.75rem;
}
/* Stack on very small screens */
@media (max-width: 520px) {
    .section-title {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
    .title-short {
        line-height: 1;
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }
    .title-full {
        font-size: clamp(1.6rem, 6vw, 2.1rem);
    }
}

/* Services Section */
.services {
    background-color: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure equal height */
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
    min-height: 3.4rem; /* Increased to accommodate 2-line titles */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card checklist styling */
.card-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    flex-grow: 1; /* Allow list to grow and push button to bottom */
}

.card-checklist li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
}

.card-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
}

.card-checklist li:last-child {
    margin-bottom: 0;
}

/* Ensure button stays at bottom */
.service-card .btn {
    margin-top: auto;
    align-self: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--accent-color), #c54116); /* darker orange */
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Remove old service card styles that conflict */

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}
.reveal.reveal-left { transform: translateX(-24px); }
.reveal.reveal-right { transform: translateX(24px); }
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Hide/show navbar on scroll */
.navbar {
    /* ensure transform animates smoothly along with existing transitions */
    transition: transform 0.3s ease, background 0.3s ease;
}
.navbar.navbar--hidden {
    transform: translateY(-100%);
}

/* Stats Section */
.stats-section {
    background: var(--gray-50); /* Light gray to match content sections */
    padding: 60px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    color: var(--text-dark); /* Dark text for light background */
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--primary-color); /* Brand orange for the number */
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light); /* Lighter gray for the label */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .stats-section {
        padding: 40px 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* Highlights (cards under hero) */
.highlights {
    background: var(--white);
    padding-top: 80px; /* Adjusted padding */
    padding-bottom: 80px;
}

.highlights .service-card {
    text-align: left;
}

.card-image {
    width: 100%;
    height: 160px;
    border-radius: var(--border-radius);
    background: var(--gray-200);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

/* Card image visuals */
.card-image {
    overflow: hidden;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Framed section images */
.image-frame {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4 / 3;
    margin: 0 auto;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(231,81,30,0.25), rgba(62,61,64,0.25));
    padding: 2px; /* gradient border */
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.image-frame .image-media {
    height: 100%;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
}
.image-frame .image-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.6s ease;
}
.image-frame:hover .image-media img {
    transform: scale(1.06);
}

/* Subtle floating highlight */
.image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    pointer-events: none;
    background: radial-gradient(600px 200px at var(--mx, 50%) var(--my, 0%), rgba(231,81,30,0.12), transparent 60%);
    transition: opacity 0.3s ease;
    opacity: 0.6;
}

/* Interactive tilt base state */
.interactive-image {
    transform-style: preserve-3d;
    transition: transform 200ms ease; /* fallback */
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.certifications h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.certifications ul {
    list-style: none;
    padding: 0;
}

.certifications li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.certifications li i {
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: var(--gray-200);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1rem;
}

/* Content Sections (BOZP/PO/PBZ) */
.content-section {
    background: var(--gray-50);
}

.content-section.alt {
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.content-col h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-dark);
}

.content-list {
    list-style: none;
    padding-left: 0;
}

.content-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--text-light);
}

.content-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.two-cols {
    columns: 2;
    column-gap: 2rem;
}

.image-col {
    display: flex;
    justify-content: center;
}

/* Contact Section */
.contact {
    background-color: var(--gray-50);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

/* Form Styles */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px var(--gray-200) solid;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--font-family);
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(231, 81, 30, 0.2); /* orange focus ring */
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 14px 24px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-group button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-group button:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: var(--gray-800);
    color: var(--white);
    padding: 3rem 0 1rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--gray-200);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    width: 1rem;
    text-align: center;
}

.footer-section ul li a {
    color: var(--gray-200);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 1rem;
    text-align: center;
    color: var(--gray-200);
}

/* Navbar abbreviation tooltip */
.nav-link[data-full] {
    position: relative;
}
.nav-link[data-full]::after {
    content: attr(data-full);
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    transform: translateX(-50%);
    white-space: nowrap;
    background: var(--gray-800);
    color: var(--white);
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform-origin: top center;
}
.nav-link[data-full]:hover::after,
.nav-link[data-full]:focus::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* Small arrow */
.nav-link[data-full]::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: var(--gray-800);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.nav-link[data-full]:hover::before,
.nav-link[data-full]:focus::before {
    opacity: 1;
}

/* Active state for touch tooltips */
.nav-link.nav-tooltip-active[data-full]::after,
.nav-link.nav-tooltip-active[data-full]::before {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* Abbreviation swap animation in navbar */
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-link.nav-abbrev {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Center the text */
    height: 40px;
    overflow: visible; /* Allow full text to be seen */
    width: var(--link-width, auto); /* Dynamic width */
    transition: width 300ms ease; /* Animate width change */
}
.nav-link .nav-text {
    display: inline-block;
    transition: transform 220ms ease, opacity 150ms ease;
    will-change: transform, opacity;
    white-space: nowrap;
}
.nav-text--abbr {
    transform-origin: center;
}
.nav-text--full {
    position: absolute;
    transform: scale(0.92);
    opacity: 0;
    pointer-events: none; /* Don't capture mouse events when hidden */
}
.nav-link.nav-abbrev:hover .nav-text--abbr,
.nav-link.nav-abbrev:focus .nav-text--abbr {
    transform: scale(0.9);
    opacity: 0;
}
.nav-link.nav-abbrev:hover .nav-text--full,
.nav-link.nav-abbrev:focus .nav-text--full {
    transform: scale(1);
    opacity: 1;
}

/* Mobile: disable push */
@media (max-width: 768px) {
    .nav-menu:hover .nav-link,
    .nav-menu:has(.nav-abbrev:hover) .nav-link { transform: none !important; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .two-cols {
        columns: 1;
    }
}

@media (max-width: 768px) {
    .highlights {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/* Prevent list items in two-column layouts from breaking across columns */
.content-list.two-cols li {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 0.75rem;
    hyphens: none;
    word-break: keep-all;
}

/* Utility: center narrow content */
.centered { max-width: 760px; margin: 0 auto; }
.centered .content-list { margin-left: auto; margin-right: auto; }

/* Wide banner card under highlights */
.service-card--wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem 1.5rem;
    padding: 1rem 1.25rem;
    min-height: 72px;
}
.service-card--wide h3 {
    margin: 0;
    min-height: 0;
}
.service-card--wide .card-checklist {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.service-card--wide .card-checklist li {
    margin: 0;
    padding: 0 0 0 1.5rem;
}
.service-card--wide .btn {
    margin: 0;
    justify-self: end;
}

/* Remove tick and padding for single-item checklist in wide card */
.service-card--wide .card-checklist { list-style: none; }
.service-card--wide .card-checklist li { padding-left: 0; position: static; }
.service-card--wide .card-checklist li::before { content: none !important; }

@media (max-width: 768px) {
    .service-card--wide {
        grid-template-columns: 1fr auto;
        gap: 0.75rem 1rem;
    }
    .service-card--wide h3 { grid-column: 1 / -1; }
}
