/* Full Screen Corporate Split Layout Styling */
:root {
    --primary: #0f62fe; /* Corporate IBM Blue */
    --primary-hover: #0043ce;
    --primary-glow: rgba(15, 98, 254, 0.08);
    --secondary: #0284c7; /* Sky Blue */
    --accent: #4f46e5; /* Indigo */
    --text-main: #0f172a; /* Slate 900 */
    --text-muted: #475569; /* Slate 600 */
    --text-light: #64748b; /* Slate 500 */
    --border-color: rgba(15, 23, 42, 0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: #ffffff;
    color: var(--text-main);
    font-family: var(--font-body);
    min-height: 100vh;
    width: 100vw;
    overflow: hidden;
}

/* Split Layout Container */
.split-container {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* --- Left Side: Immersive Image Column --- */
.visual-side {
    position: relative;
    flex: 1.1; /* Slightly wider left side */
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 60px;
    color: #ffffff;
    overflow: hidden;
}

.bg-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 10s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.visual-side:hover .bg-image {
    transform: scale(1.06);
}

/* Deep Slate-to-Blue Visual Overlay */
.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg, 
        rgba(15, 23, 42, 0.15) 0%, 
        rgba(15, 23, 42, 0.45) 50%, 
        rgba(15, 98, 254, 0.7) 100%
    );
    z-index: 2;
}

.visual-content {
    position: relative;
    z-index: 3;
    max-width: 480px;
    animation: fade-up-visual 1s ease-out forwards;
}

.visual-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.visual-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
}

.visual-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    font-weight: 300;
}

/* --- Right Side: Content Column --- */
.content-side {
    flex: 0.9;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 60px;
    height: 100vh;
    overflow: hidden; /* Lock scroll by default on desktop */
}

/* High-end Flex layout spacing out Header, Main Body and Footer */
.content-wrapper {
    max-width: 460px;
    width: 100%;
    height: 90%;
    max-height: 720px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: fade-up-content 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Brand Header */
.brand-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-logo {
    height: 48px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.company-logo:hover {
    transform: scale(1.02);
}

.brand-name {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.brand-status {
    font-size: 0.68rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Main central body */
.main-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Badge Style */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 98, 254, 0.05);
    border: 1px solid rgba(15, 98, 254, 0.1);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--primary);
    margin-bottom: 18px;
    align-self: flex-start;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 1.8s infinite ease-in-out;
}

@keyframes pulse-dot {
    0% { transform: scale(0.85); opacity: 0.6; }
    50% { transform: scale(1.25); opacity: 1; }
    100% { transform: scale(0.85); opacity: 0.6; }
}

/* Title & Subtitles */
.main-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: -0.8px;
    line-height: 1.25;
    margin-bottom: 12px;
    color: var(--text-main);
}

.main-title span {
    color: var(--primary);
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 24px;
    font-weight: 400;
}

/* Progress bar section */
.progress-section {
    margin-bottom: 24px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.progress-label {
    color: var(--text-light);
}

.progress-percentage {
    color: var(--primary);
}

.progress-bar-bg {
    width: 100%;
    height: 5px;
    background: #e2e8f0;
    border-radius: 100px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 90%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 100px;
}

/* Countdown Grid */
.countdown-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.countdown-item {
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 8px;
    padding: 12px 6px;
    text-align: center;
    transition: all 0.2s ease;
}

.countdown-item:hover {
    background: #f1f5f9;
    border-color: rgba(15, 23, 42, 0.08);
}

.countdown-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 2px;
}

.countdown-label {
    font-size: 0.65rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Contact Info Area */
.contact-section {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding-top: 20px;
}

.contact-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact-buttons {
    display: flex;
}

.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 6px;
    padding: 10px 24px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(15, 98, 254, 0.15);
}

.phone-icon {
    width: 16px;
    height: 16px;
    color: #ffffff;
}

.phone-btn:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(15, 98, 254, 0.25);
}

/* Footer & Socials */
.content-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding-top: 20px;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.02);
    color: var(--text-light);
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-icon {
    width: 15px;
    height: 15px;
}

.social-btn:hover {
    background: var(--primary-glow);
    color: var(--primary);
    border-color: rgba(15, 98, 254, 0.1);
    transform: translateY(-2px);
}

.copyright {
    font-size: 0.7rem;
    color: var(--text-light);
    opacity: 0.8;
}

/* Animations */
@keyframes fade-up-visual {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-up-content {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Layout Responsiveness (Collapse on Smaller Devices) --- */
@media (max-width: 992px) {
    body {
        overflow-y: auto;
    }

    .split-container {
        flex-direction: column;
        height: auto;
        overflow-y: auto;
    }
    
    .visual-side {
        height: 38vh;
        padding: 40px 30px;
    }
    
    .visual-title {
        font-size: 2rem;
    }
    
    .content-side {
        height: auto;
        padding: 45px 30px;
        overflow: visible;
    }
    
    .content-wrapper {
        max-width: 100%;
        height: auto;
        max-height: none;
        gap: 35px;
    }
}

/* Add vertical scroll on desktop if window height is very low */
@media (max-height: 700px) and (min-width: 993px) {
    .content-side {
        overflow-y: auto;
        align-items: flex-start;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .content-wrapper {
        height: auto;
        max-height: none;
        gap: 30px;
    }
}

@media (max-width: 580px) {
    .visual-side {
        height: 35vh;
        padding: 30px 20px;
    }
    
    .visual-title {
        font-size: 1.65rem;
    }
    
    .visual-subtitle {
        font-size: 0.88rem;
    }
    
    .content-side {
        padding: 35px 20px;
    }
    
    .main-title {
        font-size: 1.9rem;
    }
    
    .countdown-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .phone-btn {
        width: 100%;
        justify-content: center;
    }
}
