/* ============================================
   ZDEVCO Child Theme — Custom Styles
   Enterprise-grade port & freight branding
   ============================================
   Design principles:
   • Solid opaque header — always readable
   • Large bold headings (700-800) + light body (400)
   • Generous section spacing (80-100px desktop)
   • Soft alternating backgrounds for visual rhythm
   • Clean card layouts with breathing room
   • Gold CTA buttons for action items
   ============================================ */

:root {
    --zd-navy: #0D1B2A;
    --zd-blue: #1A3A5C;
    --zd-blue-soft: #2563EB;
    --zd-sky: #2196F3;
    --zd-slate: #475569;
    --zd-text: #334155;
    --zd-text-dark: #1E293B;
    --zd-muted: #64748B;
    --zd-bg-alt: #F1F5F9;
    --zd-bg-soft: #F8FAFC;
    --zd-border: #E2E8F0;
    --zd-gold: #F39C12;
    --zd-gold-hover: #E67E22;
    --zd-header-bg: #0D1B2A;
    --zd-white: #ffffff;

    /* ── Font Scale System ──
       Change --font-scale to resize all rem-based text proportionally.
       Production default: 0.875 (14px root). */
    --font-scale: 0.875;
}

html {
    font-size: calc(16px * var(--font-scale)) !important;
}

/* ── BASE TYPOGRAPHY ── */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--zd-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p,
.htext,
.section-area-text,
.entry-content p {
    font-family: 'Inter', sans-serif !important;
    color: var(--zd-text);
    font-size: 1.125rem;
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6,
.section-title h2,
.widget-title {
    font-family: 'Montserrat', 'Inter', sans-serif !important;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--zd-navy);
}

/* Section titles (global) */
.section-title .sub-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--zd-sky) !important;
    margin-bottom: 12px;
}

.section-title h2 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 3rem;
    font-weight: 800;
    color: var(--zd-navy) !important;
    margin-bottom: 20px;
    line-height: 1.12;
}

.section-title {
    margin-bottom: 48px !important;
}

.ht-section-title-tagline {
    margin-bottom: 48px !important;
}

/* ══════════════════════════════════════════════
   HEADER — Solid dark, always readable
   ══════════════════════════════════════════════ */

/* Hide email/share row — cleaner look */
.top-bar-head > .head-inn {
    display: none !important;
}

/* Fixed header — always visible, always solid */
.site-header,
header.site-header,
.header-transparent,
header.header-transparent,
body .site-header,
body header.site-header,
.ht-sticky-header .header-transparent,
.ht-sticky-header.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: var(--zd-header-bg) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 9999 !important;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.top-bar-head {
    position: static !important;
    border-bottom: none !important;
}

/* Inner pages: push content below fixed header */
body:not(.home) .page-main-header {
    padding-top: 160px;
    padding-bottom: 40px;
    background-position: center center !important;
    background-size: cover !important;
}

body:not(.home) #innerpage-box {
    padding-top: 30px;
}

/* Homepage first section spacing */
body.home #features-section {
    margin-top: 0;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    background: #0A1929 !important;
}

/* Scrolled state */
header.itsr-scrolled,
header.site-header.itsr-scrolled,
.is-sticky .site-header,
header.is-sticky {
    background: #091520 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
}

/* Logo area — balance with nav */
.head-mob .logo.col-xl-3 {
    flex: 0 0 15% !important;
    max-width: 15% !important;
}

.head-mob .col-xl-9.HeaderRbx {
    flex: 0 0 85% !important;
    max-width: 85% !important;
}

.header-right .head-menu.col-xl-10 {
    flex: 0 0 75% !important;
    max-width: 75% !important;
}

.header-right .hbtn.col-xl-2 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
}

.logo-header.mostion {
    display: flex;
    align-items: center;
}

/* Site tagline — text next to logo — MUST be readable */
.ht-site-description,
.ht-site-description a,
.ht-site-description span,
.site-branding .ht-site-description {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.4;
    opacity: 1 !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5) !important;
    white-space: nowrap !important;
}

/* Logo separator pipe — bright white */
.logo-area .ht-site-title-separator,
.logo-area span[class*="separator"],
.site-branding span {
    color: rgba(255,255,255,0.6) !important;
}

/* Navigation must stay horizontal on all pages */
.mainm,
ul.mainm.ht-clearfix,
.mainmenu {
    display: flex !important;
    flex-wrap: nowrap !important;
    list-style: none;
}

.mainm > li {
    white-space: nowrap;
}

/* Navigation links */
.mainm > li > a,
#menu-menu-menu > li > a,
.mainm > li.menu-item > a,
ul.mainm.ht-clearfix > li > a {
    color: #fff !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    text-transform: none;
    transition: color 0.2s ease, background 0.2s ease;
    padding: 10px 8px !important;
}

.mainm > li > a:hover,
#menu-menu-menu > li > a:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.1) !important;
    border-radius: 4px;
}

ul.mainm.ht-clearfix > li.current-menu-item > a,
ul.mainm.ht-clearfix > li.current_page_item > a,
ul#menu-primary-menu > li.current-menu-item > a,
ul#menu-primary-menu > li.current_page_item > a,
.mainm > li.current-menu-item > a,
.mainm > li.current_page_item > a {
    color: #2196F3 !important;
    background: rgba(255,255,255,0.08) !important;
    border-radius: 4px;
    border-bottom: 2px solid #2196F3 !important;
}

/* Dropdown menus */
.mainm .sub-menu,
ul.mainm li ul {
    background: #fff !important;
    border: 1px solid var(--zd-border) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
    border-radius: 8px !important;
    margin-top: 0 !important;
    padding: 8px 0 !important;
}

.mainm .sub-menu a,
ul.mainm li ul li a {
    color: var(--zd-text) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 10px 20px !important;
    transition: color 0.2s ease, background 0.2s ease;
}

.mainm .sub-menu a:hover,
ul.mainm li ul li a:hover {
    color: var(--zd-sky) !important;
    background: var(--zd-bg-alt) !important;
}

/* ── HEADER CONTACT AREA ── */

header .Rqst-btn {
    position: relative !important;
    top: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    padding: 6px 0 !important;
}

header .Rqst-btn > .col-md-2,
header .Rqst-btn > .col-md-10,
header .Rqst-btn > [class*="col-"] {
    flex: unset !important;
    max-width: unset !important;
    width: auto !important;
    padding: 0 !important;
    float: none !important;
}

.itsr-phone-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 0;
}

.itsr-phone-icon {
    text-decoration: none !important;
    display: flex !important;
    align-items: center;
    overflow: visible !important;
    padding: 0 !important;
}

.itsr-phone-icon i.fa,
.itsr-phone-row > i.fa {
    font-size: 18px !important;
    color: var(--zd-sky) !important;
    margin-left: 0 !important;
}

.itsr-phone-text {
    text-align: right;
}

.itsr-phone-text .itsr-phone-label {
    display: block;
    font-family: 'Inter', sans-serif !important;
    font-size: 10px !important;
    font-weight: 700;
    color: rgba(255,255,255,0.6) !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin-bottom: 1px;
}

.Rqst-btn .itsr-phone-text a {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800;
    font-size: 15px !important;
    color: #fff !important;
    text-decoration: none !important;
    white-space: nowrap;
    display: block !important;
    overflow: visible !important;
    line-height: 1.2;
}

.Rqst-btn .itsr-phone-text a:hover {
    color: var(--zd-sky) !important;
}

.Rqst-btn a.itsr-header-email {
    display: block !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600;
    color: rgba(255,255,255,0.75) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
    white-space: nowrap;
    line-height: 1.3;
    margin-top: 4px;
    overflow: visible !important;
    padding: 0 !important;
}

