
/* =========================================================================
   COMPONENTS UTILITIES (Global System Buttons, Eyebrows & Accents)
   ========================================================================= */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 2px;
    color: var(--brand-primary);
    margin-bottom: 0.75rem;
    background: rgba(255, 71, 87, 0.06);
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.section-header {
    margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
    h2 {
        font-size: clamp(2rem, 4vw, 2.75rem);
        margin-bottom: 1rem;
    }
    &.text-center { text-align: center; }
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
}

/* High-End Button Design Architecture */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--brand-primary);
    color: var(--bg-surface);
    box-shadow: 0 4px 14px rgba(255, 71, 87, 0.3);
    &:hover {
        background-color: var(--brand-accent);
        transform: translateY(-3px);
        box-shadow: 0 8px 22px rgba(255, 71, 87, 0.45);
    }
}

.btn-secondary {
    background-color: var(--brand-secondary);
    color: var(--bg-surface);
    &:hover {
        background-color: #1a1e27;
        transform: translateY(-3px);
    }
}

.btn-link {
    color: var(--brand-secondary);
    font-weight: 700;
    padding: 0;
    text-decoration: none;
    &:hover { color: var(--brand-primary); }
}

.btn-sm { padding: 8px 18px; font-size: 0.85rem; border-radius: var(--radius-sm); }
.w-full { width: 100%; }

/* =========================================================================
   LAYOUT MODULE: DYNAMIC APPLICATION HEADER STICKY MATRIX
   ========================================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(47, 53, 66, 0.06);
    transition: var(--transition-snappy);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1340px;
    margin: 0 auto;
    padding-inline: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    img { height: 40px; width: auto; object-fit: contain; }
}

.logo-text {
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--brand-secondary);
    letter-spacing: -0.5px;
    span { color: var(--brand-primary); }
    &.text-white { color: white; }
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--brand-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
    transition: var(--transition-snappy);
    opacity: 0.8;
    &::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--brand-primary);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    &:hover, &.active {
        opacity: 1;
        color: var(--brand-primary);
        &::after {
            transform: scaleX(1);
            transform-origin: left;
        }
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-icon {
    background: none;
    border: none;
    color: var(--brand-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-snappy);
    &:hover { background: rgba(47, 53, 66, 0.05); color: var(--brand-primary); }
}

.mobile-toggle-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--brand-secondary);
}

/* Header Responsiveness Adjustments */
@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .mobile-toggle-btn { display: block; }
    .header-actions .btn-primary { display: none; }
}

/* =========================================================================
   LAYOUT MODULE: PREMIUM HERO SCENE (Grid Layout + Modern Floating Blobs)
   ========================================================================= */
.hero-section {
    position: relative;
    min-height: calc(90vh - 80px);
    display: flex;
    align-items: center;
    padding-block: clamp(3rem, 8vw, 8rem);
    background: linear-gradient(135deg, #ffffff 0%, #f6f8fb 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 4rem);
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    span {
        font-family: var(--font-serif);
        font-weight: 400;
        font-style: italic;
        color: var(--brand-primary);
    }
}

.hero-lead {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    line-height: 1.5;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.btn-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Advanced Absolute Vector Background Decorative Clusters */
.blob-decor {
    position: absolute;
    border-radius: var(--radius-full);
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
    &.b1 { width: 400px; height: 400px; background: rgba(255, 71, 87, 0.2); top: -10%; right: -5%; }
    &.b2 { width: 350px; height: 350px; background: rgba(255, 165, 2, 0.15); bottom: 10%; left: -10%; }
}

.scroll-cue {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--ink-secondary);
    font-size: 1.25rem;
    animation: bounce 2s infinite;
    text-decoration: none;
    &:hover { color: var(--brand-primary); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-8px) translateX(-50%); }
    60% { transform: translateY(-4px) translateX(-50%); }
}

@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-lead { margin-inline: auto; }
    .btn-group { justify-content: center; }
}

/* =========================================================================
   LAYOUT MODULE: COMPREHENSIVE SERVICE FEATURE DISPLAY SLIDER
   ========================================================================= */
.services-portfolio-section {
    padding-block: clamp(4rem, 10vw, 8rem);
    background-color: var(--bg-surface);
}

.service-slider-wrapper {
    max-width: 1120px;
    margin: 0 auto clamp(4rem, 8vw, 6rem);
}

.slider-track {
    background: var(--bg-base);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-raised);
    position: relative;
}

.slider-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(0.98) translateY(10px);
    
    &.is-active {
        opacity: 1;
        visibility: visible;
        height: auto;
        overflow: visible;
        transform: scale(1) translateY(0);
    }
}

.panel-image {
    position: relative;
    min-height: 440px;
    background-color: var(--brand-secondary);
    img { width: 100%; height: 100%; object-fit: cover; }
}

