/*
Theme Name: Iron Check
Theme URI: https://iron-check.com
Author: Iron Check
Author URI: https://iron-check.com
Description: Custom theme for Iron Check heavy machinery inspections
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ironcheck
*/

/* ===== CSS VARIABLES ===== */
:root {
    --brand-green: #2a7f58;
    --brand-green-light: #3d8b64;
    --brand-black: #000000;
    --brand-dark-grey: #1a1a1a;
    --brand-medium-grey: #242424;
    --brand-slate: #42505b;
    --text-white: #ffffff;
    --text-dim: #b0b0b0;
    --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--brand-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .tagline {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

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

/* ===== CONTAINER ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 20px 40px;
    background-color: var(--brand-green);
    color: white;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: var(--brand-green-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
}

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

.btn-small {
    padding: 12px 24px;
    font-size: 0.8rem;
}

/* ===== REVEAL ANIMATION ===== */
/* Fallback: show content after short delay even if JS doesn't run */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    animation: revealFallback 0.1s ease-out 1s forwards;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    animation: none;
}

@keyframes revealFallback {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== NAVIGATION ===== */
.site-header {
    padding: 20px 0;
    background: var(--brand-black);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--brand-medium-grey);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    letter-spacing: -1px;
}

.logo-text span {
    color: var(--brand-green);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--brand-green);
}

.nav-cta {
    padding: 12px 24px !important;
    font-size: 0.8rem !important;
}

/* Social Icons - Header */
.nav-socials {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-socials a {
    color: var(--text-dim);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.nav-socials a:hover {
    color: var(--brand-green);
}

/* Social Icons - Footer */
.footer-socials {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    justify-content: flex-end;
}

.footer-socials a {
    color: var(--text-dim);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-socials a:hover {
    color: var(--brand-green);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.mobile-menu a:hover {
    color: var(--brand-green);
}

.mobile-menu .btn {
    margin-top: 20px;
    padding: 18px 30px;
    font-size: clamp(1rem, 3.5vw, 1.1rem);
    white-space: nowrap;
    text-align: center;
}

/* Social Icons - Mobile Menu */
.mobile-socials {
    display: flex;
    gap: 25px;
    margin-top: 10px;
}

.mobile-socials a {
    color: var(--text-dim);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.mobile-socials a:hover {
    color: var(--brand-green);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 50px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 9rem);
    line-height: 0.9;
    margin-bottom: 30px;
    font-weight: 900;
}

.hero .tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--brand-green);
    margin-bottom: 10px;
    display: block;
}

.hero-text {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    max-width: 600px;
    margin-bottom: 40px;
    color: var(--text-dim);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== SECTION HEADERS ===== */
.section-header-industrial {
    border-left: 10px solid var(--brand-green);
    padding-left: 30px;
    margin-bottom: 60px;
}

.section-header-industrial h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
}

.section-header-industrial p {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: var(--brand-slate);
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 10px;
}

/* ===== EQUIPMENT SECTION ===== */
.equipment-section {
    padding: 80px 0;
    background: var(--brand-black);
}

/* Equipment Grid - Clean Card Layout */
.equip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.equip-card {
    background: var(--brand-dark-grey);
    border: 1px solid var(--brand-medium-grey);
    border-left: 4px solid var(--brand-green);
    padding: 25px;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.equip-card:hover {
    background: var(--brand-medium-grey);
    border-color: var(--brand-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.equip-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-green);
    font-weight: 700;
    margin-bottom: 10px;
}

.equip-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.2;
}

.equip-card p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.equip-arrow {
    font-size: 1.2rem;
    color: var(--brand-green);
    transition: transform 0.3s ease;
    align-self: flex-end;
}

.equip-card:hover .equip-arrow {
    transform: translateX(5px);
}

.equip-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--brand-medium-grey);
}

.equip-cta p {
    color: var(--text-dim);
    font-size: 1rem;
}