.Rqst-btn a.itsr-header-email:hover {
    color: var(--zd-sky) !important;
}

.Rqst-btn .itsr-header-email .fa {
    margin-right: 4px;
    font-size: 11px;
    color: var(--zd-sky);
}

.Rqst-btn a.itsr-header-contact-btn {
    display: inline-block !important;
    background: var(--zd-gold) !important;
    color: #fff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 10px !important;
    font-weight: 700;
    padding: 4px 12px !important;
    border-radius: 3px;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-top: 5px;
    overflow: visible !important;
}

.Rqst-btn a.itsr-header-contact-btn:hover {
    background: var(--zd-gold-hover) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(243,156,18,0.3);
}

/* Allow header to show all elements */
.head-mob .container .row,
.head-mob .row-eq-height {
    overflow: visible;
}

.head-mob .col-xl-9.HeaderRbx {
    overflow: visible;
}

.HeaderRbx .header-right .row {
    flex-wrap: nowrap !important;
    align-items: center;
}

/* ══════════════════════════════════════════════
   SLIDER / HERO
   ══════════════════════════════════════════════ */

.slider_section .slider_gradiant {
    background: linear-gradient(135deg, rgba(8,20,34,0.85) 0%, rgba(15,42,63,0.6) 50%, rgba(15,42,63,0.4) 100%) !important;
    opacity: 1 !important;
}

.slider_section .item .title,
.slider_section .slider_content .title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800;
    font-size: 3.75rem;
    text-transform: none;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 30px rgba(0,0,0,0.5);
    color: #fff !important;
    line-height: 1.08;
    max-width: 780px;
}

.slider_section .item .sub-title,
.slider_section .slider_content .sub-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255,255,255,0.92) !important;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
    max-width: 640px;
    margin-top: 16px;
}

.slider_section .btn5 a {
    background: var(--zd-gold) !important;
    border: 2px solid var(--zd-gold) !important;
    color: #fff !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 40px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.slider_section .btn5 a:hover {
    background: var(--zd-gold-hover) !important;
    color: #fff !important;
    border-color: var(--zd-gold-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(243,156,18,0.35);
}

.slider_section .btn5 a:before {
    display: none !important;
}

.slider_section .owl-nav .owl-prev,
.slider_section .owl-nav .owl-next {
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    transition: all 0.3s ease;
}

.slider_section .owl-nav .owl-prev:hover,
.slider_section .owl-nav .owl-next:hover {
    background: rgba(255,255,255,0.9) !important;
    border-color: #fff !important;
}

/* ══════════════════════════════════════════════
   SECTION SPACING — Generous, uniform
   ══════════════════════════════════════════════ */

.ht-section,
#about,
#counter,
#production-section,
#service,
#banner,
#project,
#testimonials,
#blog,
#newsletter {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

#features-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    background: #091520 !important;
}

/* Alternating section backgrounds for visual rhythm */
#about { background: #fff !important; }
#service { background: var(--zd-bg-alt) !important; }
#project { background: #fff !important; }
#blog { background: var(--zd-bg-soft) !important; }

.service-area .row,
#project .row,
.blog-area .row {
    margin-bottom: 0;
}

/* ══════════════════════════════════════════════
   FEATURE BOXES — 3x2 grid
   ══════════════════════════════════════════════ */

#features-section .features-inn {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 auto !important;
    gap: 20px;
    max-width: 1200px;
    justify-content: center;
}

#features-section .features-inn .feabx {
    width: calc(33.333% - 14px) !important;
    max-width: calc(33.333% - 14px) !important;
    flex: 0 0 calc(33.333% - 14px) !important;
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
}

#features-section .features-inn .feabx .mem-inn {
    border-radius: 10px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.75rem 2.25rem;
    transition: all 0.3s ease;
    margin: 0 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

#features-section .mem-inn:hover {
    filter: brightness(1.1);
}

#features-section .feabx:nth-child(odd) .mem-inn {
    background: #0D2137 !important;
}

#features-section .feabx:nth-child(even) .mem-inn {
    background: #122B45 !important;
}

#features-section .sec-icn span {
    font-size: 3rem;
    color: var(--zd-sky) !important;
    margin-bottom: 20px;
    display: block;
}

#features-section .features-content h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: none;
    color: #fff !important;
    margin-bottom: 14px;
    line-height: 1.3;
}

#features-section .features-content p {
    font-size: 1.1875rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85) !important;
    margin: 0;
}

#features-section .readmore {
    display: none;
}

/* ══════════════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════════════ */

#about .abou-img3 {
    height: 100%;
    min-height: 400px;
}

#about .abou-img3 img.secondry-bg-img,
#about .abou-img3 img.img-responsive {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 10px;
    min-height: 400px;
}

#about .abtimg {
    display: flex !important;
    flex-wrap: wrap;
    align-items: stretch;
}

#about .abtimginn {
    display: flex;
}

#about .section-title .sub-title {
    color: var(--zd-sky) !important;
}

#about .section-title h2 {
    font-size: 2.5rem;
    color: var(--zd-navy) !important;
    line-height: 1.15;
}

/* About bullets — icon circles */
#about .hi-icon {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px;
    background: linear-gradient(135deg, var(--zd-sky) 0%, #1976D2 100%) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#about .hi-icon span {
    color: #fff !important;
    font-size: 1.25rem !important;
}

#about .aboutus-single {
    display: flex !important;
    align-items: center !important;
    gap: 14px;
    padding: 12px 0 !important;
    border-bottom: 1px solid var(--zd-border);
}

#about .aboutus-single .col-md-1 {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
}

#about .aboutus-single .col-md-11 {
    flex: 1 !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
}

#about .about-area-data .inner-area-title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--zd-navy) !important;
    margin: 0 !important;
    line-height: 1.3;
}

#about .about-area-data .inner-area-title:hover {
    color: var(--zd-sky) !important;
}

/* Hide empty video column, make icon list full-width */
#about .about-right > .col-lg-5 {
    display: none !important;
}

#about .about-right > .col-lg-7.aboutus-post-wrap {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}

#about .htext {
    font-size: 1.1875rem;
    line-height: 1.85;
    color: var(--zd-text) !important;
    border-bottom-color: var(--zd-border) !important;
    margin-bottom: 1.5rem;
}

#about .readmore a {
    background: var(--zd-gold) !important;
    color: #fff !important;
    border-radius: 6px;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 14px 36px;
    transition: all 0.3s ease;
}

#about .readmore a:hover {
    background: var(--zd-gold-hover) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243,156,18,0.3);
}

#about .readmore a:before {
    display: none !important;
}

#about .abou-img3:after {
    border-color: var(--zd-sky) !important;
}

/* Floating icon on the about image */
#about .about_icon {
    background: linear-gradient(135deg, var(--zd-sky) 0%, var(--zd-navy) 100%) !important;
    width: 70px !important;
    height: 70px !important;
    line-height: 70px !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 24px rgba(14,34,55,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about .about_icon:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(33,150,243,0.5);
}

/* Replace bar-chart icon with ship icon */
#about .about_icon i.fa-bar-chart:before {
    content: '\f21a' !important; /* fa-ship */
}

#about .about_icon i {
    font-size: 1.75rem !important;
    color: #fff !important;
}

#about .lastdiv p {
    color: var(--zd-muted) !important;
}

/* ══════════════════════════════════════════════
   SERVICES SECTION
   ══════════════════════════════════════════════ */

.service-area .section-title .sub-title {
    color: var(--zd-sky) !important;
}

