/* ============================================
   About Page — Advanced Layout Styles
   ============================================ */

/* Hero About Variant */
.hero-about {
    min-height: 60vh;
}
.about-origin {
    padding: 4rem 0; /* slightly reduced spacing */
    background: #ffffff;
}
.wcu-layout {
    display: grid;
    grid-template-columns: 320px 1fr; /* slightly narrower left column */
    gap: 1.25rem; /* tighter gap to compact layout */
    align-items: start;
}

.wcu-header-col {
    position: relative;
    z-index: 3;
    background: linear-gradient(180deg,#4a0a0a 0%, #b91c1c 100%);
    color: #fff;
    padding: 0.6rem 0.8rem 0.8rem; /* slightly reduced padding */
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 26px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.wcu-header-col .section-tag {
    display: block;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.95);
    font-size: 0.78rem;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.wcu-header-col h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.2rem); /* reduced headline for compact layout */
    color: #fff;
    line-height: 1.02;
    margin: 0 0 0.35rem 0;
    font-weight: 800;
}

/* heading reveal */
.wcu-header-col h2{
    transform: translateY(6px);
    opacity: 0;
    animation: wcuReveal 560ms cubic-bezier(.2,.9,.2,1) forwards 120ms;
}

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

.wcu-header-col .section-divider {
    width: 56px;
    height: 6px;
    background: linear-gradient(90deg, var(--svc-accent), var(--svc-accent-2));
    border-radius: 6px;
    margin: 0.5rem 0 1rem 0;
}

.wcu-header-col p { color: rgba(255,255,255,0.95); }

.wcu-lead { color: rgba(255,255,255,0.95); max-width: 220px; margin-bottom: 0.6rem; font-size:0.88rem }

.wcu-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.25rem;
}
.stat-item { display:flex; flex-direction:column; gap:0.25rem }
.stat-num { font-size:1.5rem; font-weight:800; color:#fff }
.stat-label { font-size:0.75rem; color: rgba(255,255,255,0.9); text-transform:uppercase; letter-spacing:0.06em }

.services-actions .explore-btn { background: #fff; color:#7a1212 !important }

.wcu-header-col .btn {
    margin-top: 1.25rem;
}

.ao-content .section-tag {
    text-align: left;
    margin-bottom: 0.5rem;
}

.ao-grid {
    display: grid;
    grid-template-columns: 1fr 520px; /* left content, right large image */
    gap: 3.25rem;
    align-items: center;
}

.ao-content h2 {
    font-size: clamp(2.2rem, 3.6vw, 3rem); /* larger, bold headline */
    color: #0f1724;
    margin: 0 0 1rem;
    line-height: 1.04;
    font-weight: 800;
}

.ao-lead {
    font-size: 0.96rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.6rem;
}

/* Three square icon boxes */
.ao-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.ao-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1.4rem 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: default;
}

.ao-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 28px rgba(139, 0, 0, 0.1);
    transform: translateY(-3px);
}

.ao-box-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(139, 0, 0, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.ao-box:hover .ao-box-icon {
    background: var(--primary-color);
    color: #ffffff;
}

.ao-box span {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1c1c2e;
    line-height: 1.35;
}

/* Right: Contained rounded image */
.ao-image {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(15,23,36,0.12);
    line-height: 0;
    align-self: stretch;
}

.ao-image img {
    width: 100%;
    height: 100%;
    min-height: 420px; /* reduced visual presence to tighten section */
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.ao-image:hover img {
    transform: scale(1.04);
}

/* ============================================
   Image Showcase — Light Section
   ============================================ */
.image-showcase {
    padding: 6rem 0 4rem;
    background: #ffffff; /* make strengths section white to distinguish */
    position: relative;
    overflow: hidden;
}

.showcase-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ── Image side ── */
.sv-single {
    position: relative;
}

/* Decorative offset border frame */
.sv-single::before {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    right: 18px;
    bottom: 18px;
    border: 2px solid rgba(139,0,0,0.25);
    border-radius: 28px;
    pointer-events: none;
    z-index: 0;
    transition: border-color 0.3s;
}

.sv-single:hover::before {
    border-color: rgba(139,0,0,0.5);
}

.sv-img-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.13);
    z-index: 1;
}