.equip-cta a {
    color: var(--brand-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.equip-cta a:hover {
    color: var(--brand-green-light);
    text-decoration: underline;
}

/* Equipment Grid Responsive */
@media (max-width: 1200px) {
    .equip-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .equip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .equip-card {
        padding: 20px;
    }
    
    .equip-card h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 600px) {
    .equip-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .equip-card {
        padding: 20px;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    
    .equip-card > *:not(.equip-arrow) {
        flex: 1;
    }
    
    .equip-card p {
        display: none;
    }
    
    .equip-category {
        margin-bottom: 5px;
    }
    
    .equip-card h3 {
        margin-bottom: 0;
    }
    
    .equip-arrow {
        align-self: center;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 0;
    background: #0f0f0f;
    border-top: 1px solid var(--brand-medium-grey);
    border-bottom: 1px solid var(--brand-medium-grey);
}

.pricing-card {
    background: var(--brand-black);
    border: 1px solid var(--brand-medium-grey);
    display: grid;
    grid-template-columns: 1fr 2fr;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.pricing-left {
    background: var(--brand-green);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: white;
}

.pricing-left h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    margin-bottom: 10px;
}

.price-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1;
    margin: 20px 0;
}

.pricing-left .btn {
    background: var(--brand-black);
    margin-top: 30px;
    width: 100%;
}

.pricing-right {
    padding: 50px 40px;
    background: var(--brand-dark-grey);
}

.pricing-right h4 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.pricing-right .checklist-label {
    color: var(--brand-green);
    font-family: monospace;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.service-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.service-item span {
    color: var(--brand-green-light);
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-item h5 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.service-item p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.4;
}

.deliverables-bar {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--brand-medium-grey);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.deliver-box h6 {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--brand-green);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.deliver-box p {
    font-size: 1rem;
    font-weight: 700;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 80px 0;
    background: var(--brand-dark-grey);
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--brand-medium-grey);
}

.process-step:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 2px var(--brand-green);
    font-weight: 900;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 15px;
}

.step-content p {
    color: var(--text-dim);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
}

/* Video Container */
.video-container {
    width: 100%;
    background: var(--brand-black);
    margin: 50px 0;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 15px solid var(--brand-medium-grey);
    cursor: pointer;
    transition: var(--transition);
}

.video-container:hover {
    border-color: var(--brand-green);
}

.video-container h3 {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 10px;
    color: var(--brand-green);
}

.video-container p {
    color: white;
    font-family: monospace;
}

/* ===== FOOTER ===== */
.site-footer {
    padding: 80px 0;
    background: var(--brand-black);
    border-top: 5px solid var(--brand-green);
    padding-bottom: 100px;
}

.footer-cta {
    text-align: center;
    margin-bottom: 60px;
}

.footer-cta h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 30px;
}

.footer-phone {
    margin-top: 20px;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-phone a {
    color: white;
    text-decoration: none;
}

.footer-phone a:hover {
    color: var(--brand-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    border-top: 1px solid var(--brand-medium-grey);
    padding-top: 50px;
}

.footer-info {
    max-width: 300px;
}

.footer-info p {
    color: var(--brand-slate);
    margin-top: 15px;
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    margin-bottom: 5px;
}

.footer-contact a {
    color: var(--brand-green);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--brand-green-light);
}

.footer-copyright {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--brand-slate);
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=2000&auto=format&fit=crop') center/cover;
    padding-top: 120px;
    padding-bottom: 60px;
}

.about-hero h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.9;
    font-weight: 900;
}

.about-hero .tagline {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--brand-green);
    margin-bottom: 10px;
    display: block;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: var(--brand-black);
}

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

.mission-statement {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    line-height: 1.6;
    color: var(--text-dim);
    margin-top: 30px;
}

.mission-statement strong {
    color: var(--brand-green);
}

.callout-box {
    background: var(--brand-dark-grey);
    padding: 50px 40px;
    border-left: 6px solid var(--brand-green);
}

.callout-contrast {
    font-size: 1.4rem;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.callout-contrast span {
    color: #ff6b6b;
    font-weight: 700;
}

.callout-highlight {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: white;
    text-transform: uppercase;
    line-height: 1.2;
}

.callout-highlight span {
    color: var(--brand-green);
}

/* Owner Section */
.owner-section {
    padding: 100px 0;
    background: var(--brand-dark-grey);
}

.owner-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    margin-top: 60px;
    background: var(--brand-medium-grey);
    padding: 50px;
    align-items: start;
}

.owner-image {
    position: relative;
}

.owner-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: white;
}

.owner-info h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 5px;
}

.owner-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    color: var(--brand-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.owner-bio {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.8;
}

.owner-bio p {
    margin-bottom: 20px;
}

.owner-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--brand-slate);
}

.owner-email,
.owner-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    font-weight: 700;
    transition: var(--transition);
}

.owner-email:hover,
.owner-linkedin:hover {
    color: var(--brand-green);
}

.owner-email svg,
.owner-linkedin svg {
    flex-shrink: 0;
}