.service-area .section-title h2 {
    color: var(--zd-navy) !important;
    font-size: 2.75rem;
}

.service-area .row {
    display: flex;
    flex-wrap: wrap;
}

.service-area .row > [class*="col-"] {
    display: flex;
    margin-bottom: 30px;
}

.service-area .single-service-bx {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    border: 1px solid var(--zd-border);
}

.service-area .single-service-bx:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15,42,63,0.08);
    border-color: var(--zd-sky);
}

.service-area .single-service {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-area .service-icon {
    height: 200px;
    overflow: hidden;
}

.service-area .service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-area .service-icon .ovrly {
    background: linear-gradient(to top, rgba(15,42,63,0.5) 0%, transparent 40%) !important;
}

.service-area .service-title-box {
    flex: 1;
    padding: 1.5rem !important;
    background: #fff !important;
    display: flex;
    flex-direction: column;
}

.service-area .service-title-box h4 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    font-size: 1.375rem;
    color: var(--zd-navy) !important;
    line-height: 1.3;
    margin-bottom: 12px;
}

.service-area .service-title-box h4:hover,
.service-area .service-title-box a:hover h4 {
    color: var(--zd-sky) !important;
}

.service-area .service-title-box p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--zd-text) !important;
    flex: 1;
}

.service-area .btn5 {
    margin-top: auto;
    padding: 0 1.5rem 1.5rem;
}

.service-area .btn5 a {
    display: inline-block;
    background: var(--zd-navy) !important;
    background-image: none !important;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid var(--zd-navy) !important;
}

.service-area .btn5 a:hover {
    background: var(--zd-sky) !important;
    border-color: var(--zd-sky) !important;
    color: #fff !important;
}

.service-area .btn5 a:before {
    display: none !important;
}

/* Hide double-arrow icon (>>) on all Read More buttons — overlaps text */
.readmore a i.fa-angle-double-right,
.readmore a i.fa-angle-double-left,
.btn5 a i.fa-angle-double-right,
.btn5 a i.fa-angle-double-left,
.entry-readmore a i,
#innerpage-box .readmore a i {
    display: none !important;
}

/* ══════════════════════════════════════════════
   COUNTER SECTION
   ══════════════════════════════════════════════ */

.counter-area .counter-single-area .row {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap;
}

.counter-area .couneter-box {
    width: 25% !important;
    max-width: 25% !important;
    flex: 0 0 25% !important;
}

.counter-area .cd-single {
    text-align: center;
}

.counter-area .count-box {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 2.5rem 1.5rem;
    transition: all 0.3s ease;
}

.counter-area .count-box:hover {
    background: rgba(255,255,255,0.1) !important;
    transform: translateY(-3px);
}

.counter-area .cd-icon i {
    font-size: 2rem;
    color: var(--zd-gold) !important;
    opacity: 0.6;
    margin-bottom: 14px;
}

.counter-area .cd-num {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800;
    font-size: 3rem;
    color: #fff !important;
    line-height: 1;
    margin-bottom: 8px;
}

.counter-area .cd-title {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7) !important;
}

.counter-area .ovly {
    background: linear-gradient(135deg, rgba(8,20,34,0.93) 0%, rgba(15,42,63,0.88) 100%) !important;
    opacity: 1 !important;
}

/* ══════════════════════════════════════════════
   PRODUCTION / OUR PROCESS
   ══════════════════════════════════════════════ */

#production-section {
    background: var(--zd-bg-alt) !important;
    padding-top: 60px !important;
    padding-bottom: 50px !important;
}

#production-section .section-title .sub-title {
    color: var(--zd-sky) !important;
}

#production-section .section-title {
    margin-bottom: 30px !important;
}

#production-section .section-title h2 {
    color: var(--zd-navy) !important;
    font-size: 32px !important;
}

#production-section .production-inn {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0;
}

#production-section .production-inn .prodbx {
    width: 33.333% !important;
    max-width: 33.333% !important;
    flex: 0 0 33.333% !important;
    padding: 12px !important;
}

#production-section .prodbx-inn {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    overflow: visible !important;
    margin-bottom: 10px !important;
}

#production-section .pro-num {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    z-index: 2;
    margin-bottom: -20px;
    order: -1;
}

#production-section .numinn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800;
    font-size: 16px !important;
    background: var(--zd-sky) !important;
    color: #fff !important;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 3px 12px rgba(33,150,243,0.3);
    display: inline-block;
    margin: 0 !important;
}

#production-section .prodbx-inn:hover .numinn {
    background: var(--zd-navy) !important;
}

#production-section .prodbx-innbx {
    background: #fff !important;
    border: 1px solid var(--zd-border) !important;
    border-radius: 10px !important;
    padding: 28px 20px 20px !important;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    width: 100%;
}

#production-section .prodbx-innbx:hover {
    border-color: var(--zd-sky) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(33,150,243,0.08);
}

#production-section .prodbx .clearfix {
    display: none !important;
}

#production-section .sec-icn {
    margin-top: 6px;
    margin-bottom: 12px;
}

#production-section .sec-icn span {
    font-size: 36px !important;
    color: var(--zd-sky) !important;
    transition: color 0.3s ease;
    display: block;
}

#production-section .prodbx-innbx:hover .sec-icn span {
    color: var(--zd-navy) !important;
}

#production-section .production-content h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800;
    font-size: 16px !important;
    color: var(--zd-navy) !important;
    margin-bottom: 8px;
    line-height: 1.2;
}

#production-section .production-content p {
    font-size: 14px !important;
    line-height: 1.6;
    color: var(--zd-text) !important;
    margin: 0;
    text-align: left;
    text-indent: 0 !important;
    white-space: pre-line;
}

/* Arrow connectors */
#production-section .prodbx:nth-child(1) .prodbx-innbx:after,
#production-section .prodbx:nth-child(2) .prodbx-innbx:after,
#production-section .prodbx:nth-child(4) .prodbx-innbx:after,
#production-section .prodbx:nth-child(5) .prodbx-innbx:after {
    content: '\f054';
    font-family: 'FontAwesome';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--zd-sky);
    opacity: 0.25;
    font-size: 13px;
    z-index: 3;
}

#production-section .prodbx:nth-child(3) .prodbx-innbx:after {
    content: '\f063';
    font-family: 'FontAwesome';
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--zd-sky);
    opacity: 0.25;
    font-size: 13px;
    z-index: 3;
}

/* ══════════════════════════════════════════════
   BANNER / CTA SECTION
   ══════════════════════════════════════════════ */

#banner .ovly {
    background: linear-gradient(135deg, rgba(8,20,34,0.95) 0%, rgba(15,42,63,0.85) 100%) !important;
    opacity: 1 !important;
    background-image: none !important;
}

#banner .banner-inn h2 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800;
    font-size: 2.25rem;
    letter-spacing: 0.02em;
    color: #fff !important;
    line-height: 1.3;
}

#banner .banner-inn a {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    font-size: 1.75rem;
    color: #fff !important;
    transition: color 0.3s ease;
}

#banner .banner-inn a:hover {
    color: var(--zd-gold) !important;
}

/* ══════════════════════════════════════════════
   PROJECTS / CASE STUDIES
   ══════════════════════════════════════════════ */

#project .section-title .sub-title {
    color: var(--zd-sky) !important;
}

#project .section-title h2 {
    color: var(--zd-navy) !important;
}

#project .single-project {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#project .single-project:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(15,42,63,0.1);
}

#project .single-project .project-imgg {
    height: 260px;
    overflow: hidden;
}

#project .single-project .project-imgg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#project .single-project .ovrly {
    background: linear-gradient(to top, rgba(15,42,63,0.85) 0%, transparent 50%) !important;
}

