.hero-section {
    position: relative;
    height: 100vh;
    /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Adjust opacity here */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
}


/*Hero mobile */


/* Mobile Styles (Phones and smaller tablets) */

@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        /* Slightly shorter height so content stays above the fold on mobile */
        text-align: center;
    }
    .hero-content {
        padding: 0 20px;
        /* Snug padding for smaller edges */
    }
    /* Target your heading directly */
    .hero-content h1 {
        font-size: 1.8rem;
        /* Scales down the big headline so it doesn't break into too many lines */
        line-height: 1.3;
        margin-bottom: 12px;
    }
    /* Target your tagline directly */
    .hero-content p {
        font-size: 1rem;
        /* Keeps the tagline clean and readable */
        line-height: 1.4;
    }
}


/*After the hero section*/


/* --- Features Section Style --- */

.features-section {
    background-color: #171717;
    padding: 0 2rem 60px 2rem;
    position: relative;
    margin-top: -40px;
    z-index: 10;
}

.features-container {
    max-width: 1440px;
    margin: 0 auto;
}


/* The primary dark green floating panel box */

.features-panel {
    background: rgba(26, 38, 28, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}


/* Feature Item Blocks */

.feature-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1rem;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}


/* Custom SVG Icons Accent Color */

.feature-icon {
    color: #81C784;
    margin-bottom: 1.25rem;
    display: inline-flex;
}

.feature-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}


/* Tiny Gold Sub-labels */

.feature-tag {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.feature-text {
    font-size: 0.85rem;
    color: #a0a0a0;
    line-height: 1.5;
    max-width: 240px;
}


/* Symmetrical Vertical Separators */

.feature-divider {
    width: 1px;
    height: 110px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0) 100%);
    align-self: center;
}


/* ==========================================================================
   MOBILE & TABLET BREAKPOINTS (RESPONSIVE FALLBACKS)
   ========================================================================== */

@media (max-width: 991px) {
    .features-panel {
        padding: 2.5rem 1.5rem;
    }
    .feature-value {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    /* Remove negative margin so it falls into place naturally below the hero */
    .features-section {
        padding: 0 1.25rem 40px 1.25rem;
        margin-top: 0;
    }
    /* Stacks the 4 cards into a clean vertical row */
    .features-panel {
        flex-direction: column;
        gap: 2.5rem;
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }
    /* Adjusts the cards to look centered and balanced on mobile screens */
    .feature-card {
        padding: 0;
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .feature-icon {
        margin-bottom: 1rem;
    }
    .feature-text {
        max-width: 100%;
        /* Allows the description to fill the mobile container layout */
        font-size: 0.85rem;
    }
    /* Hides the vertical line dividers since cards are now stacked */
    .feature-divider {
        display: none;
    }
}


/* --- Portfolio Section Core Framework --- */

.portfolio-section {
    background-color: #ffffff;
    padding: 120px 2rem;
    color: #000000;
}

.portfolio-container {
    max-width: 1440px;
    margin: 0 auto;
}


/* --- Section Header Grid --- */

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4.5rem;
    gap: 4rem;
}

.header-left {
    flex-shrink: 0;
}

.portfolio-badge {
    font-size: 0.65rem;
    font-weight: 700;
    color: #81C784;
    /* Accent Green */
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.portfolio-title {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.portfolio-title .title-gold {
    color: var(--accent-gold, #c5a880);
    /* Premier branding contrast tone */
}

.header-right {
    max-width: 520px;
    margin-bottom: 0.5rem;
}

.portfolio-intro {
    font-size: 0.95rem;
    color: rgba(13, 13, 13, 0.6);
    line-height: 1.6;
}


/* --- Bento Architecture Mechanics --- */

.portfolio-grid {
    display: grid;
    grid-template-columns: 6fr 4fr;
    /* Top row asymmetric composition split */
    gap: 1.75rem;
}


/* Reusable structural definitions for individual panels */

.portfolio-card {
    position: relative;
    background-color: #111612;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 28px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
}

.portfolio-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-card-bg {
    transform: scale(1.03);
}


/* Dark subtle cinematic grading tint to anchor scannable text layers */

.portfolio-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 15, 12, 0.95) 0%, rgba(11, 15, 12, 0.5) 50%, rgba(11, 15, 12, 0.2) 100%);
    z-index: 2;
}

.portfolio-card-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}


