/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Landing Container */
.landing-container {
    display: flex;
    height: 100vh;
    height: 100svh;
    position: relative;
}

/* Company Sides */
.company-side {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    overflow: hidden;
}

.company-side:hover {
    flex: 1.08;
}

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

/* Summit Side */
.summit-side {
    background:
        url('summitsplit.png') center center / cover no-repeat,
        linear-gradient(135deg, #b83232 0%, #9e2a2a 50%, #7d1f35 100%);
    border-right: 2px solid rgba(255, 255, 255, 0.1);
}

.summit-side .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(184, 50, 50, 0.8) 0%, rgba(125, 31, 53, 0.85) 100%);
    opacity: 0.9;
}

/* Bralex Side */
.bralex-side {
    background:
        url('bralexsplit.png') center center / cover no-repeat,
        linear-gradient(135deg, #2d4a6b 0%, #3c5a7a 50%, #4a6885 100%);
}

.bralex-side .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 74, 107, 0.9) 0%, rgba(74, 104, 133, 0.95) 100%);
    opacity: 0.95;
}

/* Content */
.content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 420px;
    padding: 2.5rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Logo Container */
.logo-container {
    margin-bottom: 2rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.company-logo {
    max-height: 70px;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Summit logo specific sizing */
.summit-side .company-logo {
    max-height: 85px;
    max-width: 210px;
}

/* Bralex Logo */
.bralex-logo {
    color: white;
    font-family: 'Poppins', sans-serif;
}

.bralex-text {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: block;
}

.telecom-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: -0.5rem;
}

.telecom-text {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.2em;
}

.signal-icon {
    font-size: 1.5rem;
    filter: grayscale(1) brightness(0) invert(1);
}

/* Typography */
h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.tagline {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    font-style: italic;
    width: 100%;
}

.description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.75rem;
    width: 100%;
}

/* Services Preview */
.services-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    width: 100%;
}

.services-preview span {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enter Buttons */
.enter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 280px;
}

.enter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: white;
}

.summit-btn:hover {
    border-color: #b71c1c;
    color: #b71c1c;
}

.bralex-btn:hover {
    border-color: #2c5282;
    color: #2c5282;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.enter-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Decorative Elements */
.decorative-element {
    position: absolute;
    width: 200px;
    height: 200px;
    opacity: 0.03;
    transition: all 0.8s ease;
    pointer-events: none;
}

.summit-decoration {
    top: 15%;
    right: 15%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
}

.bralex-decoration {
    bottom: 15%;
    left: 15%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 50%;
}

/* Floating Info */
.floating-info {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
}

/* Desktop-specific Summit background - make image more visible (only 25% reduction) */
@media (min-width: 769px) {
    .summit-side .background-overlay {
        background: linear-gradient(45deg, rgba(184, 50, 50, 0.75) 0%, rgba(125, 31, 53, 0.8) 100%);
        opacity: 0.85;
    }
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    .landing-container {
        flex-direction: column;
        height: 100vh;
        height: 100svh;
        gap: 0;
    }

    .company-side {
        flex: 1;
        min-height: 50vh;
        min-height: 50svh;
        position: relative;
    }

    /* Hide company names and extra content on mobile */
    h1,
    .description,
    .services-preview,
    .decorative-element {
        display: none;
    }

    /* Show only tagline between logo and button */
    .tagline {
        display: block;
        font-size: 1.1rem;
        margin-bottom: 2rem;
        font-weight: 500;
        opacity: 0.9;
    }

    .content {
        max-width: 90%;
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100%;
    }

    .logo-container {
        height: 80px;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .company-logo {
        max-height: 70px;
        max-width: 200px;
        object-fit: contain;
    }

    .enter-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
        max-width: 280px;
        width: 100%;
        margin-top: 1rem;
        font-weight: 600;
    }

    .company-side:hover {
        flex: 1;
        transform: none;
    }

    /* Ensure proper background coverage */
    .background-overlay {
        opacity: 0.15;
    }

    /* Hide arrows on mobile */
    .btn-arrow {
        display: none;
    }

    /* Disable fade-in animations on mobile */
    .content > * {
        animation: none !important;
    }
}

@media (max-width: 480px) {
    .company-side {
        min-height: 45vh;
        min-height: 45svh;
    }

    .tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .content {
        padding: 1.5rem 1rem;
    }

    .company-logo {
        max-height: 60px;
        max-width: 180px;
    }

    .logo-container {
        height: 70px;
        margin-bottom: 1rem;
    }

    .enter-btn {
        font-size: 0.95rem;
        padding: 0.875rem 1.75rem;
        max-width: 260px;
    }
}