#project .project-title-box {
    border-left-color: var(--zd-sky) !important;
}

#project .pk-text {
    color: var(--zd-sky) !important;
}

#project h4.inner-area-title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    font-size: 1.1875rem;
    color: var(--zd-navy) !important;
}

#project h4.inner-area-title:hover {
    color: var(--zd-sky) !important;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════ */

.testimonials-area .overlay {
    background: linear-gradient(135deg, rgba(8,20,34,0.93) 0%, rgba(15,42,63,0.87) 100%) !important;
    opacity: 1 !important;
}

#testimonials .section-title .sub-title {
    color: rgba(255,255,255,0.6) !important;
}

#testimonials .section-title h2 {
    color: #fff !important;
    font-size: 2.75rem;
}

.testimonials-area .owl-stage {
    display: flex !important;
}

.testimonials-area .owl-item {
    display: flex !important;
}

.testimonials-area .ts-area-single {
    border-radius: 10px !important;
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px 28px 28px !important;
}

.testimonials-area .ts-area-thumb {
    display: none !important;
}

.testimonials-area .ts-area-bx i.fa-quote-left {
    font-size: 2.5rem !important;
    color: var(--zd-navy) !important;
    opacity: 0.15;
    margin-bottom: 12px;
}

.testimonials-area h3.ts-area-title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.25rem !important;
    color: var(--zd-navy) !important;
    margin-bottom: 4px;
}

.testimonials-area h3.ts-area-title:hover {
    color: var(--zd-sky) !important;
}

.testimonials-area .text-designation {
    color: var(--zd-sky) !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.testimonials-area .ts-area-c {
    flex: 1;
}

.testimonials-area .ts-area-c p {
    font-size: 1rem;
    line-height: 1.75;
    font-style: italic;
    color: var(--zd-text) !important;
}

/* ══════════════════════════════════════════════
   BLOG SECTION
   ══════════════════════════════════════════════ */

.blog-area .section-title .sub-title {
    color: var(--zd-sky) !important;
}

.blog-area .section-title h2 {
    color: var(--zd-navy) !important;
    font-size: 2.75rem;
}

.blog-area .row,
#blog .row {
    display: flex !important;
    flex-wrap: wrap;
}

.blog-area .row > [class*="col-"],
#blog .row > [class*="col-"] {
    display: flex;
}

.blog-area .blog-post {
    border-radius: 10px !important;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--zd-border);
    background: #fff !important;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.blog-area .blog-single {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-area .blog-single-img {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-area .btn5 {
    margin-top: auto !important;
    padding-top: 10px;
}

.blog-area .blog-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(15,42,63,0.08);
}

.blog-area .blog-date li {
    background: var(--zd-sky) !important;
    border-radius: 4px;
}

.blog-area .blog-single a .inner-area-title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.35;
    color: var(--zd-navy) !important;
}

.blog-area .blog-single a:hover .inner-area-title {
    color: var(--zd-sky) !important;
}

.blog-area .section-area-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--zd-text) !important;
}

.blog-area .btn5 a {
    background: var(--zd-sky) !important;
    color: #fff !important;
    border-radius: 6px;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 10px 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-area .btn5 a:hover {
    background: var(--zd-navy) !important;
    color: #fff !important;
    border-color: var(--zd-navy) !important;
}

.blog-area .btn5 a:before {
    display: none !important;
}

/* ══════════════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════════════ */

#newsletter .overlay {
    background: linear-gradient(135deg, rgba(8,20,34,0.93) 0%, rgba(15,42,63,0.88) 100%) !important;
    opacity: 1 !important;
}

#newsletter h2 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    font-size: 2rem;
    color: #fff !important;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */

.footer-area {
    background: var(--zd-navy) !important;
    font-family: 'Inter', sans-serif !important;
}

.footer-area .widget-title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    font-size: 1.0625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-area .bottom-area {
    background: rgba(0,0,0,0.3) !important;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-area .footer-text {
    color: rgba(255,255,255,0.7) !important;
    font-size: 1rem;
}

.footer-area a {
    transition: color 0.2s ease;
}

.footer-area a:hover {
    color: var(--zd-sky) !important;
}

.footer-area .social-profile-icons,
.footer-area .f-contact .social-profile-icons {
    display: none !important;
}

/* ── Professional footer top section ── */
.itsr-footer-top {
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.itsr-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.25fr;
    gap: 2.5rem;
}

@media (max-width: 991px) {
    .itsr-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575px) {
    .itsr-footer-grid { grid-template-columns: 1fr; }
}

.itsr-footer-section h5 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800;
    font-size: 1.0625rem;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}

.itsr-footer-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7) !important;
    margin-bottom: 0.75rem;
}

.itsr-footer-section p .fa {
    color: var(--zd-sky);
    width: 20px;
    margin-right: 6px;
}

.itsr-footer-section p a {
    color: var(--zd-sky) !important;
}

.itsr-footer-section p a:hover {
    color: var(--zd-gold) !important;
}

.itsr-footer-parent {
    font-size: 0.9rem !important;
    margin-top: 12px !important;
    opacity: 0.7;
}

.itsr-footer-section ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0;
}

.itsr-footer-section ul li {
    margin-bottom: 0.5rem;
    list-style: none !important;
    text-indent: 0 !important;
    padding-left: 0 !important;
}

.itsr-footer-section ul li:before {
    display: none !important;
}