/* About CTA Section */
.about-cta-section {
    padding: 100px 0;
    background: var(--brand-black);
    border-top: 1px solid var(--brand-medium-grey);
}

.about-cta {
    text-align: center;
}

.about-cta h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 30px;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1581092160607-ee22621dd758?q=80&w=2000&auto=format&fit=crop') center/cover;
    padding-top: 120px;
    padding-bottom: 60px;
}

.contact-hero h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.9;
    font-weight: 900;
    margin-bottom: 20px;
}

.contact-hero .tagline {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--brand-green);
    margin-bottom: 10px;
    display: block;
}

.contact-intro {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-dim);
    max-width: 600px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--brand-black);
}

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

/* Contact Info */
.contact-methods {
    margin-top: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--brand-medium-grey);
}

.contact-method:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    fill: white;
}

.contact-details h4 {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: var(--brand-green);
}

.contact-details a {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 5px;
}

.contact-details a:hover {
    color: var(--brand-green);
}

.contact-details p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.contact-details p.highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

/* Contact Social */
.contact-social {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--brand-medium-grey);
}

.contact-social h4 {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--brand-green);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--brand-medium-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--brand-green);
}

.social-links a svg {
    fill: var(--text-dim);
    transition: var(--transition);
}

.social-links a:hover svg {
    fill: white;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--brand-dark-grey);
    padding: 50px;
}

.contact-form-box h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-intro {
    color: var(--text-dim);
    margin-bottom: 30px;
}

.ironcheck-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ironcheck-form .form-group {
    margin-bottom: 20px;
}

.ironcheck-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-dim);
}

.ironcheck-form input,
.ironcheck-form select,
.ironcheck-form textarea {
    width: 100%;
    padding: 15px;
    background: var(--brand-medium-grey);
    border: 2px solid transparent;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.ironcheck-form input:focus,
.ironcheck-form select:focus,
.ironcheck-form textarea:focus {
    outline: none;
    border-color: var(--brand-green);
}

.ironcheck-form input::placeholder,
.ironcheck-form textarea::placeholder {
    color: var(--brand-slate);
}

.ironcheck-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b0b0b0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.ironcheck-form select option {
    background: var(--brand-dark-grey);
    color: white;
}

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

.ironcheck-form .btn {
    width: 100%;
    margin-top: 10px;
}

.form-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.form-note a {
    color: var(--brand-green);
    font-weight: 700;
}

.form-note a:hover {
    color: var(--brand-green-light);
}

/* Contact Form 7 Styling Override */
.contact-form-box .wpcf7-form p {
    margin-bottom: 20px;
}

.contact-form-box .wpcf7-form input[type="text"],
.contact-form-box .wpcf7-form input[type="email"],
.contact-form-box .wpcf7-form input[type="tel"],
.contact-form-box .wpcf7-form select,
.contact-form-box .wpcf7-form textarea {
    width: 100%;
    padding: 15px;
    background: var(--brand-medium-grey);
    border: 2px solid transparent;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form-box .wpcf7-form input:focus,
.contact-form-box .wpcf7-form select:focus,
.contact-form-box .wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--brand-green);
}

.contact-form-box .wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 20px 40px;
    background-color: var(--brand-green);
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-form-box .wpcf7-form input[type="submit"]:hover {
    background-color: var(--brand-green-light);
}

/* ===== INSPECTION SERVICES HUB PAGE ===== */
.services-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=2000&auto=format&fit=crop') center/cover;
    padding-top: 120px;
    padding-bottom: 60px;
}

.services-hero h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.9;
    font-weight: 900;
    margin-bottom: 20px;
}

.services-hero .tagline {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--brand-green);
    margin-bottom: 10px;
    display: block;
}

.services-intro {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-dim);
    max-width: 700px;
    line-height: 1.7;
}

/* Equipment Hub Section */
.equipment-hub-section {
    padding: 100px 0;
    background: var(--brand-black);
}

.equipment-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Equipment Hub Card */
.equipment-hub-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--brand-medium-grey);
    padding: 30px;
    text-decoration: none;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.equipment-hub-card:hover {
    background: var(--brand-dark-grey);
    border-left-color: var(--brand-green);
    transform: translateX(5px);
}

