:root {
    /* Corporate Palette */
    --primary: #0f172a;
    /* Dark Blue/Slate */
    --accent: #0ea5e9;
    /* Sky Blue for highlights */
    --text-main: #334155;
    /* Slate 700 */
    --text-muted: #64748b;
    /* Slate 500 */
    --bg-color: #f8fafc;
    /* Very light slate */
    --card-bg: #ffffff;
    --border: #e2e8f0;

    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Layout Container */
.page-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
    background: white;
    overflow: hidden;
}

/* Left Content Side */
.left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    max-width: 55%;
    z-index: 10;
}

/* Right Image Side */
.right-content {
    flex: 1;
    background-color: #f0f9ff;
    /* Very light blue tint */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.feature-image {
    max-width: 90%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(14, 165, 233, 0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Header */
.logo-header {
    margin-bottom: 2rem;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.05em;
}

/* Content Blocks */
.content-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.headline {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
    max-width: 600px;
}

.subtext {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    font-weight: 400;
    line-height: 1.6;
}

/* Countdown */
.countdown-wrapper {
    display: flex;
    justify-content: flex-start;
    /* Aligned left now */
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    margin: 1rem 0;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Aligned left */
}

.time-value {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
}

.time-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-weight: 600;
}

.timer-separator {
    font-size: 2.5rem;
    color: #cbd5e1;
    font-weight: 200;
    margin-top: -1.75rem;
}

/* Contact Info */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 200px;
    box-shadow: var(--shadow-soft);
}

.contact-btn:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.contact-btn i {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-text .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
}

.contact-text .value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
}

.agent-link {
    background: rgba(14, 165, 233, 0.08);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px dashed rgba(14, 165, 233, 0.4);
}

.agent-link p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.agent-link a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.agent-link a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a,
.share-btn {
    color: var(--text-muted);
    font-size: 1.25rem;
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.social-links a:hover,
.share-btn:hover {
    color: var(--accent);
}

.copyright {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 1024px) {
    .headline {
        font-size: 2.5rem;
    }

    .left-content {
        max-width: 60%;
        padding: 3rem;
    }

    .time-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-container {
        flex-direction: column-reverse;
        /* Image on top optionally, or bottom. Let's stack standard */
        height: auto;
    }

    .left-content {
        max-width: 100%;
        padding: 2.5rem 1.5rem;
        align-items: center;
        text-align: center;
    }

    .right-content {
        min-height: 40vh;
        padding: 2rem;
    }

    .feature-image {
        max-width: 80%;
    }

    .content-block {
        align-items: center;
    }

    .headline {
        font-size: 2rem;
        text-align: center;
    }

    .subtext {
        text-align: center;
    }

    .countdown-wrapper {
        justify-content: center;
        gap: 1rem;
    }

    .timer-item {
        align-items: center;
    }

    .timer-separator {
        display: none;
    }

    .contact-info-container {
        align-items: center;
        width: 100%;
    }

    .contact-row {
        justify-content: center;
        width: 100%;
    }

    .footer {
        flex-direction: column;
        gap: 1rem;
    }

}

/* Mobile Floating Dock - Hidden on Desktop by default */
.mobile-contact-dock {
    display: none;
}

@media (max-width: 768px) {
    .mobile-contact-dock {
        display: flex;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 400px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        padding: 0.75rem;
        border-radius: 100px;
        justify-content: space-between;
        gap: 0.5rem;
        z-index: 1000;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.5);
        animation: slideUp 0.5s ease-out;
    }

    .dock-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.8rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: transform 0.2s;
    }

    .dock-btn:active {
        transform: scale(0.95);
    }

    .whatsapp-dock {
        background: #25D366;
        color: white;
    }

    .hotline-dock {
        background: var(--primary);
        color: white;
    }

    .page-container {
        padding-bottom: 80px;
        /* Prevent content blocked by dock */
    }

    @keyframes slideUp {
        from {
            transform: translate(-50%, 100%);
            opacity: 0;
        }

        to {
            transform: translate(-50%, 0);
            opacity: 1;
        }
    }
}