
/* 3. HERO CONTENT VIEWPORT OFFSET
   Shifts down the hero sections slightly to accommodate both top_nav + main glass nav row heights */
.az-radial-hero.single-wheel-layout,
.az-radial-hero.massive-layout {
    padding-top: 226px !important;
    /* Prevents title texts from getting chopped or clipped behind header */
}

/* Responsive Tablet/Mobile Layout Adjustments */
@media (max-width: 991px) {
    .az-modern-glass-nav {
        top: 0;
        /* Snaps flatly to the edge top on mobile views if top nav strips wrap or hide */
    }

    .az-logo-column {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .az-wa-mobile-touch {
        flex: 0 0 30%;
        display: flex;
        justify-content: center;
    }

    .az-menu-column {
        flex: 0 0 100%;
        max-width: 100%;
        background: #0b132b;
        /* Dropdown falls back to safe solid background style when uncollapsed */
        border-radius: var(--border-radius-sm);
        margin-top: 15px;
        padding: 20px;
    }

    .az-centered-menu-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .az-centered-menu-links .nav-item a,
    .az-centered-menu-links li a {
        color: white !important;
    }
}

/* ==========================================================================
   RADIAL HERO COMPONENT STYLING (6-Node Coordinate Vector System)
   ========================================================================== */
.az-radial-hero.massive-layout {
    background-color: #0b132b;
    color: var(--color-text-light);
    [cite: 1] padding: 120px 0 140px 0;
    position: relative;
    overflow: hidden;
}

.az-radial-hero.massive-layout .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

/* Slide Copy Management toggles */
.slide-text-wrapper {
    display: none;
}

.slide-text-wrapper.active {
    display: block;
    animation: scaleUpIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-left-content h1 {
    color: var(--color-text-light);
    [cite: 1] font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-cta-btn {
    display: inline-block;
    background-color: var(--color-secondary);
    [cite: 1] color: white !important;
    padding: 14px 30px;
    border-radius: var(--border-radius-sm);
    [cite: 1] font-weight: bold;
    margin-top: 25px;
    transition: var(--transition-smooth);
    [cite: 1]
}

.hero-cta-btn:hover {
    background-color: var(--color-primary);
    [cite: 1] transform: translateY(-2px);
}

.az-radial-hero.massive-layout .hero-right-display {
    position: relative;
    height: 650px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Master Orbit Ring */
.az-radial-hero.massive-layout .radial-orbit-container {
    width: 620px;
    height: 620px;
    border: 2px dashed rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    position: relative;
    transition: transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
}

.az-radial-hero.massive-layout .orbit-center-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background-color: var(--color-primary);
    [cite: 1] border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    z-index: 10;
    box-shadow: 0 0 30px var(--color-primary);
    [cite: 1]
}

/* Base Image Nodes */
.az-radial-hero.massive-layout .orbit-img-node {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #0b132b;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.85s cubic-bezier(0.25, 1, 0.5, 1),
        width 0.85s cubic-bezier(0.25, 1, 0.5, 1),
        height 0.85s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.3s ease;
    z-index: 2;
}

.az-radial-hero.massive-layout .orbit-img-node img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Active Highlight Scaling */
.az-radial-hero.massive-layout .orbit-img-node.active {
    width: 440px;
    height: 440px;
    border-color: var(--color-secondary);
    [cite: 1] z-index: 10;
}

/* ==========================================================================
   6-NODE POLAR PLACEMENT MAP (Radius = 310px Offset Array Metrics)
   ========================================================================== */
/* Node 1 (0 deg) */
.az-radial-hero.massive-layout .orbit-img-node.position-1 {
    top: -70px;
    left: calc(50% - 70px);
}

.az-radial-hero.massive-layout .orbit-img-node.position-1.active {
    top: calc(50% - 220px);
    left: calc(50% - 220px);
}

/* Node 2 (60 deg) */
.az-radial-hero.massive-layout .orbit-img-node.position-2 {
    top: 85px;
    right: -25px;
}

.az-radial-hero.massive-layout .orbit-img-node.position-2.active {
    top: calc(50% - 220px);
    right: calc(50% - 220px);
}

/* Node 3 (120 deg) */
.az-radial-hero.massive-layout .orbit-img-node.position-3 {
    bottom: 85px;
    right: -25px;
}

.az-radial-hero.massive-layout .orbit-img-node.position-3.active {
    bottom: calc(50% - 220px);
    right: calc(50% - 220px);
}

/* Node 4 (180 deg) */
.az-radial-hero.massive-layout .orbit-img-node.position-4 {
    bottom: -70px;
    left: calc(50% - 70px);
}

.az-radial-hero.massive-layout .orbit-img-node.position-4.active {
    bottom: calc(50% - 220px);
    left: calc(50% - 220px);
}

/* Node 5 (240 deg) */
.az-radial-hero.massive-layout .orbit-img-node.position-5 {
    bottom: 85px;
    left: -25px;
}

.az-radial-hero.massive-layout .orbit-img-node.position-5.active {
    bottom: calc(50% - 220px);
    left: calc(50% - 220px);
}

/* Node 6 (300 deg) */
.az-radial-hero.massive-layout .orbit-img-node.position-6 {
    top: 85px;
    left: -25px;
}

.az-radial-hero.massive-layout .orbit-img-node.position-6.active {
    top: calc(50% - 220px);
    left: calc(50% - 220px);
}

/* Navigation Controller Interface */
.radial-nav-control-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.control-dot {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition-smooth);
    [cite: 1]
}

.control-dot.active,
.control-dot:hover {
    background: var(--color-secondary);
    [cite: 1] transform: scale(1.1);
}

.nav-arrow {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.2rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    [cite: 1]
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
}





/* ==========================================================================
   SECTION 2: HORIZONTAL SHOWCASE MODERN STYLING (THEME THEME ALIGNED)
   ========================================================================== */





.az-dark-showcase-section {
    background-color: var(--color-dark) !important;
    /* Forces perfect theme color continuity */
    padding: 90px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.az-dark-showcase-section .section-header-row {
    text-align: left;
    margin-bottom: 45px;
}

.az-dark-showcase-section .az-section-title {
    color: var(--color-text-light) !important;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.az-dark-showcase-section .az-section-subtitle {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 1.1rem;
    margin: 0;
}

/* HORIZONTAL SCROLL WINDOW ENGINE SETUP */
.scroll-wrapper-outer {
    width: 100%;
    overflow-x: auto;
    padding: 15px 0 45px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--color-secondary) rgba(255, 255, 255, 0.05);
}

/* Custom Scrollbar design to match theme colors */
.scroll-wrapper-outer::-webkit-scrollbar {
    height: 6px;
}

.scroll-wrapper-outer::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.scroll-wrapper-outer::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    /* Accented Flame Orange scroll tracking line */
    border-radius: 10px;
}

.scroll-track-inner {
    display: flex;
    gap: 30px;
    padding-left: max(20px, calc((100vw - 1140px) / 2));
    /* Keeps cards aligned with global text grids */
    padding-right: 40px;
}

/* TRANSLUCENT PREMIUM SHIELD CARDS */
.az-glass-card {
    flex: 0 0 320px;
    width: 320px;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease !important;
}

.az-glass-card .card-img-holder {
    height: 205px;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid transparent;
    transition: border-color 0.4s ease;
}

.az-glass-card .card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.az-glass-card .card-body-details {
    padding: 28px 24px;
}

.az-glass-card .card-body-details h3 {
    color: var(--color-text-light) !important;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.az-glass-card .card-body-details p {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 24px;
    height: 66px;
    /* Rigid constraint keeps links perfectly aligned horizontally */
    overflow: hidden;
}

/* ACTION LINK HOVER ACTIONS */
.az-accent-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-secondary) !important;
    /* Flame Orange Base Text color */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.az-accent-link i {
    transition: transform 0.3s ease;
}

.az-accent-link:hover {
    color: white !important;
}

.az-accent-link:hover i {
    transform: translateX(4px);
    /* Interactive link arrow nudge */
}

/* CORE INTERACTIVE HOVER POP MATRIX EFFECTS */
.az-glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary) !important;
    /* Card frame lights up orange */
    box-shadow: 0 20px 40px rgba(243, 114, 44, 0.15);
    /* Soft glowing amber backdrop shadow halo */
}