.itsr-footer-section ul li a {
    font-size: 1rem;
    color: rgba(255,255,255,0.7) !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.itsr-footer-section ul li a:hover {
    color: var(--zd-sky) !important;
}

/* Footer bottom bar */
.itsr-footer-info {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    align-items: center;
}

.itsr-footer-col {
    display: flex;
    flex-direction: column;
}

.itsr-footer-label {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2px;
}

.itsr-footer-col a,
.itsr-footer-col span {
    font-size: 1rem;
    color: rgba(255,255,255,0.75) !important;
}

.itsr-footer-col a:hover {
    color: var(--zd-sky) !important;
}

/* ── Inline marketing CTA boxes for inner pages ── */
.itsr-inline-cta {
    clear: both;
    width: 100% !important;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.itsr-inline-cta-inner {
    background: linear-gradient(135deg, var(--zd-navy) 0%, #1a365d 100%);
    border-radius: 14px;
    padding: 3rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

@media (max-width: 767px) {
    .itsr-inline-cta-inner {
        flex-direction: column;
        text-align: center;
    }
}

.itsr-inline-cta-text h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800;
    font-size: 1.875rem;
    color: #fff !important;
    margin: 0 0 0.75rem;
    border: none !important;
    padding-bottom: 0 !important;
    line-height: 1.2;
}

.itsr-inline-cta-text p {
    color: rgba(255,255,255,0.85) !important;
    font-size: 1.1875rem;
    line-height: 1.7;
    margin: 0;
}

.itsr-inline-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.itsr-cta-btn-primary {
    display: inline-block;
    background: var(--zd-gold) !important;
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.0625rem;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
}

.itsr-cta-btn-primary:hover {
    background: var(--zd-gold-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243,156,18,0.3);
}

.itsr-cta-btn-secondary {
    display: inline-block;
    background: transparent !important;
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.0625rem;
    padding: 14px 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 8px;
    text-decoration: none !important;
    text-align: center;
    transition: all 0.3s ease;
}

.itsr-cta-btn-secondary:hover {
    border-color: var(--zd-sky);
    color: var(--zd-sky) !important;
}

.itsr-cta-btn-secondary .fa {
    margin-right: 6px;
}

/* ══════════════════════════════════════════════
   BUTTONS (global)
   ══════════════════════════════════════════════ */

input[type="submit"],
button[type="submit"] {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* ══════════════════════════════════════════════
   GENERAL LINK ACCENTS
   ══════════════════════════════════════════════ */

a:hover {
    color: var(--zd-sky);
}

/* ══════════════════════════════════════════════
   BACK TO TOP
   ══════════════════════════════════════════════ */

.back-to-top {
    background: var(--zd-sky) !important;
}

.back-to-top:hover {
    background: var(--zd-navy) !important;
}

/* ══════════════════════════════════════════════
   INNER PAGES
   ══════════════════════════════════════════════ */

.page-main-header .ovly {
    background: linear-gradient(135deg, rgba(8,20,34,0.9) 0%, rgba(26,58,92,0.8) 100%) !important;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */

@media (max-width: 991px) {
    .slider_section .item .title,
    .slider_section .slider_content .title {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2.25rem;
    }

    #features-section .features-inn .feabx {
        width: calc(50% - 10px) !important;
        max-width: calc(50% - 10px) !important;
        flex: 0 0 calc(50% - 10px) !important;
    }

    #production-section .production-inn .prodbx {
        width: 50% !important;
        max-width: 50% !important;
        flex: 0 0 50% !important;
    }

    /* Hide arrow connectors on tablet */
    #production-section .prodbx .prodbx-innbx:after {
        display: none !important;
    }

    .counter-area .couneter-box {
        width: 50% !important;
        max-width: 50% !important;
        flex: 0 0 50% !important;
    }
}

@media (max-width: 767px) {
    .slider_section .item .title,
    .slider_section .slider_content .title {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.875rem;
    }

    .ht-section,
    #about,
    #counter,
    #service,
    #banner,
    #project,
    #testimonials,
    #blog,
    #newsletter {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    #features-section .features-inn .feabx {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .counter-area .couneter-box {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    #production-section .production-inn .prodbx {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}


/* ══════════════════════════════════════════════
   CONTACT PAGE — Info boxes, map, form
   Adapted from ITSR pattern for ZDEVCO branding
   ══════════════════════════════════════════════ */

/* Contact info top boxes — equal height */
#ht-contactus-wrap .address-box {
    display: flex !important;
    flex-wrap: wrap;
}

#ht-contactus-wrap .address-box > .col-md-4 {
    display: flex;
    margin-bottom: 20px;
}

#ht-contactus-wrap .contact_area {
    background: var(--zd-bg-soft) !important;
    border: 1px solid var(--zd-border);
    border-radius: 10px;
    padding: 2rem 1.5rem !important;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#ht-contactus-wrap .contact_area:hover {
    border-color: var(--zd-sky);
    box-shadow: 0 4px 16px rgba(33,150,243,0.08);
}

#ht-contactus-wrap .contact_l_area {
    flex: 0 0 auto;
}

#ht-contactus-wrap .contact_l_area i {
    font-size: 2rem !important;
    color: var(--zd-sky) !important;
}

#ht-contactus-wrap .contact-label {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.08em;
    color: var(--zd-muted) !important;
    margin-bottom: 4px;
}

#ht-contactus-wrap .contact-info {
    flex: 1;
}

#ht-contactus-wrap .contact-info a {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.125rem !important;
    font-weight: 600;
    color: var(--zd-navy) !important;
}

#ht-contactus-wrap .contact-info a:hover {
    color: var(--zd-sky) !important;
}

/* Map + Form side by side */
.page-template-contact-template #ht-contactus-wrap .row,
.page-template-contact-template #ht-contactus-wrap > .container > .row {
    display: flex !important;
    flex-wrap: wrap;
    align-items: stretch;
}

.page-template-contact-template #ht-contactus-wrap .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.page-template-contact-template .contact-mapbox,
.page-template-contact-template .google-map {
    flex: 1;
    min-height: 450px;
    border-radius: 10px;
    overflow: hidden;
}

.page-template-contact-template .google-map iframe,
.page-template-contact-template .contact-mapbox iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 450px;
    border-radius: 10px;
}

/* "Send Us a Message" heading */
.page-template-contact-template .Address_area h4,
.page-template-contact-template .social_area h4 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800;
    font-size: 1.75rem !important;
    color: var(--zd-navy) !important;
    margin-bottom: 1.5rem;
}

/* Form container next to map */
.page-template-contact-template .Address_area {
    background: var(--zd-bg-soft);
    border: 1px solid var(--zd-border);
    border-radius: 10px;
    padding: 2rem !important;
}

.page-template-contact-template .contact-icon i {
    color: var(--zd-sky) !important;
}

/* Hide the social area section on contact page */
.page-template-contact-template .social_area {
    display: none !important;
}

/* ══════════════════════════════════════════════
   WPFORMS — Clean, professional styling
   ══════════════════════════════════════════════ */

.wpforms-container .wpforms-field-label {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    color: var(--zd-navy);
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.wpforms-container .wpforms-field-sublabel {
    font-size: 0.9375rem;
    color: var(--zd-muted);
    margin-top: 4px;
}

.wpforms-container .wpforms-field {
    margin-bottom: 1.5rem;
}

.wpforms-container input[type="text"],
.wpforms-container input[type="email"],
.wpforms-container input[type="tel"],
.wpforms-container input[type="number"],
.wpforms-container textarea,
.wpforms-container select {
    border: 2px solid var(--zd-border) !important;
    border-radius: 8px !important;
    padding: 16px 18px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1.125rem !important;
    color: var(--zd-text) !important;
    background: #fff !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    line-height: 1.5 !important;
    height: auto !important;
}

.wpforms-container select {
    -webkit-appearance: none;
    -moz-appearance: none;
    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='%23334155' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    padding-right: 40px !important;
}

.wpforms-container textarea {
    min-height: 160px;
}

.wpforms-container input::placeholder,
.wpforms-container textarea::placeholder {
    color: var(--zd-muted) !important;
    font-size: 1rem;
}

.wpforms-container input:focus,
.wpforms-container textarea:focus,
.wpforms-container select:focus {
    border-color: var(--zd-sky) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(33,150,243,0.1) !important;
}

.wpforms-container .wpforms-submit {
    background: var(--zd-gold) !important;
    color: #fff !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    border: none !important;
    border-radius: 8px;
    padding: 18px 48px;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.wpforms-container .wpforms-submit:hover {
    background: var(--zd-gold-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243,156,18,0.3);
}

/* Blog sidebar / widget forms */
.widget .wpforms-container {
    background: var(--zd-bg-soft);
    border: 1px solid var(--zd-border);
    border-radius: 10px;
    padding: 1.5rem;
}

/* ── Responsive contact page ── */
@media (max-width: 768px) {
    #ht-contactus-wrap .address-box {
        flex-direction: column;
    }

    .page-template-contact-template #ht-contactus-wrap .row {
        flex-direction: column;
    }

    .page-template-contact-template .google-map iframe,
    .page-template-contact-template .contact-mapbox iframe {
        min-height: 300px;
    }

    .page-template-contact-template .Address_area {
        margin-top: 20px;
    }
}


/* ══════════════════════════════════════════════
   IMAGE SIZING — Consistent aspect ratios
   ══════════════════════════════════════════════ */

/* Slider images */
.slider-content img,
.slider-area img,
#slider .item img,
.owl-carousel .owl-item .slider-content img {
    height: 600px;
    object-fit: cover;
    width: 100%;
    display: block;
}

/* Service card thumbnails */
.services-area .service-box img,
.services-inn .ser-box img,
.ser-box .ser-img img,
#services-section .ser-box img {
    height: 220px;
    object-fit: cover;
    width: 100%;
    display: block;
}