/* Bottom gradient fade on image */
.sv-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.sv-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sv-img-wrap:hover img {
    transform: scale(1.05);
}

/* Floating badge pinned to bottom-left of image */
.sv-overlay-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--primary-color);
    color: #fff;
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(139,0,0,0.45);
    letter-spacing: 0.02em;
}

.sv-overlay-badge i {
    font-size: 1rem;
}

/* ── Text side ── */
.showcase-body {
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-body h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    color: #1c1c2e;
    margin: 0.85rem 0 1.25rem;
    line-height: 1.15;
}

.sc-accent {
    color: var(--primary-color);
}

.sc-lead {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 2rem;
    max-width: 460px;
}

.sc-features {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 2.5rem;
}

.sc-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8e8e8;
    transition: all 0.25s ease;
    cursor: default;
}

.sc-feature:hover {
    background: #fff7f7;
    border-color: rgba(139,0,0,0.3);
    box-shadow: 0 6px 24px rgba(139,0,0,0.08);
    transform: translateX(6px);
}

.scf-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #a00000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(139,0,0,0.25);
    margin-top: 1px;
}

.sc-feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1c1c2e;
    margin-bottom: 0.2rem;
}

.sc-feature p {
    font-size: 0.83rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   CTA — Compact override for about page
   ============================================ */
.cta--slim {
    padding: 2.5rem 0;
}

.cta--slim .cta-content h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: 0.5rem;
}

.cta--slim .cta-content p {
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
}

.cta--slim .cta-buttons {
    margin-bottom: 1rem;
}

.cta--slim .cta-features {
    margin-top: 0.75rem;
    gap: 1.5rem;
}

.cta--slim .cta-feature {
    font-size: 0.82rem;
}

/* ============================================
   Why Choose Us — Sticky Panel + 3-col Grid
   ============================================ */
.why-choose {
    padding: 2.5rem 0; /* reduced to make section smaller */
    background: #f6f7f9; /* subtle contrast from white strengths section */
    border-top: 1px solid rgba(17,18,20,0.02); /* gentle divider */
}

/* About-page specific overrides to compact the Industries/Why panel
   (clients.css is loaded after about.css, so use !important for safety) */
.industries-panel .industries-panel-inner {
    padding: 1.2rem 1.6rem !important;
}

.industries-panel .section-tag {
    font-size: 0.72rem !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 0.5rem !important;
}

.industries-panel .industries-panel-inner h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.1rem) !important;
    margin-bottom: 0.6rem !important;
}

.industries-cards {
    padding: 1rem 1rem 1rem 1.25rem !important;
    gap: 0.75rem !important;
}

.industry-card {
    padding: 0.85rem 0.8rem !important;
    min-height: 64px !important;
}

.industries-panel .btn-panel-cta {
    padding: 0.6rem 1rem !important;
    font-size: 0.92rem !important;
}

/* ABOUT: Icon grid overrides to match pasted image (dark rounded-square icons) */
.industries-section .industries-cards .industry-card {
    padding: 1.15rem 1rem 1rem !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 28px rgba(15,23,36,0.06) !important;
    border: 1px solid rgba(15,23,36,0.04) !important;
}

.industries-section .industries-cards .industry-card .ic-icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #0f2430 0%, #6f0b0b 45%, #9b1111 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 8px 22px rgba(139,11,11,0.18) !important;
    position: relative !important;
    margin-bottom: 0.75rem !important;
}

.industries-section .industries-cards .industry-card .ic-icon::before {
    content: '' !important;
    position: absolute !important;
    inset: 8px !important;
    border-radius: 8px !important;
    background: rgba(252,240,240,0.92) !important;
    z-index: 0 !important;
}

.industries-section .industries-cards .industry-card .ic-icon i {
    position: relative !important;
    z-index: 1 !important;
    color: #0f2430 !important;
    font-size: 1.05rem !important;
}

/* Slightly lift heading and tighten line-height */
.industries-section .industries-cards .industry-card h4 {
    margin-top: 0 !important;
    margin-bottom: 0.25rem !important;
    line-height: 1.25 !important;
}