.az-glass-card:hover .card-img-holder {
    border-color: var(--color-secondary);
}

.az-glass-card:hover .card-img-holder img {
    transform: scale(1.06);
    /* Fluid modern image zoom effect */
}

/* ==========================================================================
   MOBILE & TABLET ADAPTIVE CORRECTIONS
   ========================================================================== */
@media (max-width: 991px) {
    .az-dark-showcase-section {
        padding: 60px 0;
    }

    .az-dark-showcase-section .section-header-row {
        text-align: center;
        padding: 0 20px;
    }

    .az-dark-showcase-section .az-section-title {
        font-size: 2rem;
    }

    .scroll-track-inner {
        padding-left: 20px;
        /* Snaps flat to viewport margins on smaller screens */
    }

    .az-glass-card {
        flex: 0 0 290px;
        width: 290px;
    }

    .az-glass-card .card-body-details p {
        height: auto;
        /* Relaxes grid limitations on fluid mobile viewing ports */
    }
}





/* ==========================================================================
   SECTION 3: COMPLIANCE DATA BLOCK UPGRADE (DARK THEME SYNCHRONIZATION)
   ========================================================================== */





.az-compliance-dark-section {
    background-color: #0b132b !important;
    /* Continuous section dark tone profile */
    padding: 100px 0;
    position: relative;
}