.panel-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(30, 34, 43, 0.75);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    i { color: var(--brand-accent); }
}

.panel-content {
    padding: clamp(2rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-surface);
    
    .panel-meta {
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        color: var(--ink-secondary);
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }
    h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 1.25rem; letter-spacing: -0.5px; }
    p { margin-bottom: 1.5rem; line-height: 1.6; }
}

.panel-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 2rem;
    span {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--brand-secondary);
        i { color: #2ed573; }
    }
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 2rem;
}

.ctrl-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(47, 53, 66, 0.12);
    background: var(--bg-surface);
    color: var(--brand-secondary);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: var(--transition-snappy);
    box-shadow: var(--shadow-flat);
    &:hover {
        background: var(--brand-secondary);
        color: white;
        transform: translateY(-2px);
        box-shadow: var(--shadow-raised);
    }
}

.slider-dots {
    display: flex;
    gap: 10px;
    .dot {
        width: 12px;
        height: 12px;
        border-radius: var(--radius-full);
        border: none;
        background: rgba(47, 53, 66, 0.15);
        cursor: pointer;
        transition: var(--transition-smooth);
        padding: 0;
        &.active {
            background: var(--brand-primary);
            width: 28px;
        }
    }
}

/* Alternative Service Cards Architecture Layout Grid */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-feature-card {
    background: var(--bg-base);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    border: 1px solid rgba(47, 53, 66, 0.03);
    
    .icon-wrapper {
        width: 64px;
        height: 64px;
        border-radius: var(--radius-md);
        display: grid;
        place-items: center;
        font-size: 1.5rem;
        margin-bottom: 2rem;
        
        &.color-food { background: rgba(255, 71, 87, 0.1); color: var(--brand-primary); }
        &.color-tech { background: rgba(47, 53, 66, 0.1); color: var(--brand-secondary); }
        &.color-smma { background: rgba(255, 165, 2, 0.1); color: var(--brand-accent); }
    }
    
    h3 { font-size: 1.35rem; margin-bottom: 1rem; }
    p { margin-bottom: 1.75rem; font-size: 0.95rem; }
}

.card-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--brand-secondary);
    transition: var(--transition-snappy);
    i { transition: transform 0.2s ease; }
    &:hover {
        color: var(--brand-primary);
        i { transform: translateX(4px); }
    }
}

.service-feature-card:hover {
    background: var(--bg-surface);
    transform: translateY(-8px);
    box-shadow: var(--shadow-raised);
    border-color: rgba(47, 53, 66, 0.08);
}

@media (max-width: 868px) {
    .slider-panel { grid-template-columns: 1fr; }
    .panel-image { min-height: 280px; }
}

/* =========================================================================
   LAYOUT MODULE: OPERATIONAL STATISTICS BLOCK
   ========================================================================= */
.stats-data-section {
    background-color: var(--brand-secondary);
    padding-block: 4rem;
}

.stats-flex-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.stat-metric-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    color: white;
    
    .metric-number {
        display: block;
        font-family: var(--font-sans);
        font-weight: 800;
        font-size: clamp(2.25rem, 4vw, 3.5rem);
        color: var(--brand-primary);
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
    
    .metric-label {
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--ink-muted);
        letter-spacing: 0.5px;
    }
}

/* =========================================================================
   LAYOUT MODULE: SOCIAL PROOF REVIEWS ROW (Horizontal Microscroll Layout)
   ========================================================================= */
.testimonials-feedback-section {
    padding-block: clamp(4rem, 8vw, 7rem);
    background-color: var(--bg-base);
}

.testimonials-scroll-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 992px) {
    .testimonials-scroll-grid {
        grid-template-columns: 1fr;
    }
}