@media (max-width: 1100px) {
    .industries-section .industries-cards {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ============================================
   Services Preview — modern card layout
   ============================================ */
.services-preview {
    padding: 3.25rem 0 3rem;
    background: #f0f0f2; /* match .hp-gallery background */
}

.sp-header {
    max-width: 820px;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sp-header .section-tag {
    letter-spacing: 0.14em;
    color: var(--svc-accent);
    font-weight: 700;
    font-size: 0.78rem;
}

.sp-lead {
    color: #6b7280;
    margin-top: 0.25rem;
    font-size: 0.97rem;
}

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

.service-card {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(17,18,20,0.04);
    border-radius: 14px;
    padding: 1.15rem;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 0.9rem;
    align-items: center;
    transition: transform 0.28s cubic-bezier(.2,.9,.2,1), box-shadow 0.28s ease;
    box-shadow: 0 6px 18px rgba(17,18,20,0.04);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(17,18,20,0.08);
}

/* subtle staggered entrance animation */
.service-card{
    opacity: 0;
    transform: translateY(8px);
    animation: svcFadeIn 520ms ease forwards;
}
.service-card:nth-child(1){ animation-delay: 0ms; }
.service-card:nth-child(2){ animation-delay: 80ms; }
.service-card:nth-child(3){ animation-delay: 160ms; }
.service-card:nth-child(4){ animation-delay: 240ms; }

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

.svc-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(139,0,0,0.08), rgba(139,0,0,0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
    box-shadow: 0 6px 18px rgba(17,18,20,0.04);
    backdrop-filter: blur(4px) saturate(120%);
}

.service-card:hover .svc-icon {
    background: linear-gradient(135deg, var(--primary-color), #b91c1c);
    color: #fff;
    transform: scale(1.06);
}

/* left accent that appears on hover */
.service-card::before{
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 6px;
    background: linear-gradient(180deg, var(--svc-accent), var(--svc-accent-2));
    border-radius: 6px 0 0 6px;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}
.service-card:hover::before{ opacity: 1; transform: translateX(0); }

/* subtle icon background square for contrast */
.svc-icon::after{
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}

/* add subtle inner panel and accent stripe */
.service-card::before{
    content: '';
    position: absolute;
    inset: auto auto auto auto;
}

/* emphasise title on hover */
.service-card:hover .svc-body h4{ color: var(--primary-color); }

/* improve dropdown appearance to look like a modern pill CTA */
.services-dropdown summary{
    background: linear-gradient(90deg, rgba(139,0,0,0.06), rgba(139,0,0,0.02));
    border: 1px solid rgba(17,18,20,0.04);
    padding: 0.5rem 1rem;
    border-radius: 10px;
}
.services-dropdown summary i{ transition: transform 220ms ease; }

.svc-body h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.02rem;
    color: #111214;
    font-weight: 700;
}

.svc-body p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.5;
}

.services-actions {
    margin-top: 1.25rem;
}

.services-dropdown {
    border-radius: 10px;
    border: 1px solid rgba(17,18,20,0.06);
    padding: 0.15rem 0.25rem;
    width: max-content;
    background: #fff;
    box-shadow: 0 6px 18px rgba(17,18,20,0.03);
}

.services-dropdown summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    font-weight: 600;
    border-radius: 8px;
}

.services-dropdown summary::-webkit-details-marker{display:none}

.services-dropdown .dropdown-list {
    margin-top: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.5rem 0.6rem 0.85rem;
}

.services-dropdown .dropdown-list a {
    color: #1c1c2e;
    text-decoration: none;
    padding: 0.35rem 0.5rem;
    border-radius: 8px;
}

.services-dropdown .dropdown-list a:hover {
    background: rgba(139,0,0,0.06);
}

/* primary CTA style — make dropdown look like a CTA and add an explicit Explore button */
.services-actions .explore-btn{
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(90deg,var(--primary-color),var(--svc-accent-2));
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    border: none;
    box-shadow: 0 12px 30px rgba(139,0,0,0.12);
    text-decoration: none;
    font-weight: 700;
}
.services-actions .explore-btn i{ transform: translateX(0); transition: transform 180ms ease; }
.services-actions .explore-btn:hover i{ transform: translateX(4px); }

/* rotate caret when open */
.services-dropdown[open] summary i { transform: rotate(180deg); }

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

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

    .service-card {
        grid-template-columns: 56px 1fr;
        gap: 0.75rem;
        padding: 0.9rem;
    }
}