.hub-card-icon {
    width: 70px;
    height: 70px;
    background: var(--brand-dark-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.equipment-hub-card:hover .hub-card-icon {
    background: var(--brand-green);
}

.hub-card-icon svg {
    fill: var(--brand-green);
    transition: var(--transition);
}

.equipment-hub-card:hover .hub-card-icon svg {
    fill: white;
}

.hub-card-content {
    flex: 1;
}

.hub-card-category {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--brand-green);
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.hub-card-content h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 8px;
    transition: var(--transition);
}

.equipment-hub-card:hover .hub-card-content h3 {
    color: var(--brand-green);
}

.hub-card-content p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.4;
}

.hub-card-arrow {
    font-size: 1.5rem;
    color: var(--brand-slate);
    transition: var(--transition);
    flex-shrink: 0;
}

.equipment-hub-card:hover .hub-card-arrow {
    color: var(--brand-green);
    transform: translateX(5px);
}

/* Hub Pricing Section */
.hub-pricing-section {
    padding: 80px 0;
    background: var(--brand-dark-grey);
}

.hub-pricing-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: var(--brand-green);
    padding: 50px 60px;
    flex-wrap: wrap;
}

.hub-pricing-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hub-pricing-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 400px;
}

.hub-pricing-price {
    text-align: center;
}

.price-amount {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.price-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.hub-pricing-card .btn {
    background: var(--brand-black);
    flex-shrink: 0;
}

.hub-pricing-card .btn:hover {
    background: white;
    color: var(--brand-black);
}

/* Hub CTA Section */
.hub-cta-section {
    padding: 100px 0;
    background: var(--brand-black);
    border-top: 1px solid var(--brand-medium-grey);
}

.hub-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hub-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
}

.hub-cta p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 30px;
}

.hub-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== EQUIPMENT INSPECTION PAGE ===== */

/* Equipment Hero */
.equip-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
    overflow: hidden;
}

.equip-hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.equip-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.7));
    z-index: 1;
}

.equip-hero .container {
    position: relative;
    z-index: 2;
}

.equip-hero-content {
    max-width: 800px;
}

.equip-hero .tagline {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--brand-green);
    margin-bottom: 15px;
    display: block;
    letter-spacing: 3px;
}

.equip-hero h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 25px;
}

.equip-hero-sub {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 600px;
}

.equip-hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.equip-hero-trust {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.equip-hero-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Risk Section */
.equip-risk-section {
    padding: 100px 0;
    background: var(--brand-dark-grey);
}

.equip-risk-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.equip-risk-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.risk-intro {
    font-size: 1.15rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 35px;
}

.risk-issues h3 {
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--brand-green);
    margin-bottom: 20px;
}

.issues-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.issue-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--brand-medium-grey);
    border-left: 3px solid #ff6b6b;
}

.issue-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.issue-content h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.issue-content p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* Risk Callout Box */
.equip-risk-callout {
    position: sticky;
    top: 100px;
}

.risk-stat-box {
    background: var(--brand-black);
    padding: 40px;
    text-align: center;
    margin-bottom: 20px;
    border: 2px solid #ff6b6b;
}

.risk-stat-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6b6b;
    display: block;
    margin-bottom: 15px;
    font-weight: 700;
}

.risk-stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #ff6b6b;
    display: block;
    margin-bottom: 15px;
}

.risk-stat-note {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.risk-stat-note strong {
    color: var(--brand-green);
    font-size: 1.1rem;
}

.risk-comparison {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comparison-item {
    padding: 20px;
    text-align: center;
}

.comparison-item.bad {
    background: var(--brand-medium-grey);
    border-left: 4px solid #ff6b6b;
}

.comparison-item.good {
    background: var(--brand-green);
    border-left: 4px solid var(--brand-green-light);
}

.comparison-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    display: block;
    margin-bottom: 5px;
}

.comparison-focus {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Checklist Section */
.equip-checklist-section {
    padding: 100px 0;
    background: var(--brand-black);
}

.checklist-intro {
    font-size: 1.15rem;
    color: var(--text-dim);
    max-width: 800px;
    margin-bottom: 50px;
    line-height: 1.7;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.checklist-category {
    background: var(--brand-dark-grey);
    padding: 30px;
    border-top: 4px solid var(--brand-green);
}

.checklist-category h3 {
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--brand-green);
}

.checklist-category ul {
    list-style: none;
}

.checklist-category li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dim);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--brand-medium-grey);
}

.checklist-category li:last-child {
    border-bottom: none;
}

.checklist-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: bold;
}