.feedback-bubble-card {
    background-color: var(--bg-surface);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-flat);
    border: 1px solid rgba(47, 53, 66, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    .rating-stars {
        color: var(--brand-accent);
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        display: flex;
        gap: 4px;
    }
    
    .feedback-text {
        font-style: normal;
        color: var(--brand-secondary);
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
}

.feedback-author-details {
    display: flex;
    align-items: center;
    gap: 14px;
    font-style: normal;
    
    .avatar-initials {
        width: 44px;
        height: 44px;
        border-radius: var(--radius-full);
        display: grid;
        place-items: center;
        font-weight: 700;
        font-size: 0.95rem;
        color: white;
        
        &.color-a { background: #3867d6; }
        &.color-s { background: #8854d0; }
        &.color-d { background: #20bf6b; }
    }
    
    strong { display: block; color: var(--brand-secondary); font-size: 0.95rem; }
    span { display: block; color: var(--ink-secondary); font-size: 0.8rem; }
}

/* =========================================================================
   LAYOUT MODULE: SYSTEM ACCORDION ARCHITECTURE (Clean & Intuitive Box System)
   ========================================================================= */
.faqs-accordion-section {
    padding-block: clamp(4rem, 10vw, 8rem);
    background-color: var(--bg-surface);
}

.faqs-layout-split {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.faqs-sticky-header {
    position: sticky;
    top: 120px;
    h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); margin-bottom: 1.25rem; }
    p { margin-bottom: 2rem; }
}

.accordion-group-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item-box {
    background: var(--bg-base);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(47, 53, 66, 0.02);
    transition: var(--transition-snappy);
    
    &:hover { border-color: rgba(47, 53, 66, 0.1); }
}

.accordion-trigger-btn {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--brand-secondary);
    gap: 16px;
    
    i {
        width: 28px;
        height: 28px;
        background: var(--bg-surface);
        border-radius: var(--radius-full);
        display: grid;
        place-items: center;
        font-size: 0.8rem;
        color: var(--brand-primary);
        transition: transform 0.3s ease;
    }
    
    &[aria-expanded="true"] i {
        transform: rotate(45deg);
        background: var(--brand-primary);
        color: white;
    }
}

.accordion-panel-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    p { padding: 0 24px 24px; font-size: 0.95rem; line-height: 1.6; }
}

@media (max-width: 884px) {
    .faqs-layout-split { grid-template-columns: 1fr; gap: 40px; }
    .faqs-sticky-header { position: static; }
}

/* =========================================================================
   LAYOUT MODULE: REFINED STRUCTURAL CORPORATE FOOTER
   ========================================================================= */
.master-corporate-footer {
    background-color: var(--bg-dark-matrix);
    color: white;
    padding-top: clamp(4rem, 6vw, 5.5rem);
}

.footer-matrix-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 64px;
    margin-bottom: 4rem;
}

.footer-corporate-brand-identity {
    .brand-pitch-text { color: var(--ink-muted); margin-block: 1.5rem 2rem; max-width: 340px; font-size: 0.95rem; }
}

.footer-social-channels {
    display: flex;
    gap: 12px;
    a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.05);
        color: white;
        border-radius: var(--radius-sm);
        display: grid;
        place-items: center;
        text-decoration: none;
        transition: var(--transition-snappy);
        &:hover { background: var(--brand-primary); transform: translateY(-3px); }
    }
}

.footer-links-navigation-directory {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
}

.directory-column-header {
    color: white;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.directory-list-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    
    a {
        color: var(--ink-muted);
        text-decoration: none;
        font-size: 0.95rem;
        transition: var(--transition-snappy);
        &:hover { color: var(--brand-primary); padding-left: 4px; }
    }
}

.contact-details-override a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.support-span-text {
    font-size: 0.85rem;
    color: var(--brand-accent);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-legal-basebar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-block: 24px;
    font-size: 0.85rem;
    color: var(--ink-muted);
}

.basebar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.basebar-links {
    display: flex;
    gap: 24px;
    a { color: var(--ink-muted); text-decoration: none; &:hover { color: white; } }
}

@media (max-width: 992px) {
    .footer-matrix-grid { grid-template-columns: 1fr; gap: 48px; }
}










/*=====================================================================================================================================
Service
=============================================================================================================================================*/


/* =========================================================================
   BEHA CENTER — Services View Custom Style Modules
   Architecture Signature: Clean layout grids, advanced detail row 
   borders, and smooth transitions built on top of global custom tokens.
   ========================================================================= */

/* Body Layer Reset Context overrides */
body.page-service {
    background-color: var(--bg-base);
}

.hero-service .hero-content {
    text-align: left;
}

/* Fallback centering logic wrapper for high resolution displays */
@media (max-width: 992px) {
    .text-center-fallback {
        text-align: center;
        .hero-content { text-align: center; }
    }
}

/* -------------------------------------------------------------------------
   LAYOUT PANEL: DETAILED CAPABILITIES MATRIX SPLIT FLOW
   ------------------------------------------------------------------------- */
.description-section {
    padding-block: clamp(4.5rem, 10vw, 8.5rem);
    background-color: var(--bg-surface);
    overflow: hidden;
}

.description-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

/* Core Column Information Block styling */
.description-content-block {
    .description-title {
        font-size: clamp(2rem, 4.2vw, 2.75rem);
        letter-spacing: -1px;
        margin-bottom: 2.5rem;
        color: var(--brand-secondary);
    }
}