/* Apply the same icon-card styling used on About to Home services cards */
.service-card {
    padding: 1.05rem !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 28px rgba(15,23,36,0.06) !important;
    border: 1px solid rgba(15,23,36,0.04) !important;
}

.service-card .svc-icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #0f2430 0%, #6f0b0b 45%, #9b1111 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 8px 22px rgba(139,11,11,0.18) !important;
    position: relative !important;
}

.service-card .svc-icon::before {
    content: '' !important;
    position: absolute !important;
    inset: 8px !important;
    border-radius: 8px !important;
    background: rgba(252,240,240,0.92) !important;
    z-index: 0 !important;
}

.service-card .svc-icon i {
    position: relative !important;
    z-index: 1 !important;
    color: #0f2430 !important;
    font-size: 1.05rem !important;
}

.service-card h4 {
    margin: 0 0 0.25rem 0 !important;
}

/* focus styles for accessibility */
.service-card:focus-within, .services-dropdown summary:focus {
    outline: 3px solid rgba(139,0,0,0.12);
    outline-offset: 3px;
}

.wcu-layout {
    display: grid;
    grid-template-columns: 280px 1fr; /* keep consistent narrower left column */
    gap: 2rem;
    align-items: start;
}

.wcu-header-col {
    position: sticky;
    top: 60px; /* lower top so header occupies less vertical space */
    /* keep header panel inside viewport to prevent overlapping features */
    max-height: calc(100vh - 90px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 2;
}

.wcu-header-col .section-tag {
    text-align: left;
}

.wcu-header-col h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    color: #1c1c2e;
    line-height: 1.2;
    margin: 0.75rem 0 0;
}

.wcu-header-col p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem; /* slightly tighter */
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.features-grid{ position: relative; padding: 0; box-sizing: border-box; }
.features-grid::before{
    content: '';
    position: absolute;
    inset: -24px -12px -24px -12px;
    background-image: radial-gradient(circle at 6% 18%, rgba(139,0,0,0.02) 0 8%, transparent 20%), radial-gradient(circle at 94% 82%, rgba(17,18,20,0.01) 0 6%, transparent 18%);
    border-radius: 16px;
    pointer-events: none;
    z-index: 0;
}

.feature-box{ z-index: 1; }
.feature-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 0.55rem; /* slightly smaller padding */
    border: 1px solid rgba(17,18,20,0.04);
    transition: transform 0.26s cubic-bezier(.2,.9,.2,1), box-shadow 0.26s ease, border-color 0.26s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    justify-content: space-between;
    min-height: 72px; /* smaller card height */
}

.feature-index{
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 1.6rem; /* smaller index to reduce visual height */
    font-weight: 800;
    color: rgba(17,18,20,0.06);
    pointer-events: none;
}

.feature-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--svc-accent), var(--svc-accent-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.36s ease;
}

.feature-box:hover {
    transform: translateY(-10px) rotate(-0.01deg);
    box-shadow: 0 26px 60px rgba(17,18,20,0.08);
    border-color: rgba(17,18,20,0.07);
}

.feature-box:hover::after { transform: scaleX(1); }


.fb-icon {
    width: 56px;
    height: 56px;
    background: rgba(139,0,0,0.06);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--svc-accent);
    font-size: 1.1rem;
    transition: transform 0.26s ease, background 0.26s ease, color 0.26s ease;
    box-shadow: 0 6px 18px rgba(17,18,20,0.04);
}

/* small inner glyph background to match the prototype */
.fb-icon i{ background: rgba(255,255,255,0.96); padding: 6px; border-radius: 8px; color: var(--svc-accent); }

.feature-box:hover .fb-icon {
    background: linear-gradient(135deg, var(--svc-accent), var(--svc-accent-2));
    color: #fff;
    transform: scale(1.08) translateY(-2px);
}

