/* ==========================================================================
   PRODUCT SHOWCASE STYLESHEET - EXCLUSIVELY ALIGNED TO SHOWN MOCKUP IMAGE
   ========================================================================== */

.product-showcase-body {
    /* Premium deep tech blue background gradient blueprint token definition */
    background: linear-gradient(180deg, #FFA973 0%, #FEFAF8 930px) no-repeat #FEFAF8;
    margin: 0;
    padding: 0;
}

/* Stable Fallback Opacity Control for Blank Images */
.local-image-layer[src=""], .local-image-layer:not([src]) {
    opacity: 0 !important;
}

/* ==========================================================================
   TEXT ANIMATION KEYFRAME ENGINE DEFINITIONS
   ========================================================================== */
@keyframes textRevealUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes workspaceEntrySmooth {
    from {
        opacity: 0;
        transform: scale(0.97) translateX(40px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

/* ==========================================================================
   CORE DUAL SPLIT GRAPHIC WORKSPACE SECTION (UPDATED FOR FIXED ASPECT ZOOM PROTECTION)
   ========================================================================== */
.product-split-wrapper {
    display: flex;
    max-width: 1420px;            /* Aligns text column flush with global header line grid width */
    width: 90%;                   /* Balanced responsive fluid parameter footprint */
    margin: 0 auto;               /* Centers the layout container cleanly on wide resolutions/low zoom levels */
    padding: 150px 0 60px 0;      /* Clear padding bounds isolates navbar from grid clipping bounds */
    gap: 50px;
    align-items: flex-start;      /* Structural top-alignment locks vertical baseline tracking */
    box-sizing: border-box;
}

/* --- LEFT COLUMN BRAND ARCHITECTURE & PROGRESSIVE ANIMATION TIMING --- */
.brand-presentation-side {
    flex: 0 0 420px;              /* Keeps left text container stable and non-stretching */
    display: flex;
    flex-direction: column;
}

.mini-brand-tag {
    font-size: 26px;
    font-weight: 800;
    color: #FF6E27;
    font-family: 'Sour Gummy', sans-serif;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    
    /* Text Entrance Animation Mapping */
    animation: textRevealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.1s;
}

.product-branding-banner {
    background: #0E0A38;
    border-radius: 40px;
    padding: 16px 36px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(14, 10, 56, 0.15);
    
    /* Text Entrance Animation Mapping */
    animation: textRevealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.2s;
}

.badge-logo-loop {
    width: 44px;
    height: 24px;
    position: relative;
    display: flex;
    align-items: center;
}

.loop-circle {
    width: 22px;
    height: 22px;
    border: 3.5px solid #ffffff;
    border-radius: 50%;
    position: absolute;
}
.loop-circle.left-c { left: 0; }
.loop-circle.right-c { right: 0; }
.loop-dot {
    width: 5px;
    height: 5px;
    background-color: #6B38FB;
    border-radius: 50%;
    position: absolute;
    left: 19px;
    z-index: 5;
}

.product-branding-banner h2 {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.branding-tagline {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    color: #130F3B;
    margin-bottom: 20px;
    
    /* Text Entrance Animation Mapping */
    animation: textRevealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.32s;
}

.branding-tagline span {
    color: #FF6E27;
}

.branding-paragraph {
    font-size: 16.5px;
    line-height: 26px;
    color: #555555;
    margin-bottom: 40px;
    font-weight: 500;
    
    /* Text Entrance Animation Mapping */
    animation: textRevealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.45s;
}

/* Feature Row Nodes Staggered Sequence */
.presentation-features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 45px;
}

.feature-item-node {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    animation: textRevealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.feature-item-node:nth-child(1) { animation-delay: 0.55s; }
.feature-item-node:nth-child(2) { animation-delay: 0.65s; }
.feature-item-node:nth-child(3) { animation-delay: 0.75s; }
.feature-item-node:nth-child(4) { animation-delay: 0.85s; }

.feature-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* FIX: Image Sizing Restrictions for Icon Containers */
.feature-icon-box img,
.stat-icon-square img,
.why-icon-holder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bg-blue-glow { background-color: #EBF3FF; border: 1px solid #C7E0FF; }
.bg-orange-glow { background-color: #FFF2EB; border: 1px solid #FFD4C2; }
.bg-purple-glow { background-color: #F3EFFF; border: 1px solid #E2D7FF; }
.bg-orange-tint { background-color: #FFF2EB; border: 1px solid #FFD4C2; }

.feature-text-block h5 {
    font-size: 18px;
    font-weight: 700;
    color: #130F3B;
    margin-bottom: 4px;
}

.feature-text-block p {
    font-size: 14px;
    line-height: 20px;
    color: #666666;
    margin: 0;
}

/* Stats Summary Box Layer */
.presentation-stats-row {
    display: flex;
    gap: 20px;
    margin-top: auto; /* Pushes stats row down to create a solid base anchor link */
    
    /* Text Entrance Animation Mapping */
    animation: textRevealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.95s;
}

.stat-pill-box {
    flex: 1;
    background: #ffffff;
    border: 1px solid #F3E6E1;
    border-radius: 20px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 25px rgba(255, 110, 39, 0.02);
}

.stat-icon-square {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: #FFF1E9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.circle-pink { background-color: #FFEAEF !important; }
.circle-blue { background-color: #E8F0FE !important; }

.stat-numbers-wrapper h3 {
    font-size: 24px;
    font-weight: 800;
    color: #130F3B;
    margin: 0;
    line-height: 1;
}

.stat-numbers-wrapper span {
    font-size: 12px;
    font-weight: 600;
    color: #888888;
}

/* ==========================================================================
   --- RIGHT COLUMN SCREENSHOT INTERACTIVE CANVASES CONTAINER ---
   ========================================================================== */
.application-mock-workspace {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.4); /* Glass styling setup handles matching alpha blending overlays */
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-right: none;           /* Dissolves border line on right window crop edge */
    border-radius: 30px 0 0 30px; /* Flat cut-off edge */
    box-shadow: -10px 20px 60px rgba(13, 10, 43, 0.05);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: background-color 0.4s ease;
    
    /* HARD TARGET METRICS: Bleeds layout flush to the right browser window border natively */
    margin-right: calc(-50vw + 50%); 
    max-width: 1195.25px;         /* Locks maximum structural width parameter to exact Figma values */
    height: 707px;                /* Locks exact Figma dimension metrics to secure zoom proportion */
    min-height: 707px;            /* Retains frame layout depth at low zoom profiles */
    
    /* Mockup Dashboard Smooth Fade/Slide Entry Trigger */
    animation: workspaceEntrySmooth 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.2s;
}

.workspace-screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;            /* Cropping protects resolution ratio under zooming setups */
    display: block;
    border-radius: 30px 0 0 30px; /* Flat cut-off on right edge matching parent bounds */
}

/* ==========================================================================
   WHY CHOOSE ELITEOPS & CONTACT CAPTURE BLOCKS
   ========================================================================== */

.why-choose-contact-section {
    padding: 100px 40px;
    background-color: transparent; /* Transparent layout ensures top container gradient flows down */
    box-sizing: border-box;
    width: 100%;
}

.layout-flex-split {
    display: flex;
    max-width: 1360px;
    margin: 0 auto;
    gap: 60px;
    align-items: flex-start;
}

/* Left Grid Section Properties */
.features-grid-column {
    flex: 1.2;
}

.why-heading-wrapper h2 {
    font-size: 38px;
    font-weight: 800;
    color: #130F3B;
    margin: 0;
}

.heading-orange-underline {
    width: 45px;
    height: 3px;
    background-color: #FF6E27;
    margin-top: 12px;
    margin-bottom: 50px;
    border-radius: 2px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-card {
    background: #ffffff;
    border: 1px solid #F4ECE7;
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(255, 110, 39, 0.01);
    box-sizing: border-box;
}

.why-icon-holder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.why-icon-holder.purple-tint { background-color: #F3EFFF; border: 1px solid #E2D7FF; }
.why-icon-holder.orange-tint { background-color: #FFF2EB; border: 1px solid #FFD4C2; }

.why-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #130F3B;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14.5px;
    line-height: 22px;
    color: #666666;
    margin: 0;
}

/* Right Column Contact Form Panel Styles */
.contact-form-column {
    flex: 1;
    width: 100%;
}

.form-card-container {
    background: #ffffff;
    border: 1px solid #EAEAEA;
    border-radius: 24px;
    padding: 45px 40px;
    box-shadow: 0 15px 50px rgba(13, 10, 56, 0.02);
    box-sizing: border-box;
}

.form-card-container h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #130F3B;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 15px;
    line-height: 22px;
    color: #555555;
    margin-bottom: 35px;
}

.form-input-group {
    margin-bottom: 18px;
}

.form-input-group input,
.form-input-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #EAEAEA;
    border-radius: 14px;
    font-family: 'League Spartan', sans-serif;
    font-size: 16px;
    color: #130F3B;
    background-color: #FAFAFA;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.form-input-group input:focus,
.form-input-group textarea:focus {
    border-color: #FF6E27;
    background-color: #ffffff;
}

.form-input-group text area:focus {
    border-color: #FF6E27;
    background-color: #ffffff;
}

.form-submit-navy-btn {
    width: 100%;
    padding: 16px;
    background-color: #0E0A38;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 16.5px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.form-submit-navy-btn:hover {
    background-color: #130F3B;
    transform: translateY(-2px);
}

.form-submit-navy-btn .arrow-icon {
    font-size: 14px;
}

/* ==========================================================================
   ALIGNED FOOTER BLOCK STYLES
   ========================================================================== */
.site-footer {
    background: #0D0A2B;
    color: #ffffff;
    padding: 80px 40px 40px 40px;
    box-sizing: border-box;
}

.site-footer .section-container {
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
    padding: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    background-color: transparent !important;
}

.footer-about-text {
    font-size: 15px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    max-width: 320px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #FF6E27;
}

.contact-info-list li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

.footer-socials a:hover {
    background: #FF6E27;
    border-color: #FF6E27;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 30px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: #FF6E27;
}

/* ==========================================================================
   RESPONSIVE DESIGN ADAPTATION LAYER
   ========================================================================== */

@media (max-width: 1200px) {
    /* GRIDS ADAPT SAFELY ON VERTICAL STACK INTERFACES FOR TABLET/MOBILE VIEWS */
    .product-split-wrapper {
        flex-direction: column;
        padding: 130px 20px 60px 20px !important;
        align-items: stretch;
        width: 100% !important;
        max-width: 100% !important;
    }
    .brand-presentation-side {
        flex: 1;
        width: 100%;
        margin-bottom: 40px;
        box-sizing: border-box;
    }
    .application-mock-workspace {
        width: 100%;
        min-height: 480px;
        height: auto;
        max-width: 100%;
        margin-right: 0 !important;    /* Resets desktop offset rule safely */
        border-right: 1px solid rgba(255, 255, 255, 0.6) !important;
        border-radius: 30px !important; /* Restores standard rounded boxes on compact touch breakpoints */
    }
    .workspace-screenshot-img {
        border-radius: 30px !important;
        height: auto;
        max-height: 707px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .why-choose-contact-section {
        padding: 60px 20px;
    }
    .layout-flex-split {
        flex-direction: column;
        gap: 50px;
    }
    .features-grid-column, .contact-form-column {
        width: 100%;
    }
    .site-footer {
        padding: 60px 20px 30px 20px;
    }
}

@media (max-width: 576px) {
    .branding-tagline {
        font-size: 28px;
    }
    
    /* FORCES HORIZONTAL ALIGNMENT IN THE MIDDLE FOR NARROW COMPACT VIEWPORTS (GALAXY Z FOLD) */
    .presentation-stats-row {
        flex-direction: column !important;    
        align-items: center !important;       
        justify-content: center !important;   
        width: 100%;
        gap: 16px;
    }
    .stat-pill-box {
        width: 100% !important;
        max-width: 300px !important;          
        box-sizing: border-box;
    }

    .application-mock-workspace {
        min-height: 320px;
    }
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    .form-card-container {
        padding: 35px 25px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .footer-legal-links {
        justify-content: center;
        gap: 20px;
    }
}