/* Component Level Detail Rows with Border Systems */
.detail-row-item {
    padding-block: 1.75rem;
    border-top: 1px solid rgba(47, 53, 66, 0.08);
    transition: var(--transition-smooth);
    
    h3 {
        display: flex;
        align-items: center;
        gap: 16px;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--brand-secondary);
        margin-bottom: 0.75rem;
    }
    
    p {
        color: var(--ink-secondary);
        font-size: 0.98rem;
        line-height: 1.65;
        padding-left: 56px; /* Offsets textual details cleanly past the relative icon position */
    }
    
    &:hover {
        transform: translateX(4px);
        .detail-icon-box {
            transform: scale(1.08);
            box-shadow: 0 4px 12px rgba(47, 53, 66, 0.1);
        }
    }
}

/* Enforce trailing baseline rules cleanly across iterative elements */
.detail-row-item:last-child {
    border-bottom: 1px solid rgba(47, 53, 66, 0.08);
}

/* Custom Micro-Icon Wrapper Box System elements */
.detail-icon-box {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition-snappy);
    
    &.bg-smma { background-color: rgba(255, 165, 2, 0.1); color: var(--brand-accent); }
    &.bg-food { background-color: rgba(255, 71, 87, 0.1); color: var(--brand-primary); }
    &.bg-tech { background-color: rgba(47, 53, 66, 0.08); color: var(--brand-secondary); }
}

/* -------------------------------------------------------------------------
   LAYOUT PANEL: VISUAL SHOWCASE FRAMING ELEMENTS
   ------------------------------------------------------------------------- */
.description-visual-showcase {
    position: relative;
    width: 100%;
    
    img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-raised);
        transition: var(--transition-smooth);
    }
    
    /* Interactive Floating Accent Badge Layer */
    .showcase-accent-tag {
        position: absolute;
        bottom: 24px;
        left: -16px;
        background-color: var(--brand-secondary);
        color: white;
        padding: 12px 20px;
        border-radius: var(--radius-md);
        font-weight: 700;
        font-size: 0.88rem;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: var(--shadow-overlay);
        border: 1px solid rgba(255, 255, 255, 0.08);
        
        i { color: #2ed573; }
    }
    
    &:hover img {
        transform: translateY(-4px) scale(1.01);
        box-shadow: var(--shadow-overlay);
    }
}

/* -------------------------------------------------------------------------
   RESPONSIVE DESIGN SYSTEM MEDIA QUERY MATRIX
   ------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .description-split-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .description-visual-showcase {
        order: -1; /* Pushes the main presentation asset to the top of the viewport on narrow displays */
        max-width: 640px;
        margin: 0 auto;
        
        .showcase-accent-tag {
            left: 16px; /* Re-aligns offset tags gracefully to ensure safe bounds */
        }
    }
    
    .detail-row-item p {
        padding-left: 0; /* Drops deep indentation logic for mobile-optimized viewport scans */
    }
}









/* =========================================================================
   BEHA CENTER — About Us Custom Style Modules
   Architecture Signature: Clean corporate narrative streams, hand-stamped
   vintage dashboard layout adaptations, and optimized layout flows.
   ========================================================================= */

/* Explicit sanitization override ensuring layout flows natively without sidebar conflicts */
body.page-about {
    display: block;
    background-color: var(--bg-base);
}

.hero-about {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafc 100%);
}

/* -------------------------------------------------------------------------
   LAYOUT PANEL: FOUNDATIONAL CORE STANDARDS CARD ADAPTATIONS
   ------------------------------------------------------------------------- */
.why-us-section {
    padding-block: clamp(4.5rem, 10vw, 8.5rem);
    background-color: var(--bg-surface);
}

/* Extends standard helper configuration properties */
.why-us-section .services-cards-grid {
    margin-top: 1.5rem;
}

/* -------------------------------------------------------------------------
   LAYOUT PANEL: NARRATIVE HISTORY CONTAINER (Optimized Typography Flow)
   ========================================================================= */
.historical-narrative-panel {
    padding-block: clamp(4.5rem, 10vw, 8.5rem);
    background-color: var(--bg-base);
}

.overview-narrow-container {
    max-width: 800px; /* Enforces optimal character length limitations for comfortable reading */
    margin: 0 auto;
}

.narrative-content-flow {
    p {
        color: var(--ink-secondary);
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 1.75rem;
        text-align: justify;
    }
    
    /* Premium High-Contrast Initial Character Drop-Cap Framework */
    p.drop-cap::first-letter {
        font-family: var(--font-sans);
        font-weight: 800;
        font-size: 3.8rem;
        line-height: 0.8;
        float: left;
        padding: 6px 12px 0 0;
        color: var(--brand-primary);
    }
}

/* -------------------------------------------------------------------------
   COMPONENT PANEL: HAND-STAMPED OPERATIONAL SEAL GRID SYSTEM
   ========================================================================= */
.mvg-badge-section {
    padding-block: clamp(5rem, 11vw, 9rem);
    background-color: var(--bg-surface);
    border-top: 1px solid rgba(47, 53, 66, 0.05);
}