/* Component Labels & Typography */

.category-meta {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--accent-gold, #c5a880);
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.category-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.category-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    max-width: 440px;
}


/* Card Large Specific Sizing */

.card-large-spices {
    min-height: 440px;
}

.card-large-spices .category-text {
    margin-bottom: 2rem;
}


/* Control elements underneath top left description */

.card-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.glass-pill-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.circle-arrow-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.portfolio-card:hover .circle-arrow-btn {
    background: #ffffff;
    color: #0b0f0c;
    transform: scale(1.05);
}


/* --- Right Side Nested Layout Stack --- */

.portfolio-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card-small-item {
    flex: 1;
    min-height: 212px;
}

.category-heading-small {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.tag-status {
    font-size: 0.55rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
}


/* --- Bottom Flagship Row Card --- */

.card-wide-cashcrops {
    grid-column: 1 / 3;
    min-height: 240px;
    margin-top: 0.25rem;
}

.horizontal-content {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}

.content-left-block {
    max-width: 65%;
}

.glass-action-link {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.glass-action-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(3px);
}

.plus-icon {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}





/* ==========================================================================
   PORTFOLIO SECTION RESPONSIVE STYLES
   ========================================================================== */


/* --- Tablet / Medium Viewports (Max-width: 991px) --- */

@media (max-width: 991px) {
    .portfolio-section {
        padding: 80px 1.5rem;
    }
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 3.5rem;
    }
    .header-right {
        max-width: 100%;
    }
    /* Transition grid layout into a simple balanced stack */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .card-wide-cashcrops {
        grid-column: 1 / -1;
        margin-top: 0;
    }
    /* Convert wide horizontal card layouts into vertical blocks to protect typography spacing */
    .horizontal-content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 2rem;
    }
    .content-left-block {
        max-width: 100%;
    }
    .glass-action-link {
        width: 100%;
        justify-content: space-between;
    }
}


/* --- Mobile Phone Viewports (Max-width: 768px) --- */

@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 1.25rem;
    }
    .portfolio-header {
        margin-bottom: 2.5rem;
    }
    .portfolio-card-content {
        padding: 2rem 1.5rem;
    }
    /* Card Heights Tuning for single-column tracking layouts */
    .card-large-spices {
        min-height: 400px;
    }
    .card-small-item {
        min-height: 180px;
    }
    .card-wide-cashcrops {
        min-height: 360px;
    }
    .category-heading {
        font-size: 1.35rem;
    }
    .category-heading-small {
        font-size: 1.15rem;
    }
    .category-text {
        font-size: 0.8rem;
    }
    .portfolio-intro {
        font-size: 0.9rem;
    }
}


/* --- Difference Section Core Styles --- */

.difference-section {
    background-color: #f4f6f3;
    padding: 120px 2rem;
    color: #0b0f0c;
}

.difference-container {
    max-width: 1440px;
    margin: 0 auto;
}


/* 2-Column Desktop Grid Layout Engine */

.difference-grid {
    display: grid;
    grid-template-columns: 5.5fr 6.5fr;
    gap: 5rem;
    align-items: start;
}


/* --- LEFT SIDE: Bento Layout Presentations --- */

.diff-left-bento {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 40px;
}


/* Top Stats Panel with smooth metallic gradient layer mirroring rocket.new preview */

.stats-gradient-card {
    background: linear-gradient(180deg, #b5be9d 0%, #828c6e 100%);
    border-radius: 28px;
    padding: 5rem 2.5rem 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.stats-grid-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.75rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-value {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.55rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    margin-top: 0.35rem;
    white-space: nowrap;
}


/* Media Sub-Grid row setup */

.media-windows-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.media-window-card {
    position: relative;
    height: 180px;
    border-radius: 24px;
    overflow: hidden;
    background-color: #0b0f0c;
}

.window-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.window-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 15, 12, 0.8) 0%, rgba(11, 15, 12, 0.1) 100%);
    z-index: 2;
}

