@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
 --ink: #0d1117;
 --ink-2: #171d25;
 --panel: #202833;
 --steel: #5b6673;
 --muted: #6f7782;
 --line: #d8dde3;
 --line-dark: rgba(255,255,255,0.14);
 --paper: #ffffff;
 --background: #f4f6f8;
 --accent: #c89211;
 --accent-2: #e5b32f;
 --shadow: 0 16px 34px rgba(13, 17, 23, 0.12);
 --shadow-strong: 0 28px 65px rgba(0,0,0,0.32);
 --radius: 4px;
}

* {
 box-sizing: border-box;
}

html {
 scroll-behavior: smooth;
}

body {
 margin: 0;
 font-family: 'Roboto', Arial, sans-serif;
 background: var(--background);
 color: #242b33;
 line-height: 1.55;
}

img {
 max-width: 100%;
}

a {
 color: inherit;
}

.site-header {
 position: sticky;
 top: 0;
 z-index: 50;
 background: var(--ink);
 color: #fff;
 border-bottom: 1px solid rgba(255,255,255,0.08);
 box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.site-header::after {
 content: '';
 display: block;
 height: 3px;
 background: linear-gradient(90deg, var(--accent), #80600f 42%, transparent 42%);
}

.nav-container {
 width: min(1200px, calc(100% - 32px));
 min-height: 74px;
 margin: 0 auto;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 28px;
}

.brand {
 min-width: 285px;
 display: inline-flex;
 align-items: center;
 gap: 14px;
 color: #fff;
 text-decoration: none;
}

.brand-mark {
 width: 54px;
 height: 44px;
 display: grid;
 place-items: center;
 background: var(--accent);
 color: var(--ink);
 border-radius: 0;
 font-size: 1.05rem;
 font-weight: 900;
 letter-spacing: 1px;
 box-shadow: inset -6px 0 0 rgba(0,0,0,0.16);
}

.brand-logo {
 width: 54px;
 height: 54px;
 flex: 0 0 54px;
 display: block;
 object-fit: contain;
 background: #ffffff;
 padding: 4px;
 border-radius: 0;
 box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

.brand-text {
 font-size: 0.92rem;
 font-weight: 900;
 line-height: 1.15;
 letter-spacing: 1.1px;
 text-transform: uppercase;
}

.main-nav {
 display: flex;
 justify-content: flex-end;
 align-items: center;
 gap: 2px;
 flex-wrap: wrap;
}

.main-nav a {
 min-height: 42px;
 display: inline-flex;
 align-items: center;
 padding: 0 14px;
 border-radius: 0;
 border-left: 1px solid transparent;
 color: rgba(255,255,255,0.78);
 text-decoration: none;
 font-size: 0.87rem;
 font-weight: 800;
 letter-spacing: 0.45px;
 text-transform: uppercase;
 transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.main-nav a:hover,
.main-nav a.active {
 color: #fff;
 background: rgba(255,255,255,0.075);
 border-left-color: var(--accent);
}

.hero {
 position: relative;
 padding: 0;
 background: var(--ink);
}

.slideshow-container {
 position: relative;
 width: 100%;
 height: clamp(520px, 68vw, 690px);
 margin: 0;
 overflow: hidden;
 border-radius: 0;
 background: #0b0f14;
 box-shadow: none;
}

.slides-wrapper {
 display: flex;
 height: 100%;
 transition: transform 0.62s cubic-bezier(.77, 0,.18, 1);
}

.mySlides {
 position: relative;
 min-width: 100%;
 height: 100%;
}

.mySlides::after {
 content: '';
 position: absolute;
 inset: 0;
 background:
 linear-gradient(90deg, rgba(7,11,16,0.88) 0%, rgba(7,11,16,0.70) 34%, rgba(7,11,16,0.20) 78%),
 linear-gradient(0deg, rgba(7,11,16,0.54), transparent 44%);
}

.mySlides img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
}

.numbertext {
 position: absolute;
 top: 24px;
 right: 28px;
 z-index: 3;
 padding: 7px 11px;
 border-radius: 0;
 border: 1px solid var(--line-dark);
 background: rgba(13,17,23,0.72);
 color: rgba(255,255,255,0.78);
 font-size: 0.78rem;
 font-weight: 800;
 letter-spacing: 0.8px;
}

.hero-overlay {
 position: absolute;
 inset: 0;
 z-index: 4;
 width: min(1200px, calc(100% - 32px));
 margin: 0 auto;
 display: flex;
 flex-direction: column;
 justify-content: center;
 color: #fff;
 pointer-events: none;
}

.hero-overlay::before {
 content: none;
 display: none;
}

.hero-overlay h1 {
 max-width: 760px;
 margin: 0;
 font-size: clamp(2.8rem, 7vw, 5.8rem);
 line-height: 0.92;
 letter-spacing: -2.8px;
 font-weight: 900;
 text-transform: uppercase;
}

.hero-overlay p:not(.section-eyebrow) {
 max-width: 600px;
 margin: 22px 0 0;
 color: rgba(255,255,255,0.84);
 font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.hero-actions {
 display: flex;
 align-items: center;
 gap: 12px;
 flex-wrap: wrap;
 margin-top: 30px;
 pointer-events: auto;
}

.primary-button,
.secondary-button {
 min-height: 48px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 padding: 0 22px;
 border-radius: 0;
 font-weight: 900;
 font-size: 0.88rem;
 letter-spacing: 0.8px;
 text-transform: uppercase;
 text-decoration: none;
 transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.primary-button {
 background: var(--accent);
 color: var(--ink);
 border: 1px solid var(--accent);
 box-shadow: 8px 8px 0 rgba(0,0,0,0.22);
}

.secondary-button {
 color: #fff;
 background: rgba(255,255,255,0.06);
 border: 1px solid rgba(255,255,255,0.36);
}

.secondary-button.light {
 background: transparent;
}

.primary-button:hover,
.secondary-button:hover {
 transform: translate(-2px, -2px);
 box-shadow: 10px 10px 0 rgba(0,0,0,0.22);
}

.secondary-button:hover {
 border-color: var(--accent);
 background: rgba(200,146,17,0.12);
}

.primary-button.compact {
 min-height: 42px;
 padding: 0 18px;
 box-shadow: 6px 6px 0 rgba(0,0,0,0.18);
}

.prev,
.next {
 position: absolute;
 top: 50%;
 z-index: 5;
 transform: translateY(-50%);
 width: 48px;
 height: 56px;
 display: grid;
 place-items: center;
 border-radius: 0;
 border: 1px solid rgba(255,255,255,0.2);
 background: rgba(13,17,23,0.72);
 color: #fff;
 cursor: pointer;
 font-size: 1.35rem;
 transition: background 0.18s ease, border-color 0.18s ease;
}

.prev { left: 24px; }
.next { right: 24px; }

.prev:hover,
.next:hover {
 background: var(--accent);
 border-color: var(--accent);
 color: var(--ink);
}

.dots-container {
 position: absolute;
 left: 50%;
 bottom: 20px;
 z-index: 8;
 transform: translateX(-50%);
 display: flex;
 justify-content: center;
 gap: 7px;
 margin: 0;
}

.dot {
 width: 30px;
 height: 4px;
 padding: 0;
 border: 0;
 border-radius: 0;
 background: rgba(255,255,255,0.34);
 cursor: pointer;
 transition: background 0.18s ease, width 0.18s ease;
}

.dot.active,
.dot:hover {
 width: 52px;
 background: var(--accent);
}

.section-eyebrow {
 margin: 0 0 10px;
 color: var(--accent);
 font-size: 0.72rem;
 font-weight: 900;
 letter-spacing: 2.4px;
 text-transform: uppercase;
}


/* Make hero eyebrow labels readable over dark/red image overlays. */
.hero-overlay .section-eyebrow,
.page-hero .section-eyebrow {
 display: inline-flex;
 align-self: flex-start;
 width: auto;
 max-width: max-content;
 padding: 10px 15px;
 margin-bottom: 16px;
 border: 1px solid rgba(255, 255, 255, 0.78);
 background: rgba(255, 248, 235, 0.96);
 color: #4a1710;
 box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
 text-shadow: none;
}

.hero-overlay .section-eyebrow {
 margin-bottom: 18px;
}

.intro-band {
 width: min(1200px, calc(100% - 32px));
 position: relative;
 z-index: 8;
 margin: -42px auto 0;
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 0;
 border: 1px solid var(--line);
 background: var(--paper);
 box-shadow: var(--shadow);
}

.intro-card {
 display: flex;
 flex-direction: column;
 gap: 7px;
 padding: 26px 28px;
 border-radius: 0;
 background: #fff;
 border: 0;
 border-right: 1px solid var(--line);
 box-shadow: none;
}

.intro-card:last-child {
 border-right: 0;
}

.intro-card strong {
 color: var(--ink);
 font-size: 1.02rem;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}

.intro-card span {
 color: var(--muted);
 font-size: 0.95rem;
}

.equipment-section {
 padding: 88px 16px;
 background: var(--background);
}

.equipment-section.alt {
 background: #fff;
 border-top: 1px solid var(--line);
 border-bottom: 1px solid var(--line);
}

.section-heading {
 width: min(800px, 100%);
 margin: 0 auto 38px;
 text-align: center;
}

.section-heading h2 {
 margin: 0;
 color: var(--ink);
 font-size: clamp(2rem, 4vw, 3.4rem);
 line-height: 0.95;
 letter-spacing: -1.5px;
 text-transform: uppercase;
}

.section-heading h2::after {
 content: '';
 display: block;
 width: 64px;
 height: 4px;
 margin: 18px auto 0;
 background: var(--accent);
}

.section-heading p:not(.section-eyebrow) {
 margin: 18px auto 0;
 color: var(--muted);
 font-size: 1.02rem;
}

.equipment-grid,
.cranes-grid {
 width: min(1200px, 100%);
 margin: 0 auto;
 display: grid;
 grid-template-columns: repeat(4, minmax(0, 1fr));
 gap: 18px;
}

.equipment-grid.three-column {
 grid-template-columns: repeat(3, minmax(0, 1fr));
}

.equipment-grid.single-card {
 grid-template-columns: minmax(280px, 460px);
 justify-content: center;
}

.equipment-card,
.crane-item {
 position: relative;
 overflow: hidden;
 border-radius: 0;
 border: 1px solid var(--line);
 background: var(--paper);
 box-shadow: none;
 transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.equipment-card::before,
.crane-item::before {
 content: '';
 position: absolute;
 inset: 0 auto auto 0;
 width: 0;
 height: 5px;
 z-index: 2;
 background: var(--accent);
 transition: width 0.18s ease;
}

.equipment-card:hover,
.crane-item:hover {
 transform: translateY(-4px);
 border-color: #b7c0ca;
 box-shadow: var(--shadow);
}

.equipment-card:hover::before,
.crane-item:hover::before {
 width: 100%;
}

.equipment-card a,
.crane-item a {
 display: block;
 height: 100%;
 color: inherit;
 text-decoration: none;
}

.equipment-card img,
.crane-item img {
 width: 100%;
 height: 245px;
 object-fit: cover;
 display: block;
 border-radius: 0;
 filter: saturate(0.92) contrast(1.03);
 transition: transform 0.22s ease, filter 0.22s ease;
}

.equipment-card:hover img,
.crane-item:hover img {
 transform: scale(1.025);
 filter: saturate(1.04) contrast(1.06);
}

.equipment-card-body {
 min-height: 178px;
 padding: 22px 22px 24px;
}

.card-kicker {
 display: inline-flex;
 margin-bottom: 10px;
 color: var(--accent);
 font-size: 0.7rem;
 font-weight: 900;
 letter-spacing: 1.7px;
 text-transform: uppercase;
}

.equipment-card h3,
.crane-caption {
 margin: 0;
 color: var(--ink);
 font-size: 1.13rem;
 line-height: 1.18;
 font-weight: 900;
 letter-spacing: 0.5px;
 text-transform: uppercase;
}

.equipment-card p {
 margin: 11px 0 0;
 color: var(--muted);
 font-size: 0.94rem;
}

.page-hero {
 position: relative;
 overflow: hidden;
 padding: 104px 16px 96px;
 background:
 linear-gradient(90deg, rgba(13,17,23,0.94), rgba(13,17,23,0.80)),
 linear-gradient(135deg, #111820 0%, #1d2630 56%, #2a3440 100%);
 color: #fff;
}

.page-hero::before {
 content: '';
 position: absolute;
 inset: 0;
 background-image:
 linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
 linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
 background-size: 44px 44px;
 opacity: 0.35;
}

.page-hero::after {
 content: '';
 position: absolute;
 left: 0;
 bottom: 0;
 width: 38%;
 height: 7px;
 background: var(--accent);
}

.page-hero-content {
 position: relative;
 z-index: 1;
 width: min(1000px, 100%);
 margin: 0 auto;
}

.page-hero h1 {
 max-width: 780px;
 margin: 0;
 font-size: clamp(2.7rem, 6vw, 5.25rem);
 line-height: 0.92;
 letter-spacing: -2.4px;
 font-weight: 900;
 text-transform: uppercase;
}

.page-hero p:not(.section-eyebrow) {
 max-width: 690px;
 margin: 18px 0 0;
 color: rgba(255,255,255,0.80);
 font-size: 1.08rem;
}

.fleet-section {
 background: #fff;
}

.service-band {
 width: min(1200px, calc(100% - 32px));
 margin: 0 auto 82px;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 24px;
 padding: 28px 30px;
 border-radius: 0;
 border-left: 6px solid var(--accent);
 background: var(--ink);
 color: #fff;
 box-shadow: var(--shadow);
}

.service-band div {
 display: flex;
 flex-direction: column;
 gap: 5px;
}

.service-band strong {
 font-size: 1.13rem;
 text-transform: uppercase;
 letter-spacing: 0.4px;
}

.service-band span {
 color: rgba(255,255,255,0.74);
}

.contact-section {
 position: relative;
 overflow: hidden;
 padding: 78px 16px 38px;
 background:
 linear-gradient(90deg, rgba(13,17,23,0.96), rgba(13,17,23,0.88)),
 linear-gradient(135deg, #0d1117, #222b36);
 color: #fff;
 text-align: center;
}

.contact-section::before {
 content: '';
 position: absolute;
 inset: 0;
 background-image:
 linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
 linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
 background-size: 38px 38px;
 opacity: 0.55;
}

.contact-section::after {
 content: '';
 position: absolute;
 top: 0;
 left: 50%;
 width: min(1200px, calc(100% - 32px));
 height: 6px;
 transform: translateX(-50%);
 background: linear-gradient(90deg, var(--accent) 0 28%, rgba(255,255,255,0.16) 28% 100%);
}

.contact-content {
 position: relative;
 z-index: 1;
 width: min(1200px, 100%);
 margin: 0 auto;
}

.contact-section h2 {
 margin: 0;
 font-size: clamp(2rem, 4vw, 3.35rem);
 line-height: 0.95;
 font-weight: 900;
 letter-spacing: -1.4px;
 text-transform: uppercase;
}

.contact-intro {
 max-width: 720px;
 margin: 18px auto 34px;
 color: rgba(255,255,255,0.76);
 font-size: 1.02rem;
}

.contact-details {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 16px;
 align-items: stretch;
 margin-bottom: 30px;
}

.contact-card {
 display: flex;
 gap: 16px;
 align-items: flex-start;
 padding: 26px;
 border-radius: 0;
 border: 1px solid var(--line-dark);
 background: rgba(255,255,255,0.055);
 text-align: left;
 box-shadow: none;
 backdrop-filter: none;
}

.contact-icon {
 flex: 0 0 46px;
 width: 46px;
 height: 46px;
 display: grid;
 place-items: center;
 border-radius: 0;
 background: var(--accent);
 color: var(--ink);
 font-size: 1.13rem;
 font-weight: 900;
}

.contact-card h3 {
 margin: 0 0 7px;
 color: var(--accent-2);
 font-size: 0.78rem;
 text-transform: uppercase;
 letter-spacing: 1.8px;
}

.contact-card p {
 margin: 0;
 color: #fff;
 font-size: 1.02rem;
 line-height: 1.5;
}

.contact-card a {
 color: #fff;
 font-weight: 900;
 text-decoration: none;
}

.contact-card a:hover {
 text-decoration: underline;
}

.contact-actions {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 12px;
 flex-wrap: wrap;
}

@media (max-width: 1040px) {
.nav-container {
 min-height: auto;
 flex-direction: column;
 align-items: flex-start;
 padding: 16px 0;
 }

.brand {
 min-width: 0;
 }

.main-nav {
 justify-content: flex-start;
 }

.equipment-grid,
.cranes-grid {
 grid-template-columns: repeat(2, minmax(0, 1fr));
 }

.equipment-grid.three-column {
 grid-template-columns: repeat(3, minmax(0, 1fr));
 }
}

@media (max-width: 860px) {
.intro-band,
.contact-details {
 grid-template-columns: 1fr;
 }

.intro-card {
 border-right: 0;
 border-bottom: 1px solid var(--line);
 }

.intro-card:last-child {
 border-bottom: 0;
 }

.equipment-grid.three-column,
.equipment-grid,
.cranes-grid {
 grid-template-columns: 1fr;
 max-width: 560px;
 }

.slideshow-container {
 height: 560px;
 }

.hero-overlay {
 justify-content: flex-end;
 padding-bottom: 72px;
 }

.prev,
.next {
 display: none;
 }

.service-band {
 align-items: flex-start;
 flex-direction: column;
 }
}

@media (max-width: 620px) {
.nav-container,
.hero-overlay {
 width: min(100% - 24px, 1200px);
 }

.brand-text {
 font-size: 0.78rem;
 }

.brand-mark {
 width: 48px;
 height: 40px;
 }

.brand-logo {
 width: 48px;
 height: 48px;
 flex-basis: 48px;
 padding: 4px;
 }

.main-nav a {
 min-height: 36px;
 padding: 0 10px;
 font-size: 0.78rem;
 }

.slideshow-container {
 height: 540px;
 }

.hero-overlay h1,
.page-hero h1 {
 letter-spacing: -1.2px;
 }

.hero-actions,
.contact-actions {
 align-items: stretch;
 flex-direction: column;
 }

.primary-button,
.secondary-button {
 width: 100%;
 }

.equipment-section {
 padding: 64px 14px;
 }

.equipment-card img,
.crane-item img {
 height: 218px;
 }

.page-hero {
 padding: 76px 16px 72px;
 }

.contact-card {
 flex-direction: column;
 align-items: flex-start;
 }
}


/* Red + white professional theme refinements */
:root {
 --cec-red: #b40000;
 --cec-red-dark: #780000;
 --cec-red-deep: #4f0000;
 --cec-red-soft: #fff3f3;
 --cec-red-line: #ead2d2;
 --ink: #1f1f1f;
 --ink-2: #2b2b2b;
 --panel: #ffffff;
 --steel: #5f3030;
 --muted: #675f5f;
 --line: #e6d4d4;
 --line-dark: rgba(255,255,255,0.25);
 --paper: #ffffff;
 --background: #ffffff;
 --accent: var(--cec-red);
 --accent-2: #ffffff;
 --shadow: 0 14px 32px rgba(95, 0, 0, 0.10);
 --shadow-strong: 0 28px 65px rgba(95, 0, 0, 0.22);
}

body {
 background: #ffffff;
 color: #252525;
}

.site-header {
 background: linear-gradient(90deg, var(--cec-red-dark), var(--cec-red));
 border-bottom: 1px solid rgba(255,255,255,0.26);
 box-shadow: 0 8px 24px rgba(80,0,0,0.22);
}

.site-header::after {
 height: 4px;
 background: #ffffff;
}

.brand-mark {
 background: #ffffff;
 color: var(--cec-red);
 box-shadow: inset -6px 0 0 rgba(180,0,0,0.12);
}

.brand-logo {
 background: #ffffff;
 border: 1px solid rgba(255,255,255,0.8);
 box-shadow: 0 4px 14px rgba(70,0,0,0.20);
}

.main-nav a {
 color: rgba(255,255,255,0.84);
}

.main-nav a:hover,
.main-nav a.active {
 color: var(--cec-red);
 background: #ffffff;
 border-left-color: #ffffff;
}

.hero,
.slideshow-container {
 background: var(--cec-red-deep);
}

.mySlides::after {
 background:
 linear-gradient(90deg, rgba(96,0,0,0.94) 0%, rgba(140,0,0,0.78) 38%, rgba(140,0,0,0.22) 78%),
 linear-gradient(0deg, rgba(96,0,0,0.58), transparent 46%);
}

.hero-overlay::before,
.section-heading h2::after,
.page-hero::after,
.equipment-card::before,
.crane-item::before {
 background: var(--cec-red);
}

.hero-overlay p:not(.section-eyebrow),
.page-hero p:not(.section-eyebrow) {
 color: rgba(255,255,255,0.88);
}

.numbertext,
.prev,
.next {
 background: rgba(110,0,0,0.72);
 border-color: rgba(255,255,255,0.32);
}

.prev:hover,
.next:hover,
.dot.active,
.dot:hover {
 background: #ffffff;
 border-color: #ffffff;
 color: var(--cec-red);
}

.primary-button {
 background: var(--cec-red);
 color: #ffffff;
 border-color: var(--cec-red);
 box-shadow: 7px 7px 0 rgba(120,0,0,0.17);
}

.secondary-button {
 color: #ffffff;
 border-color: rgba(255,255,255,0.58);
 background: rgba(255,255,255,0.08);
}

.secondary-button:hover {
 color: var(--cec-red);
 border-color: #ffffff;
 background: #ffffff;
}

.equipment-section,
.fleet-section {
 background: #ffffff;
}

.equipment-section.alt,
.intro-band,
.equipment-card,
.crane-item,
.intro-card {
 background: #ffffff;
 border-color: var(--cec-red-line);
}

.intro-band {
 box-shadow: 0 12px 30px rgba(120,0,0,0.08);
}

.section-eyebrow,
.card-kicker {
 color: var(--cec-red);
}

.equipment-card h3,
.crane-caption,
.intro-card strong,
.section-heading h2 {
 color: #222222;
}

.equipment-card:hover,
.crane-item:hover {
 border-color: var(--cec-red);
 box-shadow: 0 16px 36px rgba(180,0,0,0.14);
}

.equipment-grid.two-column {
 grid-template-columns: repeat(2, minmax(280px, 1fr));
 max-width: 820px;
}

.capacity-card.equipment-card-body {
 min-height: 150px;
 border-top: 4px solid var(--cec-red);
}

.capacity-card h3 {
 font-size: 1.4rem;
 letter-spacing: 0.7px;
}

.page-hero {
 background:
 linear-gradient(90deg, rgba(110,0,0,0.94), rgba(180,0,0,0.78)),
 linear-gradient(135deg, var(--cec-red-deep), var(--cec-red));
}

.service-band {
 background: #ffffff;
 color: #222222;
 border: 1px solid var(--cec-red-line);
 border-left: 7px solid var(--cec-red);
 box-shadow: 0 12px 30px rgba(120,0,0,0.08);
}

.service-band span {
 color: var(--muted);
}

.service-band.primary-button {
 box-shadow: none;
}

.contact-section {
 background:
 linear-gradient(90deg, rgba(120,0,0,0.96), rgba(180,0,0,0.90)),
 linear-gradient(135deg, var(--cec-red-dark), var(--cec-red));
}

.contact-section::after {
 background: #ffffff;
}

.contact-card {
 background: #ffffff;
 border-color: rgba(255,255,255,0.45);
 color: #222222;
}

.contact-card h3 {
 color: var(--cec-red);
}

.contact-card p,
.contact-card a {
 color: #222222;
}

.contact-icon {
 background: var(--cec-red);
 color: #ffffff;
}

.contact-section.section-eyebrow,
.contact-section h2,
.contact-intro {
 color: #ffffff;
}

.contact-section.secondary-button.light {
 color: #ffffff;
 border-color: #ffffff;
}

.contact-section.secondary-button.light:hover {
 color: var(--cec-red);
 background: #ffffff;
}

@media (max-width: 860px) {
.equipment-grid.two-column {
 grid-template-columns: 1fr;
 max-width: 560px;
 }
}


/* Real crane model images */
.equipment-card img.crane-model-image {
 object-fit: contain;
 object-position: center;
 background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
 padding: 14px;
}

.hero.mySlides img.crane-model-image {
 object-fit: contain;
 background: #ffffff;
 padding: 24px;
}

.capacity-card img.crane-model-image {
 height: 285px;
 padding: 18px;
}

@media (max-width: 620px) {
.capacity-card img.crane-model-image {
 height: 240px;
 }
}

/* Centralized contact form and multi-phone support */
.contact-layout {
 display: grid;
 grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
 gap: 22px;
 align-items: stretch;
 margin-top: 26px;
 text-align: left;
}

.contact-layout.contact-details {
 grid-template-columns: 1fr;
 gap: 16px;
 margin-bottom: 0;
}

.phone-list {
 display: grid;
 gap: 8px;
}

.phone-row {
 display: grid;
 gap: 2px;
}

.phone-label {
 display: block;
 color: var(--muted);
 font-size: 0.76rem;
 font-weight: 900;
 letter-spacing: 1px;
 text-transform: uppercase;
}

.contact-actions-inline {
 justify-content: flex-start;
 margin-top: 4px;
}

.contact-form {
 position: relative;
 display: grid;
 gap: 16px;
 padding: 28px;
 background: #ffffff;
 color: #222222;
 border: 1px solid rgba(255,255,255,0.45);
 box-shadow: 0 18px 42px rgba(40,0,0,0.18);
}

.form-heading {
 display: grid;
 gap: 6px;
 margin-bottom: 2px;
}

.form-heading h3 {
 margin: 0;
 color: #222222;
 font-size: 1.45rem;
 line-height: 1.1;
 font-weight: 900;
 text-transform: uppercase;
}

.form-heading p,
.form-note {
 margin: 0;
 color: var(--muted);
 font-size: 0.95rem;
}

.form-grid {
 display: grid;
 grid-template-columns: repeat(2, minmax(0, 1fr));
 gap: 14px;
}

.contact-form label {
 display: grid;
 gap: 7px;
 color: #222222;
 font-size: 0.78rem;
 font-weight: 900;
 letter-spacing: 1px;
 text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
 width: 100%;
 border: 1px solid #cfd5dc;
 border-radius: 0;
 background: #ffffff;
 color: #222222;
 padding: 13px 12px;
 font: inherit;
 font-size: 0.98rem;
 text-transform: none;
 outline: none;
 transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form textarea {
 resize: vertical;
 min-height: 125px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
 border-color: var(--cec-red);
 box-shadow: 0 0 0 3px rgba(200, 28, 28, 0.16);
}

.form-submit {
 width: 100%;
 border: 0;
 cursor: pointer;
 justify-content: center;
}

.form-honeypot {
 position: absolute !important;
 left: -9999px !important;
 width: 1px !important;
 height: 1px !important;
 opacity: 0 !important;
 pointer-events: none !important;
}

@media (max-width: 940px) {
.contact-layout {
 grid-template-columns: 1fr;
 }
}

@media (max-width: 620px) {
.contact-form {
 padding: 22px;
 }

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

.contact-actions-inline {
 align-items: stretch;
 }

.contact-actions-inline a {
 width: 100%;
 justify-content: center;
 }
}

/* Listings beneath single category cards */
.examples-block {
 width: min(980px, 100%);
 margin: 38px auto 0;
 padding-top: 32px;
 border-top: 1px solid var(--cec-red-line);
}

.examples-heading {
 margin-bottom: 18px;
 text-align: center;
}

.examples-heading h3 {
 margin: 0;
 color: #222222;
 font-size: clamp(1.45rem, 2.6vw, 2rem);
 line-height: 1.05;
 font-weight: 900;
 letter-spacing: -0.6px;
 text-transform: uppercase;
}

.examples-grid {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 16px;
}

.example-card {
 position: relative;
 min-height: 166px;
 overflow: hidden;
 padding: 0;
 border: 1px solid var(--cec-red-line);
 border-left: 5px solid var(--cec-red);
 background: #ffffff;
 box-shadow: 0 10px 24px rgba(120,0,0,0.06);
}

.example-card-image {
 height: 165px;
 background: #f6f6f6;
 border-bottom: 1px solid var(--cec-red-line);
}

.example-card-image img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
}

.example-card >.card-kicker,
.example-card > h4,
.example-card > p {
 padding-left: 20px;
 padding-right: 20px;
}

.example-card >.card-kicker {
 margin-top: 20px;
}

.example-card > p {
 padding-bottom: 24px;
}

.example-card h4 {
 margin: 0;
 color: #222222;
 font-size: 1rem;
 line-height: 1.2;
 font-weight: 900;
 letter-spacing: 0.35px;
 text-transform: uppercase;
}

.example-card p {
 margin: 10px 0 0;
 color: var(--muted);
 font-size: 0.94rem;
}

@media (max-width: 860px) {
.examples-grid {
 grid-template-columns: 1fr;
 }

.example-card {
 min-height: auto;
 }

.example-card-image {
 height: 190px;
 }
}


/* Interactive crane tabs */
.listing-tab {
 cursor: pointer;
}

.listing-tab:focus-visible {
 outline: 3px solid rgba(180, 0, 0, 0.32);
 outline-offset: 4px;
}

.listing-tab.is-active {
 border-color: var(--cec-red);
 box-shadow: 0 16px 36px rgba(180,0,0,0.14);
}

.listing-tab.is-active::before {
 width: 100%;
}

.listing-tab.is-active .equipment-card-body {
 background: linear-gradient(180deg, #ffffff 0%, var(--cec-red-soft) 100%);
}

.crane-listing-block {
 width: min(1200px, 100%);
}

.crane-listing-block .examples-heading p {
 max-width: 720px;
 margin: 10px auto 0;
 color: var(--muted);
}

.crane-listing-block .example-card-image img {
 object-fit: contain;
 background: #ffffff;
 padding: 14px;
}

/* Cleaner card spacing and full-image visibility */
.example-card {
 min-height: auto;
}

.example-card-image {
 height: clamp(230px, 22vw, 310px);
 padding: 14px;
 background: #ffffff;
 box-sizing: border-box;
}

.example-card-image img {
 width: 100%;
 height: 100%;
 object-fit: contain;
 display: block;
 background: #ffffff;
 padding: 0;
 box-sizing: border-box;
}

.example-card h4 {
 padding: 18px 20px 22px;
}

/* Keep the single category-card photos from being tightly cropped on equipment pages */
.single-card.equipment-card img {
 object-fit: contain;
 background: #ffffff;
 padding: 18px;
 box-sizing: border-box;
}

@media (max-width: 860px) {
.example-card-image {
 height: 250px;
 }

.example-card h4 {
 padding: 18px 18px 22px;
 }
}


/* Homepage crane attachments and accessories section */
.attachments-section {
 background: #ffffff;
 border-top: 1px solid var(--line);
 border-bottom: 1px solid var(--line);
}

.accessory-grid {
 width: min(1100px, 100%);
 margin: 0 auto;
 display: grid;
 grid-template-columns: repeat(2, minmax(0, 1fr));
 gap: 18px;
}

.accessory-card {
 position: relative;
 overflow: hidden;
 min-height: 150px;
 padding: 30px;
 border: 1px solid var(--line);
 background: var(--paper);
 box-shadow: 0 10px 24px rgba(13, 17, 23, 0.05);
}

.accessory-card::before {
 content: '';
 position: absolute;
 inset: 0 auto auto 0;
 width: 100%;
 height: 5px;
 background: var(--accent);
}

.accessory-card-wide {
 grid-column: 1 / -1;
}

.accessory-card h3 {
 margin: 0;
 color: var(--ink);
 font-size: 1.15rem;
 line-height: 1.15;
 font-weight: 900;
 letter-spacing: 0.5px;
 text-transform: uppercase;
}

.attachment-tree {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 18px;
 margin-top: 22px;
}

.attachment-group {
 padding: 20px;
 border: 1px solid var(--line);
 background: #ffffff;
}

.attachment-group h4 {
 margin: 0 0 12px;
 color: var(--ink);
 font-size: 0.95rem;
 line-height: 1.2;
 font-weight: 900;
 text-transform: uppercase;
 letter-spacing: 0.35px;
}

.attachment-group ul {
 list-style: none;
 margin: 0;
 padding: 0;
}

.attachment-group li {
 padding: 9px 0;
 color: var(--muted);
 font-size: 0.95rem;
 border-top: 1px solid var(--line);
}

.attachment-group li:first-child {
 border-top: 0;
}

@media (max-width: 860px) {
.accessory-grid,
.attachment-tree {
 grid-template-columns: 1fr;
 }

.accessory-card {
 min-height: auto;
 padding: 24px;
 }
}


/* Crane attachments navigation cards and detail pages */
.accessory-card-link {
 padding: 0;
}

.accessory-card-link a {
 display: flex;
 min-height: 150px;
 height: 100%;
 flex-direction: column;
 justify-content: flex-start;
 gap: 14px;
 padding: 30px;
 color: inherit;
 text-decoration: none;
}

.accessory-card p,
.attachment-page-card p,
.accessory-card-intro {
 margin: 14px 0 0;
 color: var(--muted);
 font-size: 0.95rem;
 line-height: 1.55;
}

.attachment-card-links.attachment-link-card {
 display: block;
 color: inherit;
 text-decoration: none;
 transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.attachment-card-links.attachment-link-card:hover,
.accessory-card-link:hover {
 transform: translateY(-4px);
 border-color: var(--cec-red);
 box-shadow: 0 16px 36px rgba(180,0,0,0.14);
}

.attachment-detail-grid {
 grid-template-columns: repeat(3, minmax(0, 1fr));
}

.attachment-page-card {
 min-height: 170px;
}

.attachment-tab-grid {
 margin-bottom: 32px;
}

.attachment-category-card {
 cursor: pointer;
}

.attachment-category-card .equipment-card-body {
 min-height: 170px;
}

.attachment-listing-block {
 width: min(1200px, 100%);
}

.attachment-example-card {
 min-height: 150px;
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
}

.attachment-example-card h4 {
 width: 100%;
 padding: 28px 20px;
}

@media (max-width: 860px) {
.accessory-card-link a {
 min-height: auto;
 padding: 24px;
 }

.attachment-detail-grid {
 grid-template-columns: 1fr;
 }
}

/* Attachment cards with photos */
.attachment-example-card {
 display: block;
 text-align: center;
 min-height: auto;
}

.attachment-example-card .example-card-image {
 height: clamp(230px, 22vw, 310px);
}

.attachment-example-card h4 {
 width: 100%;
 padding: 18px 20px 22px;
}



/* Small example line inside accessory and attachment category cards */
.card-example {
 margin-top: 0.75rem;
 padding-top: 0.7rem;
 border-top: 1px solid rgba(31, 41, 55, 0.12);
 color: #374151;
 font-size: 0.94rem;
 line-height: 1.45;
}

.card-example strong {
 color: #111827;
 font-weight: 800;
}

.attachment-link-card .card-example,
.accessory-card .card-example {
 margin-bottom: 0.75rem;
}


/* Attachment category card photos */
.attachment-card-image,
.attachment-category-card-image {
 height: 160px;
 margin-bottom: 16px;
 padding: 12px;
 border: 1px solid var(--line);
 background: #ffffff;
 box-sizing: border-box;
}

.attachment-card-image img,
.attachment-category-card-image img {
 width: 100%;
 height: 100%;
 display: block;
 object-fit: contain;
 background: #ffffff;
}

.attachment-category-card-image {
 height: 190px;
 margin: 0;
 border-width: 0 0 1px;
 border-color: var(--cec-red-line);
}

.attachment-category-card .equipment-card-body {
 min-height: 145px;
}

@media (max-width: 860px) {
.attachment-card-image,
.attachment-category-card-image {
 height: 190px;
 }
}


/* Unified category-card styling update */
.accessory-card,
.attachment-link-card,
.attachment-category-card {
 border: 1px solid var(--cec-red-line);
 background: #ffffff;
 box-shadow: none;
 overflow: hidden;
 transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.accessory-card {
 padding: 0;
 min-height: 0;
}

.accessory-card::before,
.attachment-link-card::before,
.attachment-category-card::before {
 content: '';
 position: absolute;
 inset: 0 auto auto 0;
 width: 0;
 height: 5px;
 z-index: 3;
 background: var(--cec-red);
 transition: width 0.18s ease;
}

.accessory-card:hover::before,
.attachment-link-card:hover::before,
.attachment-category-card:hover::before,
.attachment-category-card.is-active::before {
 width: 100%;
}

.accessory-card:hover,
.attachment-link-card:hover,
.attachment-category-card:hover,
.attachment-category-card.is-active {
 transform: translateY(-4px);
 border-color: var(--cec-red);
 box-shadow: 0 16px 36px rgba(180,0,0,0.14);
}

.accessory-card-link a,
.attachment-link-card {
 display: block;
 height: 100%;
 min-height: 0;
 padding: 0;
 color: inherit;
 text-decoration: none;
}

.accessory-card-link h3,
.attachment-link-card h3,
.attachment-link-card h4,
.accessory-card-wide > h3 {
 margin: 0;
 padding: 22px 22px 0;
 color: var(--ink);
 font-size: 1.13rem;
 line-height: 1.18;
 font-weight: 900;
 letter-spacing: 0.5px;
 text-transform: uppercase;
}

.accessory-card-link p,
.attachment-link-card p,
.accessory-card-wide > p {
 margin: 11px 0 0;
 padding: 0 22px 24px;
 color: var(--muted);
 font-size: 0.94rem;
 line-height: 1.55;
}

.accessory-card-wide {
 padding: 0 0 26px;
}

.accessory-card-wide > h3 {
 padding-top: 26px;
}

.accessory-card-wide > p {
 padding-bottom: 0;
}

.attachment-tree {
 padding: 0 26px;
}

.attachment-card-image,
.attachment-category-card-image {
 height: clamp(190px, 19vw, 240px);
 margin: 0;
 padding: 14px;
 border: 0;
 border-bottom: 1px solid var(--cec-red-line);
 background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
 box-sizing: border-box;
}

.attachment-card-image img,
.attachment-category-card-image img {
 width: 100%;
 height: 100%;
 display: block;
 object-fit: contain;
 background: transparent;
}

.category-card-placeholder-wrap {
 display: flex;
 align-items: center;
 justify-content: center;
}

.category-card-placeholder {
 width: 100%;
 height: 100%;
 display: flex;
 align-items: center;
 justify-content: center;
 border: 1px dashed rgba(180,0,0,0.28);
 background: linear-gradient(135deg, rgba(180,0,0,0.06), rgba(255,255,255,0.88));
 color: var(--cec-red);
 font-size: 0.82rem;
 font-weight: 900;
 letter-spacing: 1.4px;
 text-align: center;
 text-transform: uppercase;
}

.attachment-category-card .equipment-card-body {
 min-height: 145px;
 padding: 22px;
 border-top: 0;
}

.attachment-category-card.is-active .equipment-card-body,
.listing-tab.is-active.attachment-category-card .equipment-card-body {
 background: linear-gradient(180deg, #ffffff 0%, var(--cec-red-soft) 100%);
}

.attachment-category-card h3 {
 font-size: 1.13rem;
 letter-spacing: 0.5px;
}

.attachment-category-card p {
 margin-top: 11px;
 font-size: 0.94rem;
 line-height: 1.55;
}

.attachment-link-card ul {
 display: none;
}

@media (max-width: 860px) {
.attachment-tree {
 padding: 0 22px;
 }

.attachment-card-image,
.attachment-category-card-image {
 height: 210px;
 }
}

/* Boom image cards */
.boom-listing-grid .example-card-image img {
 object-fit: cover;
 background: #ffffff;
}

.boom-example-card h4 {
 min-height: 70px;
}

/* Contact layout fix: stack contact cards beside the form instead of squeezing them into columns */
.contact-layout {
  grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1.22fr);
  gap: 28px;
  align-items: start;
}

.contact-layout .contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
  margin: 0;
}

.contact-layout .contact-card {
  min-height: 0;
  padding: 22px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
}

.contact-layout .contact-card h3 {
  line-height: 1.25;
}

.contact-layout .contact-card p,
.contact-layout .contact-card a,
.contact-layout .phone-list {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

.contact-layout .contact-actions-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 2px;
}

.contact-layout .contact-actions-inline a {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.contact-form {
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1040px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout .contact-details {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .contact-layout .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-layout .contact-actions-inline {
    grid-template-columns: 1fr;
  }
}

/* Temporarily hide a category selector without deleting its markup. */
.is-temporarily-hidden {
 display: none !important;
}

/* Four-card static attachment listing */
.four-column-listing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .four-column-listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .four-column-listing-grid {
    grid-template-columns: 1fr;
  }
}

/* Center the single Hydraulic Vibro Hammer listing. */
.single-card-listing-grid {
  grid-template-columns: minmax(280px, 420px);
  justify-content: center;
}

/* Preserve the original homepage attachment-card proportions after removing description copy. */
#crane-attachments .accessory-card-link > a > h3:last-child {
  padding-bottom: 74px;
}

#crane-attachments .attachment-link-card > h3:last-child {
  padding-bottom: 58px;
}