.mvg-layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
}

.mvg-seal-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background-color: var(--bg-base);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(47, 53, 66, 0.03);
    transition: var(--transition-smooth);
    
    h2 {
        font-size: 1.35rem;
        font-weight: 800;
        color: var(--brand-secondary);
        margin-bottom: 0.75rem;
    }
    
    p {
        color: var(--ink-secondary);
        font-size: 0.96rem;
        line-height: 1.6;
        max-width: 32ch;
    }

    &:hover {
        transform: translateY(-6px);
        background-color: white;
        box-shadow: var(--shadow-raised);
        border-color: rgba(47, 53, 66, 0.08);
        
        .seal-stamp-wrapper {
            transform: scale(1.05) rotate(0deg);
        }
    }
}

/* Complex Industrial Vintage Counter Stamp Styling Box */
.seal-stamp-wrapper {
    width: 88px;
    height: 88px;
    border-radius: var(--radius-full);
    border: 2px solid var(--brand-secondary);
    outline: 2px dashed var(--brand-primary);
    outline-offset: 4px;
    display: grid;
    place-items: center;
    background-color: var(--bg-surface);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-flat);
    transition: var(--transition-smooth);
}

/* Custom individual rotational configurations mimicking rapid human ink application */
.card-mission .seal-stamp-wrapper { transform: rotate(-5deg); }
.card-vision .seal-stamp-wrapper { transform: rotate(4deg); }
.card-goal .seal-stamp-wrapper { transform: rotate(-2deg); }

.stamp-inner {
    font-size: 1.65rem;
    color: var(--brand-secondary);
    display: grid;
    place-items: center;
}

/* -------------------------------------------------------------------------
   RESPONSIVE LAYOUT CONSTRAINTS
   ------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .mvg-layout-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .narrative-content-flow p {
        text-align: left;
    }
}

















/* =========================================================================
   BEHA CENTER — Contact Page Specialized Stylesheet
   Architecture Signature: Solid industrial input forms, accessible grid cards
   ========================================================================= */

body.page-contact {
    background-color: var(--bg-base);
}

.hero-contact .hero-content {
    text-align: left;
}

.contact-section {
    padding-block: clamp(4rem, 9vw, 8rem);
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: start;
}

/* -------------------------------------------------------------------------
   COMPONENT STYLES: DIRECT INFORMATION NODE CARDS
   ------------------------------------------------------------------------- */
.contacts-matrix-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 3rem 2.25rem;
    box-shadow: var(--shadow-raised);
    border: 1px solid rgba(47, 53, 66, 0.03);
    
    h2 { font-size: 1.5rem; margin-bottom: 2rem; letter-spacing: -0.5px; }
}

.info-group {
    margin-bottom: 1.75rem;
    
    h3 {
        font-size: 0.76rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--ink-secondary);
        margin-bottom: 0.75rem;
    }
}

.matrix-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-secondary);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-snappy);
    i { color: var(--brand-primary); }
    &:hover { color: var(--brand-primary); }
}

.phone-row-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 10px;
    border-bottom: 1px dashed rgba(47, 53, 66, 0.08);
    
    h4 { font-size: 0.92rem; color: var(--ink-secondary); font-weight: 600; }
    a { color: var(--brand-secondary); font-weight: 700; text-decoration: none; transition: var(--transition-snappy); &:hover { color: var(--brand-primary); } }
}

.social-links-flex {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    a {
        text-decoration: none;
        font-size: 0.88rem;
        font-weight: 700;
        color: var(--brand-secondary);
        background-color: var(--bg-base);
        padding: 8px 16px;
        border-radius: var(--radius-sm);
        transition: var(--transition-snappy);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        &:hover { background-color: var(--brand-secondary); color: white; }
    }
}

.map-embed-frame {
    margin-top: 2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(47, 53, 66, 0.08);
    aspect-ratio: 4 / 3;
    iframe { width: 100%; height: 100%; border: none; }
}

/* -------------------------------------------------------------------------
   COMPONENT STYLES: INTERACTIVE DATA TRANSMISSION FORM
   ------------------------------------------------------------------------- */
.interactive-form-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 3rem clamp(1.5rem, 4vw, 3rem);
    box-shadow: var(--shadow-raised);
    border: 1px solid rgba(47, 53, 66, 0.03);
    
    h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
    .form-note-text { font-size: 0.95rem; margin-bottom: 2rem; }
}