/* Project card images */
.project-area .project-box img,
.project-inn .pro-box img,
.pro-box .pro-img img,
#project-section .pro-box img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    display: block;
}

/* About section image */
.about-area .about-img img,
#aboutus-section .about-img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    display: block;
}

/* Blog thumbnails */
.blog-area .blog-box img,
.blog-inn .blg-box img,
.blg-box .blg-img img,
#blog-section .blg-box img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    display: block;
}

/* Inner page service/project images */
.post-single-content img,
.entry-content img {
    max-width: 100%;
    height: auto;
}


/* ══════════════════════════════════════════════
   TEMPLATE CLEANUP — Hide unused sections
   ══════════════════════════════════════════════ */

/* Hide video embed placeholder */
.aboutvideos_section {
    display: none !important;
}

/* Hide newsletter section if empty */
.newsletter-section:empty {
    display: none;
}

/* Hide team section */
.team-section,
#team-section {
    display: none !important;
}

/* Clean up empty sidebar/widget areas */
.sidebar-area:empty,
.widget-area:empty {
    display: none;
}

/* Streetline logo in footer */
.itsr-footer-section .streetline-logo-link {
    display: inline-block;
    margin-top: 12px;
}

.itsr-footer-section .streetline-logo-link img {
    height: 28px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.itsr-footer-section .streetline-logo-link:hover img {
    opacity: 1;
}


/* ══════════════════════════════════════════════
   HOMEPAGE — Hide featured projects section
   (parent theme oil & gas imagery)
   ══════════════════════════════════════════════ */
.home #project-section,
.home .project-area,
body.home [id*="project"] {
    display: none !important;
}


/* ══════════════════════════════════════════════
   SERVICES — 3 columns per row, clean grid
   ══════════════════════════════════════════════ */
#services-section .row,
.services-area .row,
.service-area .row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0;
}

#services-section .row > [class*="col-"],
.services-area .row > [class*="col-"],
.service-area .row > [class*="col-"] {
    width: 33.333% !important;
    max-width: 33.333% !important;
    flex: 0 0 33.333% !important;
    padding: 0 15px;
    margin-bottom: 30px;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    #services-section .row > [class*="col-"],
    .services-area .row > [class*="col-"],
    .service-area .row > [class*="col-"] {
        width: 50% !important;
        max-width: 50% !important;
        flex: 0 0 50% !important;
    }
}

@media (max-width: 575px) {
    #services-section .row > [class*="col-"],
    .services-area .row > [class*="col-"],
    .service-area .row > [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}


/* ══════════════════════════════════════════════
   HIDE DATES / AUTHOR on service & project pages
   ══════════════════════════════════════════════ */
.single-our-services .entry-meta,
.single-our-services .post-meta,
.single-our-services .byline,
.single-our-services .posted-on,
.single-our-services .cat-links,
.single-our-projects .entry-meta,
.single-our-projects .post-meta,
.single-our-projects .byline,
.single-our-projects .posted-on,
.single-our-projects .cat-links,
.post-type-archive-our-services .entry-meta,
.post-type-archive-our-projects .entry-meta {
    display: none !important;
}

/* Also hide on inner service/project pages — parent theme meta */
.single-our-services .post-single-content .post-info,
.single-our-services .post-single-content .post-date,
.single-our-services .post-single-content .post-author,
.single-our-projects .post-single-content .post-info,
.single-our-projects .post-single-content .post-date,
.single-our-projects .post-single-content .post-author,
.brdcrm-dt,
.post-single-content .brdcrm-dt {
    display: none !important;
}


/* ══════════════════════════════════════════════
   INNER PAGE BANNERS — Soft image backgrounds
   ══════════════════════════════════════════════ */
body:not(.home) .page-main-header {
    background-image: url('../../../uploads/2026/03/hero-container-port-cranes-1.jpg') !important;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

body:not(.home) .page-main-header .ovly {
    background: linear-gradient(135deg, rgba(8,20,34,0.88) 0%, rgba(26,58,92,0.75) 100%) !important;
}

/* Specific page banner images */
.page-id-22 .page-main-header {
    background-image: url('../../../uploads/2026/03/about-port-aerial-view-1.jpg') !important;
}

.page-id-21 .page-main-header {
    background-image: url('../../../uploads/2026/03/about-port-aerial-view-1.jpg') !important;
}

.single-our-services .page-main-header {
    background-image: url('../../../uploads/2026/03/banner-cta-dark-port-1.jpg') !important;
}

.single-our-projects .page-main-header {
    background-image: url('../../../uploads/2026/03/hero-container-port-cranes-1.jpg') !important;
}


/* ══════════════════════════════════════════════
   BLOG — Fix "under construction" look
   ══════════════════════════════════════════════ */
#blog-section .blg-box,
.blog-area .blg-box {
    background: #fff;
    border: 1px solid var(--zd-border);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#blog-section .blg-box:hover,
.blog-area .blg-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Hide newsletter section entirely */
#newsletter-section,
.newsletter-area,
.newsletter-section {
    display: none !important;
}


/* ══════════════════════════════════════════════
   HIDE DATES — "by / on 18 March, 2026" everywhere
   ══════════════════════════════════════════════ */
.inner-blogpost-info .blog-date,
.post-type-archive-our-services .blog-date,
.post-type-archive-our-projects .blog-date,
.single-our-services .blog-date,
.single-our-projects .blog-date,
.inner-blogpost-info .blog-date,
.brdcrm-dt,
.post-info .entry-date,
.post-single-content .post-info {
    display: none !important;
}


/* ══════════════════════════════════════════════
   INNER PAGES — Services/Projects archive 3-col
   Fix white space, center content
   ══════════════════════════════════════════════ */

/* ── Archive grid: Force 3-column layout ──
   Structure: #blog-box.col-md-9 > .innerblogpost > article.post.excerpt (one per card) > .inner-blog-post.col-md-6
   Each <article> wraps ONE card. So .innerblogpost is the flex container,
   and each article.post.excerpt is the flex item. */

/* 1. Kill Bootstrap float grid — make blog-box full width */
.post-type-archive-our-services #blog-box,
.post-type-archive-our-projects #blog-box,
body.post-type-archive-our-services #blog-box.col-md-9,
body.post-type-archive-our-projects #blog-box.col-md-9 {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    display: block !important;
}

/* 2. .innerblogpost is the REAL container — make it flex */
.post-type-archive-our-services .innerblogpost,
.post-type-archive-our-projects .innerblogpost {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    width: 100% !important;
    margin: 0 -15px !important;
}

/* 3. Each article.post.excerpt is a flex item (one per card) — 33.333% */
.post-type-archive-our-services article.post.excerpt,
.post-type-archive-our-projects article.post.excerpt {
    width: 33.333% !important;
    max-width: 33.333% !important;
    flex: 0 0 33.333% !important;
    float: none !important;
    display: block !important;
    margin-bottom: 30px !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
}

/* 4. Inner card div — full width of its article parent */
.post-type-archive-our-services .inner-blog-post,
.post-type-archive-our-projects .inner-blog-post,
.post-type-archive-our-services .inner-blog-post.col-md-6,
.post-type-archive-our-projects .inner-blog-post.col-md-6,
.post-type-archive-our-services .inner-blog-post.col-md-6.col-sm-6.col-xs-12,
.post-type-archive-our-projects .inner-blog-post.col-md-6.col-sm-6.col-xs-12 {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

@media (max-width: 991px) {
    .post-type-archive-our-services article.post.excerpt,
    .post-type-archive-our-projects article.post.excerpt {
        width: 50% !important;
        max-width: 50% !important;
        flex: 0 0 50% !important;
    }
}

@media (max-width: 575px) {
    .post-type-archive-our-services article.post.excerpt,
    .post-type-archive-our-projects article.post.excerpt {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}

/* ── Inner page content — full width, no sidebar gap ── */
main#innerpage-box .inner_contentbox,
main#innerpage-box #content-box {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}

/* Single service/project pages — limit content width for readability */
.single-our-services main#innerpage-box .inner_contentbox .innerpage-whitebox,
.single-our-projects main#innerpage-box .inner_contentbox .innerpage-whitebox {
    max-width: 960px;
    margin: 0 auto;
}

/* Archive listing pages — let the grid fill the space */
.post-type-archive-our-services main#innerpage-box .inner_contentbox .innerpage-whitebox,
.post-type-archive-our-projects main#innerpage-box .inner_contentbox .innerpage-whitebox {
    max-width: 100% !important;
}


/* ══════════════════════════════════════════════
   SERVICES BANNER — Use port image on archive
   ══════════════════════════════════════════════ */
.post-type-archive-our-services .page-main-header,
.post-type-archive-our-projects .page-main-header {
    background-image: url('../../../uploads/2026/03/hero-container-port-cranes-1.jpg') !important;
    background-position: center center;
    background-size: cover;
}


/* ══════════════════════════════════════════════
   CONTACT PAGE — Full-width centered layout
   ══════════════════════════════════════════════ */

/* Contact page content — full width */
.page-id-22 main#innerpage-box .inner_contentbox,
.page-id-22 #content-box,
.page-template-contact-template main#innerpage-box .inner_contentbox,
.page-template-contact-template #content-box {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0;
}

.page-id-22 .innerpage-whitebox,
.page-template-contact-template .innerpage-whitebox {
    max-width: 1140px !important;
    margin: 0 auto;
    padding: 40px 15px;
}

/* Contact hero */
.itsr-contact-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.itsr-contact-hero h2,
.entry-content .itsr-contact-hero h2,
.post-single-content .itsr-contact-hero h2,
#innerpage-box .entry-content .itsr-contact-hero h2 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 800;
    color: var(--zd-navy) !important;
    margin-bottom: 0.75rem;
}