/* polished CTA utility used across the page */
.explore-btn{
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #f7f3f3 !important;
    color: #ffffff !important;
    padding: 0.65rem 1.15rem !important;
    border-radius: 12px !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    box-shadow: 0 14px 36px rgba(122,18,18,0.18) !important;
    text-decoration: none;
    font-weight: 800;
}
.explore-btn i{ transform: translateX(0); transition: transform 180ms ease; }
.explore-btn:hover i{ transform: translateX(4px); }

/* ABOUT PAGE OVERRIDES: make Explore Services white and left-panel CTA red */
.services-actions .explore-btn, .explore-btn {
    background: #7a1212 !important;
    color: #7a1212 !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    box-shadow: 0 14px 36px rgba(122,18,18,0.18) !important;
}

/* Keep red appearance across interactive states */
.explore-btn:hover,
.explore-btn:focus,
.explore-btn:active,
.explore-btn:visited {
    background: #7a1212 !important;
    color: #ffffff !important;
    border-color: rgba(0,0,0,0.08) !important;
    transform: translateY(-2px);
}

.explore-btn:active { box-shadow: 0 6px 18px rgba(0,0,0,0.12) !important; transform: translateY(0); }

.industries-panel .btn-panel-cta {
    background: linear-gradient(160deg, #8B0000 0%, #b91c1c 100%) !important;
    color: #ffffff !important;
    padding: 0.8rem 1.6rem !important;
    border-radius: 50px !important;
    box-shadow: 0 12px 34px rgba(139,0,0,0.18) !important;
    border: none !important;
}

.feature-box h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #111214;
    margin: 0 0 0.35rem 0;
}

.feature-box p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* make sure grid collapses nicely */
@media (max-width: 1100px) {
    .wcu-layout { grid-template-columns: 320px 1fr; gap: 2rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .wcu-layout { grid-template-columns: 1fr; }
    .wcu-header-col { position: static; max-height: none; box-shadow: none; }
    .features-grid { grid-template-columns: 1fr; }
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablets (max-width: 1100px) */
@media (max-width: 1100px) {
    .ao-grid {
        gap: 3rem;
    }

    .showcase-split {
        gap: 3rem;
    }

    .wcu-layout {
        grid-template-columns: 240px 1fr;
        gap: 2.5rem;
    }

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

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
    .hero-about {
        min-height: 50vh;
        padding: 60px 0 40px;
    }

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

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

    .hero-badge {
        font-size: 0.85rem;
    }

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

    /* About Origin */
    .ao-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ao-image img {
        height: 300px;
    }

    /* Image Showcase */
    .showcase-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .sv-single::before {
        display: none;
    }

    .sv-img-wrap {
        aspect-ratio: 16 / 9;
    }

    /* Why Choose Us */
    .wcu-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .wcu-header-col {
        position: static;
        /* reset constraints on small screens */
        max-height: none;
        overflow: visible;
        -webkit-overflow-scrolling: auto;
        z-index: auto;
    }

    .wcu-header-col .section-tag {
        text-align: center;
    }

    .wcu-header-col h2 {
        text-align: center;
    }

    .wcu-header-col .section-divider {
        margin: 1.25rem auto;
    }

    .wcu-header-col p {
        text-align: center;
    }

    .wcu-header-col a {
        display: block;
        text-align: center;
    }

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

    /* Certifications */
    .cert-row {
        grid-template-columns: 56px 1fr;
        grid-template-rows: auto auto;
    }

    .cr-seq {
        display: none;
    }

    .cr-body {
        grid-column: 2;
    }

    .cr-meta {
        grid-column: 1 / -1;
        text-align: left;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(0,0,0,0.06);
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    /* Certifications */
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

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

    .cta-features {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero-about {
        min-height: 45vh;
    }

    .hero-title {
        font-size: 1.6rem !important;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
    }

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

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

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:nth-child(odd) {
        border-right: none;
    }

    .cert-row {
        grid-template-columns: 1fr;
    }

    .cr-icon {
        display: none;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-about {
        min-height: 80vh;
    }

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