.modern-flex-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.field-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-input-wrapper {
    width: 100%;
    
    input, select, textarea {
        width: 100%;
        font-family: var(--font-sans);
        font-size: 0.98rem;
        font-weight: 500;
        color: var(--brand-secondary);
        background-color: var(--bg-base);
        border: 2px solid transparent;
        border-radius: var(--radius-md);
        padding: 14px 18px;
        transition: var(--transition-snappy);
        outline: none;
        
        &:focus {
            background-color: white;
            border-color: var(--brand-primary);
            box-shadow: 0 0 0 4px rgba(255, 71, 87, 0.1);
        }
    }
    
    select {
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f3542' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 18px center;
        background-size: 16px;
        padding-right: 48px;
    }
    
    textarea { resize: vertical; min-height: 140px; }
}

.relative-wrapper { position: relative; }

.char-counter-label {
    position: absolute;
    bottom: -22px;
    right: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink-secondary);
}

.align-self-start { align-self: flex-start; }

.form-status-feedback {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2ed573;
    margin-top: 8px;
    min-height: 1.5em;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 868px) {
    .contact-split-grid { grid-template-columns: 1fr; }
    .field-row-grid { grid-template-columns: 1fr; }
}




















/* =========================================================================
   BEHA CENTER — FAQs Knowledgebase Page Custom Styles
   Architecture Signature: Clean responsive filter nodes, unified accordions
   ========================================================================= */

body.page-faqs {
    background-color: var(--bg-base);
}

.hero-faqs .hero-content {
    text-align: left;
}

.inline-narrative-link {
    color: var(--brand-primary);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 71, 87, 0.2);
    transition: var(--transition-snappy);
    &:hover { border-bottom-color: var(--brand-primary); }
}

.faq-page-section {
    padding-block: clamp(3rem, 7vw, 6rem) clamp(5rem, 10vw, 9rem);
}

.unique-narrow-layout {
    max-width: 880px;
    margin: 0 auto;
}

/* -------------------------------------------------------------------------
   COMPONENT STYLES: FILTERS & REAL-TIME SEARCH TERMINALS
   ------------------------------------------------------------------------- */
.faq-filtering-matrix {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 3.5rem;
}

.faq-search-wrapper-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: var(--bg-surface);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    padding: 16px 22px;
    box-shadow: var(--shadow-raised);
    transition: var(--transition-snappy);
    
    i { color: var(--ink-secondary); font-size: 1.1rem; }
    
    input {
        flex: 1;
        border: none;
        background: none;
        font-family: var(--font-sans);
        font-size: 1.05rem;
        font-weight: 500;
        color: var(--brand-secondary);
        outline: none;
    }
    
    &:focus-within {
        border-color: var(--brand-primary);
        box-shadow: 0 0 0 4px rgba(255, 71, 87, 0.1);
    }
}

.faq-category-tabs-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-pill-btn {
    border: 1px solid rgba(47, 53, 66, 0.1);
    background-color: var(--bg-surface);
    color: var(--ink-secondary);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-snappy);
    
    &:hover {
        border-color: var(--brand-primary);
        color: var(--brand-primary);
    }
    
    &.is-active {
        background-color: var(--brand-secondary);
        color: white;
        border-color: var(--brand-secondary);
        box-shadow: var(--shadow-flat);
    }
}

/* -------------------------------------------------------------------------
   COMPONENT STYLES: DYNAMIC EXPANSION AND STATE COLLAPSE HANDLING
   ------------------------------------------------------------------------- */
.faq-page-section {
    /* Reuses core structural accordion class variables generated inside index/home modules */
    .accordion-item-box {
        background-color: var(--bg-surface);
        margin-bottom: 16px;
        box-shadow: var(--shadow-flat);
        border: 1px solid rgba(47, 53, 66, 0.03);
        
        &:hover { border-color: rgba(47, 53, 66, 0.08); }
    }
    
    .accordion-trigger-btn {
        padding: 26px 28px;
        span { font-size: 1.1rem; letter-spacing: -0.2px; }
    }
    
    .accordion-panel-content p {
        padding: 0 28px 26px;
        font-size: 1rem;
        color: var(--ink-secondary);
    }
}

.empty-search-fallback-card {
    display: none; /* Controlled entirely by JavaScript initFaqFilters pipeline */
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-flat);
    border: 1px solid rgba(47, 53, 66, 0.04);
    
    i { font-size: 3rem; color: var(--ink-muted); margin-bottom: 1.5rem; display: block; }
    p { font-size: 1.05rem; font-weight: 600; max-width: 440px; margin: 0 auto; }
    a { color: var(--brand-primary); text-decoration: none; font-weight: 700; &:hover { text-decoration: underline; } }
}


























/* =========================================================================
   BEHA CENTER — Artisanal Fast Food Menu Stylesheet
   ========================================================================= */

body.page-menu {
    background-color: var(--bg-base);
}

.mx-auto {
    margin-inline: auto;
}

/* -------------------------------------------------------------------------
   LAYOUT DESIGN: FILTERS & MATRIX ENGINE
   ------------------------------------------------------------------------- */