.itsr-contact-hero p,
.entry-content .itsr-contact-hero p,
#innerpage-box .entry-content .itsr-contact-hero p {
    font-size: 1.25rem;
    color: var(--zd-text);
    max-width: 650px;
    margin: 0 auto;
}

/* 3 info boxes across */
.itsr-contact-info-bar {
    display: flex;
    gap: 24px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.itsr-contact-item {
    flex: 1;
    min-width: 240px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    background: #fff;
    border: 2px solid var(--zd-border);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.itsr-contact-item:hover {
    border-color: var(--zd-sky);
    box-shadow: 0 6px 20px rgba(13,27,42,0.1);
}

.itsr-contact-item > i.fa {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--zd-navy);
    color: #fff !important;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.itsr-contact-item strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--zd-navy);
}

.itsr-contact-item a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--zd-navy) !important;
}

.itsr-contact-item a:hover {
    color: var(--zd-sky) !important;
}

.itsr-contact-item div {
    font-size: 1.125rem;
    color: var(--zd-navy);
    font-weight: 600;
    line-height: 1.5;
}

/* Form section — full width, centered */
.itsr-contact-form-section {
    background: var(--zd-bg-soft);
    border: 2px solid var(--zd-border);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.itsr-contact-form-section h3,
.entry-content .itsr-contact-form-section h3,
#innerpage-box .entry-content .itsr-contact-form-section h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 2rem !important;
    font-weight: 800;
    color: var(--zd-navy) !important;
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.itsr-contact-form-section .wpforms-container {
    max-width: 700px;
    margin: 0 auto;
}

/* Contact map — full width */
.itsr-contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
    border: 2px solid var(--zd-border);
}

.itsr-contact-map iframe {
    width: 100% !important;
    height: 450px !important;
    display: block;
}

@media (max-width: 768px) {
    .itsr-contact-info-bar {
        flex-direction: column;
        align-items: center;
    }
    .itsr-contact-item {
        max-width: 100%;
        width: 100%;
    }
    .itsr-contact-form-section {
        padding: 2rem 1rem;
    }
}


/* ══════════════════════════════════════════════
   HEADER — Responsive fixes for all viewports
   ══════════════════════════════════════════════ */

/* Ensure header layout stays compact at ALL breakpoints */
@media (max-width: 1199px) {
    .head-mob .logo.col-xl-3,
    .head-mob .logo.col-lg-3 {
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
    .head-mob .col-xl-9.HeaderRbx,
    .head-mob .col-lg-9.HeaderRbx {
        flex: 0 0 80% !important;
        max-width: 80% !important;
    }
    .mainm > li > a,
    ul.mainm.ht-clearfix > li > a {
        font-size: 13px !important;
        padding: 8px 6px !important;
    }
}

@media (max-width: 991px) {
    .head-mob .logo.col-xl-3,
    .head-mob .logo.col-lg-3,
    .head-mob .logo.col-md-3 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }
    .head-mob .col-xl-9.HeaderRbx,
    .head-mob .col-lg-9.HeaderRbx,
    .head-mob .col-md-9.HeaderRbx {
        flex: 0 0 75% !important;
        max-width: 75% !important;
    }
    .mainm > li > a,
    ul.mainm.ht-clearfix > li > a {
        font-size: 12px !important;
        padding: 8px 5px !important;
    }
    .header-right .head-menu.col-xl-10 {
        flex: 0 0 70% !important;
        max-width: 70% !important;
    }
    .header-right .hbtn.col-xl-2 {
        flex: 0 0 30% !important;
        max-width: 30% !important;
    }
}

@media (max-width: 991px) {
    /* Hide email and contact button on tablets */
    .Rqst-btn a.itsr-header-email {
        display: none !important;
    }
    .Rqst-btn a.itsr-header-contact-btn {
        display: none !important;
    }
    /* Compact phone display */
    .itsr-phone-text .itsr-phone-label {
        font-size: 9px !important;
    }
    .Rqst-btn .itsr-phone-text a {
        font-size: 13px !important;
    }
}

@media (max-width: 767px) {
    .head-mob .logo.col-xl-3,
    .head-mob .logo.col-lg-3,
    .head-mob .logo.col-md-3,
    .head-mob .logo.col-sm-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    .head-mob .col-xl-9.HeaderRbx,
    .head-mob .col-lg-9.HeaderRbx,
    .head-mob .col-md-9.HeaderRbx,
    .head-mob .col-sm-6.HeaderRbx {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    /* Hide text contact info — keep only the phone icon link */
    header .Rqst-btn .itsr-phone-text,
    header .Rqst-btn a.itsr-header-email,
    header .Rqst-btn a.itsr-header-contact-btn {
        display: none !important;
    }
    /* Phone icon stays — clickable tel: link */
    header .Rqst-btn .itsr-phone-icon {
        display: flex !important;
    }
    header .Rqst-btn .itsr-phone-icon i.fa {
        font-size: 20px !important;
    }
    header .Rqst-btn {
        align-items: center !important;
        justify-content: flex-end !important;
        padding: 0 !important;
    }
}


/* ══════════════════════════════════════════════
   ACTIVE MENU STATE — Services & Projects pages
   ══════════════════════════════════════════════ */

/* Highlight "Services" menu item on services archive and single service pages */
.post-type-archive-our-services ul.mainm.ht-clearfix > li.current-menu-item > a,
.single-our-services ul.mainm.ht-clearfix > li.menu-item > a[href*="services"],
.post-type-archive-our-services ul#menu-primary-menu > li.current-menu-item > a {
    color: #2196F3 !important;
    background: rgba(255,255,255,0.08) !important;
    border-radius: 4px;
    border-bottom: 2px solid #2196F3 !important;
}

