/* Main Container */
.lamar-kerja-container {
    margin: 40px 0;
    padding: 0;
}

.lamar-kerja-box {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.lamar-kerja-box h3 {
    margin-top: 0;
    color: #2c3e50;
}

/* Button Styles */
.lamar-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.lamar-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Lamar Kerja Page Styles */
.lamar-kerja-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
}

.lamar-header {
    text-align: center;
    margin-bottom: 30px;
}

.lamar-header h1 {
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Countdown Styles */
#countdownContainer {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.countdown-display {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.progress-container {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #3498db;
    width: 0%;
    transition: width 1s linear;
}

/* Options Styles */
.lamar-options-hidden {
    display: none;
}

.lamar-options-visible {
    display: block;
    animation: fadeIn 0.5s ease;
}

.lamar-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.lamar-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #2c3e50;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.lamar-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.email-option:hover {
    border-color: #d44638;
}

.whatsapp-option:hover {
    border-color: #25D366;
}

.form-option:hover {
    border-color: #3498db;
}

.lamar-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.lamar-text {
    font-size: 16px;
    text-align: center;
}

/* Error Message */
.lamar-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #f5c6cb;
    text-align: center;
    margin: 20px 0;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 600px) {
    .lamar-options-grid {
        grid-template-columns: 1fr;
    }
}