.menu-catalog-section {
    padding-block: clamp(3rem, 6vw, 5rem) clamp(6rem, 12vw, 10rem);
    background-color: var(--bg-base);
}

.menu-filtering-matrix {
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

.menu-search-wrapper-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: var(--bg-surface);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    padding: 16px 22px;
    box-shadow: var(--shadow-raised);
    transition: var(--transition-snappy);
}

.menu-search-wrapper-box i { 
    color: var(--ink-secondary); 
    font-size: 1.1rem; 
}

.menu-search-wrapper-box input {
    flex: 1;
    border: none;
    background: none;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--brand-secondary);
    outline: none;
}

.menu-search-wrapper-box:focus-within {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(255, 71, 87, 0.1);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Maintain responsiveness on smaller screens */
@media (max-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------------------------------------------
   COMPONENT DESIGN: CULINARY MATRICES FOOD CARDS
   ------------------------------------------------------------------------- */
.menu-item-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-flat);
    border: 1px solid rgba(47, 53, 66, 0.03);
    transition: var(--transition-smooth);
}

.menu-item-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-raised);
    border-color: rgba(47, 53, 66, 0.08);
}

.menu-item-card:hover .menu-item-image-wrapper img {
    transform: scale(1.04);
}

.menu-item-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: rgba(47, 53, 66, 0.05);
}

.menu-item-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.menu-item-image-wrapper .item-tag-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--brand-primary);
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-flat);
}

.menu-item-image-wrapper .item-tag-badge.trending-badge {
    background-color: var(--brand-accent);
}

.menu-item-details {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.item-header-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
}

.item-header-meta .item-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-secondary);
    line-height: 1.3;
}