.window-tag {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 3;
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* --- RIGHT SIDE: Typography & Clean Vertical List Structure --- */

.diff-header-group {
    margin-bottom: 3.5rem;
}

.diff-badge {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.diff-title {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.1;
    font-weight: 700;
    color: #111612;
    letter-spacing: -0.02em;
    margin-bottom: 1.75rem;
}

.diff-title .title-green {
    color: var(--primary-green);
}

.diff-lead {
    font-size: 0.95rem;
    color: #555c56;
    line-height: 1.6;
    max-width: 540px;
}


/* Vertical Row Feature Stacks */

.feature-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.feature-row-card {
    background-color: #ffffff;
    border: 1px solid rgba(11, 15, 12, 0.04);
    border-radius: 20px;
    padding: 1.75rem 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.feature-row-card:hover {
    transform: translateX(4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.feature-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(11, 15, 12, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555c56;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.feature-text-box {
    display: flex;
    flex-direction: column;
}

.feature-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111612;
    margin-bottom: 0.45rem;
}

.feature-card-desc {
    font-size: 0.8rem;
    color: #666e67;
    line-height: 1.5;
}


/* CTA Green Button Element Alignment */

.diff-action-wrapper {
    display: flex;
    justify-content: flex-start;
}

.btn-partner-global {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--primary-green);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-partner-global:hover {
    background-color: #1b4325;
    /* Sleek shift tint */
    transform: translateY(-2px);
}

.arrow-symbol {
    font-size: 1.1rem;
    line-height: 1;
}


/* ==========================================================================
   THE AGRO PLUS DIFFERENCE RESPONSIVE STYLES
   ========================================================================== */


/* --- Tablet / Medium Viewports (Max-width: 991px) --- */

@media (max-width: 991px) {
    .difference-section {
        padding: 80px 1.5rem;
    }
    .difference-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .diff-left-bento {
        position: relative;
        top: auto;
    }
    .stats-gradient-card {
        padding: 4rem 2rem 2.5rem 2rem;
    }
    .diff-header-group {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .difference-section {
        padding: 60px 1.25rem;
    }
    .stats-gradient-card {
        padding: 3rem 1.5rem 2rem 1.5rem;
        border-radius: 24px;
    }
    .stats-grid-row {
        gap: 0.5rem;
        padding-top: 1.5rem;
    }
    .stat-value {
        font-size: 1.35rem;
    }
    .stat-label {
        font-size: 0.5rem;
        letter-spacing: 0.02em;
    }
    .media-windows-row {
        gap: 1rem;
    }
    .media-window-card {
        height: 140px;
        border-radius: 18px;
    }
    .window-tag {
        bottom: 1rem;
        left: 1rem;
        font-size: 0.55rem;
    }
    .feature-cards-stack {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    .feature-row-card {
        padding: 1.25rem 1.25rem;
        gap: 1rem;
        border-radius: 16px;
    }
    .feature-icon-box {
        width: 34px;
        height: 34px;
    }
    .btn-partner-global {
        width: 100%;
        justify-content: space-between;
        padding: 1rem 1.75rem;
    }
}


/*Why Chose Us */


/* --- Portal Section Baseline Theme Styles --- */

.portal-section {
    background-color: #fafdfb;
    /* Rich forest background profile */
    padding: 120px 2rem;
    color: #030303;
}

.portal-container {
    max-width: 1440px;
    margin: 0 auto;
}


/* Section Header Typography Structures */

.portal-header {
    margin-bottom: 4.5rem;
    max-width: 600px;
}

.portal-badge {
    font-size: 0.65rem;
    font-weight: 700;
    color: #81C784;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.portal-title {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.portal-title span {
    color: var(--accent-gold, #c5a880);
    /* Contrast accent tone from template view */
}

.portal-lead {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.6;
}


/* --- Asymmetric Structural Desk Layout Grid --- */

.portal-interface-grid {
    display: grid;
    grid-template-columns: 6.5fr 3.5fr;
    gap: 2rem;
    align-items: start;
}


/* Glassmorphic Panel Foundations */

.portal-card-panel {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 28px;
    padding: 3rem 2.5rem;
}

.form-panel-main {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.panel-inner-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.35rem;
}

.panel-inner-sub {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 2.5rem;
}


/* --- Dark Mode B2B Input System Elements --- */

.b2b-dark-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.field-label {
    font-size: 0.55rem;
    font-weight: 700;
    color: black;
    letter-spacing: 0.08em;
}

.dark-input-field {
    background: gray;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.95rem 1.25rem;
    color: black;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.dark-input-field:focus {
    border-color: rgba(255, 255, 255, 0.25);
    background: white;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.dark-input-field::placeholder {
    color: rgba(0, 0, 0, 0.2);
}


/* Dropdown specific overrides */

.select-field-wrapper {
    position: relative;
    width: 100%;
}

.dark-select {
    appearance: none;
    cursor: pointer;
}


/* Custom dropdown caret symbol built cleanly with SVG backgrounds */

.select-field-wrapper::after {
    content: "";
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-30%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

.dark-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    line-height: 1.5;
}


/* Submissions Framework Component */

.btn-submit-portal {
    background-color: var(--primary-green);
    border: none;
    border-radius: 14px;
    padding: 1.1rem 2rem;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 0.5rem;
}

.btn-submit-portal:hover {
    background-color: #1b4325;
}

.btn-submit-portal:active {
    transform: scale(0.99);
}

.btn-submit-arrow {
    font-size: 1.1rem;
    line-height: 1;
}

.form-legal-notice {
    font-size: 0.6rem;
    color: black;
    text-align: center;
    margin-top: 0.25rem;
}


/* --- SIDEBAR ROW STACK COMPONENTS --- */

.portal-sidebar-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-panel-compact {
    padding: 2.25rem 2rem;
}

.sidebar-panel-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: black;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 0.75rem;
}


/* Channels List Alignment Rows */

.contact-channels-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.channel-row-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.channel-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: black;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.channel-details {
    display: flex;
    flex-direction: column;
}

.channel-label {
    font-size: 0.55rem;
    font-weight: 700;
    color: black;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.channel-link-anchor {
    color: black;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.channel-link-anchor:hover {
    color: #81C784;
}

.channel-text-static {
    color: black;
    font-size: 0.8rem;
    line-height: 1.4;
}


/* Sourcing Regions Directory Block */

.regions-directory-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.region-directory-row {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.region-index-badge {
    width: 20px;
    height: 20px;
    background-color: black;
    color: #81C784;
    font-family: monospace;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.region-meta-block {
    display: flex;
    flex-direction: column;
}

.region-main-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: black;
}

.region-countries-line {
    font-size: 0.7rem;
    color: black;
    margin-top: 0.15rem;
}


/* Pulse live operational status element bottom text */

.operations-status-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1.25rem;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #81C784;
    border-radius: 50%;
    position: relative;
}


/* Live blinking beacon ring animations */

.pulse-dot::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #81C784;
    animation: beacon-expand 2s infinite ease-out;
}

@keyframes beacon-expand {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

.status-label-text {
    font-size: 0.65rem;
    font-weight: 600;
    color: black;
    letter-spacing: 0.02em;
}

.guarantee-response-pill {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem 1.75rem;
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.guarantee-icon-wrapper {
    color: var(--accent-gold, #c5a880);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.guarantee-text-block {
    display: flex;
    flex-direction: column;
}

.guarantee-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: black;
}

.guarantee-desc {
    font-size: 0.7rem;
    color: black;
    margin-top: 0.15rem;
    line-height: 1.3;
}


/* ==========================================================================
   B2B CONTACT PORTAL RESPONSIVE STYLES
   ========================================================================== */


/* --- Tablet Viewports (Max-width: 1024px) --- */

@media (max-width: 1024px) {
    .portal-section {
        padding: 80px 1.5rem;
    }
    .portal-interface-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .portal-card-panel {
        padding: 2.5rem 2rem;
    }
}


/* --- Mobile Phone Viewports (Max-width: 768px) --- */

@media (max-width: 768px) {
    .portal-section {
        padding: 60px 1.25rem;
    }
    .portal-header {
        margin-bottom: 3rem;
    }
    .form-row-inline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .portal-card-panel {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    .panel-inner-sub {
        margin-bottom: 2rem;
    }
    .btn-submit-portal {
        width: 100%;
        justify-content: space-between;
        padding: 1.1rem 1.5rem;
    }
    .channel-text-static {
        font-size: 0.75rem;
    }
    .channel-link-anchor {
        font-size: 0.8rem;
        word-break: break-all;
    }
    .guarantee-response-pill {
        padding: 1.25rem 1.25rem;
        border-radius: 16px;
    }
}