/* Split-Screen Corporate Layout for SRT INFOSOLUTIONS */
:root {
    --brand-teal: #1CBBB4;
    --brand-teal-hover: #169b95;
    --brand-slate: #5D666F;
    --brand-black: #000000;
    --brand-white: #ffffff;
    --bg-dark: #090a0f;
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    min-height: 100%;
    background-color: var(--brand-black);
    color: var(--brand-white);
    font-family: var(--font-sans);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Split Layout container grid */
.split-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* ==========================================================================
   Left Panel: Content & Information
   ========================================================================== */
.info-panel {
    width: 45%;
    background-color: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 4.5rem;
    position: relative;
    z-index: 10;
}

.panel-inner {
    max-width: 460px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

/* Logo Header */
.logo-header {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* Main Announcement */
.announcement-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.notice-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--brand-teal);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-block;
}

.main-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--brand-white);
}

.description-text {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--brand-slate);
    font-weight: 300;
}

/* Typographic directory list */
.contacts-directory {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.directory-row {
    display: flex;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.row-label {
    width: 110px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand-slate);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    margin-top: 2px;
}

.row-detail {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--brand-white);
    line-height: 1.45;
}

.row-detail p {
    transition: var(--transition-fast);
}

/* Interactive row hovers */
.directory-row.interactive {
    cursor: pointer;
}

.directory-row.interactive:hover {
    border-bottom-color: var(--brand-teal);
}

.directory-row.interactive:hover .row-label {
    color: var(--brand-teal);
}

.directory-row.interactive:hover .row-detail p {
    color: var(--brand-teal);
}

.hover-arrow {
    font-size: 1.1rem;
    color: var(--brand-slate);
    transition: transform 0.25s ease, color 0.25s ease;
    margin-left: 1rem;
}

.directory-row.interactive:hover .hover-arrow {
    color: var(--brand-teal);
    transform: translateX(4px);
}

/* Copyright notice */
.panel-footer p {
    font-size: 0.72rem;
    color: var(--brand-slate);
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Right Panel: Visual Showcase
   ========================================================================== */
.visual-panel {
    width: 55%;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1200&q=80');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    z-index: 5;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 10, 15, 0.4) 0%, rgba(9, 10, 15, 0.88) 100%);
    z-index: 1;
}

/* Floating Status Sticker */
.status-sticker {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.75rem 2rem;
    width: 100%;
    max-width: 360px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    animation: float-sticker 6s ease-in-out infinite alternate;
}

@keyframes float-sticker {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.sticker-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pulse-ring {
    width: 8px;
    height: 8px;
    background-color: var(--brand-teal);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(28, 187, 180, 0.6);
    animation: ring-fade 1.5s infinite alternate ease-in-out;
}

@keyframes ring-fade {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.sticker-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--brand-teal);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sticker-bar-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.sticker-bar-progress {
    width: 92%;
    height: 100%;
    background-color: var(--brand-teal);
    border-radius: 2px;
}

.sticker-footer {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.percentage {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--brand-white);
    line-height: 1;
}

.sticker-footer .tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--brand-slate);
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Responsive Web Design Adjustments
   ========================================================================== */

/* Tablets / Medium Screens */
@media (max-width: 1024px) {
    .info-panel {
        padding: 4rem 3rem;
    }
}

@media (max-width: 992px) {
    .split-layout {
        flex-direction: column;
    }
    
    .info-panel {
        width: 100%;
        padding: 5rem 3rem;
    }
    
    .panel-inner {
        max-width: 640px;
    }
    
    .visual-panel {
        width: 100%;
        height: 380px;
        padding: 3rem 2rem;
    }
    
    .status-sticker {
        max-width: 340px;
    }
}

/* Mobile Screens */
@media (max-width: 576px) {
    .info-panel {
        padding: 4rem 1.5rem;
    }
    
    .panel-inner {
        gap: 2.75rem;
    }
    
    .main-title {
        font-size: 2.25rem;
    }
    
    .directory-row {
        flex-direction: column;
        gap: 0.35rem;
        align-items: flex-start;
    }
    
    .row-label {
        width: auto;
    }
    
    .hover-arrow {
        display: none;
    }
    
    .visual-panel {
        height: 280px;
        padding: 2rem 1.5rem;
    }
}