.item-header-meta .item-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-primary);
    white-space: nowrap;
    background-color: rgba(255, 71, 87, 0.06);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.item-description {
    font-size: 0.94rem;
    color: var(--ink-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.item-action-footer {
    margin-top: auto;
}

.item-action-footer .btn-primary {
    display: block;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: none;
}

.item-action-footer .btn-primary i {
    margin-left: 6px;
    transition: var(--transition-snappy);
}

.item-action-footer .btn-primary:hover i {
    transform: translateX(3px);
}

/* -------------------------------------------------------------------------
   COMPONENT MODULE: DYNAMIC OVERLAY POP-UP WINDOW SYSTEM
   ------------------------------------------------------------------------- */
.order-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(30, 34, 43, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.order-modal-overlay.is-visible {
    opacity: 1;
}

.modal-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 680px;
    transform: translateY(30px);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.order-modal-overlay.is-visible .modal-card-wrapper {
    transform: translateY(0);
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: none;
    border: none;
    font-size: 1.35rem;
    color: var(--brand-secondary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: grid;
    place-items: center;
    transition: var(--transition-snappy);
}

.close-modal-btn:hover {
    background-color: rgba(47, 53, 66, 0.06);
    color: var(--brand-primary);
}

.form-badge-accent {
    align-self: flex-start;
    background-color: rgba(255, 165, 2, 0.1);
    color: var(--brand-accent);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.interactive-form-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 3rem clamp(1.5rem, 4vw, 3rem);
    box-shadow: var(--shadow-raised);
    border: 1px solid rgba(47, 53, 66, 0.03);
}

.interactive-form-card h2 { 
    font-size: 1.65rem; 
    margin-bottom: 0.5rem; 
    letter-spacing: -0.5px; 
}

.interactive-form-card .form-note-text { 
    font-size: 0.95rem; 
    margin-bottom: 2rem; 
    color: var(--ink-secondary); 
}

.modern-flex-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.field-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-input-wrapper {
    width: 100%;
}

.form-input-wrapper input, 
.form-input-wrapper select, 
.form-input-wrapper textarea {
    width: 100%;
    font-family: var(--font-sans);
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--brand-secondary);
    background-color: var(--bg-base);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    transition: var(--transition-snappy);
    outline: none;
    box-sizing: border-box;
}

.form-input-wrapper input:focus, 
.form-input-wrapper select:focus, 
.form-input-wrapper textarea:focus {
    background-color: white;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(255, 71, 87, 0.1);
}

.form-input-wrapper input:read-only {
    background-color: rgba(47, 53, 66, 0.04);
    color: var(--ink-secondary);
    font-weight: 700;
    cursor: not-allowed;
    border-left: 3px solid var(--brand-primary);
}

.form-input-wrapper select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f3542' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 48px;
}

.form-input-wrapper textarea { 
    resize: vertical; 
    min-height: 90px; 
}

.align-self-start { 
    align-self: flex-start; 
    border: none; 
    cursor: pointer; 
}

.form-status-feedback {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2ed573;
    margin-top: 8px;
    min-height: 1.5em;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

body.modal-lock {
    overflow: hidden;
}

@media (max-width: 768px) {
    .field-row-grid { grid-template-columns: 1fr; gap: 20px; }
}




/* =========================================================================
   BEHA CENTER — 3D Stacked Polaroid Slider Design (Refreshed)
   ========================================================================= */

.new-service-slider {
    padding-block: clamp(3rem, 6vw, 5.5rem);
    background-color: var(--bg-base);
}

.slider-block {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.slider-block:last-child {
    margin-bottom: 0;
}

/* Slider Section Headers */
.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(47, 53, 66, 0.06);
}

.slider-header h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: var(--brand-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-header h2 i {
    color: var(--brand-primary);
}

.see-more-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-snappy);
}

.see-more-link:hover {
    color: var(--brand-accent);
    transform: translateX(4px);
}

/* 3D Stacked Track Container */
.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding-block: 20px;
    perspective: 1000px;
}

/* Navigation Arrow Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--bg-surface);
    border: 1px solid rgba(47, 53, 66, 0.15);
    color: var(--brand-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 20;
    box-shadow: var(--shadow-raised);
    transition: var(--transition-snappy);
}

.slider-btn:hover {
    background: var(--brand-primary);
    color: #ffffff;
    border-color: var(--brand-primary);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev-btn {
    left: 10px;
}

.slider-btn.next-btn {
    right: 10px;
}

/* Track Flow & Card Stacking */
.slider-wrapper .track {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 380px;
}

/* Polaroid Framed Cards Design */
.slider-wrapper .slider {
    position: absolute;
    width: clamp(220px, 30vw, 310px);
    background: #ffffff;
    padding: 12px 12px 16px 12px;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

/* Polaroid Image Window */
.slider-wrapper .slider .image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f0f0f0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.slider-wrapper .slider .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Title Caption Below Photo */
.slider-wrapper .slider .content {
    padding-top: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.slider-wrapper .slider .title {
    font-family: var(--font-serif, Georgia, serif);
    font-style: italic;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-secondary);
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slider-wrapper .slider .price {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--brand-primary);
}

.slider-wrapper .slider .content .btn {
    margin-top: 8px;
    font-size: 0.8rem;
    padding: 6px 16px;
}

/* Cascading Stack Hierarchy Positions */
.slider-wrapper .slider:nth-child(1) {
    transform: translateX(-160px) scale(0.8) rotate(-8deg);
    z-index: 1;
    opacity: 0.6;
}

.slider-wrapper .slider:nth-child(2) {
    transform: translateX(-80px) scale(0.9) rotate(-4deg);
    z-index: 2;
    opacity: 0.85;
}

/* Active Center Card */
.slider-wrapper .slider:nth-child(3) {
    transform: translateX(0) scale(1.08) rotate(0deg);
    z-index: 10;
    opacity: 1;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25), 0 5px 15px rgba(0, 0, 0, 0.15);
}

.slider-wrapper .slider:nth-child(4) {
    transform: translateX(80px) scale(0.9) rotate(4deg);
    z-index: 2;
    opacity: 0.85;
}

.slider-wrapper .slider:nth-child(5) {
    transform: translateX(160px) scale(0.8) rotate(8deg);
    z-index: 1;
    opacity: 0.6;
}

.slider-wrapper .slider:nth-child(n+6) {
    transform: translateX(200px) scale(0.7) rotate(12deg);
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}

/* Active Card Hover Reaction */
.slider-wrapper .slider:nth-child(3):hover {
    transform: translateX(0) scale(1.12) rotate(0deg);
}

.slider-wrapper .slider:nth-child(3):hover .image img {
    transform: scale(1.05);
}

.no-data-msg {
    font-size: 0.95rem;
    color: var(--ink-muted);
    font-style: italic;
    padding: 1rem;
    text-align: center;
}

/* Mobile Responsiveness Adjustments */
@media (max-width: 768px) {
    .slider-wrapper {
        min-height: 360px;
    }

    .slider-wrapper .track {
        height: 320px;
    }

    .slider-wrapper .slider {
        width: 200px;
        padding: 8px 8px 12px 8px;
    }

    .slider-wrapper .slider .image {
        height: 160px;
    }

    .slider-wrapper .slider:nth-child(1) {
        transform: translateX(-90px) scale(0.75) rotate(-6deg);
    }

    .slider-wrapper .slider:nth-child(2) {
        transform: translateX(-45px) scale(0.88) rotate(-3deg);
    }

    .slider-wrapper .slider:nth-child(4) {
        transform: translateX(45px) scale(0.88) rotate(3deg);
    }

    .slider-wrapper .slider:nth-child(5) {
        transform: translateX(90px) scale(0.75) rotate(6deg);
    }
}