/* Highlight "Projects" menu item on projects archive and single project pages */
.post-type-archive-our-projects ul.mainm.ht-clearfix > li.current-menu-item > a,
.single-our-projects ul.mainm.ht-clearfix > li.menu-item > a[href*="projects"],
.post-type-archive-our-projects ul#menu-primary-menu > li.current-menu-item > a {
    color: #2196F3 !important;
    background: rgba(255,255,255,0.08) !important;
    border-radius: 4px;
    border-bottom: 2px solid #2196F3 !important;
}


/* ══════════════════════════════════════════════
   ARCHIVE CARDS — Hide share button overlay
   ══════════════════════════════════════════════ */

.post-type-archive-our-services .socialMedia,
.post-type-archive-our-projects .socialMedia,
.post-type-archive-our-services .share-btn,
.post-type-archive-our-projects .share-btn,
.inner-blog-post .socialMedia,
.inner-blogpost .socialMedia {
    display: none !important;
}


/* ══════════════════════════════════════════════
   ABOUT PAGE — Ensure proper content spacing
   ══════════════════════════════════════════════ */

/* About page content — full width readable */
.page-id-21 .entry-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--zd-navy);
    margin-bottom: 1.5rem;
}

.page-id-21 .entry-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--zd-navy);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--zd-sky);
    display: inline-block;
}

/* Force paragraph visibility on ALL inner pages — override ALL theme rules */
main#innerpage-box #content-box .entry-content p,
body.page-id-21 main#innerpage-box p,
body.page-id-21 #content-box p,
.page-id-21 .entry-content p,
main#innerpage-box .entry-content p {
    font-size: 1.125rem !important;
    line-height: 1.8 !important;
    color: #334155 !important;
    margin-bottom: 1.25rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    max-height: none !important;
}

/* Ensure bold text inside paragraphs is also visible */
main#innerpage-box .entry-content p strong,
main#innerpage-box .entry-content li strong,
.page-id-21 .entry-content p strong {
    color: var(--zd-navy) !important;
    font-weight: 700;
}

.page-id-21 .entry-content ul {
    margin-bottom: 1.5rem;
}

.page-id-21 .entry-content ul li {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    color: var(--zd-text);
}

.page-id-21 .entry-content hr {
    border: none;
    border-top: 2px solid var(--zd-border);
    margin: 2.5rem 0;
}

/* Make "By the Numbers" stat boxes stand out more on about page */
.page-id-21 .entry-content div[style*="flex"] > div[style*="background"] {
    border: 2px solid var(--zd-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-id-21 .entry-content div[style*="flex"] > div[style*="background"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}


/* ══════════════════════════════════════════════
   SINGLE SERVICE / PROJECT / BLOG POST PAGES
   Content visibility fix — these use .post-single-content
   not .entry-content
   ══════════════════════════════════════════════ */

/* Paragraphs — exclude CTA box with :not() */
main#innerpage-box .post-single-content > p,
main#innerpage-box .post-single-content > div:not(.itsr-inline-cta) p,
.single-our-services .post-single-content > p,
.single-our-projects .post-single-content > p,
.single-post .post-single-content > p {
    font-size: 1.125rem !important;
    line-height: 1.8 !important;
    color: #334155 !important;
    margin-bottom: 1.25rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    max-height: none !important;
}

/* The container itself */
main#innerpage-box .post-single-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    max-height: none !important;
}

/* Headings — exclude CTA box */
main#innerpage-box .post-single-content > h2,
main#innerpage-box .post-single-content > h3,
main#innerpage-box .post-single-content > h4 {
    color: var(--zd-navy) !important;
    visibility: visible !important;
    display: block !important;
    opacity: 1 !important;
}

main#innerpage-box .post-single-content > h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 2rem 0 1rem;
}

main#innerpage-box .post-single-content > h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1.75rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--zd-sky);
    display: inline-block !important;
}

main#innerpage-box .post-single-content > h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 1.5rem 0 0.5rem;
}

/* Bold text — exclude CTA */
main#innerpage-box .post-single-content > p strong,
main#innerpage-box .post-single-content > ul li strong,
main#innerpage-box .post-single-content > ol li strong {
    color: var(--zd-navy) !important;
    font-weight: 700;
}

/* Lists — exclude CTA */
main#innerpage-box .post-single-content > ul,
main#innerpage-box .post-single-content > ol {
    margin-bottom: 1.5rem !important;
    padding-left: 1.5rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

main#innerpage-box .post-single-content > ul li,
main#innerpage-box .post-single-content > ol li {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    color: var(--zd-text) !important;
    display: list-item !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Horizontal rules */
main#innerpage-box .post-single-content > hr {
    border: none;
    border-top: 2px solid var(--zd-border);
    margin: 2.5rem 0;
}

/* Stat boxes / flex containers — exclude CTA */
main#innerpage-box .post-single-content > div:not(.itsr-inline-cta)[style*="flex"] {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

main#innerpage-box .post-single-content > div:not(.itsr-inline-cta)[style*="flex"] > div {
    visibility: visible !important;
    opacity: 1 !important;
}

/* CTA box — force white text back (higher specificity override) */
main#innerpage-box .post-single-content .itsr-inline-cta h3,
main#innerpage-box .entry-content .itsr-inline-cta h3,
.itsr-inline-cta .itsr-inline-cta-text h3 {
    color: #fff !important;
    border-bottom: none !important;
}

main#innerpage-box .post-single-content .itsr-inline-cta p,
main#innerpage-box .entry-content .itsr-inline-cta p,
.itsr-inline-cta .itsr-inline-cta-text p {
    color: rgba(255,255,255,0.85) !important;
}

main#innerpage-box .post-single-content .itsr-inline-cta a,
main#innerpage-box .entry-content .itsr-inline-cta a {
    text-decoration: none !important;
}

/* Also cover .entry-content on single posts — exclude CTA */
.single-our-services .entry-content > p,
.single-our-projects .entry-content > p,
.single-post .entry-content > p {
    font-size: 1.125rem !important;
    line-height: 1.8 !important;
    color: #334155 !important;
    margin-bottom: 1.25rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    max-height: none !important;
}

/* CTA override for .entry-content too */
main#innerpage-box .entry-content .itsr-inline-cta h3 {
    color: #fff !important;
    border-bottom: none !important;
}

main#innerpage-box .entry-content .itsr-inline-cta p {
    color: rgba(255,255,255,0.85) !important;
}

/* Universal CTA text override — must beat #innerpage-box .entry-content p specificity */
main#innerpage-box .entry-content .itsr-inline-cta p,
main#innerpage-box .post-single-content .itsr-inline-cta p,
main#innerpage-box #content-box .itsr-inline-cta p,
body .itsr-inline-cta .itsr-inline-cta-text p,
.itsr-inline-cta p {
    color: rgba(255,255,255,0.85) !important;
    font-size: 1.05rem !important;
}
main#innerpage-box .entry-content .itsr-inline-cta h3,
main#innerpage-box .post-single-content .itsr-inline-cta h3,
main#innerpage-box #content-box .itsr-inline-cta h3,
body .itsr-inline-cta .itsr-inline-cta-text h3,
.itsr-inline-cta h3 {
    color: #fff !important;
    border-bottom: none !important;
}