/* Master grid container setup matching layout boundaries */
.az-compliance-grid {
    display: grid !important;
    grid-template-columns: 1.8fr 1.2fr;
    /* Balanced proportion split for readability */
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE NARRATIVE PANEL & WORDPRESS EDITOR TEXT VISIBILITY FIXES */
.az-narrative-panel {
    color: rgba(255, 255, 255, 0.75) !important;
}

.az-narrative-panel p {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 15px;
}

.az-narrative-panel h1,
.az-narrative-panel h2,
.az-narrative-panel h3,
.az-narrative-panel h4 {
    color: var(--color-text-light) !important;
    /* Locks all dynamic headings to crisp white */
    font-weight: 800;
    line-height: 1.2;
    margin-top: 10px;
    margin-bottom: 20px;
    position: relative;
}

/* Fallback anchor highlight specifically for your template's main H2 */
.az-narrative-panel h2:first-of-type {
    padding-left: 20px;
}

.az-narrative-panel h2:first-of-type::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 4px;
    background-color: var(--color-secondary);
    /* Accented Flame Orange vertical block line */
    border-radius: 2px;
}

/* Fallback fix for empty paragraph breaks output by default WP formatting engine */
.az-narrative-panel p:empty {
    display: none;
}

/* RIGHT SIDE GLASS CALLBACK BOX */
.az-glass-callback-badge {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-left: 5px solid var(--color-primary) !important;
    /* Highlights edge using A&Z primary core blue */
    padding: 40px 35px !important;
    border-radius: 8px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.az-glass-callback-badge h3 {
    color: var(--color-text-light) !important;
    font-size: 1.45rem;
    font-weight: 700;
    margin-top: 0 !important;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.az-glass-callback-badge p {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* CLEAN BADGE INTERACTIVE BUTTON LINK */
.az-badge-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--color-secondary) !important;
    /* Flame Orange Background anchor */
    color: white !important;
    text-decoration: none !important;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(243, 114, 44, 0.2);
    transition: all 0.3s ease;
}

.az-badge-cta-btn i {
    transition: transform 0.3s ease;
}

/* Hover momentum adjustments for callback triggers */
.az-badge-cta-btn:hover {
    background-color: white !important;
    color: var(--color-dark) !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.az-badge-cta-btn:hover i {
    transform: translateX(4px);
    /* Moves arrow slightly right on hover */
}

.az-glass-callback-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   MOBILE & RESPONSIVE RETROFITS
   ========================================================================== */
@media (max-width: 991px) {
    .az-compliance-dark-section {
        padding: 70px 0;
    }

    .az-compliance-grid {
        grid-template-columns: 1fr !important;
        /* Stack columns vertically on tablet viewports */
        gap: 45px;
    }

    .az-narrative-panel h2 {
        font-size: 1.85rem;
    }

    .az-glass-callback-badge {
        padding: 35px 25px !important;
    }
}