/* Deliverables Section */
.equip-deliverables-section {
    padding: 100px 0;
    background: var(--brand-dark-grey);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.deliverable-card {
    background: var(--brand-medium-grey);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.deliverable-card:hover {
    transform: translateY(-5px);
}

.deliverable-icon {
    width: 80px;
    height: 80px;
    background: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.deliverable-icon svg {
    fill: white;
}

.deliverable-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.deliverable-card p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.deliverables-cta {
    text-align: center;
    margin-top: 40px;
}

/* Process Section */
.equip-process-section {
    padding: 100px 0;
    background: var(--brand-black);
}

.equip-process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.equip-process-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 30px;
}

.process-step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--brand-green);
    line-height: 1;
    margin-bottom: 20px;
}

.equip-process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.equip-process-step p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.process-step-arrow {
    font-size: 2rem;
    color: var(--brand-slate);
    padding-top: 50px;
}

.process-timeline {
    text-align: center;
    margin-top: 50px;
}

.timeline-badge {
    display: inline-block;
    background: var(--brand-green);
    padding: 15px 30px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Pricing Section */
.equip-pricing-section {
    padding: 100px 0;
    background: var(--brand-dark-grey);
}

.equip-pricing-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--brand-medium-grey);
    overflow: hidden;
}

.equip-pricing-content {
    padding: 60px;
    background: var(--brand-black);
    text-align: center;
}

.pricing-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-green);
    display: block;
    margin-bottom: 15px;
}

.pricing-amount {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.pricing-per {
    font-size: 1.1rem;
    color: var(--text-dim);
    display: block;
    margin-bottom: 30px;
}

.pricing-includes {
    list-style: none;
    text-align: left;
    max-width: 280px;
    margin: 0 auto;
}

.pricing-includes li {
    padding: 10px 0;
    border-bottom: 1px solid var(--brand-medium-grey);
    color: var(--text-dim);
}

.pricing-includes li:last-child {
    border-bottom: none;
}

.equip-pricing-cta {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--brand-green);
}

.equip-pricing-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.equip-pricing-cta > p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.equip-pricing-cta .btn {
    background: var(--brand-black);
    margin-bottom: 20px;
}

.equip-pricing-cta .btn:hover {
    background: white;
    color: var(--brand-black);
}

.pricing-phone {
    font-size: 0.95rem;
}

.pricing-phone a {
    color: white;
    font-weight: 700;
    text-decoration: underline;
}

/* FAQ Section */
.equip-faq-section {
    padding: 100px 0;
    background: var(--brand-black);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--brand-medium-grey);
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    color: white;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--brand-green);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 25px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* Trust Section */
.equip-trust-section {
    padding: 100px 0;
    background: var(--brand-dark-grey);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.trust-item {
    padding: 35px;
    background: var(--brand-medium-grey);
    border-left: 4px solid var(--brand-green);
}

.trust-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.trust-item p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Final CTA Section */
.equip-cta-section {
    padding: 100px 0;
    background: var(--brand-black);
    border-top: 1px solid var(--brand-medium-grey);
}

.equip-final-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.equip-final-cta h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.equip-final-cta p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 35px;
    line-height: 1.6;
}

.equip-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--brand-green);
    padding: 18px 20px;
    z-index: 998;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}

.mobile-sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.mobile-sticky-cta svg {
    width: 22px;
    height: 22px;
    fill: white;
    flex-shrink: 0;
    animation: ring 1.5s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .pricing-card {
        grid-template-columns: 1fr;
    }

    .pricing-left {
        padding: 40px 30px;
    }

    .pricing-right {
        padding: 40px 30px;
    }

    .footer-contact {
        text-align: left;
    }

    /* About Page Tablet */
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .owner-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }

    .owner-image {
        max-width: 250px;
    }

    /* Contact Page Tablet */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-wrapper {
        padding: 40px;
    }

    /* Hub Page Tablet */
    .hub-pricing-card {
        padding: 40px;
        justify-content: center;
        text-align: center;
    }

    .hub-pricing-content {
        text-align: center;
    }

    .hub-pricing-content p {
        max-width: none;
    }

    /* Equipment Inspection Page Tablet */
    .equip-risk-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .equip-risk-callout {
        position: static;
    }

    .deliverables-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .equip-process-grid {
        flex-direction: column;
        align-items: center;
    }

    .process-step-arrow {
        transform: rotate(90deg);
        padding: 20px 0;
    }

    .equip-pricing-card {
        grid-template-columns: 1fr;
    }

    .equip-pricing-content,
    .equip-pricing-cta {
        padding: 50px 40px;
    }
}

/* ===== RESPONSIVE - MOBILE NAV TRIGGER ===== */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none !important;
    }

    .nav-socials {
        display: none;
    }

    .site-header {
        padding: 15px 0;
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    /* Grid adjustments */
    .span-3, .span-4, .span-6, .span-8 {
        grid-column: span 6;
    }

    /* Hero adjustments */
    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 80px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }

    .hero-buttons .btn {
        padding: 15px 25px;
        font-size: 0.9rem;
    }

    /* Process adjustments */
    .process-step {
        flex-direction: column;
        gap: 15px;
    }

    /* Footer adjustments */
    .site-footer {
        padding-bottom: 120px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 30px;
    }

    /* Show mobile sticky CTA */
    .mobile-sticky-cta {
        display: block;
    }
}

/* ===== RESPONSIVE - SMALL MOBILE ===== */
@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }

    .span-3, .span-4, .span-6, .span-8 {
        grid-column: span 12;
    }

    .section-header-industrial {
        padding-left: 20px;
        border-left-width: 6px;
        margin-bottom: 40px;
    }

    .equipment-section,
    .services-section,
    .process-section {
        padding: 60px 0;
    }

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

    .deliverables-bar {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .video-container {
        border-width: 10px;
    }

    .pricing-left,
    .pricing-right {
        padding: 30px 20px;
    }

    .footer-cta .btn {
        width: 100%;
        text-align: center;
    }

    /* About Page Mobile */
    .about-hero {
        min-height: 40vh;
        padding-top: 100px;
    }

    .mission-section,
    .owner-section,
    .about-cta-section {
        padding: 60px 0;
    }

    .callout-box {
        padding: 30px 25px;
    }

    .owner-card {
        padding: 30px 20px;
    }

    .owner-placeholder {
        font-size: 3rem;
    }

    .owner-contact {
        flex-direction: column;
        gap: 15px;
    }

    /* Contact Page Mobile */
    .contact-hero {
        min-height: 35vh;
        padding-top: 100px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .ironcheck-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-method {
        flex-direction: column;
        gap: 15px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon svg {
        width: 24px;
        height: 24px;
    }

    /* Hub Page Mobile */
    .services-hero {
        min-height: 40vh;
        padding-top: 100px;
    }

    .equipment-hub-section,
    .hub-pricing-section,
    .hub-cta-section {
        padding: 60px 0;
    }

    .equipment-hub-grid {
        grid-template-columns: 1fr;
    }

    .equipment-hub-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .hub-card-arrow {
        display: none;
    }

    .hub-pricing-card {
        padding: 30px 20px;
        flex-direction: column;
        gap: 30px;
    }

    .price-amount {
        font-size: 3rem;
    }

    .hub-cta-buttons {
        flex-direction: column;
    }

    .hub-cta-buttons .btn {
        width: 100%;
    }

    /* Equipment Inspection Page Mobile */
    .equip-hero {
        min-height: 60vh;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .equip-hero-trust {
        flex-direction: column;
        gap: 10px;
    }

    .equip-hero-cta {
        flex-direction: column;
    }

    .equip-hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    .equip-risk-section,
    .equip-checklist-section,
    .equip-deliverables-section,
    .equip-process-section,
    .equip-pricing-section,
    .equip-faq-section,
    .equip-trust-section,
    .equip-cta-section {
        padding: 60px 0;
    }

    .issue-item {
        flex-direction: column;
        gap: 10px;
    }

    .risk-stat-box {
        padding: 30px 20px;
    }

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

    .checklist-category {
        padding: 25px 20px;
    }

    .deliverable-card {
        padding: 30px 20px;
    }

    .deliverable-icon {
        width: 60px;
        height: 60px;
    }

    .equip-process-step {
        padding: 20px 10px;
    }

    .process-step-num {
        font-size: 3rem;
    }

    .equip-pricing-content,
    .equip-pricing-cta {
        padding: 40px 25px;
    }

    .pricing-amount {
        font-size: 4rem;
    }

    .faq-question {
        font-size: 1.1rem;
        padding: 20px 0;
    }

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

    .trust-item {
        padding: 25px 20px;
    }

    .equip-cta-buttons {
        flex-direction: column;
    }

    .equip-cta-buttons .btn {
        width: 100%;
    }
}

/* ===== RESPONSIVE - VERY SMALL ===== */
@media (max-width: 380px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .iron-card h3 {
        font-size: 1.2rem;
    }

    .mobile-sticky-cta a {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .mobile-menu .btn {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
}